/* ---------------- Global Reset & Variables ---------------- */
:root {
    --primary: #1e3c72;
    --secondary: #2a5298;
    --accent: #7e22ce;
    --light: #f4f4f8;
    --dark: #0d1b2a;
    --white: #ffffff;
    --text-light: #e5e5e5;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    --gradient-light: linear-gradient(135deg, #f7f9fc 0%, #e3e8ff 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f1f, #1a1a2e);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ---------------- Body & Global Styles ---------------- */
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--text-dark);
    min-height: 100vh;
    scroll-behavior: smooth;
    margin: 0;
    overflow-x: hidden;
  }
  
  /* Remove all scrollbars */
  ::-webkit-scrollbar {
    display: none;
  }
  
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  /* ---------------- Preloader Styles ---------------- */

  .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  .preloader.fade-out {
      opacity: 0;
      visibility: hidden;
  }

  .preloader-logo-img {
      width: 120px;
      height: 120px;
      margin-bottom: 20px;
      filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
      animation: floatLogo 3s ease-in-out infinite;
      border-radius: 20px;
      /* Remove any color filters to keep original logo colors */
      filter: brightness(1) contrast(1) saturate(1) drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
  }

  @keyframes floatLogo {
      0%, 100% {
          transform: translateY(0) scale(1);
      }
      50% {
          transform: translateY(-15px) scale(1.05);
      }
  }

  .preloader-logo {
      font-size: 4rem;
      font-weight: 800;
      color: #ffffff; /* Simple white color instead of gradient */
      margin-bottom: 10px;
      letter-spacing: 3px;
      text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: glow 2s ease-in-out infinite alternate;
  }

  @keyframes glow {
      from {
          text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
      }
      to {
          text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4);
      }
  }

  .preloader-text {
      font-size: 3.5rem;
      font-weight: 700;
      color: #ffffff; /* Simple white color for better visibility */
      margin-bottom: 5px;
      letter-spacing: 2px;
      position: relative;
      animation: slideIn 1.5s ease-out;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

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

  .preloader-subtext {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 300;
      letter-spacing: 8px;
      text-transform: uppercase;
      margin-bottom: 40px;
      animation: fadeInUp 1.2s ease-out 0.5s both;
      position: relative;
  }

  .preloader-subtext::before,
  .preloader-subtext::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40px;
      height: 1px;
      background: rgba(255, 255, 255, 0.5);
  }

  .preloader-subtext::before {
      left: -60px;
  }

  .preloader-subtext::after {
      right: -60px;
  }

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

  .loading-bar {
      width: 300px;
      height: 6px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
      position: relative;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .loading-progress {
      height: 100%;
      background: linear-gradient(90deg, #ffffff, #f8f9fa, #e9ecef); /* Clean white gradient */
      border-radius: 10px;
      width: 0%;
      animation: loading 3s ease-in-out forwards;
      position: relative;
      overflow: hidden;
  }

  .loading-progress::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      animation: shimmer 1.5s ease-in-out infinite;
  }

  @keyframes loading {
      0% {
          width: 0%;
      }
      20% {
          width: 25%;
      }
      40% {
          width: 50%;
      }
      60% {
          width: 75%;
      }
      80% {
          width: 90%;
      }
      100% {
          width: 100%;
      }
  }

  @keyframes shimmer {
      0% {
          left: -100%;
      }
      100% {
          left: 100%;
      }
  }

  .loading-dots {
      display: flex;
      gap: 12px;
      margin-top: 20px;
  }

  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ffffff; /* Simple white dots */
      animation: bounce 1.4s ease-in-out infinite both;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .dot:nth-child(1) {
      animation-delay: -0.32s;
  }

  .dot:nth-child(2) {
      animation-delay: -0.16s;
  }

  .dot:nth-child(3) {
      animation-delay: 0s;
  }

  @keyframes bounce {
      0%, 80%, 100% {
          transform: scale(0.5);
          opacity: 0.5;
      }
      40% {
          transform: scale(1);
          opacity: 1;
      }
  }

  /* Particle background effect */
  .preloader::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
          radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(255, 216, 155, 0.3) 0%, transparent 50%),
          radial-gradient(circle at 40% 40%, rgba(25, 84, 123, 0.2) 0%, transparent 50%);
      animation: particleMove 20s ease-in-out infinite;
  }

  @keyframes particleMove {
      0%, 100% {
          transform: translate(0, 0) rotate(0deg);
      }
      33% {
          transform: translate(30px, -30px) rotate(120deg);
      }
      66% {
          transform: translate(-20px, 20px) rotate(240deg);
      }
  }

  /* Responsive design */
  @media (max-width: 768px) {
      .preloader-logo-img {
          width: 100px;
          height: 100px;
      }

      .preloader-logo {
          font-size: 3rem;
          letter-spacing: 2px;
      }

      .preloader-text {
          font-size: 2.5rem;
      }

      .preloader-subtext {
          font-size: 1rem;
          letter-spacing: 6px;
      }

      .preloader-subtext::before,
      .preloader-subtext::after {
          width: 20px;
      }

      .preloader-subtext::before {
          left: -40px;
      }

      .preloader-subtext::after {
          right: -40px;
      }

      .loading-bar {
          width: 250px;
      }
  }

  @media (max-width: 480px) {
      .preloader-logo-img {
          width: 80px;
          height: 80px;
      }

      .preloader-logo {
          font-size: 2.5rem;
      }

      .preloader-text {
          font-size: 2rem;
      }

      .preloader-subtext {
          font-size: 0.9rem;
          letter-spacing: 4px;
      }

      .loading-bar {
          width: 200px;
      }

      .dot {
          width: 10px;
          height: 10px;
      }
  }

  
  /* ---------------- Navbar ---------------- */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo */
  .nav-logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .nav-logo:hover {
    transform: scale(1.05);
    color: #ffd700;
  }
  
  /* Right Section */
  .nav-right {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 320px;
    max-height: calc(100vh - 80px);
    background: rgba(42, 82, 152, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px;
    border-radius: 0 0 0 15px;
    box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    gap: 10px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s ease;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .nav-menu a {
    display: block;
    text-align: left;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Hamburger Icon */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    margin-right: 25px;
  }
  
  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  
  .nav-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Add space for fixed navbar */
  body {
    padding-top: 75px;
  }
  
  /* ---------------- Cover Page ---------------- */
  .brochure {
    width: 100%;
    height: 100vh;
    margin: 0;
    background: none;
    border-radius: 0;
  }
  
  .cover-page {
    background: var(--gradient-light);
    color: var(--dark);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
  }
  
  .logo-space {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    z-index: 2;
  }
  
  .logo-space img {
    width: 200px;
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    filter: brightness(1.1) contrast(1.15);
  }
  
  .cover-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
    z-index: 2;
    color: #1a1a1a;
  }
  
  .cover-subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.95;
    z-index: 2;
    color: #2d2d2d;
  }
  
  .cover-tagline {
    font-size: 20px;
    font-style: italic;
    opacity: 0.8;
    z-index: 2;
    color: #333;
  }
  
  /* ---------------- Section Common Styles ---------------- */
  .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeUp 1s ease forwards;
  }
  
  .section-title {
    font-size: 38px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #00aaff;
    margin: 12px auto 0;
    border-radius: 3px;
    animation: slideIn 1.2s ease-in-out;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
    letter-spacing: 0.3px;
  }
  
  @keyframes slideIn {
    from { width: 0; opacity: 0; }
    to { width: 70px; opacity: 1; }
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
 /* ---------------- About Section ---------------- */
.about-section {
    padding-top: 70px;
    padding-bottom: 70px;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out both;
    background: var(--gradient-primary);
    color: var(--text-light);
  }
  
  /* reduce text margin left/right */
  .about-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 80px; /* adjust this value */
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: var(--white);
    animation: fadeUp 1.3s ease forwards;
  }
  
  /* Contact Section Styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-item {
    background: rgba(255,255,255,0.05);
    padding: 30px 25px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 14px 40px rgba(42,82,152,0.25);
}

.contact-item-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
    animation: bounce 3s infinite ease-in-out;
    transition: transform 0.4s;
    display: block;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.25) rotateZ(10deg);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.contact-value {
    margin-top: 10px;
}

.contact-value p {
    font-size: 16px;
    color: #f1f1f1;
    opacity: 0.95;
    margin-bottom: 8px;
    line-height: 1.5;
    word-break: break-word;
}

/* Multiple emails styling */
.contact-value p + p {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Contact CTA */
.contact-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,255,255,0.35);
}

