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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #2d3748;
        overflow-x: hidden;
      }

      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Header Styles */
      .header {
        background: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
      }

      .header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
      }

      .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 0;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .logo img {
        max-width: 240px;
        height: auto;
      }

      .nav-menu {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }

      .nav-link {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 8px 0;
      }

      .nav-link:hover {
        color: #16a085;
        transform: translateY(-2px);
      }

      .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #16a085, #2ecc71);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      .nav-link:hover::before {
        width: 100%;
      }

      .header-cta {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .phone-info {
        text-align: right;
      }

      .phone-label {
        font-size: 0.875rem;
        color: #718096;
        display: block;
      }

      .phone-number {
        font-size: 1.4rem;
        font-weight: 700;
        color: #e53e3e;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .phone-number:hover {
        color: #c53030;
        transform: scale(1.05);
      }

      .cta-btn {
        background: linear-gradient(135deg, #16a085, #2ecc71);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
      }

      .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
      }

      .mobile-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
      }

      .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #4a5568;
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 2px;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(135deg, #0f4c75 0%, #16a085 50%, #2ecc71 100%);
        color: white;
        padding: 180px 0 120px;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
      }

      .hero-container {
        position: relative;
        z-index: 2;
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
        align-items: center;
      }

      .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.15);
        color: #a7f3d0;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .hero-title {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff, #a7f3d0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #d1fae5;
        font-weight: 500;
      }

      /* Removed .hero-description and added .hero-features */
      /*
      .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        color: #a7f3d0;
        line-height: 1.7;
      }
      */

      .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns on desktop */
        gap: 1.5rem; /* Spacing between items */
        margin-bottom: 2.5rem; /* Maintain similar spacing as old description */
        justify-items: center; /* Center grid items horizontally within their cells */
      }

      .hero-feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem; /* Space between icon and text */
        font-size: 1.1rem;
        color: #d1fae5; /* Light green color */
        font-weight: 500;
        text-align: left;
      }

      .hero-feature-item .feature-icon {
        font-size: 1.6rem; /* Slightly larger icon */
        line-height: 1;
        flex-shrink: 0; /* Prevent icon from shrinking */
      }

      .hero-buttons {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-block;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .btn-primary {
        background: #e53e3e;
        color: white;
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
      }

      .btn-primary:hover {
        background: #c53030;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(229, 62, 62, 0.5);
      }

      .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
      }

      .hero-visual {
        position: relative;
      }

      .hero-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: rotate(3deg);
        transition: all 0.3s ease;
      }

      .hero-image-container:hover {
        transform: rotate(0deg) scale(1.02);
      }

      .image-placeholder {
        background: linear-gradient(135deg, #f7fafc, #edf2f7);
        /* border: 3px dashed #a0aec0; */
        border-radius: 16px;
        /* padding: 3rem 2rem; */
        text-align: center;
        color: #4a5568;
        font-weight: 600;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        line-height: 1.5;
      }

      .image-placeholder:hover {
        border-color: #16a085;
        background: linear-gradient(135deg, #f0fff4, #e6fffa);
        color: #16a085;
        transform: scale(1.02);
      }

      /* Stats Section */
      .stats {
        background: #ffffff;
        padding: 80px 0;
        border-bottom: 1px solid #e2e8f0;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        text-align: center;
      }

      .stat-item {
        padding: 2rem 1rem;
        border-radius: 16px;
        transition: all 0.3s ease;
      }

      .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: #16a085;
        display: block;
        margin-bottom: 0.5rem;
      }

      .stat-label {
        font-size: 1.1rem;
        color: #4a5568;
        font-weight: 500;
      }

      /* About Section */
      .about {
        padding: 120px 0;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
      }

      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 6rem;
        align-items: center;
      }

      .about-visual {
        position: relative;
      }

      .about-image {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        position: relative;
      }

      .about-image .image-placeholder {
        height: auto;
        border-radius: 0;
        border: none;
        background: linear-gradient(135deg, #16a085, #2ecc71);
        color: white;
        font-size: 1.2rem;
      }

      .about-content h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .about-content h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 5px;
        background: linear-gradient(90deg, #16a085, #2ecc71);
        border-radius: 3px;
      }

      .about-text {
        font-size: 1.2rem;
        color: #4a5568;
        margin-bottom: 2.5rem;
        line-height: 1.8;
      }

      .features-list {
        display: grid;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
      }

      .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .feature-item:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      }

      .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #16a085, #2ecc71);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
      }

      .feature-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 0.5rem;
      }

      .feature-content p {
        color: #4a5568;
        line-height: 1.6;
      }

      /* Services Section */
      .services {
        padding: 120px 0;
        background: #ffffff;
      }

      .section-header {
        text-align: center;
        margin-bottom: 5rem;
      }

      .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #16a085, #2ecc71);
        color: white;
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
      }

      .section-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }

      .section-subtitle {
        font-size: 1.3rem;
        color: #4a5568;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }

      .service-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        border: 1px solid #e2e8f0;
        position: relative;
      }

      .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
      }

      .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #16a085, #2ecc71);
      }

      .service-image {
        height: auto;
        position: relative;
        overflow: hidden;
      }

      .service-image .image-placeholder {
        height: 100%;
        border-radius: 0;
        border: none;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        font-size: 1.1rem;
      }

      .service-body {
        padding: 2.5rem;
      }

      @media screen and (max-width: 768px) {
        .service-body {
          padding-inline: 1.5rem;
          padding-block: 1rem;
        }
        
      }

      .service-body h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 1rem;
      }

      .service-body p {
        color: #4a5568;
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 1.1rem;
      }

      .service-btn {
        background: linear-gradient(135deg, #16a085, #2ecc71);
        color: white;
        padding: 12px 28px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
      }

      .service-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(22, 160, 133, 0.3);
      }

      /* Projects Section */
      .projects {
        padding: 120px 0;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }

      .project-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
      }

      .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      }

      .project-image {
        height: 220px;
        position: relative;
        overflow: hidden;
      }

      .project-image .image-placeholder {
        height: 100%;
        border-radius: 0;
        border: none;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        font-size: 1rem;
      }

      .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(22, 160, 133, 0.8), rgba(46, 204, 113, 0.8));
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
      }

      .project-card:hover .project-overlay {
        opacity: 1;
      }

      .project-content {
        padding: 2rem;
        text-align: center;
      }

      .project-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 0.5rem;
      }

      .project-content p {
        color: #4a5568;
        font-size: 0.95rem;
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
        color: white;
        padding: 100px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
      }

      .cta-content {
        position: relative;
        z-index: 2;
      }

      .cta-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }

      .cta-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        color: #fed7d7;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-phone {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        text-decoration: none;
        display: inline-block;
        padding: 20px 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 60px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
      }

      .cta-phone:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* Footer */
      .footer {
        background: #1a202c;
        color: white;
        padding: 80px 0 30px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-brand h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #16a085;
        margin-bottom: 1rem;
      }

      .footer-brand p {
        color: #a0aec0;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
      }

      .footer-contact {
        margin-bottom: 1.5rem;
      }

      .footer-phone {
        color: #e53e3e;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.3rem;
        transition: color 0.3s ease;
      }

      .footer-phone:hover {
        color: #c53030;
      }

      .footer-section h4 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #e2e8f0;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 0.8rem;
      }

      .footer-links a {
        color: #a0aec0;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
      }

      .footer-links a:hover {
        color: #16a085;
        padding-left: 5px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #2d3748;
        color: #718096;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .hero-content {
          grid-template-columns: 1fr;
          gap: 3rem;
          text-align: center;
        }
        
        .about-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        
        .services-grid {
          grid-template-columns: 1fr;
        }
        
        .projects-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 1100px) {
        .mobile-toggle {
          display: flex;
        }

        .nav-container {
          padding: 0.8rem 0; /* Slightly less padding for a compact header */
        }
        
        .logo img { /* Target the image directly within the logo div */
          max-width: 200px; /* Adjust this value as needed for optimal mobile size */
          height: auto; /* Maintain aspect ratio */
        }

        .header-cta {
          display: none; /* Hide the phone info and Get Quote button on mobile */
        }

        .nav-menu {
          /* Mobile menu styling */
          display: flex; /* Keep flex for column layout */
          flex-direction: column;
          position: absolute;
          top: 100%; /* Position below the header */
          left: 0;
          width: 100%;
          background: #ffffff;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          padding: 1rem 0;
          border-top: 1px solid #eee;
          z-index: 999; /* Ensure it's above other content */
          /* Animation properties */
          transform: translateY(-10px); /* Start slightly above its final position */
          opacity: 0;
          pointer-events: none; /* Disable interactions when hidden */
          transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }

        .nav-menu.active {
          transform: translateY(0); /* Slide into view */
          opacity: 1;
          pointer-events: auto; /* Enable interactions when visible */
        }

        .nav-menu li {
          width: 100%;
          text-align: center;
          padding: 0.5rem 0;
        }

        .nav-menu .nav-link {
          padding: 12px 0; /* More touch-friendly padding */
          display: block; /* Make links fill the width */
          font-size: 1.1rem; /* Slightly larger font for readability */
        }

        .nav-link::before {
          /* Adjust underline for mobile menu items */
          width: 50%; /* Shorter underline */
          left: 50%;
          transform: translateX(-50%);
        }
        
        .hero-title {
          font-size: 2.8rem;
        }
        
        .section-title {
          font-size: 2.5rem;
        }
        
        .cta-title {
          font-size: 2.5rem;
        }
        
        .projects-grid {
          grid-template-columns: 1fr;
        }
        
        .stats-grid {
          grid-template-columns: 1fr;
        }
        
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        
        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }
        
        .btn {
          width: 100%;
          max-width: 300px;
        }
      }

      @media (max-width: 480px) {
        .container {
          padding: 0 16px;
        }
        
        .hero {
          padding: 140px 0 80px;
        }
        
        .hero-title {
          font-size: 2.2rem;
        }
        
        .section-title {
          font-size: 2rem;
        }
        
        .cta-phone {
          font-size: 1.8rem;
          padding: 15px 25px;
        }
        
        .services, .projects, .about {
          padding: 80px 0;
        }
      }

      /* Animation Classes */
      .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
      }

      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .fade-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: all 0.8s ease;
      }

      .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .fade-right {
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.8s ease;
      }

      .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .scale-in {
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.8s ease;
      }

      .scale-in.visible {
        opacity: 1;
        transform: scale(1);
      }