/* ==== Reset & Base ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Lora', Serif;
    color: #f9f9f9;
    background-color: #0c1f1e;
    line-height: 1.6;
  }
  h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
  }
  a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
  }
  ul {
    list-style: none;
  }
  img {
    max-width: 100%;
    display: block;
  }
  
  /* ==== Container ==== */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
  }
  
/* Navbar - Glassmorphism Effect */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 30px;
    background: #1f4c3a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.logo img {
    height: 90px;
    border-radius: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #00d6a2;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn {
    padding: 10px 20px;
    background: #00d6a2;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.contact-btn:hover {
    background: white;
    color: black;
}

.dark-mode-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}
/* Toggle Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(1, 116, 66, 0.9);
    text-align: center;
    padding: 20px 0;
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.mobile-menu ul li a:hover {
    color: skyblue;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.show {
        display: block;
    }
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #20b958;
    transform: scale(1.1);
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

  
  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .hero-title span {
    color: #ff7a18;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
    
  .btn-main, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
  }
  .btn-main {
    background-color: #00d6a2;
    color: #0c1f1e;
  }
  .btn-main:hover {
    background-color: #00b58c;
  }
  .btn-secondary {
    border: 2px solid #00d6a2;
    color: #00d6a2;
  }
  .btn-secondary:hover {
    background-color: #00d6a2;
    color: #0c1f1e;
  }
  
  .about-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
  }
  
  .about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .about-img {
    position: relative;
    flex: 1 1 45%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s ease;
  }
  
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 20px;
  }
  
  .about-img:hover img {
    transform: scale(1.05);
  }
  
  .about-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    z-index: 1;
  }
  
  .about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .green-box {
    background-color: #28a745; /* Bootstrap green */
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    flex: 1 1 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .green-box:hover {
    transform: translateY(-5px);
  }
  
  .green-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .green-box p {
    margin: 0;
    font-size: 1rem;
  }
  

  
  .about-text {
    flex: 1 1 45%;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    color: #222;
  }
  
  .about-text p {
    font-size: 1rem;
    color: #464545;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-wrapper {
      flex-direction: column;
    }
  
    .about-img, .about-text {
      flex: 1 1 100%;
    }
  
    .stat-box {
      font-size: 0.9rem;
      padding: 0.5rem 0.8rem;
    }
  
    .stat-box h3 {
      font-size: 1rem;
    }
  }
  
  
  
  /* Services Section Styling */
