:root {
    --primary-color: #004d99;
    /* Deep Blue from logo */
    --secondary-color: #76c043;
    /* Green from logo */
    --text-color: #333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

.company-name-header h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.company-name-header p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-list li a:hover {
    color: var(--secondary-color);
}

.btn-admin {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 77, 153, 0.2);
}

.btn-admin:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 192, 67, 0.3);
}

/* Dropdown */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 0;
    z-index: 1100;
    border-top: 3px solid var(--secondary-color);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.dropdown-content a {
    display: block !important;
    padding: 12px 25px !important;
    font-size: 1rem !important;
    color: var(--primary-color) !important;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color) !important;
    padding-left: 30px !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid #5da035;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
}

.product-category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f4f8;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 600;
}

/* Leadership */
.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.leader-card {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 300px;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary-color);
}

.leader-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-card p {
    color: #777;
    font-style: italic;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ddd;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        border-top: 1px solid #eee;
    }

    .nav-list.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-list li a {
        display: block;
        padding: 10px;
        font-size: 1.2rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        transform: none;
        background: #f9f9f9;
        display: none;
        width: 100%;
        padding: 0;
        border-top: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        height: 70vh;
        /* Better for mobile */
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .container {
        padding: 0 15px;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo {
        height: 40px;
    }

    .company-name-header h1 {
        font-size: 1.2rem;
    }

    .company-name-header p {
        font-size: 0.75rem;
    }

    /* Stack Contact Layout */
    .contact-layout {
        flex-direction: column;
    }

    .contact-sidebar {
        width: 100%;
    }

    /* Mobile Menu Polish */
    .nav-list {
        padding: 10px 0;
        text-align: left;
        padding-left: 20px;
    }

    .nav-list li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li a {
        padding: 15px 10px;
        font-size: 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-btn {
        margin-right: 10px;
    }

    /* About Section Mobile Fix */
    .about-row,
    .about-row.reverse {
        flex-direction: column-reverse;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-text {
        text-align: center;
        padding: 0 10px;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-text p {
        text-align: justify;
        font-size: 0.95rem;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}



.about-section {
    background: var(--white);
}

.about-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
    text-align: justify;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.section-subtitle {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 50px;
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.leader-card {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    max-width: 450px;
    flex: 1;
    min-width: 300px;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.leader-img-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid var(--secondary-color);
    padding: 3px;
    background: var(--white);
}

.leader-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leader-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 700;
}

.leader-card .leader-position {
    color: #444;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
    font-size: 1rem;
}

.leader-card .leader-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

.contact-detailed-section {
    background-color: var(--white);
    padding-top: 50px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-info-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 220px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.contact-info-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info-card p {
    color: #666;
    font-size: 0.95rem;
}

.contact-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-container {
    flex: 2;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-form-container h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #777;
    font-size: 0.95rem;
}

.contact-form-container .form-group label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: inherit;
    background: white;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-send {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-send:hover {
    background: #5da035;
}

.contact-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-hours {
    background: #003366;
    color: white;
    padding: 30px;
    border-radius: 8px;
}

.business-hours h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.business-hours li:last-child {
    border: none;
    padding-bottom: 0;
}

.quick-contact {
    background: var(--secondary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.quick-contact h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.quick-contact p {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-whatsapp {
    background: white;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: #f0f0f0;
}

@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-sidebar {
        width: 100%;
    }
}

.page-header {
    background-color: var(--light-bg);
    padding: 60px 0 30px;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Floating Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-sidebar a:hover {
    padding-right: 15px;
    width: 55px;
    background-color: var(--secondary-color);
}

/* Dynamic colors for social icons */
.social-sidebar a.facebook:hover {
    background-color: #3b5998;
}

.social-sidebar a.twitter:hover {
    background-color: #1da1f2;
}

.social-sidebar a.instagram:hover {
    background-color: #e4405f;
}

.social-sidebar a.linkedin:hover {
    background-color: #0077b5;
}

.social-sidebar a.youtube:hover {
    background-color: #ff0000;
}

@media (max-width: 500px) {
    .social-sidebar {
        display: none;
        /* Hide social sidebar on very small phones to avoid overlap with WhatsApp */
    }
}