 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .main-body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #0B1426 0%, #1B2951 25%, #2A4073 75%, #E8F4FD 100%);
      color: #ffffff;
      overflow-x: hidden;
      min-height: 100vh;
      position: relative;
    }


    .main-header {
      position: fixed;
      top: 0;
      width: 100%;
      background: #ff6b35;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .main-header.scrolled {
      background: ff4f0f91;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .main-navbar {
      padding: 1rem 0;
      transition: padding 0.3s ease;
    }

    .main-header.scrolled .main-navbar {
      padding: 0.75rem 0;
    }

    .main-nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }


    .main-logo {
      display: flex;
      align-items: center;
      font-size: 1.75rem;
      font-weight: 800;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .main-logo-icon {
      margin-right: 0.75rem;
      font-size: 2rem;
      background: linear-gradient(135deg, #3B82F6 0%, #ffffff 50%, #60A5FA 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }


    .main-nav-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 0.5rem;
      align-items: center;
      transition: all 0.3s ease;
    }

    .main-nav-link {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      padding: 0.75rem 1.25rem;
      border-radius: 12px;
      transition: all 0.3s ease;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1px solid transparent;
    }

    .main-nav-link:hover {
      color: #ffffff;
      background: rgba(59, 130, 246, 0.1);
      border-color: rgba(59, 130, 246, 0.2);
    }

    .main-login-btn {
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      margin-left: 0.5rem;
    }

    .main-login-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
      color: #ffffff;
    }

    .main-mobile-toggle {
      display: none;
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
      padding: 0.5rem;
      border-radius: 8px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .main-mobile-toggle:hover {
      border-color: #3B82F6;
      color: #3B82F6;
    }

    /* Mobile Navigation */
    @media (max-width: 991.98px) {
      .main-mobile-toggle {
        display: block;
      }

      .main-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(11, 20, 38, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
      }

      .main-nav-menu.active {
        right: 0;
      }

      .main-nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        text-align: center;
        width: 100%;
        border-radius: 12px;
      }

      .main-login-btn {
        margin-left: 0;
        padding: 1rem 2rem;
        justify-content: center;
        width: 100%;
      }

      .main-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
      }

      .main-nav-overlay.active {
        opacity: 1;
        visibility: visible;
      }
    }

    /* Carousel Section */
    .main-carousel-section {
      margin-top: 80px;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .main-carousel {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .main-carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease;
      display: flex;
      align-items: center;
    }

    .main-carousel-slide.active {
      opacity: 1;
      visibility: visible;
    }

    .main-carousel-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
          rgba(11, 20, 38, 0.9) 0%,
          rgba(27, 41, 81, 0.7) 30%,
          rgba(42, 64, 115, 0.5) 70%,
          transparent 100%);
      z-index: 1;
    }

    .main-carousel-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Content with Fade-in Animation */
    .main-carousel-title {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      margin-bottom: clamp(1rem, 3vw, 2rem);
      background: linear-gradient(135deg, #ffffff 0%, #3B82F6 40%, #E8F4FD 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.1;
      letter-spacing: -0.02em;
      opacity: 0;
      transition: opacity 0.6s ease 0.2s;
    }

    .main-carousel-slide.active .main-carousel-title {
      opacity: 1;
    }

    .main-carousel-subtitle {
      font-size: clamp(1.1rem, 2.2vw, 1.4rem);
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      font-weight: 400;
      margin-bottom: clamp(2rem, 4vw, 3rem);
      max-width: 90%;
      opacity: 0;
      transition: opacity 0.6s ease 0.4s;
    }

    .main-carousel-slide.active .main-carousel-subtitle {
      opacity: 1;
    }

    .main-carousel-subtitle.short {
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 500;
    }

    .main-carousel-description {
      font-size: clamp(0.95rem, 1.8vw, 1.15rem);
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.5;
      font-weight: 400;
      margin-bottom: clamp(2rem, 4vw, 3rem);
      max-width: 85%;
      opacity: 0;
      transition: opacity 0.6s ease 0.5s;
    }

    .main-carousel-slide.active .main-carousel-description {
      opacity: 1;
    }

    .main-carousel-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      color: #ffffff;
      padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: clamp(1rem, 2vw, 1.1rem);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.15);
      opacity: 0;
      transition: opacity 0.6s ease 0.7s, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .main-carousel-slide.active .main-carousel-cta {
      opacity: 1;
    }

    .main-carousel-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
      color: #ffffff;
    }

    /* Image with Fade-in */
    .main-carousel-image {
      width: 100%;
      height: clamp(350px, 40vw, 500px);
      background: linear-gradient(135deg,
          rgba(59, 130, 246, 0.08) 0%,
          rgba(255, 255, 255, 0.04) 30%,
          rgba(30, 64, 175, 0.06) 70%,
          rgba(59, 130, 246, 0.08) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(3rem, 6vw, 5rem);
      color: rgba(59, 130, 246, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      opacity: 0;
      transition: opacity 0.6s ease 0.3s;
    }

    .main-carousel-slide.active .main-carousel-image {
      opacity: 1;
    }

    /* Carousel Navigation */
    .main-carousel-nav {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      z-index: 3;
    }

    .main-carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .main-carousel-dot.active {
      background: #3B82F6;
      border-color: #3B82F6;
      box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }

    /* Responsive */
    @media (max-width: 1199.98px) {
      .main-nav-menu {
        gap: 0.25rem;
      }
    }

    @media (max-width: 767.98px) {
      .main-carousel-content {
        text-align: center;
        padding: 0 1.5rem;
      }

      .main-carousel-image {
        margin-top: 2rem;
        height: clamp(250px, 35vw, 350px);
        font-size: clamp(2.5rem, 5vw, 4rem);
      }

      .main-carousel-subtitle {
        max-width: 100%;
      }
    }

    @media (max-width: 575.98px) {
      .main-logo {
        font-size: 1.5rem;
      }

      .main-logo-icon {
        font-size: 1.75rem;
      }

      .main-carousel-section {
        margin-top: 70px;
      }
    }

    .main-carousel-image img {
      width: 100%;
      height: 100%;
    }

    .services-section {
      background: #fff3e0;
      padding: 100px 0;
      position: relative;
    }

    .services-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.02) 0%, transparent 50%);
      pointer-events: none;
    }

    .services-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      color: #0B1426;
      text-align: center;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .services-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: #64748B;
      text-align: center;
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .services-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 2.5rem 2rem;
      height: 100%;
      transition: all 0.4s ease;
      border: 1px solid rgba(59, 130, 246, 0.1);
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .services-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .services-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
      border-color: rgba(59, 130, 246, 0.2);
    }

    .services-card:hover::before {
      transform: scaleX(1);
    }

    .services-card-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
      border-radius: 16px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: #3B82F6;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .services-card:hover .services-card-image {
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      color: #ffffff;
    }

    .services-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
    }

    .services-card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0B1426;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .services-card-description {
      color: #64748B;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .services-load-more {
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      color: #ffffff;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .services-load-more:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
      color: #ffffff;
    }

    /* Team Section */
    .team-section {
      background: #fdfaf5;
      padding: 100px 0;
      text-align: center;
    }

    .team-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      color: #0B1426;
      margin-bottom: 1rem;
    }

    .team-subtitle {
      font-size: 1.1rem;
      color: #64748B;
      max-width: 600px;
      margin: 0 auto 4rem;
      line-height: 1.6;
    }

    /* Team Row */
    .team-row {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* Card */
    .team-card {
      width: 300px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      background: #fff;
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    }

    /* Image */
    .team-card-image {
      position: relative;
      width: 100%;
      height: 260px;
      overflow: hidden;
      border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }

    .team-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .team-card:hover img {
      transform: scale(1.05);
    }

    /* Social icons over image */
    .team-social {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      display: flex;
      gap: 12px;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .team-card:hover .team-social {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .team-social a {
      color: #fff;
      background: rgba(59, 130, 246, 0.9);
      font-size: 1rem;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .team-social a:hover {
      background: #1e3a8a;
      transform: scale(1.1);
    }

    /* Name & Role below image */
    .team-info {
      padding: 15px 10px 20px;
      text-align: center;
    }

    .team-card-name {
      font-size: 1.4rem;
      font-weight: 700;
      color: #0B1426;
      margin-bottom: 5px;
    }

    .team-card-designation {
      font-size: 1rem;
      font-weight: 500;
      color: #3B82F6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .team-card {
        width: 45%;
      }
    }

    @media (max-width: 576px) {
      .team-card {
        width: 90%;
      }
    }


    .whyus-section {
      background: #fff3e0;
      padding: 100px 0;
      position: relative;
    }

    .whyus-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .whyus-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      color: #0B1426;
      text-align: center;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .whyus-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: #64748B;
      text-align: center;
      margin-bottom: 5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .whyus-feature {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .whyus-feature-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      color: #ffffff;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1.5rem;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    }

    .whyus-feature:hover .whyus-feature-icon {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    }

    .whyus-feature-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #0B1426;
      margin-bottom: 1rem;
    }

    .whyus-feature-description {
      color: #64748B;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .whyus-stats {
      background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
      border-radius: 20px;
      padding: 3rem 2rem;
      margin-top: 4rem;
      text-align: center;
    }

    .whyus-stat-item {
      margin-bottom: 2rem;
    }

    .whyus-stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #3B82F6;
      display: block;
      margin-bottom: 0.5rem;
    }

    .whyus-stat-label {
      color: #64748B;
      font-size: 0.95rem;
      font-weight: 500;
    }

    /* About Us Section */
    .about-section {
      background: #fff3e0;
      padding: 100px 0;
      position: relative;
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(30, 64, 175, 0.02) 0%, transparent 50%);
      pointer-events: none;
    }

    .about-content {
      position: relative;
      z-index: 2;
    }

    .about-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      color: #0B1426;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .about-subtitle {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: #3B82F6;
      font-weight: 600;
      margin-bottom: 2rem;
    }

    .about-description {
      color: #64748B;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .about-highlights {
      list-style: none;
      padding: 0;
      margin-bottom: 2.5rem;
    }

    .about-highlight-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      color: #64748B;
      font-size: 1rem;
    }

    .about-highlight-icon {
      color: #3B82F6;
      margin-right: 1rem;
      font-size: 1.2rem;
      width: 20px;
    }

    .about-cta {
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      color: #ffffff;
      padding: 1rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .about-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
      color: #ffffff;
    }

    .about-image {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: #3B82F6;
      position: relative;
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    /* Footer Section */
    .footer-section {
      background: linear-gradient(135deg, #0B1426 0%, #1B2951 50%, #2A4073 100%);
      color: #ffffff;
      padding: 60px 0 20px;
      position: relative;
    }

    .footer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, #3B82F6 50%, transparent 100%);
    }

    .footer-brand {
      margin-bottom: 2rem;
    }

    .footer-logo {
      font-size: 2rem;
      font-weight: 800;
      color: #ffffff;
      text-decoration: none;
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .footer-logo-icon {
      margin-right: 0.75rem;
      font-size: 2.2rem;
      background: linear-gradient(135deg, #3B82F6 0%, #ffffff 50%, #60A5FA 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .footer-description {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      font-size: 0.95rem;
      max-width: 300px;
    }

    .footer-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-link {
      margin-bottom: 0.75rem;
    }

    .footer-link a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }

    .footer-link a:hover {
      color: #3B82F6;
      padding-left: 5px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }

    .footer-contact-icon {
      color: #3B82F6;
      margin-right: 0.75rem;
      font-size: 1.1rem;
      width: 16px;
      margin-top: 2px;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer-social-link {
      width: 40px;
      height: 40px;
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .footer-social-link:hover {
      background: #3B82F6;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {

      .whyus-section,
      .about-section {
        padding: 60px 0;
      }

      .footer-section {
        padding: 40px 0 15px;
      }

      .whyus-stats {
        padding: 2rem 1.5rem;
      }

      .about-image {
        height: 300px;
        font-size: 3rem;
        margin-top: 2rem;
      }

      .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
      }

      .footer-description {
        max-width: 100%;
      }
    }

    @media (max-width: 576px) {

      .whyus-subtitle,
      .about-description {
        margin-bottom: 3rem;
      }

      .whyus-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
      }

      .whyus-stat-number {
        font-size: 2rem;
      }
    }

    /* Fade-in Animation Base */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Apply to section elements */
    .services-card,
    .team-card,
    .whyus-feature,
    .whyus-stats,
    .about-content,
    .about-image,
    .footer-brand,
    .footer-links,
    .footer-title {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .services-card.visible,
    .team-card.visible,
    .whyus-feature.visible,
    .whyus-stats.visible,
    .about-content.visible,
    .about-image.visible,
    .footer-brand.visible,
    .footer-links.visible,
    .footer-title.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delays for multiple items */
    .services-card:nth-child(1) {
      transition-delay: 0.1s;
    }

    .services-card:nth-child(2) {
      transition-delay: 0.2s;
    }

    .services-card:nth-child(3) {
      transition-delay: 0.3s;
    }

    .services-card:nth-child(4) {
      transition-delay: 0.4s;
    }

    .team-card:nth-child(1) {
      transition-delay: 0.1s;
    }

    .team-card:nth-child(2) {
      transition-delay: 0.2s;
    }

    .team-card:nth-child(3) {
      transition-delay: 0.3s;
    }

    .team-card:nth-child(4) {
      transition-delay: 0.4s;
    }

    .whyus-feature:nth-child(1) {
      transition-delay: 0.1s;
    }

    .whyus-feature:nth-child(2) {
      transition-delay: 0.2s;
    }

    .whyus-feature:nth-child(3) {
      transition-delay: 0.3s;
    }

    .whyus-feature:nth-child(4) {
      transition-delay: 0.4s;
    }