.services-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #014421;
    animation: fadeInDown 1s ease;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    animation: fadeInUp 1.5s ease;
  }
  
  .service-card {
    background: white;
    border: 1px solid #ddd;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .service-card:hover {
    background-color: #014421;
    color: #fff;
    transform: translateY(-5px);
  }
  
  .service-card:hover .service-icon {
    color: #fff;
  }
  
  .service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #014421;
    transition: color 0.4s ease;
  }
  
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color:#20b958
  }
  
  .service-card p {
    font-size: 14px;
    color: #666;
  }
  
  .service-card:hover p {
    color: #e0e0e0;
  }
  
  .btn-main {
    display: inline-block;
    margin-top: 30px;
    background: #014421;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .btn-main:hover {
    background: #022f2f;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    from {
      transform: translateY(-30px);
      opacity: 0;
    }
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  /* Responsive Tweaks */
  @media (max-width: 600px) {
    .service-card {
      padding: 20px 15px;
    }
  
    .service-icon {
      font-size: 32px;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  
  
 /* Portfolio Section Styling */
.portfolio-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .portfolio-title {
    font-size: 2.5rem;
    color: #014421;
    margin-bottom: 10px;
  }
  
  .portfolio-subtitle {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .portfolio-card {
    background: #004d26;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  
  .card-image-frame {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f7f7f7;
  }
  
  .card-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .portfolio-info {
    padding: 20px;
    background-color: #004d26;
    color: #fff;
    text-align: center;
  }
  
  .portfolio-info h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .portfolio-info p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .btn-projects {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 30px;
    background-color: #004d26;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 255, 150, 0); /* Start with no glow */
  }
  
  .btn-projects:hover {
    background-color: #00663d;
    box-shadow: 0 0 15px rgba(0, 255, 150, 0.6),
                0 0 25px rgba(0, 255, 150, 0.4),
                0 0 40px rgba(0, 255, 150, 0.2);
  }
  
  
  
  /* Responsive Tweaks */
  @media (max-width: 600px) {
    .portfolio-info h3 {
      font-size: 16px;
    }
  
    .portfolio-info p {
      font-size: 13px;
    }
  
    .portfolio-title {
      font-size: 2rem;
    }
  }
    
  .video-hero-section {
    width: 100%;
    padding: 20px;
  }
  
  .video-hero-wrapper {
    position: relative;
    width: 100%;
    height: 50vh; /* Updated height to 50% of viewport */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .video-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
  }
  
  .video-overlay-content h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .video-overlay-content p {
    font-size: 1rem;
  }
      
  
  
    
  
  .pricing-section {
    background: linear-gradient(to bottom right, #ffffff, #e0f7f1);
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #014421;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #014421;
  }
  
  /* Toggle Switch Styling */
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider.round {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: .4s;
  }
  .slider.round:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  input:checked + .slider.round {
    background-color: #00aaa0;
  }
  input:checked + .slider.round:before {
    transform: translateX(24px);
  }
  
  /* Pricing Cards Grid */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .pricing-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00aaa0;
  }
  
  .pricing-card.featured {
    border-color: #00aaa0;
    animation: glow 2.5s ease-in-out infinite;
  }
  
  @keyframes glow {
    0% { box-shadow: 0 0 10px #00aaa066; }
    50% { box-shadow: 0 0 20px #00aaa0cc; }
    100% { box-shadow: 0 0 10px #00aaa066; }
  }
  
  .pricing-card h3 {
    font-size: 1.4rem;
    color: #014421;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 2rem;
    font-weight: bold;
    color: #00aaa0;
    margin-bottom: 20px;
  }
  
  /* Feature List */
  .features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px dashed #e0e0e0;
    line-height: 1.4;
  }
  
  /* Plan Button */
  .plan-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 20px;
    background-color: #00aaa0;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .plan-btn:hover {
    background-color: #017d74;
  }
  
  /* Ribbon */
  .ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #ff9800;
    color: #fff;
    padding: 6px 50px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Badge */
  .badge {
    background-color: #005e24;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px auto;
    text-transform: uppercase;
    animation: popIn 0.8s ease-in-out;
  }
  
  @keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  
  /* Responsive */
  @media screen and (max-width: 480px) {
    .features li {
      font-size: 0.9rem;
    }
  
    .price {
      font-size: 1.5rem;
    }
  }
  
  
  .cta-section {
    background: linear-gradient(to bottom right, #f0fff4, #e0f7f1);
    padding: 100px 20px 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  
  .cta-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    color: #014421;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #00aaa0;
    color: white;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 170, 160, 0.2);
  }
  
  .cta-btn:hover {
    background-color: #017d74;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 170, 160, 0.3);
  }
  
  /* SVG Wave Background */
  .wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }
  
  .cta-section .container {
    position: relative;
    z-index: 1;
  }
  
  /* Responsive */
  @media screen and (max-width: 600px) {
    .cta-section h2 {
      font-size: 1.8rem;
    }
    .cta-section p {
      font-size: 1rem;
    }
    .cta-btn {
      padding: 12px 24px;
    }
  }
      
  
  /* Footer Base */
.footer {
    background-color: #062f23;
    color: #d6f7ee;
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  
  /* Footer Columns */
  .footer-col {
    flex: 1 1 220px;
    min-width: 200px;
  }
  
  .footer-col h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .footer-col p {
    color: #b8d8ce;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: #d6f7ee;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #00aaa0;
  }
  
  /* Social Icons */
  .social-icons a {
    display: inline-block;
    background-color: #0d4032;
    color: #d6f7ee;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
  }
  
  /* Newsletter Container */
.newsletter {
  text-align: left;
  max-width: 300px;
  color: #fff;
}

/* Newsletter Form */
.newsletter form {
  display: flex;
  margin-top: 10px;
  max-width: 100%;
  background: white;
  border-radius: 5px;
  overflow: hidden;
}

/* Email Input */
.newsletter input[type="email"] {
  padding: 12px 15px;
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  border-radius: 5px 0 0 5px;
}

/* Submit Button */
.newsletter button {
  background-color: #00aaa0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

/* Hover effect */
.newsletter button:hover {
  background-color: #017d74;
}

/* Icon inside button (if using Font Awesome or similar) */
.newsletter button i {
  font-size: 16px;
  color: white;
}
  
  /* Bottom Bar */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #1a4a3a;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    color: #a9d1c7;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .newsletter form {
      width: 100%;
    }
  
    .newsletter input {
      flex: 1 1 70%;
    }
  
    .newsletter button {
      flex: 1 1 30%;
    }
  }
  