:root {
    --primary-color: #2d79f3;
    --secondary-color: #063e9e;
    --accent-color: #ff7a01;
    --highlight-green: #4bf32d;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #F1F3E0;        /* Main page background */
    --header-bg: #D2DCB6;       /* Header background */
    --footer-bg: #D2DCB6;       /* Footer background */
    --section-bg: #f0f4f8;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

header, footer {
    background-color: var(--header-bg);
    padding: 15px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====================== 
         HEADER
====================== */
        .header {
            background-color: #31694E;
            padding: 8px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 0px;
            border-bottom: 0px solid #eaeaea;
            padding: 5px 35px
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: var(--transition);
        }

        .language-social-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
            padding: 0;
        }

        .social-links span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-color);
        }

        .social-links a {
            color: var(--text-color);
            font-size: 16px;
            transition: var(--transition);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .social-links a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
            background-color: rgba(26, 95, 156, 0.1);
        }

        .header-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 5%; 
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
            list-style: none;
            position: relative;
            left: 20px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #444;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            padding: 3px 0;
            position: relative;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover {
            color: #1a5f9c;
        }

        .nav-menu a.active {
            color: #1a5f9c;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1.5px;
            background: #1a5f9c;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after, 
        .nav-menu a.active::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-line {
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            display: block;
            margin: 5px auto;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 1000;
            padding: 80px 20px 20px;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-nav-links .med-import-btn {
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }

        .mobile-nav-links a.active {
            color: var(--primary-color) !important;
            position: relative;
         }

.mobile-nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

/* =========================
   Mobile Responsive Styles
   ========================= */
        @media (max-width: 992px) {
            .language-social-container {
                gap: 15px;
            }
            
            .nav-menu {
                gap: 8px;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .language-social-container {
                order: 3;
                width: 100%;
                justify-content: center;
            }
            
            .header-bottom {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .logo img {
                height: 60px;
            }
        }

        @media (max-width: 576px) {
            .language-selector {
                gap: 8px;
            }
            
            .social-links {
                gap: 8px;
            }
            
            .logo img {
                height: 50px;
            }
            
            .social-links span {
                display: none;
            }
        }

        /* Hamburger Animation */
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

   /*--====================== 
           Hero Content
     ======================*/
.hero {
    position: relative;
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 5%;
    transform: translateY(-50%);
    color: var(--light-text);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.7rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-green {
    color: var(--highlight-green);
}

.tagline {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    left: -7%;
    top: -7px;
}

@media (max-width: 768px) {

  .hero-content {
    top: 30%;
    left: 0;                 /* start from very left */
    transform: translateY(-50%);
    padding-left: 1px;      /* small safe gap */
  }

  .hero-content img {
    max-width: 200px;
    margin: 0;
    display: block;
  }
}

   /*====================== 
           About us
     ======================*/
.abt-us{
      background-color: #F1F3E0;
}

.intro-title {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 0rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #26385b;
  letter-spacing: 0.5px;
}

.intro-info {
  background: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #2c3e50;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.learnn-more-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  background: linear-gradient(45deg, #778873, #A1BC98);
  color: white;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.learnn-more-btn:hover {
  background: linear-gradient(45deg, #A1BC98, #778873);
  box-shadow: 0 6px 20px #778873;
}

/* =======================
       Products 
   ======================= */
/* Video Section */
.video-section {
    position: relative;
    padding: 60px 0;
  /*  background-color: #f8f9fa;*/
    overflow: hidden;
}

.video-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    flex: 0 0 55%;
    position: relative;
    padding-bottom: 30.9375%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    flex: 0 0 46%;
    padding-left: 40px;
}

.video-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    margin-bottom: 15px;
    color: var(--text-color);
}

.video-content p {
    font-size: clamp(1.2rem, 1.1vw, 1.1rem);
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.video-btn {
    display: inline-block;
    padding: 10px 25px;
  background: linear-gradient(45deg, #778873, #A1BC98);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

.video-btn:hover {
    background: linear-gradient(45deg, #A1BC98 ,#778873);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TABLET */
@media (max-width: 992px) {
  .video-container {
    flex-direction: column;
  }

  .video-wrapper {
    flex: 0 0 100%;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    margin-bottom: 30px;
  }

  .video-content {
    flex: 0 0 100%;
    padding-left: 0;
    text-align: center;
  }

  .video-content p {
    font-size: 1rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .video-section {
    padding: 40px 0;
  }

  .video-wrapper {
    padding-bottom: 56.25%;
    border-radius: 12px;
  }

  .video-content h2 {
    font-size: 1.4rem;
  }

  .video-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .video-btn {
    padding: 9px 22px;
    font-size: 13px;
  }
}


/* Partners Marquee Section */
.partners-container {
    overflow: hidden;
    position: relative;
    padding: 50px 0;
}

.partners-container > h2{
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 27px;
    font-size: 33px;
    color: rgb(62, 62, 178);
}

.partners-marquee {
    display: flex;
    width: 100%;
    animation: scroll 15s linear infinite;
}

.partners-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 80px;
    padding: 0 20px;
}

.partner-item {
    flex: 0 0 auto;
    padding: 10px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 250px;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   Mobile Responsive Styles
   ========================= */
@media (max-width: 768px) {

    .partners-container {
        padding: 30px 0;
    }

    .partners-container > h2 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Faster animation on mobile */
    .partners-marquee {
        animation: scroll 5s linear infinite;
    }

    .partners-track {
        gap: 20px;
        padding: 0 10px;
    }

    /* Show only 2 items at a time */
    .partner-item {
        min-width: 45vw;   /* 2 items visible */
        height: 160px;
        padding: 10px;
    }

    .partner-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .partner-item {
        min-width: 48vw;
        height: 140px;
    }
}

   /*====================== 
           Scoll to top
     ======================*/
        .scroll-to-top {
            position: fixed;
            bottom: 50px;
            right: 30px;      
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #778873, #A1BC98);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            border: none;
            outline: none;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            background: linear-gradient(135deg, #A1BC98, #778873);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform: scale(1.05) translateY(0);
        }
        
        .scroll-to-top:active {
            transform: scale(0.95) translateY(0);
        }
        
        .scroll-to-top::after {
            content: "↑";
            font-size: 28px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .scroll-to-top:hover::after {
            animation: bounce 0.8s infinite alternate;
        }
        
        .scroll-to-top .progress-circle {
            position: absolute;
            top: -5px;
            left: -5px;
            width: calc(100% + 10px);
            height: calc(100% + 10px);
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: white;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(157, 80, 187, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(157, 80, 187, 0); }
            100% { box-shadow: 0 0 0 0 rgba(157, 80, 187, 0); }
        }
        
        /* Bounce animation */
        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }
        
        /* Tooltip */
        .scroll-to-top .tooltip {
            position: absolute;
            top: -50px;
            background: white;
            color: #1f5ec5;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .scroll-to-top .tooltip::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px 8px 0;
            border-style: solid;
            border-color: white transparent transparent;
        }
        
        .scroll-to-top:hover .tooltip {
            opacity: 1;
            visibility: visible;
            top: -60px;
        }
        
       /* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }
    
    .scroll-to-top::after {
        font-size: 24px;
    }
    
    .scroll-to-top .tooltip {
        font-size: 12px;
        padding: 6px 10px;
        top: -45px;
    }
    
    .scroll-to-top:hover .tooltip {
        top: -50px;
    }
}

     /*====================== 
           Footer
     ======================*/
.footer {
    background-color: var(--footer-bg);
    color: var(--text-color);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-links a:hover.facebook {
    background-color: #1877F2;
}

.social-links a:hover.twitter {
    background-color: #1DA1F2;
}

.social-links a:hover.instagram {
    background-color: #E4405F;
}

.social-links a:hover.whatsapp {
    background-color: #25D366;
    color: white;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 20px;
    min-width: 250px;
    justify-content: center;
}

.links-column {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.links-column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column li {
    margin-bottom: 8px;
}

.links-column a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
    display: inline-block;
}

.links-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-form {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.footer-contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 121, 243, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.submit-btn,
.reset-btn {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn {
    background-color: #778873;
    color: white;
    flex: 2;
}

.submit-btn:hover {
    background-color: #A1BC98;
}

.reset-btn {
    background-color: #ddd;
    color: var(--text-color);
    flex: 1;
}

.reset-btn:hover {
    background-color: #ccc;
}

.footer-bottom {
  border-top: 2px solid #d0dcaf;           /* Light green border from your palette */
  background-color: #D2DCB6;               /* header/footer light green */
  padding: 16px 0 10px 0;
  margin-top: 0px;
  text-align: center;
}

.footer-bottom .copyright {
  margin: 0;
  color: #4a5a49;
  font-size: 16px;
  font-weight: 550;
  letter-spacing: 0.4px;
}

