
      :root {
        --red: #b31942;
        --red-dark: #8a0029;
        --red-light: #d94a6e;
        --blue: #0a3161;
        --blue-dark: #072347;
        --blue-light: #1a4a8a;
        --gold: #ffb142;
        --white: #ffffff;
        --off-white: #f8f9fa;
        --gray: #6c757d;
        --gray-light: #e9ecef;
        --gray-dark: #343a40;

        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
        --shadow-red: 0 4px 20px rgba(179, 25, 66, 0.25);

        --border-radius: 8px;
        --border-radius-lg: 12px;
        --border-radius-xl: 20px;

        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }

      body {
        font-family: "Inter", sans-serif;
        color: var(--gray-dark);
        line-height: 1.7;
        background-color: var(--off-white);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      h1 {
        font-size: 3.2rem;
        letter-spacing: -0.5px;
      }

      h2 {
        font-size: 2.5rem;
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
      }

      h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--red);
      }

      h2.text-center:after {
        left: 50%;
        transform: translateX(-50%);
      }

      h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }

      p {
        margin-bottom: 1.5rem;
        color: var(--gray);
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section {
        padding: 100px 0;
      }

      .section-dark {
        background-color: var(--blue);
        color: var(--white);
      }

      .section-light {
        background-color: var(--white);
      }

      .section-accent {
        background-color: var(--off-white);
      }

      .text-center {
        text-align: center;
      }

      .text-left {
        text-align: left;
      }

      .text-white {
        color: var(--white);
      }

      .text-red {
        color: var(--red);
      }

      .text-blue {
        color: var(--blue);
      }

      .text-gray {
        color: var(--gray);
      }

      .mb-1 {
        margin-bottom: 1rem;
      }
      .mb-2 {
        margin-bottom: 2rem;
      }
      .mb-3 {
        margin-bottom: 3rem;
      }
      .mb-4 {
        margin-bottom: 1rem;
      }

      .mt-1 {
        margin-top: 1rem;
      }
      .mt-2 {
        margin-top: 2rem;
      }
      .mt-3 {
        margin-top: 3rem;
      }
      .mt-4 {
        margin-top: 4rem;
      }

      /* Button Styles */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        border-radius: 50px;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
      }

      .btn-primary {
        background-color: var(--red);
        color: var(--white);
        box-shadow: var(--shadow-red);
      }

      .btn-primary:hover {
        background-color: var(--red-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(179, 25, 66, 0.4);
      }

      .btn-secondary {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
      }

      .btn-secondary:hover {
        background-color: var(--white);
        color: var(--blue);
        transform: translateY(-3px);
      }

      .btn-outline {
        background-color: transparent;
        color: var(--blue);
        border: 2px solid var(--blue);
      }

      .btn-outline:hover {
        background-color: var(--blue);
        color: var(--white);
        transform: translateY(-3px);
      }

      .btn-lg {
        padding: 16px 40px;
        font-size: 1.1rem;
      }

      .btn i {
        margin-right: 8px;
      }

      /* Header Styles */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(10, 49, 97, 0.95);
        backdrop-filter: blur(10px);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      header.scrolled {
        background-color: var(--blue);
        box-shadow: var(--shadow-lg);
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
      }

      .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--white);
      }

      .logo-img {
        height: 55px;
        width: auto;
        transition: var(--transition);
      }

      .logo:hover .logo-img {
        transform: scale(1.05);
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
      }

      .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        position: relative;
        padding: 8px 0;
        transition: var(--transition);
        white-space: nowrap;
      }

      .nav-links a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--red);
        transition: var(--transition);
      }

      .nav-links a:hover {
        color: var(--red-light);
      }

      .nav-links a:hover:after {
        width: 100%;
      }

      .nav-links a.active {
        color: var(--red-light);
      }

      .nav-links a.active:after {
        width: 100%;
      }

      .header-cta {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .mobile-toggle {
        display: none;
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
        z-index: 1001;
        margin-right: -70%;
      }

      /* Hero Slider */
      .hero-slider {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        margin-top: 91px;
      }

      .slides {
        position: relative;
        height: 100vh;
      }

      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
      }

      .slide.active {
        opacity: 1;
      }

      .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        background: linear-gradient(
          rgba(10, 49, 97, 0.85),
          rgba(10, 49, 97, 0.9)
        );
      }

      .slide-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        color: var(--white);
        padding: 0 20px;
        width: 100%;
      }

      .slide-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      }

      .slide-content p {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        animation: fadeInUp 1s ease 0.2s both;
      }

      .hero-buttons {
        animation: fadeInUp 1s ease 0.4s both;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center; /* horizontal center */
      }

      .slider-nav {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 3;
      }

      .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: var(--transition);
      }

      .slider-dot.active {
        background: var(--red);
        transform: scale(1.2);
      }

      /* About Section */
      .about-grid {
        /* display: grid; */
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .about-content {
        padding-right: 20px;
      }

      .about-image {
        position: relative;
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
      }

      .about-image:hover {
        transform: perspective(1000px) rotateY(0deg);
      }

      .about-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .about-image:hover img {
        transform: scale(1.05);
      }

      .image-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: var(--red);
        color: var(--white);
        padding: 15px 25px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-red);
        animation: pulse 2s infinite;
        text-align: center;
      }

      .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
      }

      .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border-left: 4px solid var(--red);
        height: 100%;
      }

      .feature-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
      }

      .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--red), var(--red-light));
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
      }

      .feature-item h4 {
        margin-bottom: 8px;
        color: var(--blue);
      }

      .feature-item p {
        margin-bottom: 0;
        font-size: 0.95rem;
      }

      /* Stats Section */
      .stats-section {
        background: linear-gradient(
          135deg,
          var(--blue) 0%,
          var(--blue-dark) 100%
        );
        color: var(--white);
        position: relative;
        overflow: hidden;
      }

      .stats-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("img/sction1.png");
        background-size: cover;
        background-position: center;
        opacity: 0.1;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 2;
      }

      .stat-item {
        text-align: center;
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
      }

      .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
      }

      .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--red);
        margin-bottom: 15px;
        display: block;
        line-height: 1;
      }

      .stat-item h3 {
        color: var(--white);
        margin-bottom: 8px;
      }

      .stat-item p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
      }

      /* Services Section */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .service-card {
        background: var(--white);
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .service-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--red), var(--blue));
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
      }

      .service-img {
        height: 220px;
        position: relative;
        overflow: hidden;
      }

      .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .service-card:hover .service-img img {
        transform: scale(1.1);
      }

      .service-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .service-content h3 {
        color: var(--blue);
        margin-bottom: 15px;
      }

      .service-content p {
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .service-content .btn {
        margin-top: auto;
        align-self: flex-start;
      }

      /* Mission Section */
      .mission-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .mission-card {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        padding: 40px 30px;
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        height: 100%;
      }

      .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
      }

      .mission-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--red), var(--blue));
      }

      .mission-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--white);
        font-size: 2rem;
        box-shadow: var(--shadow-md);
      }

      .mission-card h3 {
        color: var(--blue);
        margin-bottom: 15px;
      }

      .mission-card p {
        margin-bottom: 0;
      }

      /* Process Section */
      .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .process-step {
        text-align: center;
        padding: 40px 30px;
        background: var(--white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        position: relative;
        transition: var(--transition);
        height: 100%;
      }

      .process-step:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: var(--red);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 auto 25px;
        position: relative;
        z-index: 2;
      }

      .process-step h3 {
        color: var(--blue);
        margin-bottom: 15px;
      }

      .process-step p {
        margin-bottom: 0;
      }

      /* Contact Form Section */
      .contact-section {
        position: relative;
        background: linear-gradient(
          135deg,
          var(--off-white) 0%,
          var(--white) 100%
        );
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 50px;
      }

      .contact-info {
        padding: 20px 0;
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        padding: 25px;
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
      }

      .info-item:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-md);
      }

      .info-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--white);
        flex-shrink: 0;
      }

      .info-content h4 {
        color: var(--blue);
        margin-bottom: 8px;
      }

      .info-content p {
        margin-bottom: 5px;
      }

      .info-content .text-gray {
        font-size: 0.9rem;
        margin-bottom: 0;
      }

      .contact-form-container {
        background: var(--white);
        border-radius: var(--border-radius-xl);
        padding: 50px;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
      }

      .contact-form-container:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--red), var(--blue));
      }

      .form-group {
        margin-bottom: 25px;
      }

      .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--blue);
      }

      .form-control {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid var(--gray-light);
        border-radius: var(--border-radius);
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        transition: var(--transition);
        background: var(--off-white);
      }

      .form-control:focus {
        outline: none;
        border-color: var(--blue);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(10, 49, 97, 0.1);
      }

      .form-control::placeholder {
        color: var(--gray);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230A3161' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
      }

      /* Testimonials Slider */
      .testimonials-container {
        max-width: 800px;
        margin: 50px auto 0;
        position: relative;
      }

      .testimonial-slides {
        position: relative;
        min-height: 300px;
      }

      .testimonial-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s;
      }

      .testimonial-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
      }

      .testimonial {
        background: var(--white);
        padding: 50px;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-lg);
        text-align: center;
        position: relative;
      }

      .testimonial:before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 4rem;
        color: var(--red);
        font-family: serif;
        opacity: 0.2;
      }

      .testimonial-content {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 30px;
        line-height: 1.8;
        color: var(--gray-dark);
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
      }

      .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--red);
      }

      .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .author-info h4 {
        margin-bottom: 5px;
        color: var(--blue);
      }

      .author-info p {
        margin-bottom: 0;
        color: var(--gray);
      }

      .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
      }

      .testimonial-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--gray-light);
        cursor: pointer;
        transition: var(--transition);
      }

      .testimonial-dot.active {
        background: var(--red);
        transform: scale(1.2);
      }

      .testimonial-arrows {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
      }

      .testimonial-arrow {
        background: var(--red);
        color: var(--white);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        pointer-events: all;
        box-shadow: var(--shadow-md);
      }

      .testimonial-arrow:hover {
        background: var(--red-dark);
        transform: scale(1.1);
      }

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--blue-dark) 60%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
  /* Adjust section height as needed */
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Video container for background */
.cta-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Fixed: Video center alignment with face preservation */
.cta-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT: Adjust this value to focus on faces */
  object-position: 50% 30%; /* 50% horizontal, 30% vertical (adjust as needed) */
}

