		
		:root {
			--primary: #004d7a;
			--secondary: #1f22de;
			--dark: #333;
			--light: #f4f4f4;
			--white: #fff;
			--gray: #ddd;
		}

		/* Reset */
		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		}

		body {
			background-color: var(--light);
			color: var(--dark);
			overflow-x: hidden;
		}
		
		/* Custom Scrollbar */
		::-webkit-scrollbar {
			width: 10px;
		}

		::-webkit-scrollbar-track {
			background: #f1f1f1;
			border-radius: 5px;
		}

		::-webkit-scrollbar-thumb {
			background: var(--primary);
			border-radius: 10px;
			border: 2px solid #f1f1f1;
		}

		::-webkit-scrollbar-thumb:hover {
			background: var(--secondary);
		}
		
		.unselectable {
			-webkit-user-select: none;
			-webkit-touch-callout: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
		}
		
		.container {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 20px;
		}

		/* Header */
		header {
			background-color: var(--white);
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
			position: fixed;
			width: 100%;
			top: 0;
			z-index: 1000;
			padding: 15px 0;
		}

		.header-container {
			display: flex;
			justify-content: space-between;
			align-items: center;
			max-width: 1200px;
			margin: 0 25px;
			padding: 0 15px;
		}
		
		@media (max-width: 768px) {
		.header-container {
			margin: 0 6px;
			}
		}
		
		.logo img {
			display: block;
			max-width: 170px;
			height: auto;
			width: 100%;
		}

		nav ul {
			display: flex;
			list-style: none;
		}

		nav ul li {
			margin-left: 30px;
		}

		nav ul li a {
			text-decoration: none;
			color: var(--dark);
			font-weight: 500;
			transition: color 0.3s;
		}

		nav ul li a:hover,
		.active {
			color: var(--secondary);
		}

		.mobile-menu-btn {
			display: none;
			background: none;
			border: none;
			font-size: 24px;
			color: var(--primary);
			cursor: pointer;
		}

		.mobile-menu {
			display: none;
			position: fixed;
			top: 70px;
			left: 0;
			width: 100%;
			background-color: var(--white);
			box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
			z-index: 999;
		}

		.mobile-menu.active {
			display: block;
		}

		.mobile-menu ul {
			list-style: none;
			padding: 20px;
		}

		.mobile-menu ul li {
			margin-top: 20px;
			margin-bottom: 30px;
			font-weight: bold;
		}

		.mobile-menu ul li a {
			text-decoration: none;
			color: var(--dark);
			font-size: 14px;
		}

		/* Hero Slider */
		.hero {
			margin-top: 0;
			height: 100vh;
			position: relative;
			overflow: hidden;
		}

		.slider-container {
			width: 100%;
			height: 100%;
			position: relative;
		}
		
		 .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease;
			z-index: 1;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
			z-index: 2;
        }
		
		.slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 0;
        }
        
        .slide-content {
            position: relative;
			padding: 0 10%;
			max-width: 1200px;
			color: #fff;
			z-index: 10;
			opacity: 1;
			transform: translateY(0);
			text-align: left;
			margin-top: 120px;
        }
        
        .slide h2 {
            font-size: 45px;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }
        
        .slide p {
            font-size: 20px;
            margin-bottom: 2rem;
            max-width: 800px;
            animation: fadeInUp 1.2s ease;
        }
        
		.image-preloader {
            position: absolute;
            width: 0;
            height: 0;
            overflow: hidden;
            z-index: -1;
        }
		
         @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
			.slider-container {
				width: 100%;
				height: 100%;
				position: relative;
			}
		
			.slider {
				width: 100%;
				height: 100%;
				position: relative;
			}
		
			.slide-content {
				text-align: center;
				margin-top: 100px;
			}
			
            .slide h2 {
                font-size: 18px;
            }
            
            .slide p {
                font-size: 14px;
            }
        }

		.btn {
			display: inline-block;
			padding: 12px 30px;
			background-color: var(--primary);
			color: var(--white);
			text-decoration: none;
			border-radius: 5px;
			font-weight: 600;
			transition: background-color 0.3s;
		}

		.btn:hover {
			background-color: var(--secondary);
		}

		/* Intro Section */
		.intro {
			padding: 80px 0;
			background-color: var(--white);
		}

		.intro-content {
			display: flex;
			align-items: center;
			gap: 50px;
		}

		.intro-text {
			flex: 1;
			opacity: 0;
			transform: translateX(-50px);
			transition: all 1s ease;
		}

		.intro-text.animate {
			opacity: 1;
			transform: translateX(0);
		}

		.intro-text h2 {
			font-size: 36px;
			color: var(--primary);
			margin-bottom: 20px;
		}

		.intro-text p {
			font-size: 15px;
			line-height: 1.6;
			margin-bottom: 30px;
			color: #555;
			text-align: justify;
		}

		.intro-text ul li {
			font-size: 15px;
			margin-bottom: 10px;
			margin-left: 20px;
			color: #555;
			text-align: justify;
		}

		.intro-image {
			flex: 1;
			opacity: 0;
			transform: translateX(50px);
			transition: all 1s ease;
		}

		.intro-image.animate {
			opacity: 1;
			transform: translateX(0);
		}

		.intro-image img {
			width: 100%;
			border-radius: 10px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		}

		/* Stats Section */
		.stats {
			padding: 80px 0;
			background-color: var(--primary);
			color: var(--white);
			text-align: center;
		}

		.stats-container {
			display: flex;
			justify-content: space-around;
			flex-wrap: wrap;
		}

		.stat-item {
			margin: 20px;
			opacity: 0;
			transform: translateY(50px);
			transition: all 1s ease;
		}

		.stat-item.animate {
			opacity: 1;
			transform: translateY(0);
		}

		#stat1 .stat-number::after {
			content: "+"; 
		}

		.stat-number {
			font-size: 60px;
			font-weight: 700;
			margin-bottom: 10px;
			color: var(--white);
		}

		.stat-text {
			font-size: 18px;
			font-weight: 500;
		}

		.back-to-top {
			position: fixed;
			bottom: 30px;
			right: 30px;
			background: #061fc2;
			color: white;
			width: 50px;
			height: 50px;
			border-radius: 10%;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
			border: none;
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease;
		  }

		  .back-to-top:hover {
			background: var(--secondary);
			transform: translateY(-3px);
		  }

		  .back-to-top.active {
			opacity: 1;
			visibility: visible;
		  }

		  .back-to-top svg {
			width: 20px;
			height: 20px;
			fill: white;
		  }
		  
		  
		/* Services Section */
		.services {
			padding: 80px 0;
			background-color: var(--white);
		}

		.section-title {
			text-align: center;
			margin-bottom: 50px;
		}

		.section-title h2 {
			font-size: 36px;
			color: var(--primary);
			margin-bottom: 15px;
		}

		.section-title p {
			color: #777;
			max-width: 700px;
			margin: 0 auto;
			line-height: 1.6;
		}

		.services-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
		}

		.service-card {
			background-color: var(--white);
			border-radius: 10px;
			overflow: hidden;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
			opacity: 0;
			transform: scale(0.9);
			transition: all 0.5s ease;
		}

		.service-card.animate {
			opacity: 1;
			transform: scale(1);
		}

		.service-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
		}

		.service-image {
			height: 200px;
			overflow: hidden;
		}

		.service-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s;
		}

		.service-card:hover .service-image img {
			transform: scale(1.1);
		}

		.service-content {
			padding: 25px;
		}

		.service-content h3 {
			font-size: 22px;
			margin-bottom: 15px;
			color: var(--primary);
		}

		.service-content p {
			color: #666;
			margin-bottom: 20px;
			line-height: 1.6;
			text-align: justify;
		}

