.menubottom-container {
    background: #f8f9fa;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}
.bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    margin: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}
.bottom-btn img {
    width: 30px;
    height: 30px;
}
.bottom-btn span {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
}
.bottom-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
}
@media (max-width: 576px) {
    .menubottom-container .container {
        justify-content: space-around;
    }
    .bottom-btn {
        width: 70px;
        height: 70px;
        font-size: 12px;
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.container1 {
  max-width: 1200px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e9ecef;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icon-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 60px;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

/* App Icon Colors */
.app-icon.word {
  background-color: #2b579a;
}

.app-icon.excel {
  background-color: #217346;
}

.app-icon.powerpoint {
  background-color: #d24726;
}

.app-icon.image {
  background-color: #9c27b0;
  font-size: 20px;
}

.app-icon.autocad {
  background-color: #e91e63;
}

.app-icon.openoffice {
  background-color: #2196f3;
  font-size: 20px;
}

.app-icon.ebook {
  background-color: #ff9800;
  font-size: 20px;
}

.app-icon.iwork {
  background-color: #607d8b;
  font-size: 20px;
}

.app-icon.pdf-word,
.app-icon.pdf-excel,
.app-icon.pdf-ppt,
.app-icon.pdf-jpg,
.app-icon.pdf-png,
.app-icon.extract,
.app-icon.pdf-a,
.app-icon.merge,
.app-icon.split {
  background-color: #f44336;
  font-size: 20px;
}

/* PDF Badge */
.pdf-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #f44336;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid white;
}

/* Convert Badge */
.convert-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  border: 2px solid white;
}

.convert-badge {
  background-color: #2b579a;
}

.convert-badge.excel {
  background-color: #217346;
}

.convert-badge.powerpoint {
  background-color: #d24726;
}

.convert-badge.image {
  background-color: #9c27b0;
  font-size: 10px;
}

.convert-badge.png {
  background-color: #9c27b0;
  font-size: 10px;
}

/* Special Icons */
.merge-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #4caf50;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid white;
}

.split-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff9800;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid white;
}

/* More Tools Card */
.more-tools {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.more-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
}

.more-tools h3 {
  color: white;
}

/* Card Title */
.tool-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .tool-card {
    padding: 20px 15px;
  }
  
  .app-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .icon-container {
    height: 50px;
    margin-bottom: 15px;
  }
}  

@media (max-width: 480px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  body {
    padding: 20px 10px;
  }
  
  .tool-card h3 {
    font-size: 12px;
  }
}

 

/* Modern SEO Section */
.modern-seo {
    background: #f5f7fa;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.hero-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.hero-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}










