/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-color: #ff9800;
    --secondary-dark: #f57c00;
    --accent-color: #8bc34a;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mouse Effects */
.mouse-effect {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0) 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

/* Top Info Bar */
.top-info-bar {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 16px 0;
    font-size: 20px;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.email-info, .phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    margin: 0 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-white);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    background-color: var(--text-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.logo-text {
    display: flex;
    
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-dark);
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(255, 255, 255);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slides-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 800px;
    padding: 0 60px;
    color: white;
    animation: slideIn 1s ease;
}

@keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.slide-title span {
    color: var(--secondary-color);
}

.slide-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    background-color: rgba(87, 219, 104, 0.445);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
   
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-color);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.three-image-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    align-items: stretch;
}

.big-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.small-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.small-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

@media (max-width: 768px) {
    .three-image-layout {
        grid-template-columns: 1fr;
    }

    .small-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}
.map-image img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Why Choose Us */
.why-choose-section {
    background-color: var(--bg-light);
}

.features-grids{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 30px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/slide4.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Products Section */
.products-grids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-cards {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-images {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-cards:hover .product-images img {
    transform: scale(1.5);
}

.product-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-cards:hover .product-overlays {
    opacity: 1;
}

.product-contents {
    padding: 25px;
}

.product-titles {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-light);
}

/* Certificates & Supply */
.certificates-supply-section {
    background-color: var(--bg-light);
}

.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.certificates-box, .supply-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.certificates-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.certificate-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.cert-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.cert-icon i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.countries-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: var(--bg-gray);
    border-radius: 5px;
    transition: var(--transition);
}

.country-item:hover {
    background-color: var(--primary-light);
    color: white;
}

.country-item i {
    color: var(--primary-color);
}

.country-item:hover i {
    color: white;
}

.map-image {
    width: 100%;
    height: 200px;          /* keeps the card clean like your screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* PERFECT FIT without cropping */
}


/* Trending Searches */
.trending-section {
    background-color: white;
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
}

.keyword-tag {
    padding: 10px 25px;
   
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.keyword-tag:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-container {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.qr-placeholder {
    text-align: center;
}

.qr-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.qr-text {
    text-align: center;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-desc {
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    background-color: var(--primary-color);
}

.whatsapp-btn {
    background-color: #25D366;
}

.email-btn {
    background-color: var(--secondary-color);
}
.top-btn {
    background: #0d6ab6;
    color: #fff;
    cursor: pointer;
    display: none;
}

.top-btn:hover {
    background: #0da521;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid, .stats-grid, .products-grid, .cs-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .top-info-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        padding: 0 30px;
    }
    
    .features-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid, .cs-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .fab-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
























/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/about\ hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 12px;
    opacity: 0.7;
}

/* About Profile Section */
.about-section {
    padding: 80px 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.profile-image {
    position: relative;
}

.profile-image .image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: white;
}

.overlay-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.overlay-content p {
    font-size: 16px;
    opacity: 0.9;
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.profile-stat {
    text-align: center;
}

.profile-stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.profile-stat p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background-color: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-card {
    border-top: 5px solid var(--primary-color);
}

.mission-card {
    border-top: 5px solid var(--secondary-color);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.vm-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.vm-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.mission-card .vm-divider {
    background: linear-gradient(to right, var(--secondary-color), #ffb74d);
}

.vm-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
}

.value-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-desc {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.overlay-content .social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.member-contact {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.member-contact i {
    color: var(--primary-color);
}

.member-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 0;
    background-color: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-year {
    margin-right: 40px;
}

.timeline-item:nth-child(odd) .timeline-year {
    margin-left: 40px;
}

.timeline-content {
    flex: 1;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 20px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 20px;
    text-align: right;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--bg-light);
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-desc {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/other-hero.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .profile-content,
    .vm-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(odd) .timeline-year {
        margin: 0 40px 0 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin: 0 0 0 20px;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -10px;
        right: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .timeline-year {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}















/* Service Header */
.service-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/other-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.service-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.service-intro {
    font-size: 18px;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background-color: white;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.service-detail-content:hover .service-image img {
    transform: scale(1.05);
}

.service-description h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.service-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin-bottom: 25px;
    border-radius: 2px;
}

.service-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 40px;
}

.service-features h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: #e8f5e9;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-light);
}


/* Other Services */
.other-services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.other-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 36px;
    }
    
    .service-cta h2 {
        font-size: 28px;
    }
    
    .other-services h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .service-header {
        padding: 100px 0 60px;
    }
    
    .service-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

















/* Product Header */
.product-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.product-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.product-intro {
    font-size: 18px;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.spec i {
    color: var(--primary-color);
}

.product-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Additional Products */
.additional-products {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.additional-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.additional-item:hover {
    transform: translateY(-5px);
    border-top: 3px solid var(--primary-color);
}

.additional-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.additional-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.additional-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background-color: white;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.quality-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin-bottom: 25px;
    border-radius: 2px;
}

.quality-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.quality-list {
    list-style: none;
}

.quality-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
}

.quality-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.quality-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product CTA */
.product-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.product-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.product-cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.product-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.product-cta .btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.product-cta .btn-outline {
    border-color: white;
    color: white;
}

.product-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Other Products */
.other-products {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.other-products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.products-links {
    max-width: 400px;
    margin: 0 auto;
}

.product-link-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.product-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
}

.product-link-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-link-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 36px;
    }
    
    .product-cta h2 {
        font-size: 28px;
    }
    
    .other-products h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .product-header {
        padding: 100px 0 60px;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}














/* Enquiry Page Header */
.enquiry-header .page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.enquiry-subtitle {
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Enquiry Section */
.enquiry-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.enquiry-content {

    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Enquiry Form */
.enquiry-form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-header p {
    opacity: 0.9;
    font-size: 16px;
}

.enquiry-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

/* Terms Group */
.terms-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-group input[type="checkbox"] {
    width: auto;
}

.terms-group label {
    margin-bottom: 0;
    font-size: 14px;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.submit-btn, .reset-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Form Note */
.form-note {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 5px;
    font-size: 14px;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Sidebar */
.enquiry-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.sidebar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info {
    text-align: left;
    margin-bottom: 25px;
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.sidebar-card .btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Lists */
.response-list,
.process-list,
.info-list {
    list-style: none;
    text-align: left;
}

.response-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.response-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.process-list li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.process-list span {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.info-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e8f5e9;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Enquiry CTA */
.enquiry-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.enquiry-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.enquiry-cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.enquiry-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.enquiry-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.enquiry-cta .btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.enquiry-cta .btn-outline {
    border-color: white;
    color: white;
}

.enquiry-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-text {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.close-modal {
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .enquiry-content {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .enquiry-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-submit {
        flex-direction: column;
    }
    
    .enquiry-cta h2 {
        font-size: 28px;
    }
    
    .modal-content {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .enquiry-form {
        padding: 25px;
    }
    
    .form-header {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 20px;
    }
}



















/* Contact Page Header */
.contact-header .page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: white;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.office-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.office-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.office-content {
    padding: 60px 30px 30px;
}

.head-office .office-badge {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.branch-office .office-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.office-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.office-address {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.office-address p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.office-address strong {
    color: var(--text-dark);
}

.office-contact {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.office-map {
    text-align: center;
}

.office-map .btn-outline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-container {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-placeholder p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.map-legend {
    padding: 20px;
}

.map-legend h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-color.head-office {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.legend-color.branch-office {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.legend-color.port-office {
    background: linear-gradient(135deg, #2196F3, #0D47A1);
}


/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-content {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form .form-submit {
        flex-direction: column;
    }
    
    .emergency-text h2 {
        font-size: 24px;
    }
    
    .emergency-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .office-content {
        padding: 60px 20px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-header {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .quick-contact-card {
        padding: 20px;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}
/* Fix Head Office card spacing & centering */
.office-card.head-office {
    max-width: 520px;          /* keeps it neat and square */
    margin: 0 auto;            /* center horizontally */
    padding: 24px 28px;        /* reduce extra space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Center badge properly */
.office-badge {
    position: static;          /* removes offset space */
    margin-bottom: 16px;
}

/* Center all content */
.office-content {
    text-align: center;
    padding: 0;
}

/* Reduce icon spacing */
.office-icon {
    margin: 12px 0;
    margin-left: 200px;
}

/* Remove unwanted paragraph gaps */
.office-address p {
    margin: 6px 0;
}
.map-section {
    display: flex;
    justify-content: center;
    padding: 60px 15px;
}

.map-wrapper {
    background: #3f9f45;        /* Green border */
    padding: 18px;
    border-radius: 18px;
    max-width: 900px;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    display: block;
}















/* Certificate Slider */
.certificate-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.slider-image {
    width: 100%;
    max-width: 320px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    transition: opacity 0.4s ease-in-out;
}

.slider-btn {
    background: #2e7d32;
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #1b5e20;
    transform: scale(1.1);
}
.logo {
    display: flex;
    flex-direction: column;   /* Makes text go below image */
    align-items: center;      /* Centers text under logo */
    text-decoration: none;
}



.logo-main {
    font-size: 18px;
    font-weight: 600;
}