/* Choose Section */
        .choose {
            padding: 60px 0;
            background: #f9f9f9;
            width: 100%;
            overflow: hidden;
        }

        .choose-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: center;
        }

        .choose-image {
            flex: 1;
            min-width: 0; /* Critical fix for flexbox overflow */
            max-width: 100%;
            opacity: 0;
            transform: translateX(-80px);
            animation: slideInLeft 1s ease forwards;
        }

        .choose-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            display: block;
        }

        .choose-text {
            flex: 1;
            min-width: 0; /* Critical fix for flexbox overflow */
            max-width: 100%;
            opacity: 0;
            transform: translateX(80px);
            animation: slideInRight 1s ease forwards;
            animation-delay: 0.3s;
        }

        .choose-text h3 {
            color: #0074c1;
            font-size: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .choose-text h2 {
            font-size: 33px;
            margin-bottom: 20px;
            color: #003366;
            line-height: 1.2;
        }

        .choose-text p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #444;
        }

        .choose-text ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .choose-text ul li {
            font-size: 15px;
            margin-bottom: 10px;
            color: #555;
        }

        .choose-text .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #0033a0;
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.3s;
            font-weight: 600;
        }

        .choose-text .btn:hover {
            background-color: var(--secondary);
        }

        /* Progress bars */
        .choose-text .progress-container {
            margin-top: 18px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
        }

        .progress-item {
            width: 100%;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 15px;
            color: #003366;
        }

        .progress-bar {
            width: 100%;
            height: 12px;
            background: #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }

        .progress-fill {
            height: 100%;
            width: 0;
            border-radius: 6px;
            transition: width 1.5s ease;
        }

        .progress-item.cleaner .progress-fill { background: #0074c1; }
        .progress-item.stronger .progress-fill { background: #0074c1; }
        .progress-item.better .progress-fill { background: #0074c1; }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .choose {
                padding: 40px 0;
            }
            
            .choose-text h2 {
                font-size: 24px;
            }
            
            .choose-text h3 {
                font-size: 18px;
            }
            
            .container {
                padding: 0 15px;
            }
        }


/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--light);
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.newsletter p {
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    display: block;
    max-width: 170px;
    height: auto;
    width: 100%;
}

.footer-logo-p {
    text-align: justify;
}

.inverted-image {
    filter: invert(100%) hue-rotate(180deg) saturate(900%);
}

.side {
    margin-left: 80px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .intro-content { flex-direction: column; }
    .intro-text, .intro-image { flex: none; width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: span 2; }
}

@media (max-width: 768px) {
    nav ul { display: none; }
	p { font-size: 14px; }
    .mobile-menu-btn { display: block; }
    .stats-container, .choose-content { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: left; gap: 30px; padding: 0 5px; }
    .footer-about { grid-column: span 1; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input, .newsletter-form button { border-radius: 5px; margin-bottom: 10px; }
    .side { margin-left: 0 !important; }
    
    .hero { height: 80vh; }
    
	
    .btn { padding: 10px 22px; font-size: 14px; }

    .intro-content { gap: 30px; text-align: center; }
    .intro-text, .intro-image { width: 100%; opacity: 1; transform: none; }
    .intro-text h2 { font-size: 24px; }

    .service-content h3 { font-size: 18px; }
    .service-content p { font-size: 14px; }
	
	.choose { padding: 60px 0px; }
    .choose-text h2 { font-size: 22px; }
    .choose-text p { font-size: 14px; text-align: justify; }

    .stat-number { font-size: 36px; }
    .stat-text { font-size: 14px; }
	
	.stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 20px; /* spacing between items */
        justify-items: center; /* optional: center items in each cell */
    }

    .stat-item {
        transform: none; /* reset any translate effect on mobile */
        opacity: 1;       /* ensure visible */
    }
	
	.footer-links ul li {
    font-size: 15px;
	}
	
	.copyright-p {
		font-size: 10px;
		font-weight: bold;
	}
	
	.logo img {
		display: block;
		max-width: 170px;
		height: auto;
		width: 80%;
	}
	
	.mv-card {
                padding: 35px 15px !important;
            }
	.standard-card {
		padding: 30px 15px !important;
	}

	.standard-icon {
		width: 60px !important;
		height: 60px !important;
		font-size: 24px !important;
	}

		}


		
		.inner-area {
            position: relative;
            background: url('../../wp-content/images/distribution-top.jpg') center center / cover no-repeat fixed;
            padding: 75px 0;
            color: #fff;
            text-align: center;
            height: 50vh;
            min-height: 300px;
        }

        .inner-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .inner-area .container,
        .inner-area .section-content,
        .inner-area .row,
        .inner-area .col-12 {
            position: relative;
            z-index: 2;
            margin-top: 95px;
        }

        .inner-area h2 {
            font-size: 35px;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
        }

        .inner-area p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .inner-area p a {
            color: #fff;
            text-decoration: none;
            margin-left: 5px;
        }

        .inner-area p a:hover {
            color: var(--primary);
        }

        /* Specific media query for 740x360 devices */
        @media (width: 740px) and (height: 360px), 
               (width: 360px) and (height: 740px) and (orientation: portrait),
               (max-width: 740px) and (max-height: 360px) {
            .inner-area {
                height: 100vh; /* Full viewport height */
                min-height: 360px; /* Fixed height for 360px devices */
                padding: 40px 0;
            }
            
            .inner-area .container,
            .inner-area .section-content,
            .inner-area .row,
            .inner-area .col-12 {
                margin-top: 60px;
            }
            
            .inner-area h2 {
                font-size: 28px;
            }
            
            .inner-area p {
                font-size: 16px;
            }
            
            .breadcrumb-wrapper ol {
                font-size: 14px;
                padding: 8px 15px;
            }
        }

        @media (max-width: 768px) {
            .inner-area {
                padding: 70px 20px;
                height: 40vh;
            }

            .inner-area .container,
            .inner-area .section-content,
            .inner-area .row,
            .inner-area .col-12 {
                margin-top: 80px;
            }
            
            .inner-area h2 {
                font-size: 32px;
            }
        }

        .breadcrumb-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .breadcrumb-wrapper ol {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            font-size: 16px;
            font-weight: bold;
            flex-wrap: wrap;
            padding: 12px 20px;  
        }

        .breadcrumb-wrapper li {
            color: #ddd;
        }

        .breadcrumb-wrapper li + li::before {
            content: "/";
            padding: 0 8px;
            color: #ccc;
        }

        .breadcrumb-wrapper a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-wrapper a:hover {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .breadcrumb-wrapper ol {
                font-size: 13px;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .mission-vision {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .mv-container {
            display: flex;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .mv-card {
            flex: 1;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: var(--white);
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
			text-align: justify;
        }
        
        .mv-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mv-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .mv-card h3 i {
            margin-right: 15px;
            color: var(--secondary);
        }
		
		.sole {
			margin-bottom: 80px;
		}
		
		@media (max-width: 768px) {
		.mv-container {
			display: grid;
            gap: 50px;
            margin-bottom: 50px;
			}
			
		.sole {
			margin-bottom: 0px;
			}
		}
		
		
        
		
        /* Timeline Styles - Fixed for mobile */
        .timeline {
            position: relative;
            padding: 80px 0;
            background-color: var(--light);
            overflow: hidden;
            background-image: url('../../wp-content/images/distribution.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* White overlay */
        .timeline::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 245px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 74%;
            background-color: var(--secondary);
            z-index: 1; /* Ensure timeline line stays above overlay */
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease;
            z-index: 2; /* Ensure timeline items stay above overlay */
        }

        .timeline-item:nth-child(even) {
            transform: translateX(50px);
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            top: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--secondary);
            border: 4px solid var(--white);
            box-shadow: 0 0 0 4px var(--secondary);
            z-index: 2; /* Ensure dots stay above overlay */
        }

        .timeline-content {
            width: calc(50% - 60px);
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2; /* Ensure content stays above overlay */
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-year {
            position: absolute;
            top: 30px;
            width: 100px;
            text-align: center;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
            z-index: 2; /* Ensure year labels stay above overlay */
        }

        .timeline-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .timeline-title h2 {
            font-size: 36px;
            color: var(--white);
            margin-bottom: 15px;
        }

        .timeline-title p {
            color: #777;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
			color: var(--white);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .timeline-content p {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
        }

        /* Mobile Responsive Fixes */
        @media (max-width: 768px) {
            .timeline::before {
                left: 32px;
                transform: none;
                top: 221px;
                height: calc(83% - 180px);
                z-index: 1;
            }
            
            .timeline-item {
                padding-left: 60px;
                transform: none !important;
                margin-bottom: 60px;
                z-index: 2;
            }
            
            .timeline-item::after {
                left: 30px;
                transform: translateX(-50%);
                top: -5px;
                width: 11px;
                height: 11px;
                z-index: 2;
            }
            
            .timeline-content {
                width: 100%;
                margin-left: 0 !important;
                padding: 20px;
                z-index: 2;
            }
            
            .timeline-year {
                left: 72px;
                top: -12px;
                transform: translateX(-50%);
                text-align: left;
                width: auto;
                padding-right: 11px;
                z-index: 3;
            }
            
            .timeline-content p {
                font-size: 14px;
                text-align: justify;
            }
            
            .timeline-title h2 {
                font-size: 24px;
            }
            
            .timeline-title p {
                color: #777;
                max-width: 700px;
                margin: 0 auto;
                line-height: 1.6;
                text-align: center;
                font-size: 14px;
                padding: 0 15px;
            }
        }

       
        
        .leadership {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }
        
        .team-member.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-image {
            height: 150px;
            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.1);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .member-info p {
            margin-top: 30px;
			margin-bottom: 20px;
			font-size: 14px;
			text-align: justify;
        }
        
       
                
        @media (max-width: 768px) {
            .about-hero {
                height: 50vh;
            }
            
            .about-hero h1 {
                font-size: 36px;
            }
            
            .about-hero p {
                font-size: 18px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
			
			.member-info {
				padding: 25px 15px;
				text-align: center;
			}
        }
        
		
		.services-hero {
            height: 60vh;
            background: linear-gradient(rgba(0, 77, 122, 0.8), rgba(0, 77, 122, 0.8)), 
                        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: 70px;
        }
        
        .services-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .services-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out;
        }
        
        .services-hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out 0.3s both;
        }
        
        .services-intro {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .service-categories {
            padding: 60px 0;
            background-color: var(--light);
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .category-tab {
            padding: 12px 25px;
            background-color: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .category-tab.active, .category-tab:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .category-content {
            display: none;
        }
        
        .category-content.active {
            display: block;
            animation: fadeIn 0.5s ease-out;
        }
        
		@keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
		
        .service-features {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            display: flex;
            gap: 30px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }
        
        .feature-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            min-width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(230, 126, 34, 0.1);
            border-radius: 50%;
            color: var(--secondary);
            font-size: 30px;
        }
        
        .feature-content h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .feature-content p {
            color: #666;
            line-height: 1.6;
        }
        
        
		
        .client-logos {
            padding: 60px 0;
            background-color: var(--light);
        }
        
        .logos-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .logos-slider {
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .logos-track {
            display: flex;
            width: calc(250px * 26); /* Double the items for seamless loop */
            animation: slide 30s linear infinite;
        }
        
        .logo-slide {
            width: 250px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .logo-slide img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .logo-slide img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Pause on hover */
        .logos-slider:hover .logos-track {
            animation-play-state: paused;
        }
        
        /* Animation */
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 13)); /* Move by half the width */
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .logo-slide {
                width: 200px;
            }
            
            .logos-track {
                width: calc(200px * 26);
            }
            
            @keyframes slide {
                100% {
                    transform: translateX(calc(-200px * 13));
                }
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 24px;
            }
            
            .section-title p {
                font-size: 14px;
            }
            
            .logo-slide {
                width: 150px;
                height: 120px;
            }
            
            .logos-track {
                width: calc(150px * 26);
            }
            
            @keyframes slide {
                100% {
                    transform: translateX(calc(-150px * 13));
                }
            }
        }
        
        @media (max-width: 480px) {
            .client-logos {
                padding: 40px 0;
            }
            
            .logo-slide {
                width: 120px;
                height: 100px;
            }
            
            .logos-track {
                width: calc(120px * 26);
            }
            
            @keyframes slide {
                100% {
                    transform: translateX(calc(-120px * 13));
                }
            }
        }
		
		
       
        
        .product-categories {
            padding: 60px 0;
            background-color: var(--light);
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 80px;
        }
        
        .category-tab {
            padding: 12px 25px;
            background-color: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .category-tab.active, .category-tab:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .category-content {
            display: none;
        }
        
        .category-content.active {
            display: block;
            animation: fadeIn 0.5s ease-out;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }
        
        .product-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .product-image {
            height: 120px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f6f9fc 0%, #e9f2f8 100%);
        }
        
        .product-image i {
            font-size: 35px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .product-card:hover .product-image i {
            transform: scale(1.2);
            color: #3498db;
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .product-specs {
            margin-bottom: 20px;
        }
        
        .product-specs li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .product-specs li span:first-child {
            color: #666;
        }
        
        .product-specs li span:last-child {
            font-weight: 600;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        
        
        .product-features {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            display: flex;
            gap: 30px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }
        
        .feature-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            min-width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(230, 126, 34, 0.1);
            border-radius: 50%;
            color: var(--secondary);
            font-size: 30px;
        }
        
        .feature-content h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .feature-content p {
            color: #666;
            line-height: 1.6;
        }
        
        .quality-standards {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .standards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .standard-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }
        
        .standard-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .standard-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 77, 122, 0.1);
            border-radius: 50%;
            color: var(--primary);
            font-size: 30px;
        }
        
        .standard-card h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .standard-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .distribution {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        @media (max-width: 992px) {
            .features-container {
                grid-template-columns: 1fr;
            }
            
            .standards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .products-hero {
                height: 50vh;
            }
            
            .products-hero h1 {
                font-size: 36px;
            }
            
            .products-hero p {
                font-size: 18px;
            }
            
            .feature-card {
                flex-direction: column;
                gap: 20px;
				padding: 20px 15px !important;
            }
			
			.feature-content h3 {
				font-size: 22px;
				color: var(--primary);
				margin-bottom: 15px;
				text-align: center;
        }
        
			.feature-content p {
				color: #666;
				line-height: 1.6;
			}
            
            .feature-icon {
                margin: 0 auto;
				width: 60px;
				height: 60px;
				min-width: 60px;
				color: var(--secondary);
				font-size: 24px;
            }
			
			.feature-content p {
				text-align: justify;
			}
			
			.standard-card p {
				text-align: justify;
			}
			
			.commitment-card p {
				text-align: justify;
			}
			
			.commitment-card {
				padding: 20px 15px !important;
			}
			
			.commitment-icon {
				width: 60px !important;
				height: 60px !important;
				color: var(--secondary);
				font-size: 24px !important;
			}
			
			.report-container h2 {
				font-size: 24px !important;
				margin-bottom: 20px;
			}
			
			.report-container p {
				font-size: 14px !important;
			}
            
            .standards-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .products-hero {
                height: 40vh;
            }
            
            .products-hero h1 {
                font-size: 28px;
            }
            
            .category-tab {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
		
		
        
        .sustainability-intro {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .commitment {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .commitment-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .commitment-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }
        
        .commitment-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .commitment-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(230, 126, 34, 0.1);
            border-radius: 50%;
            color: var(--secondary);
            font-size: 30px;
        }
        
        .commitment-card h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .commitment-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .environmental {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .environmental-item {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 90px;
        }
        
        .environmental-content {
            flex: 1;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease;
        }
        
        .environmental-content.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .environmental-image {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s ease;
        }
        
        .environmental-image.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .environmental-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .environmental-item:nth-child(even) .environmental-content {
            order: 2;
            transform: translateX(50px);
        }
        
        .environmental-item:nth-child(even) .environmental-image {
            order: 1;
            transform: translateX(-50px);
        }
        
        .environmental-item:nth-child(even) .environmental-content.animate,
        .environmental-item:nth-child(even) .environmental-image.animate {
            transform: translateX(0);
        }
        
        .environmental-content h2 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .environmental-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
			text-align: justify;
        }
		
		.environmental-content ul li {
			margin-left: 22px;
			font-size: 16px;
			color: #666;
			line-height: 1.6;
			text-align: justify;
		}
        
       
        .community {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .community-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .community-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
        }
        
        .community-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .community-card:hover {
            transform: translateY(-10px);
        }
        
        .community-image {
            height: 200px;
            overflow: hidden;
        }
        
        .community-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .community-card:hover .community-image img {
            transform: scale(1.1);
        }
        
        .community-content {
            padding: 25px;
        }
        
        .community-content h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .community-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
			text-align: justify;
        }
        
        .sustainability-report {
            padding: 80px 0;
            background-color: var(--white);
            color: var(--primary);
            text-align: center;
        }
        
        .report-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .report-container h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .report-container p {
            margin-bottom: 30px;
            font-size: 18px;
            opacity: 0.9;
        }
        
        @media (max-width: 992px) {
            .commitment-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .environmental-item {
                flex-direction: column;
                gap: 30px;
            }
            
            .environmental-item:nth-child(even) .environmental-content {
                order: 1;
            }
            
            .environmental-item:nth-child(even) .environmental-image {
                order: 2;
            }
            
			.environmental-content h2 {
				font-size: 18px;
				color: var(--primary);
				margin-bottom: 20px;
			}
                        
            .community-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .sustainability-hero {
                height: 50vh;
            }
            
            .sustainability-hero h1 {
                font-size: 36px;
            }
            
            .sustainability-hero p {
                font-size: 18px;
            }
            
            .commitment-container {
                grid-template-columns: 1fr;
            }
            
            .community-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .sustainability-hero {
                height: 40vh;
            }
            
            .sustainability-hero h1 {
                font-size: 28px;
            }
        }
		
		.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-text p, .contact-text a {
    color: #555;
    line-height: 1.6;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--secondary);
}

.social-media h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
}

.contact-form {
    flex: 1;
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
	background-color: #fff;
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

 .faq-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--primary);
            color: var(--white);
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #003d5f;
        }

.faq-question i {
            transition: transform 0.3s;
        }
        
.faq-question.active i {
            transform: rotate(180deg);
        }

.faq-answer {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
		
.faq-answer p {
    padding: 0 0 20px;
    line-height: 1.6;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 20px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }
    
    .services-hero-content p {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 20px;
    }
	
	.contact-info {
        margin-left: 18px;
    }
    
    .contact-info h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        height: 350px;
    }
    
    .services-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
}
		