   /* Nav Menu */
   header {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logoo {
    flex-shrink: 0;
}

.logoo img {
    height: 60px;
}

/* Desktop navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-item {
    position: relative;
}

.nav-button {
  all: unset; /* Removes default button styles */
    display: flex;
    align-items: center;
    color: #374151;
    padding: 0.5rem 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-button:hover {
    color: #111827;
}

.nav-link {
    color: #374151;
    padding: 0.5rem 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #111827;
}

.chevron-icon {
    margin-left: 0.25rem;
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.rotate {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 12rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
    display: none;
}

.dropdown.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #000;
}

.dropdown-item:hover {
    background-color: #214150;
    color: #fff;
    border-radius: 0.375rem;
}

/* CTA buttons */
.cta-buttons {
    display: none;
}

@media (min-width: 768px) {
    .cta-buttons {
        display: flex;
        gap: 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.btn-outline {
    border: 1px solid #821928;
    color: #000;
    background-color: white;
}

.btn-outline:hover {
    background-color: #eff6ff;
}

.btn-primary {
    border: 1px solid transparent;
    color: white;
    background-color: #821928;
}

.btn-primary:hover {
    background-color: #214150;
}

/* Mobile menu button */
.mobile-menu-button {
  all: unset; /* Removes default button styles */
    display: flex;
    padding: 0.5rem;
    color: #374151;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button:hover {
    color: #111827;
    background-color: #f3f4f6;
    border-radius: 0.375rem;
}

.mobile-menu-icon {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 0.5rem;
    background-color: white;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-item {
    margin-bottom: 0.25rem;
}

.mobile-nav-button {
  all: unset; /* Removes default button styles */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    border-radius: 0.375rem;
}

.mobile-nav-button:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    border-radius: 0.375rem;
}

.mobile-nav-link:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.mobile-dropdown {
    padding-left: 1rem;
    margin-top: 0.25rem;
    display: none;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
    border-radius: 0.375rem;
}

.mobile-dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.mobile-cta {
    padding: 1rem 0.75rem;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
}

/*Nav Section Ends */










:root {
    --primary: #821928;
    --primary-dark: #214150;
    --secondary: #334155;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }


  /* Hero Section */
  .hero {
    background-color: var(--light);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-content h1 span {
    color: var(--primary);
  }

  .hero-content p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
  }

  .hero-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: background-color 0.3s;
  }

  .hero-btn:hover {
    background-color: var(--primary-dark);
  }

  .hero-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
  }

  .hero-btn:hover i {
    transform: translateX(4px);
  }

  .hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }

  /* Stats Section */
  .stats {
    background-color: var(--primary);
    color: white;
    padding: 30px 0;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }

  .stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-item p {
    font-size: 14px;
    opacity: 0.9;
  }

  /* Services Section */
  .services {
    padding: 80px 0;
    background-color: var(--light);
  }

  .section-header {
    margin-bottom: 50px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
  }

  .service-card:hover {
    transform: translateY(-10px);
  }

  .service-content {
    padding: 25px;
  }

  .service-badge {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-desc {
    color: var(--gray);
    margin-bottom: 20px;
  }

  .service-btn {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
  }

  .service-btn:hover {
    background-color: var(--primary);
    color: white;
  }

  /* Process Section */
  .process {
    padding: 80px 0;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .process-item {
    text-align: center;
  }

  .process-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
  }

  .process-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .process-desc {
    color: var(--gray);
    font-size: 14px;
  }

  .process-bar {
    height: 4px;
    background-color: var(--primary);
    margin-top: 20px;
    border-radius: 2px;
  }

  /* Features Section */
  .features {
    padding: 80px 0;
    background-color: var(--light);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    z-index: 0;
  }

  .feature-icon {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
  }

  .feature-title {
    position: relative;
    z-index: 1;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .feature-desc {
    position: relative;
    z-index: 1;
    color: var(--gray);
    font-size: 14px;
  }

  /* Projects Section */
  .projects {
    padding: 80px 0;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .project-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
  }

  .project-image {
    height: 200px;
    overflow: hidden;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .project-card:hover .project-image img {
    transform: scale(1.1);
  }

  .project-content {
    padding: 20px;
  }

  .project-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .project-location {
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .project-location i {
    margin-right: 5px;
    color: var(--primary);
  }

  .project-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--gray-light);
    padding-top: 15px;
  }

  .project-stat {
    text-align: center;
  }

  .project-stat-value {
    font-weight: 600;
    color: var(--primary);
  }

  .project-stat-label {
    font-size: 12px;
    color: var(--gray);
  }

  /* Testimonials Section */
  .testimonials {
    padding: 80px 0;
    background-color: var(--light);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
  }

  .testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    position: relative;
  }

  .testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: rgba(249, 115, 22, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }

  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-info h4 {
    font-size: 16px;
  }

  .testimonial-info p {
    font-size: 14px;
    color: var(--gray);
  }

  .testimonial-rating {
    margin-top: 10px;
    color: #ffc107;
  }

  /* CTA Section */
  .cta {
    padding: 40px 0;
    background-color: var(--primary);
    color: white;
  }

  .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .cta-content p {
    opacity: 0.9;
  }

  .cta-btn {
    background-color: var(--dark);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: background-color 0.3s;
  }

  .cta-btn:hover {
    background-color: black;
  }

  /* FAQ Section */
  .faq {
    padding: 80px 0;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .accordion {
    margin-top: 50px;
  }

  .accordion-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 15px;
  }

  .accordion-header {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
  }

  .accordion-icon {
    transition: transform 0.3s;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--gray);
  }

  .accordion-content-inner {
    padding: 0 0 20px;
  }

  .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
  }

  .accordion-item.active .accordion-content {
    max-height: 200px;
  }

 
  

  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 36px;
    }

    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {

    .hero-container {
      grid-template-columns: 1fr;
    }

    .hero-image {
      order: -1;
    }

    .stats-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .cta-container {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }

    .countdown {
      flex-wrap: wrap;
    }

    .subscribe-form {
      flex-direction: column;
    }
  }

  @media (max-width: 576px) {
    .process-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    animation: fadeIn 1s ease forwards;
  }

  .fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.2s;
  }

  .fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.4s;
  }

  .fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
  }

  /* Scroll Animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }




  /* Footer Section Starts */

  .footer {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 70px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #821928;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
    position: relative;
  }
  
  .footer-column ul li a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #214150;
  }
  
  /* Dropdown Styles */
  .ddropdown {
    position: relative;
  }
  
  .ddropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .ddropdown-toggle .fa {
    font-size: 10px;
    color: #555;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-toggle {
    color: #214150;
  }
  
  .ddropdown:hover .ddropdown-toggle .fa {
    transform: rotate(180deg);
    color: #214150;
  }
  
  .ddropdown-menu {
    display: none;
    position: relative;
    left: 0;
    background-color: #fff;
    min-width: 100%;
    border-radius: 6px;
    z-index: 10;
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .ddropdown-menu li {
    margin-bottom: 0;
    padding: 0;
  }
  
  .ddropdown-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .ddropdown-menu li a:hover {
    background-color: #f5f9ff;
    color: #214150;
  }
  
  .newsletter {
    max-width: 400px;
  }
  
  .newsletter h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f5f9ff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .newsletter-input:focus {
    outline: none;
  }
  
  .newsletter-button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 24px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .newsletter-button:hover {
    background-color: #333;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .contact-column p {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-right: 50px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  
  .copyright {
    color: #555;
    font-size: 14px;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    color: #111;
    font-size: 18px;
    transition: color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: #555;
  }
  
  @media (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter {
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
  
    .ddropdown-menu {
        position: static;
        background-color: #fafafa;
        min-width: 100%;
        border-radius: 4px;
        margin-top: 0;
        padding: 8px 0;
        opacity: 1;
        transform: none;
    }
  
    .ddropdown:hover .ddropdown-menu {
        display: block;
    }
  }
  
/* Footer Section End's */