@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Rubik:wght@400;500;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: -100px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.logo p {
  font-size: 14px;
  color: #666;
}

/* Navigation */
.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4285F4;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #4285F4;
}

.nav a:hover::after {
  width: 100%;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 80px;
  flex-wrap: wrap;
  font-size: px;
}

.phone, .email {
  font-size: 14px;
  color: #555;
}

.btn-callback {
  background-color: #333;
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-callback:hover {
  background-color: #4285F4;
  transform: translateY(-2px);
}
.features{
    display: flex;
    gap: 100px;
    margin-top: 50px;
    justify-content: center;
}
/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #dbe9ff 100%);
  padding: 90px 20px;
  text-align: center;
  animation: fadeIn 1s ease;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.5rem;   /* bada heading */
  font-weight: 700;
  text-align: center;
  white-space: nowrap;   /* ek hi line me rakhega */
  margin-bottom: 15px;
}

.hero-title .highlight {
  color: #007bff;   /* Business Growth ko blue highlight */
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
  animation: fadeUp 1.2s ease;
}

.text-green-600{
    color:green
}
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}


.btn-secondary {
  background-color: #f0f0f0;
  color: #333;
  padding: 10px;
  border: 2px solid #ddd;
    border-radius: 5px;
}

.btn-secondary:hover {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 20px;
  background-color: #fff;
}
.btn-group-custom {
  display: flex;
  gap: 15px; /* buttons ke beech ka gap */
  justify-content: center;
  flex-wrap: wrap;
}

.btn-custom {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  transform: scale(1.05);
}
.container {
  max-width: 1140px; /* थोड़ा छोटा रखने से content और balanced दिखेगा */
}

/* Black Button */
.btn-dark-custom {
  background-color: #111;
  color: #fff;
}

.btn-dark-custom:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* White Button */
.btn-light-custom {
  background-color: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.btn-light-custom:hover {
  background-color: #f7f7f7;
  transform: translateY(-2px);
}

.services-header {
  text-align: center;
  margin-bottom: 55px;
}

.services-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 18px;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 1s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon i {
  font-size: 48px;
  color: #4285F4;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
 .modal {
    display: none; 
    position: fixed; 
    z-index: 1050; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
  }
  
  /* Centering the modal */
  .modal-dialog {
    max-width: 500px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 100px);
  }

  .modal-content {
    background: #fff;
    border-radius: 12px;
    position: relative;
    animation: fadeInDown 0.3s ease;
  }

  /* Close button */
  .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
  }
  .close:hover {
    color: #000;
  }

  /* Animation */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeUp {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes slideDown {
  from {transform: translateY(-50px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* ======
/* ================== RESPONSIVE ================== */

/* Laptop & Large screens (max 1200px) */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* Tablets Landscape (max 992px) */
@media (max-width: 992px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .nav ul {
    
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablets Portrait & Big Mobiles (max 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 70px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 30px;
    white-space: normal; /* prevent overlap */
  }

  .btn-group-custom {
    flex-direction: column;
    gap: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px 18px;
    text-align: center;
  }

  .modal-content {
    width: 90%;
    padding: 20px;
  }
}

/* Small Mobiles (max 480px) */
@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 12px;
  }

  .logo h1 {
    font-size: 22px;
  }

  .hero {
    padding: 50px 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .features {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .btn-group-custom {
    flex-direction: column;
    width: 100%;
  }

  .btn-custom {
    width: 100%;
  }

  .services {
    padding: 50px 15px;
  }

  .service-card {
    padding: 20px;
  }

  .modal-content {
    width: 95%;
    padding: 18px;
  }

  .modal-content h3 {
    font-size: 18px;
  }

  .modal-content button {
    width: 100%;
  }
}
   .about-section {
      padding: 70px 0;
      background-color: #f8f9fa;
    }
    .about-box {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    .about-highlight {
      background: #0d6efd;
      color: #fff;
      border-radius: 10px;
      padding: 25px;
    }
    .about-highlight h5 {
      color: #fff;
    }
    .about-card {
      border: none;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      transition: 0.3s;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .about-card:hover {
      transform: translateY(-5px);
    }
    .about-card i {
      font-size: 36px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .text-blue-600{
        color: blue;
        width: 100px;
        /* height: 100px; */
    }
    .service-card {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding: 20px;
      transition: box-shadow 0.3s ease;
    }
    .service-card:hover {
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    .service-icon {
      font-size: 40px;
      color: #0d6efd;
    }
  footer {
    background: linear-gradient(135deg, #111, #222);
  }
  footer h5 {
    letter-spacing: 1px;
  }
  .footer-links li {
    margin-bottom: 8px;
    transition: transform 0.2s ease-in-out;
  }
  .footer-links li:hover {
    transform: translateX(5px);
    color: #0d6efd;
    cursor: pointer;
  }
  .footer-links a:hover {
    color: #0d6efd  !important;
  }
  