/* Social Links */
.social-links {
    margin: 50px 0 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.15);
    text-align: center;
}

.social-links h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--white);
}

.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(42,82,152,0.3);
}

/* Address section */
.contact-address {
    background: rgba(255,255,255,0.1);
    padding: 35px 25px;
    border-radius: 18px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
    cursor: pointer;
}

.contact-address:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(42,82,152,0.25);
}

.address-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-address h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
}

.contact-address p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
    text-align: center;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 25px 20px;
    }
    
    .social-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .contact-address {
        padding: 25px 20px;
    }
}
  #about p {
    font-size: 20px;
  }
  
  .about-content p {
    margin-bottom: 20px;
  }
  
  .about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
    padding: 0 20px;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
  }
  
  .highlight-box:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 12px 32px rgba(42, 82, 152, 0.3);
  }
  
  .highlight-icon {
    font-size: 42px;
    margin-bottom: 20px;
    transition: transform 0.5s ease, color 0.4s ease;
  }
  
  .highlight-box:hover .highlight-icon {
    transform: rotate(15deg) scale(1.2);
  }
  
  .highlight-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
  }
  
  .highlight-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  .download-btn-container {
    margin-top: 30px;
    text-align: center;
  }
  
  .download-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 13px 30px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(40, 21, 52, 0.22);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.28s;
    text-decoration: none;
  }
  
  .download-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 80%, var(--primary) 100%);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 32px rgba(40, 21, 52, 0.32);
  }
  
  
  /* ---------------- Vision & Mission Section ---------------- */
  .vision-mission-section {
    background: linear-gradient(180deg, #f9faff 0%, #eef1f8 100%);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    text-align: center;
    animation: fadeIn 1.2s ease-out both;
  }
  
  .vision-mission-section .section-title {
    color: var(--dark) !important;
  }
  
  .vision-mission-section .section-subtitle {
    color: var(--dark) !important;
  }
  
  .vm-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .vm-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 18px;
    padding: 40px 30px;
    flex: 1 1 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .vm-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(42, 82, 152, 0.3);
  }
  
  .vm-icon {
    font-size: 50px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
  }
  
  .vm-box:hover .vm-icon {
    transform: rotate(10deg) scale(1.2);
  }
  
  .vm-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
  }
  
  .vm-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
  }
  
  /* ---------------- Services Section ---------------- */
  .services-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .services-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 70%);
    z-index: 0;
  }
  
  .services-section .section-title {
    color: var(--white) !important;
  }
  
  .services-section .section-subtitle {
    color: var(--white) !important;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 1;
    position: relative;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 40px 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background: rgba(102, 252, 241, 0.1);
    box-shadow: 0 8px 30px rgba(102, 252, 241, 0.25);
  }
  
  .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #66fcf1;
    transition: transform 0.4s ease;
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.15);
  }
  
  .service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: capitalize;
  }
  
  .service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .service-card ul li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
  }
  
  .service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #66fcf1;
    font-weight: bold;
  }
  
  /* Animation delays for service cards */
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
  .service-card:nth-child(5) { animation-delay: 0.5s; }
  .service-card:nth-child(6) { animation-delay: 0.6s; }
  
  /* ---------------- Domains Section ---------------- */
  .section-alt {
    background: linear-gradient(to bottom, #f9faff, #ffffff);
    padding: 80px 0;
    overflow-x: hidden;
  }
  
  .section-alt .section-title {
    color: var(--dark) !important;
  }
  
  .section-alt .section-subtitle {
    color: var(--dark) !important;
  }
  
  .domains-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    cursor: grab;
    box-sizing: border-box;
  }
  
  .domains-marquee:active {
    cursor: grabbing;
  }
  
  .marquee-track {
    display: flex;
    gap: 30px;
    animation: scrollLeft 7s linear infinite;
    will-change: transform;
    width: max-content;
  }
  
  .domains-marquee:hover .marquee-track {
    animation-play-state: paused;
  }
  
  .domain-card {
    flex: 0 0 auto;
    min-width: 260px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #f5f6fa;
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.4s ease;
  }
  
  .domain-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 14px 35px rgba(42, 82, 152, 0.35);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
  }
  
  .domain-card span,
  .domain-card::before {
    display: block;
    font-size: 36px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
  }
  
  .domain-card:hover span {
    transform: scale(1.2) rotate(10deg);
  }
  
  .domain-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
  }
  
  .domain-card p {
    font-size: 14px;
    color: #e0e6f1;
    opacity: 0.95;
    line-height: 1.5;
  }
  
  @keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* ---------------- Benefits Section ---------------- */
  .success-story-block {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
  }
  
  .success-story-block .section-title {
    color: var(--white);
  }
  
  .success-story-block .section-subtitle {
    color: #e0e6f1;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
    padding: 0 40px;
    justify-content: center;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 25px;
    border-radius: 18px;
    background: var(--white);
    color: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
  }
  
  .benefit-item:nth-child(odd) { animation-delay: 0.2s; }
  .benefit-item:nth-child(even) { animation-delay: 0.4s; }
  
  .benefit-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #ffffff, #f1f3ff);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    border-left: 5px solid var(--accent);
  }
  
  .benefit-icon {
    font-size: 42px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.4s ease, color 0.4s ease;
    animation: pulse 2.5s infinite;
  }
  
  .benefit-item:hover .benefit-icon {
    transform: scale(1.3) rotate(10deg);
    color: var(--accent);
  }
  
  .benefit-text h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .benefit-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
  }
  
  /* ---------------- Process Section ---------------- */
  .process-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f9faff 0%, #eef2ff 100%);
    text-align: center;
  }
  
  .process-section .section-title {
    color: var(--dark) !important;
  }
  
  .process-section .section-subtitle {
    color: var(--dark) !important;
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .process-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
  }
  
  .process-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: width 0.3s ease;
  }
  
  .process-card:hover::before {
    width: 10px;
  }
  
  .process-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  }
  
  .process-step {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: transform 0.4s, box-shadow 0.4s;
  }
  
  .process-card:hover .process-step {
    transform: scale(1.25) rotate(10deg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  }
  
  .process-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .process-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  
  /* ---------------- Testimonials Section ---------------- */
  .testimonials-section {
    background: var(--gradient-primary);
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(126,34,206,0.08), transparent 60%),
                radial-gradient(circle at bottom right, rgba(42,82,152,0.08), transparent 60%);
    z-index: 0;
  }
  
  .testimonials-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    z-index: 1;
  }
  
  .testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px) scale(1.03) rotateZ(1deg);
    box-shadow: 0 22px 48px rgba(42,82,152,0.2);
  }
  
  .floating-quote {
    font-size: 48px;
    color: var(--secondary);
    font-weight: bold;
    line-height: 0.7;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
  }
  
  .testimonial-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .testimonial-card:hover .author-avatar {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(42,82,152,0.4);
  }
  
  .author-info h4 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
  }
  
  .author-info p {
    color: #777;
    font-size: 13px;
  }
  
  .testimonial-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s ease-out;
  }
  
  .testimonial-card:nth-child(1) { transition-delay: 0.2s; }
  .testimonial-card:nth-child(2) { transition-delay: 0.4s; }
  .testimonial-card:nth-child(3) { transition-delay: 0.6s; }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  /* ---------------- CTA Section ---------------- */
  .cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: rotateBg 20s linear infinite;
    z-index: 0;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeUp 1s ease forwards;
  }
  
  .cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .primary-btn {
    background: var(--white);
    color: var(--primary);
  }
  
  .primary-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(255,255,255,0.4);
  }
  
  .secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.08);
  }
  
  .cta-contact {
    font-size: 16px;
    opacity: 0;
    color: var(--white);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
    position: relative;
    display: inline-block;
  }
  
  .cta-contact a {
    color: var(--white);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .cta-contact a:hover {
    color: #ddd;
    transform: translateY(-2px);
  }
  
  .cta-contact a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: var(--white);
    transition: width 0.3s ease;
  }
  
  .cta-contact a:hover::after {
    width: 100%;
  }
  
  @keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  /* ---------------- Contact Section ---------------- */
  .contact-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .contact-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
    animation: rotateGradient 25s linear infinite;
    z-index: 0;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .contact-header h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
  }
  
  .contact-header p {
    font-size: 18px;
    opacity: 0.9;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
  }
  
  .contact-item {
    background: rgba(255,255,255,0.05);
    padding: 25px 15px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transition: all 0.5s ease, transform 0.5s;
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
  }
  
  .contact-item:hover {
    transform: translateY(-10px) scale(1.03) perspective(500px) rotateX(2deg);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 14px 40px rgba(42,82,152,0.25);
  }
  
  .contact-item-icon {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--white);
    animation: bounce 3s infinite ease-in-out;
    transition: transform 0.4s, color 0.4s;
  }
  
  .contact-item:hover .contact-item-icon {
    transform: scale(1.25) rotateZ(10deg);
  }
  
  .contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
  }
  
  .contact-item p, .contact-item a {
    font-size: 14px;
    color: #f1f1f1;
    opacity: 0.95;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
  }
  
  .contact-item a:hover {
    color: #ddd;
    transform: translateX(3px);
  }
  
  .cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
  }
  
  .cta-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,255,255,0.35);
  }
  
  .social-links {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.15);
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .social-links h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  .social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .social-grid a {
    display: inline-block;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .social-grid a:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(42,82,152,0.3);
  }
  
  .contact-address {
    background: rgba(255,255,255,0.1);
    padding: 35px 25px;
    border-radius: 18px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .contact-address:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(42,82,152,0.25);
  }
  
  .contact-address a {
    color: var(--white);
    text-decoration: none;
    position: relative;
    z-index: 1;
  }
  
  .contact-address h3 {
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
  }
  
  .contact-address p {
    font-size: 16px;
    opacity: 0.9;
    color: #f0f0f0;
    position: relative;
    z-index: 1;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  /* ---------------- Footer ---------------- */
  .footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .footer::before,
  .footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.08;
    z-index: 0;
  }
  
  .footer::before {
    top: -120px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: #00aaff;
    animation: float 14s linear infinite alternate;
  }
  
  .footer::after {
    bottom: -100px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: var(--accent);
    animation: float 18s linear infinite alternate-reverse;
  }
  
  .footer-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00aaff;
    margin-bottom: 10px;
    position: relative;
    animation: fadeUp 1s ease forwards;
  }
  
  .footer-tagline {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
  }
  
  .footer-divider {
    width: 90px;
    height: 2px;
    background: #00aaff;
    margin: 0 auto 25px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
    border-radius: 1px;
  }
  
  .footer-slogan {
    font-size: 14px;
    color: #bbb;
    margin-top: 15px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
  }
  
  .footer-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 25px;
    line-height: 1.6;
    font-style: italic;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
    cursor:pointer;
  }
  
  .footer-copy {
    font-size: 13px;
    color: #777;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.7s;
  }
  
  /* ---------------- Responsive Design ---------------- */
  @media (max-width: 1200px) {
    .contact-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .marquee-track {
      gap: 20px;
      animation-duration: 15s;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 10px 15px;
    }
  
    .nav-logo {
      font-size: 22px;
    }
  
    .nav-toggle {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.2);
    }
  
    .nav-toggle span {
      width: 20px;
      height: 2px;
    }
  
    .nav-menu {
      top: 60px;
      width: 260px;
    }
  
    .cover-title {
      font-size: 44px;
    }
  
    .cover-subtitle {
      font-size: 20px;
    }
  
    .cover-tagline {
      font-size: 18px;
    }
  
    .logo-space img {
      width: 160px;
    }
  
    .section-title {
      font-size: 30px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .process-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }
  
    .benefit-item {
      padding: 22px;
    }
  
    .cta-section h2 {
      font-size: 32px;
    }
  
    .cta-section p {
      font-size: 18px;
    }
  
    .cta-btn {
      padding: 12px 30px;
      font-size: 16px;
    }
  
    .contact-header h2 {
      font-size: 36px;
    }
  
    .contact-item {
      padding: 20px 15px;
    }
  
    .social-grid {
      gap: 15px;
      flex-direction: column;
      align-items: center;
    }
  
    .social-grid a {
      width: 80%;
      text-align: center;
    }
  
    .contact-address {
      padding: 20px 15px;
    }
  
    .footer {
      padding: 50px 15px;
    }
  
    .footer-logo {
      font-size: 28px;
    }
  }
  
  @media (max-width: 600px) {
    .about-content {
      font-size: 16px;
    }
  
    .highlight-title {
      font-size: 20px;
    }
  
    .highlight-text {
      font-size: 14px;
    }
  
    .vm-box {
      flex: 1 1 100%;
      padding: 35px 25px;
    }
  
    .vm-box h3 {
      font-size: 22px;
    }
  
    .vm-box p {
      font-size: 15px;
    }
  
    .process-card {
      padding: 25px 18px;
    }
  
    .process-step {
      width: 50px;
      height: 50px;
      font-size: 18px;
    }
  
    .process-card h3 {
      font-size: 18px;
    }
  
    .process-card p {
      font-size: 14px;
    }
  
    .domain-card {
      min-width: 200px;
      padding: 20px;
    }
  
    .marquee-track {
      gap: 15px;
      animation-duration: 15s;
    }
  }
  
  /* ---------------- Icon Styling for Dynamic Content ---------------- */
  .fa-icon, .emoji-icon {
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .fa-icon,
  .service-card:hover .emoji-icon,
  .domain-card:hover .fa-icon,
  .domain-card:hover .emoji-icon,
  .benefit-item:hover .fa-icon,
  .benefit-item:hover .emoji-icon {
    transform: scale(1.2) rotate(10deg);
  }
  
  /* Ensure proper spacing for dynamic content */
  .about-content p,
  .service-card p,
  .domain-card p,
  .benefit-text p,
  .process-card p,
  .testimonial-text,
  .contact-item p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  /* Smooth transitions for all interactive elements */
  .service-card,
  .domain-card,
  .benefit-item,
  .process-card,
  .testimonial-card,
  .contact-item,
  .highlight-box,
  .vm-box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* Loading states for dynamic content */
  .loading {
    opacity: 0.7;
    pointer-events: none;
  }
  
  .loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* ---------------- Success Stories Form Section ---------------- */
.success-stories-form-section {
    background: var(--gradient-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-stories-form-section .section-title {
    color: var(--dark) !important;
}

.success-stories-form-section .section-subtitle {
    color: var(--dark) !important;
}

.story-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeUp 0.8s ease;
}

.story-form {
    padding: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.rating-stars input:checked ~ label {
    color: gold;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.rating-stars input:checked + label {
    animation: starPulse 0.6s ease;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(126, 34, 206, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-form {
        padding: 30px 25px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .rating-stars {
        justify-content: center;
    }
    
    .submit-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .success-stories-form-section {
        padding: 60px 0;
    }
    
    .story-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .rating-stars label {
        font-size: 28px;
    }
}






/* ---------------- Testimonials Carousel ---------------- */
.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
}

.carousel-slide {
    display: flex;
    gap: 30px;
    min-width: 100%;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 22px 48px rgba(42,82,152,0.2);
}

/* Star Rating */
.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.star {
    font-size: 18px;
}

.star.filled {
    color: #ffd700;
}

.star.empty {
    color: #e0e0e0;
}

/* Client Info */
.client-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.client-details {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}

.client-details strong {
    color: var(--primary);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-control:disabled:hover {
    background: var(--white);
    color: inherit;
    transform: translateY(-50%);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: var(--secondary);
}

/* View All Button */
.view-all-stories {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(42,82,152,0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42,82,152,0.4);
}

/* Achievement Badge */
.achievement-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 5px 5px 5px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-carousel-container {
        padding: 0 50px;
    }
    
    .carousel-slide {
        gap: 25px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .testimonials-carousel-container {
        padding: 0 40px;
    }
    
    .carousel-slide {
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 250px;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-container {
        padding: 0 20px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .carousel-slide {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .carousel-indicators {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}




.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .slides {
    display: flex;
    transition: transform .4s ease;
    width: 100%;
  }
  
  .slide {
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
  }
  
  .card {
    width: 30%;
    padding: 15px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    text-align: center;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #4d96ff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .dots{
    display:flex;
    justify-content:center;
    margin-top: 15px;
    gap: 8px;
  }
  
  .dot{
    width:10px;
    height:10px;
    background: rgba(255, 255, 255, 0.4);
    margin:5px;
    border-radius:50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
  }
  
  .dot.active{
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }

  .avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:#fff;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:10px auto;
    font-weight:bold;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Rating Stars */
.rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 10px 0;
}

.rating span {
    font-size: 18px;
    transition: all 0.3s ease;
}

.rating span.filled {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.rating span:not(.filled) {
    color: #E0E0E0;
    opacity: 0.6;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 10px 0;
    font-style: italic;
    position: relative;
    padding-left: 15px;
}

.testimonial-text::before {
    content: '"';
    font-size: 40px;
    color: #667eea;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: serif;
    line-height: 1;
}

/* Author Info */
.author {
    margin: 10px 0;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.author strong {
    font-size: 16px;
    color: #2c3e50;
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}

.author small {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

/* Additional Details */
.card p:not(.testimonial-text) {
    font-size: 12px;
    color: #5d6d7e;
    margin: 5px 0;
    padding: 6px 10px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 6px;
    border-left: 2px solid #667eea;
    line-height: 1.4;
}

.card p:not(.testimonial-text) b {
    color: #2c3e50;
    font-weight: 600;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.prev:hover, .next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.card {
    animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Section Title (if you add one) */
.testimonials-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .testimonials-wrapper {
        border-radius: 15px;
        padding: 20px 0;
    }
    
    .card {
        width: 90%;
        margin: 0 auto;
    }
    
    .slide {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Glass morphism effect for modern look */
.testimonials-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    z-index: -1;
}

/* Success badges for achievements */
.achievement-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service type badges */
.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover effects for interactive elements */
.card:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.card:hover .rating span.filled {
    animation: starPulse 1s ease-in-out;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Loading state */
.slides.loading {
    opacity: 0.7;
    pointer-events: none;
}

.slides.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


.prev, .next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    color: #2d2d2d;
    font-size: 26px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    z-index: 10;
}

.prev:hover,
.next:hover {
    background: #f3f3f3;
    transform: translateY(-50%) scale(1.12);
}

.prev {
    left: 12px;
}

.next {
    right: 12px;
}

/* Client Enquiry Form Styles */
.enquiry-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  /* background: #fff; */
  padding: 80px 0;
  color: white;
}

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

.enquiry-header {
  text-align: center;
  margin-bottom: 50px;
}

.enquiry-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.enquiry-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.enquiry-form-container {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  color: #333;
}

.enquiry-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.budget-range {
  display: flex;
  align-items: center;
  gap: 15px;
}

.budget-range input {
  flex: 1;
}

.budget-value {
  min-width: 80px;
  font-weight: 600;
  color: #667eea;
}

.enquiry-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-enquiry-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-enquiry-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
      grid-template-columns: 1fr;
      gap: 0;
  }
  
  .enquiry-form-container {
      padding: 30px 20px;
  }
  
  .enquiry-header h2 {
      font-size: 2rem;
  }
}