/* Alternative: If you want to center vertically with scale */
/*
.cta-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
*/

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.cta-content h2 {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-section {
    min-height: 500px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
  
  /* Adjust video position for mobile */
  .cta-video-bg {
    object-position: 50% 25%;
  }
}

      /* Footer */
      footer {
        background: var(--blue-dark);
        color: var(--white);
        padding: 80px 0 30px;
        position: relative;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px;
        margin-bottom: 50px;
      }

      .footer-logo {
        margin-bottom: 25px;
      }

      .footer-about p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 25px;
      }

      .footer-links h4,
      .footer-contact h4,
      .footer-newsletter h4 {
        color: var(--white);
        margin-bottom: 25px;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 15px;
      }

      .footer-links h4:after,
      .footer-contact h4:after,
      .footer-newsletter h4:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--red);
      }

      .footer-links ul {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
      }

      .footer-links a:hover {
        color: var(--red);
        transform: translateX(5px);
      }

      .footer-contact p {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
      }

      .footer-contact i {
        color: var(--red);
        width: 20px;
        font-size: 1.1rem;
        margin-top: 3px;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 25px;
      }

      .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-size: 1.1rem;
      }

      .social-links a:hover {
        background: var(--red);
        transform: translateY(-5px);
      }

      .footer-newsletter form {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .newsletter-input {
        padding: 14px 18px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        color: var(--white);
        font-size: 1rem;
        outline: none;
        transition: var(--transition);
      }

      .newsletter-input:focus {
        outline: none;
        border-color: var(--red);
        background: rgba(255, 255, 255, 0.15);
      }

      .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }

      .footer-newsletter .btn {
        padding: 14px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
      }

      .footer-bottom-links {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 15px;
        flex-wrap: wrap;
      }

      .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: var(--transition);
      }

      .footer-bottom-links a:hover {
        color: var(--red);
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      .animate {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .animate.show {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive Design */
      @media (max-width: 1100px) {
        .about-grid {
          gap: 40px;
        }

        .contact-grid {
          gap: 40px;
        }

        .features {
          gap: 20px;
        }
      }

      @media (max-width: 1024px) {
        h1 {
          font-size: 2.8rem;
        }
        h2 {
          font-size: 2.2rem;
        }
        .slide-content h1 {
          font-size: 3rem;
        }

        .about-grid,
        .contact-grid {
          grid-template-columns: 1fr;
        }

        .about-content {
          padding-right: 0;
        }

        .mission-cards,
        .services-grid {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .mobile-toggle {
          display: block;
        }

        .nav-links {
          position: fixed;
          top: 91px;
          left: 0;
          width: 100%;
          background: var(--blue);
          flex-direction: column;
          padding: 25px;
          box-shadow: var(--shadow-lg);
          transform: translateY(-100%);
          opacity: 0;
          visibility: hidden;
          transition: var(--transition);
          gap: 20px;
          z-index: 999;
        }

        .nav-links.active {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }

        .header-cta .btn {
          display: none;
        }

        .slide-content h1 {
          font-size: 2.5rem;
        }
        .slide-content p {
          font-size: 1.1rem;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: flex-start;
        }

        .features {
          grid-template-columns: 1fr;
        }

        .section {
          padding: 80px 0;
        }

        .mission-cards,
        .services-grid,
        .stats-grid,
        .process-steps {
          grid-template-columns: 1fr;
        }

        .contact-form-container {
          padding: 30px;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }

        .testimonial-arrows {
          display: none;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      @media (max-width: 576px) {
        .container {
          padding: 0 15px;
        }
        h1 {
          font-size: 2.2rem;
        }
        h2 {
          font-size: 1.8rem;
        }

        .btn {
          padding: 12px 25px;
          font-size: 0.95rem;
        }

        .btn-lg {
          padding: 14px 30px;
        }

        .slide-content h1 {
          font-size: 2rem;
        }
        .slide-content p {
          font-size: 1rem;
        }

        .about-image {
          transform: none;
        }

        .features,
        .info-item {
          padding: 20px;
        }

        .service-card,
        .mission-card,
        .process-step {
          padding: 25px 20px;
        }

        .contact-form-container {
          padding: 25px 20px;
        }

        .testimonial {
          padding: 30px 20px;
        }

        .footer-grid {
          gap: 30px;
        }
      }

      @media (max-width: 400px) {
        h1 {
          font-size: 2rem;
        }
        h2 {
          font-size: 1.6rem;
        }
        h3 {
          font-size: 1.4rem;
        }

        .hero-buttons .btn {
          width: 100%;
          text-align: center;
          justify-content: center;
        }

        .cta-buttons .btn {
          width: 100%;
          max-width: 300px;
        }

        .stat-number {
          font-size: 2.8rem;
        }
      }

      /* Founder Section */
      .founder-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .founder-content h2 {
        margin-bottom: 0.5rem;
      }

      .founder-content h2:after {
        background: var(--red);
      }

      .founder-quote {
        position: relative;
        padding: 25px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
        border-left: 4px solid var(--red);
        margin: 30px 0;
      }

      .founder-quote p {
        font-size: 1.2rem;
        font-style: italic;
        color: var(--white);
        margin-bottom: 0;
        line-height: 1.8;
      }

      .fa-quote-left {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 1.5rem;
        opacity: 0.5;
      }

      .fa-quote-right {
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 1.5rem;
        opacity: 0.5;
      }

      .founder-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
      }

      .founder-info .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--border-radius);
        transition: var(--transition);
      }

      .founder-info .info-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(5px);
      }

      .info-icon-small {
        width: 45px;
        height: 45px;
        background: var(--red);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        flex-shrink: 0;
      }

      .founder-info h4 {
        margin-bottom: 5px;
        font-size: 1.1rem;
      }

      .founder-info p {
        margin-bottom: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
      }

      .text-gray-light {
        color: rgba(255, 255, 255, 0.7) !important;
      }

      .founder-mission p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
      }

      .founder-image {
        position: relative;
      }

      .founder-image .image-container {
        position: relative;
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
      }

      .founder-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .founder-image .image-container:hover img {
        transform: scale(1.05);
      }

      .founder-image .image-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: var(--red);
        color: var(--white);
        padding: 15px 25px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-red);
        text-align: left;
        max-width: 80%;
      }

      .founder-image .image-badge h4 {
        color: var(--white);
        margin-bottom: 5px;
      }

      .founder-image .image-badge p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
        font-size: 0.9rem;
      }

      .founder-contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .contact-item i {
        font-size: 1.2rem;
        width: 25px;
      }

      /* Responsive adjustments for founder section */
      @media (max-width: 1024px) {
        .founder-grid {
          gap: 40px;
        }

        .founder-image img {
          height: 450px;
        }
      }

      @media (max-width: 768px) {
        .founder-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .founder-image {
          order: -1;
        }

        .founder-image img {
          height: 400px;
        }

        .founder-quote p {
          font-size: 1.1rem;
        }
      }

      @media (max-width: 576px) {
        .founder-image img {
          height: 350px;
        }

        .founder-quote {
          padding: 20px;
        }

        .founder-quote p {
          font-size: 1rem;
        }
      }
    