/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4CAF50;
    --primary-light: #8BC34A;
    --primary-dark: #2E7D32;
    --accent: #689F38;
    --light: #F1F8E9;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

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

/* ===== UTILITY CLASSES ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COMPANY BANNER ===== */
.company-banner {
    background: var(--white);
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    padding: 20px 0;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.banner-logo img {
    width: 160px;
    height: auto;
    display: block;
}

.company-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1b7f3a; /* Deep professional green */
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}



.company-text .slogan {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #2bb673; /* Lighter green */
    margin-top: 6px;
    font-style: normal;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center; /* center menu */
    align-items: center;
    padding: 0.9rem 20px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2f2f2f;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-dark);
}

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

.nav-menu a.active {
    color: var(--primary-dark);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.4rem;
        padding: 1.2rem 0;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}


/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-decoration {
    position: absolute;
    background: var(--white);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.top-right {
    top: 0;
    right: 0;
    width: 192px;
    height: 192px;
    transform: translate(50%, -50%);
}

.bottom-left {
    bottom: 0;
    left: 0;
    width: 192px;
    height: 192px;
    transform: translate(-50%, 50%);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    color: var(--primary);
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.product-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-status {
    display: flex;
    align-items: center;
    color: var(--accent);
    font-weight: 500;
}

.product-status i {
    margin-right: 0.5rem;
}

/* ===== CERTIFICATION MARQUEE (LIGHTHOUSE 100) ===== */

.certifications-section {
  padding: 5rem 0;
  background: var(--light-gray);
  overflow: hidden;
}

.cert-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 3rem;
}

.cert-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.cert-track img {
  width: 220px;
  height: auto;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Premium hover focus */
.cert-track img:hover {
  transform: scale(1.08);
}

/* Infinite motion */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover (UX win) */
.cert-marquee:hover .cert-track {
  animation-play-state: paused;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .cert-track {
    animation-duration: 22s;
  }

  .cert-track img {
    width: 180px;
    padding: 18px;
  }
}

/* ===== GRADIENT FADE EDGES FOR CERT MARQUEE ===== */

.cert-marquee {
  position: relative;
  overflow: hidden;
}

/* Left & Right gradient masks */
.cert-marquee::before,
.cert-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.cert-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--light-gray) 0%,
    rgba(241, 248, 233, 0) 100%
  );
}

.cert-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--light-gray) 0%,
    rgba(241, 248, 233, 0) 100%
  );
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
  .cert-marquee::before,
  .cert-marquee::after {
    width: 70px;
  }
}


/* ===== CERTIFICATIONS SWIPER ===== */

/* .certifications-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.certifications-swiper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.certifications-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.certifications-swiper .swiper-slide {
  opacity: 0.4;
  transform: scale(0.82);
  transition: transform 0.35s ease, opacity 0.35s ease;
}  


.certifications-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.08); /* 🔥 CENTER FOCUS */
  /* z-index: 2;
} */

.certifications-swiper img {
  width: 100%;
  max-width: 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Navigation arrows */
.certifications-swiper .swiper-button-next,
.certifications-swiper .swiper-button-prev {
  color: var(--primary-dark);
}

.certifications-swiper .swiper-button-next::after,
.certifications-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Pagination dots */
.certifications-swiper .swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.certifications-swiper .swiper-pagination-bullet-active {
  background: var(--primary-dark);
} */


.certifications-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
}

.cert-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cert-card img {
  max-height: 80px;
  margin-bottom: 1rem;
}

.cert-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
} 


/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== MARKETS SECTION ===== */
.markets-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.markets-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.country-flag {
    height: 64px;
    width: auto;
    margin-bottom: 2rem;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flag-item img {
    height: 32px;
    width: auto;
    margin-bottom: 0.5rem;
}

.flag-item span {
    color: var(--gray);
    font-size: 0.9rem;
}

.markets-note {
    color: var(--gray);
    font-style: italic;
    margin-top: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.form-wrapper {
    display: flex;
    align-items: flex-start;
}

.form-sidebar {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.form-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-sidebar p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    margin-top: 0.25rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

.form-main {
    flex: 1;
    padding: 3rem;
    background: var(--white);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


.form-success-message {
    display: none;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #e8f5e9;
    border: 1px solid #4CAF50;
    color: #2E7D32;
    text-align: center;
}

.form-success-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

:target.form-success-message {
    display: block;
}


/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-info h3,
.business-hours h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.location-card,
.hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.location-card address {
    font-style: normal;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
}

.contact-item i {
    color: var(--primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: var(--primary-dark);
}

.trust-card {
    margin-top: 24px;
    padding: 20px;
    background-color: #f8faf8;
    border-radius: 8px;
}

.trust-card h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1f7a3f;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.trust-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1f7a3f;
    font-weight: bold;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.9;
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-contact i {
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* WhatsApp Floating Button - UPDATED */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .company-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .form-wrapper {
        flex-direction: column;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
}