/* CRITICAL: Add this at the top of your CSS file */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    overflow-x: hidden;
}
/* Global Styles */
:root {
    --primary-green: #url(../Chandra CivilCo/LOGO.png);
    --secondary-gold: #D4B06A;
    --dark-gray: #333333;
    --medium-gray: #555555;
    --light-gray: #F5F5F5;
    --white: #f8f7f7;
    --black: #000000;
    --overlay-dark: rgba(10, 77, 60, 0.85);
    --overlay-light: rgba(212, 176, 106, 0.15);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-gold);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Geometric Accents */
.geometric-accent {
    display: inline-block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.geometric-pattern {
    position: absolute;
    width: 200px;
    height: 150px;
    background-image: linear-gradient(45deg, var(--secondary-gold) 25%, transparent 25%),
                      linear-gradient(-45deg, var(--secondary-gold) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

.geometric-pattern.left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.geometric-pattern.right {
    right: -50px;
    bottom: 20%;
}

/* Buttons */
.primary-btn, .secondary-btn, .tender-btn, .view-project-btn, .submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.primary-btn {
    background-color: var(--primary-green);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--dark-gray);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.secondary-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.tender-btn {
    background-color: var(--secondary-gold);
    color: var(--dark-gray);
}

.tender-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.view-project-btn {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 8px 16px;
    font-size: 0.8rem;
}

.view-project-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.submit-btn {
    background-color: var(--primary-green);
    color: var(--white);
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-gold);
    color: var(--dark-gray);
}

/* Icons in buttons */
.primary-btn i, .secondary-btn i, .tender-btn i, .submit-btn i {
    margin-left: 8px;
}

/* Enhanced Navigation Bar */
:root {
    --primary-green: #0A4D3C;
    --secondary-gold: #D4B06A;
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --nav-font: 'Open Sans', sans-serif;
    --nav-height: 100px;
    --nav-height-scrolled: 65px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: var(--primary-green);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    height: var(--nav-height);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.navbar-scrolled {
    height: var(--nav-height-scrolled);
    background-color: rgba(10, 77, 60, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo-container {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    height: 110px;
    width: 100px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.navbar-scrolled .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: relative;
}

.nav-links a {
    color: var(--white);
    font-family: var(--nav-font);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--secondary-gold);
    transform: translateY(-2px);
}

/* Underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-gold);
    transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Active state */
.nav-links a.active {
    color: var(--secondary-gold);
}

/* Glow effect on hover */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    background-color: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links a:hover::before {
    width: 30px;
    height: 2px;
    opacity: 0.3;
    box-shadow: 0 0 10px 5px rgba(212, 176, 106, 0.3);
}

/* Tender Button */
.nav-button {
    position: relative;
    z-index: 2;
}

.tender-btn {
    background-color: var(--secondary-gold);
    color: var(--primary-green);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--nav-font);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 176, 106, 0.2);
}

.tender-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.tender-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 176, 106, 0.3);
    background-color: #e0bb7a;
}

.tender-btn:hover::before {
    left: 100%;
}

.tender-btn i {
    transition: transform 0.3s ease;
}

.tender-btn:hover i {
    transform: translateX(4px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-green), #083828);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        gap: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 0.5rem 0;
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.6s; }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-button {
        display: none;
    }
    
    .navbar {
        padding: 0 5%;
    }
}

/* Animations for page load */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeInDown 0.6s ease forwards;
}

.nav-links a {
    opacity: 0;
    animation: fadeInDown 0.5s ease forwards;
}

.nav-links a:nth-child(1) { animation-delay: 0.1s; }
.nav-links a:nth-child(2) { animation-delay: 0.2s; }
.nav-links a:nth-child(3) { animation-delay: 0.3s; }
.nav-links a:nth-child(4) { animation-delay: 0.4s; }
.nav-links a:nth-child(5) { animation-delay: 0.5s; }
.nav-links a:nth-child(6) { animation-delay: 0.6s; }

.tender-btn {
    opacity: 0;
    animation: fadeInDown 0.5s ease 0.7s forwards;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0A4D3C;
}

/* Background Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-your-image.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 2;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.shape {
    position: absolute;
    border: 2px solid rgba(212, 176, 106, 0.1);
    border-radius: 5px;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
    transform: rotate(45deg);
    animation: floatShape 8s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -30px;
    transform: rotate(30deg);
    animation: floatShape 6s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: rotate(60deg);
    animation: floatShape 7s infinite ease-in-out;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-text-container {
    max-width: 800px;
}

/* Animated Heading */
.hero-text-container h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.animate-text span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.4s; }
.line-3 { 
    animation-delay: 0.6s;
    color: #D4B06A;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards 0.8s;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards 1s;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 176, 106, 0.1);
    border: 1px solid rgba(212, 176, 106, 0.3);
    border-radius: 20px;
    color: #D4B06A;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(212, 176, 106, 0.2);
    transform: translateY(-2px);
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards 1.2s;
}

.primary-btn {
    position: relative;
    padding: 1rem 2rem;
    background: #D4B06A;
    color: #0A0A0A;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hover-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.primary-btn:hover .btn-hover-shape {
    transform: translateX(0);
}

.secondary-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: #D4B06A;
    border: 2px solid #D4B06A;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(212, 176, 106, 0.1);
    transform: translateY(-2px);
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeIn 0.8s forwards 1.4s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D4B06A;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(45deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-text-container h1 {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-text-container h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .achievement-badges {
        flex-wrap: wrap;
    }
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    opacity: 0.2;
}

.mission-vision {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mission-box, .vision-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mission-box i, .vision-box i {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item i {
    color: var(--secondary-gold);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Projects Section */
.projects-section {
    background-color: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    background-color: var(--overlay-light);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.view-all-projects {
    text-align: center;
    margin-top: 3rem;
}

/* Tenders Section */
.tenders-section {
    background-color: var(--white);
}

.tenders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tender-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tender-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tender-tag {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tender-details {
    margin: 1.5rem 0;
}

.tender-details p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.tender-details i {
    color: var(--secondary-gold);
    margin-right: 0.8rem;
}

/* Contact Section */
/* Enhanced Contact Section Styles */
.contact-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    background-color: var(--primary-green);
    padding: 2rem;
    border-radius: 12px;
    color: var(--white);
    height: fit-content;
}

.info-card {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card:hover {
    transform: translateX(10px);
}

.info-card i {
    color: var(--secondary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 77, 60, 0.1);
}

.form-control.error {
    border-color: #ff3b3b;
}

.error-message {
    color: #ff3b3b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    color: #28a745;
    padding: 1rem;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    margin-top: 1rem;
}
/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    color: var(--white);
    padding: 6rem 0 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Geometric Pattern Overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(212, 176, 106, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 176, 106, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 176, 106, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 176, 106, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.1;
    pointer-events: none;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
    100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

/* Enhanced Company Info Section */
.company-info {
    padding-right: 2rem;
    position: relative;
}

.footer-logo {
    height: 350px;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.1);
}

.footer-logo:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
}

.company-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(245, 243, 243, 0.1);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(212, 176, 106, 0.3);
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a:hover i {
    color: var(--primary-green);
}

/* Enhanced Quick Links Section */
.quick-links h3 {
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.quick-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), transparent);
    transition: width 0.3s ease;
}

.quick-links:hover h3::after {
    width: 60px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.quick-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--secondary-gold);
}

.quick-links a:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
    padding-left: 10px;
}

.quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Newsletter Section */
.newsletter {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h3 {
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 176, 106, 0.2);
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--secondary-gold);
    color: var(--primary-green);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 176, 106, 0.3);
}

.newsletter-form button:hover::before {
    left: 100%;
}

/* Enhanced Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 176, 106, 0.3),
        transparent
    );
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Enhanced Newsletter Success Message */
.newsletter-success {
    display: none;
    background: rgba(40, 167, 69, 0.2);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(40, 167, 69, 0.3);
    animation: fadeIn 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .company-info {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .quick-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .quick-links a {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .newsletter {
        margin: 0 auto;
        max-width: 400px;
    }
}
/* WhatsApp Icon Styles */

.whatsapp-container {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    /* Critical: Remove any margin/padding */
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #060707;
    color: #D4B06A;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon i {
    font-size: 32px;
}

/* Pulse Effect */
.whatsapp-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #d4b06a;
    opacity: 0.8;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #030303;
    color: #d4b06a;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #000000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Hover Effects */
.whatsapp-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon i {
        font-size: 28px;
    }

    .whatsapp-tooltip {
        display: none; /* Optional: hide tooltip on mobile */
    }
}
/* Geometric Buildings Animation */
.geometric-buildings {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.building-grid {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

/* Building Groups */
.building-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: buildingFloat 4s infinite ease-in-out;
}

.building-group:nth-child(2) {
    animation-delay: 1s;
}

.building-group:nth-child(3) {
    animation-delay: 2s;
}

/* Individual Buildings */
.building {
    width: 40px;
    height: 100px;
    background: rgba(8, 4, 4, 0.1);
    border: 2px solid #D4B06A;
    position: relative;
    transition: all 0.3s ease;
}

/* Building Variations */
.b1 {
    height: 160px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.b2 {
    height: 120px;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.b3 {
    height: 140px;
    clip-path: polygon(0 5%, 100% 0, 100% 90%, 0 100%);
}

.b4 {
    height: 180px;
    clip-path: polygon(0 10%, 100% 0, 100% 95%, 0 100%);
}

.b5 {
    height: 130px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

/* Building Windows */
.building::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 80%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.1) 5%,
        transparent 5%,
        transparent 15%
    );
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1),
        transparent
    );
    height: 2px;
    width: 100%;
}

.l1 {
    top: 30%;
    animation: lineMove 3s infinite linear;
}

.l2 {
    top: 50%;
    animation: lineMove 3s infinite linear 1s;
}

.l3 {
    top: 70%;
    animation: lineMove 3s infinite linear 2s;
}

/* Animations */
@keyframes buildingFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Add glow effect on hover */
.building:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .geometric-buildings {
        width: 40%;
    }
    
    .building {
        width: 30px;
    }
}

@media screen and (max-width: 768px) {
    .geometric-buildings {
        width: 30%;
        opacity: 0.5;
    }
    
    .building {
        width: 20px;
    }
}

/* Add this to create a subtle parallax effect */
.building-group {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Add interactive animation on mouse move */
.building {
    transition: transform 0.2s ease;
}
:root {
    /* Font Families */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    
    /* Font Sizes - Desktop */
    --font-size-hero: 4.5rem;      /* 72px */
    --font-size-h1: 3.5rem;        /* 56px */
    --font-size-h2: 2.5rem;        /* 40px */
    --font-size-h3: 1.75rem;       /* 28px */
    --font-size-h4: 1.375rem;      /* 22px */
    --font-size-h5: 1.125rem;      /* 18px */
    --font-size-body: 1rem;        /* 16px */
    --font-size-small: 0.875rem;   /* 14px */
    --font-size-xs: 0.75rem;       /* 12px */
    
    /* Line Heights */
    --line-height-tight: 1.1;
    --line-height-heading: 1.3;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;
}

/* Base Typography */
body {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    color: #333333;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-heading);
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

h1 {
    font-size: var(--font-size-h1);
    letter-spacing: var(--letter-spacing-tight);
}

h2 {
    font-size: var(--font-size-h2);
    letter-spacing: var(--letter-spacing-tight);
}

h3 {
    font-size: var(--font-size-h3);
    letter-spacing: var(--letter-spacing-normal);
}

h4 {
    font-size: var(--font-size-h4);
    letter-spacing: var(--letter-spacing-normal);
}

h5 {
    font-size: var(--font-size-h5);
    letter-spacing: var(--letter-spacing-normal);
}

/* Special Headings */
.section-header h2 {
    font-family: var(--font-secondary);
    font-weight: var(--weight-bold);
    position: relative;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
    font-size: var(--font-size-h5);
    color: var(--medium-gray);
    letter-spacing: var(--letter-spacing-wide);
}

/* Hero Typography */
.hero-section h1 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-hero);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-h4);
    font-weight: var(--weight-light);
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-relaxed);
}

/* Navigation */
.nav-links a {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--font-size-small);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.tender-btn {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--font-size-small);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

/* Body Text */
p {
    margin-bottom: 1.5rem;
    line-height: var(--line-height-relaxed);
}

.lead-text {
    font-size: var(--font-size-h5);
    line-height: var(--line-height-relaxed);
    font-weight: var(--weight-light);
}

/* Cards and Features */
.service-card h3, 
.project-card h3,
.feature-item h3 {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--font-size-h4);
    margin-bottom: 0.75rem;
}

.service-card p,
.project-card p,
.feature-item p {
    font-size: var(--font-size-small);
    line-height: var(--line-height-normal);
}

/* Stats */
.stat-number {
    font-family: var(--font-secondary);
    font-weight: var(--weight-bold);
    font-size: 3rem;
    line-height: 1;
    color: var(--secondary-gold);
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
    font-size: var(--font-size-small);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* Buttons */
.primary-btn, 
.secondary-btn {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--font-size-small);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

/* Footer */
.footer h3 {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--font-size-h5);
    margin-bottom: 1.25rem;
}

.footer p {
    font-size: var(--font-size-small);
    line-height: var(--line-height-normal);
}

.footer-links a {
    font-size: var(--font-size-small);
    font-weight: var(--weight-medium);
}

/* Quotes and Testimonials */
blockquote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: var(--font-size-h4);
    line-height: var(--line-height-relaxed);
    color: var(--primary-green);
}

.testimonial-author {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--font-size-small);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

/* Lists */
ul, ol {
    line-height: var(--line-height-relaxed);
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Captions and Small Text */
.caption, figcaption {
    font-size: var(--font-size-xs);
    font-style: italic;
    color: var(--medium-gray);
}

/* Text Utilities */
.text-uppercase {
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.text-primary {
    color: var(--primary-green);
}

.text-secondary {
    color: var(--secondary-gold);
}

.text-light {
    font-weight: var(--weight-light);
}

.text-medium {
    font-weight: var(--weight-medium);
}

.text-bold {
    font-weight: var(--weight-bold);
}

/* Responsive Typography */
@media (max-width: 1200px) {
    :root {
        --font-size-hero: 4rem;
        --font-size-h1: 3rem;
        --font-size-h2: 2.25rem;
        --font-size-h3: 1.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-hero: 3.5rem;
        --font-size-h1: 2.75rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.375rem;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-hero: 3rem;
        --font-size-h1: 2.5rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.25rem;
        --font-size-h4: 1.125rem;
        --font-size-body: 0.9375rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-hero: 2.5rem;
        --font-size-h1: 2.25rem;
        --font-size-h2: 1.5rem;
    }
}

/* Special Typography Effects */
.animate-text span {
    display: block;
    overflow: hidden;
}

.animate-text span span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.animate-text span:nth-child(1) span { animation-delay: 0.1s; }
.animate-text span:nth-child(2) span { animation-delay: 0.3s; }
.animate-text span:nth-child(3) span { animation-delay: 0.5s; }

@keyframes textReveal {
    to {
        transform: translateY(0);
    }
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
/* Fix for animated text not showing */
.animate-text {
    color: #ffffff; /* Ensure text is white or visible color */
    overflow: visible; /* Allow text to be visible */
}

.animate-text span {
    display: block;
    overflow: visible; /* Change from hidden to visible */
    margin-bottom: 0.2em; /* Add space between lines */
}

.animate-text span span {
    display: inline-block;
    transform: translateY(0); /* Start at visible position instead of 100% */
    opacity: 0; /* Start invisible instead */
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

/* New animation that fades in and moves up slightly */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text span:nth-child(1) span { animation-delay: 0.1s; }
.animate-text span:nth-child(2) span { animation-delay: 0.3s; }
.animate-text span:nth-child(3) span { animation-delay: 0.5s; }
/* Enhanced About Section Styles */
.about-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.about-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, var(--primary-green) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary-green) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.03;
    animation: patternMove 20s linear infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Company Overview */
.about-overview {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.achievement-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 77, 60, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mission & Vision Cards */
.values-container {
    grid-column: 1 / -1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    position: centre;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
}

.card-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .card-accent {
    opacity: 1;
}

/* Director's Message */
.director-message {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.message-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
}

.director-image {
    position: relative;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.message-content {
    padding: 2.5rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(10, 77, 60, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.director-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.signature img {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.signature img:hover {
    opacity: 1;
}

/* Company Timeline */
.company-timeline {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 2rem;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-green);
    opacity: 0.2;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.year {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Animations */
.reveal-fade {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 0.8s ease-out forwards;
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(50px);
    animation: slideLeft 0.8s ease-out forwards;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .message-wrapper {
        grid-template-columns: 1fr;
    }
    
    .director-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-wrapper::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
    }
}
/* Enhanced About Section Styles */
.about-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 77, 60, 0.03) 0%,
        rgba(212, 176, 106, 0.05) 100%
    );
    overflow: hidden;
}

/* Enhanced Background Pattern */
.about-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, var(--secondary-gold) 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, var(--secondary-gold) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    opacity: 0.03;
    animation: patternMove 20s linear infinite;
}

/* Enhanced Section Header */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-header h2 {
    color: var(--primary-green);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.geometric-accent {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 3px solid var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 10s linear infinite;
}

/* Company Overview Enhancement */
.about-overview {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 176, 106, 0.1);
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
}

.achievement-tags .tag {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-gold));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 176, 106, 0.2);
}

.achievement-tags .tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 176, 106, 0.3);
}

/* Enhanced Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

/* Enhanced Director's Message */
.director-message {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 4rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.message-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    position: relative;
}

.director-image {
    position: relative;
    overflow: hidden;
}

.director-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-image:hover img {
    transform: scale(1.05);
}

.director-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-green));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Timeline */
.company-timeline {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-gold), var(--primary-green));
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

.year {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-green));
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(212, 176, 106, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Hover Effects */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 176, 106, 0.15);
}

.timeline-item:hover .year {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 176, 106, 0.3);
}

/* Additional Decorative Elements */
.decorative-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--secondary-gold);
    opacity: 0.1;
    pointer-events: none;
}

.decorative-accent.top-right {
    top: -20px;
    right: -20px;
    border-left: none;
    border-bottom: none;
}

.decorative-accent.bottom-left {
    bottom: -20px;
    left: -20px;
    border-right: none;
    border-top: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .message-wrapper {
        grid-template-columns: 1fr;
    }
    
    .director-image img {
        width: 100%;
        height: 300px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-wrapper::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
}
/* Enhanced Card Animations and Effects */

/* Card Animation Base */
.value-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    z-index: 1;
}

/* Floating Animation for Cards */
@keyframes floatingCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Shine Effect Animation */
@keyframes shineEffect {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

/* Pulse Animation for Icons */
@keyframes pulseIcon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 176, 106, 0.4);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(212, 176, 106, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 176, 106, 0);
    }
}

/* Border Animation */
@keyframes borderPulse {
    0% {
        border-color: rgba(212, 176, 106, 0.2);
    }
    50% {
        border-color: rgba(212, 176, 106, 0.8);
    }
    100% {
        border-color: rgba(212, 176, 106, 0.2);
    }
}

/* Enhanced Card Styles */
.value-card {
    animation: floatingCard 6s ease-in-out infinite;
    border: 2px solid rgba(212, 176, 106, 0.2);
}

/* Shine Effect */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.5s ease;
}

/* Enhanced Icon Animation */
.card-icon {
    animation: pulseIcon 2s infinite;
    transition: all 0.5s ease;
}

/* Card Content Animation */
.card-content {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

/* Hover Effects */
.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 176, 106, 0.2);
    border-color: var(--secondary-gold);
}

.value-card:hover::before {
    animation: shineEffect 1s forwards;
}

.value-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-green));
}

.value-card:hover .card-icon i {
    color: white;
}

/* Add these new classes to your cards */
.value-card {
    position: relative;
}

/* Animated Corner Decorations */
.card-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-gold);
    opacity: 0;
    transition: all 0.5s ease;
}

.corner-top-left {
    top: 10px;a
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner-top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner-bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner-bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.value-card:hover .card-corner {
    opacity: 1;
    width: 50px;
    height: 50px;
}


/* Enhanced Leadership Section */
/* Leadership Profiles Styles */
.leadership-profiles {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0A4D3C 50%, #1a1a1a 100%);
    overflow: hidden;
}

.leadership-profiles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(10, 77, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 176, 106, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-decoration {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #D4B06A, #0A4D3C);
    top: 20px;
    left: 20px;
    animation-delay: 0s;
    box-shadow: 0 0 15px rgba(212, 176, 106, 0.5);
}

.element-2 {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #0A4D3C, #D4B06A);
    top: 40px;
    right: 30px;
    animation-delay: 2s;
    box-shadow: 0 0 20px rgba(10, 77, 60, 0.5);
}

.element-3 {
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #D4B06A, #000000);
    bottom: 10px;
    left: 50%;
    animation-delay: 4s;
    box-shadow: 0 0 10px rgba(212, 176, 106, 0.3);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4B06A 0%, #0A4D3C 50%, #D4B06A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 0 30px rgba(212, 176, 106, 0.3);
}

.geometric-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4B06A, transparent);
    animation: pulse 2s ease-in-out infinite;
}

.accent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #D4B06A, #0A4D3C);
    box-shadow: 0 0 20px rgba(212, 176, 106, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

.section-header p {
    font-size: 1.2rem;
    color: #D4B06A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Profiles Container */
.profiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Profile Cards */
.profile-card {
    position: relative;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 77, 60, 0.1) 100%);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 176, 106, 0.2);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.1) 0%, rgba(10, 77, 60, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 176, 106, 0.2);
    border-color: rgba(212, 176, 106, 0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 176, 106, 0.1) 0%, rgba(10, 77, 60, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.profile-card:hover .card-glow {
    opacity: 1;
    animation: rotate 8s linear infinite;
}

/* Profile Avatar */
.profile-avatar {
    position: relative;
    padding: 30px 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A4D3C 0%, #D4B06A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: all 0.6s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.profile-card:hover .avatar-initials {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D4B06A 0%, #0A4D3C 100%);
    box-shadow: 
        0 15px 40px rgba(212, 176, 106, 0.3),
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(212, 176, 106, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(10, 77, 60, 0.2);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.avatar-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #D4B06A, #0A4D3C);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 80%;
    animation-delay: 3s;
}

/* Badges */
.experience-badge,
.age-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #0A4D3C 0%, #D4B06A 100%);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(10, 77, 60, 0.4);
    animation: pulse-badge 3s ease-in-out infinite;
    border: 2px solid rgba(212, 176, 106, 0.3);
}

.badge-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.badge-content .number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-content small {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #D4B06A, #0A4D3C);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    filter: blur(10px);
}

.profile-card:hover .badge-glow {
    opacity: 0.6;
}

/* Role Badges */
.role-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000 0%, #0A4D3C 100%);
    color: #D4B06A;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 176, 106, 0.3);
    transition: all 0.6s ease;
    white-space: nowrap;
    overflow: hidden;
}

.role-badge i {
    font-size: 1rem;
    animation: icon-glow 2s ease-in-out infinite alternate;
}

.profile-card:hover .role-badge {
    background: linear-gradient(135deg, #0A4D3C 0%, #D4B06A 100%);
    color: #000000;
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 176, 106, 0.3);
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.profile-card:hover .badge-shine {
    left: 100%;
}

/* Profile Content */
.profile-content {
    padding: 40px 30px 30px;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.profile-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4B06A;
    margin-bottom: 8px;
    position: relative;
}

.profile-header .designation {
    color: rgba(14, 12, 10, 0.8);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-underline {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0A4D3C, #D4B06A);
    margin: 15px auto 0;
    border-radius: 1px;
    animation: expand 2s ease-in-out infinite alternate;
}

/* Quote Container */
.quote-container {
    position: relative;
    margin-bottom: 30px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0A4D3C, #D4B06A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.quote-mark i {
    color: #ffffff;
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.quote-container blockquote {
    background: rgba(10, 77, 60, 0.1);
    border: 1px solid rgba(212, 176, 106, 0.2);
    border-radius: 15px;
    padding: 25px 20px 20px 30px;
    margin: 0;
    font-style: italic;
    color: rgba(8, 8, 8, 0.9);
    line-height: 1.6;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-decoration {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(10, 77, 60, 0.1);
}

/* Background Decorations */
.background-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #D4B06A, #0A4D3C);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #0A4D3C, #D4B06A);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #D4B06A, #000000);
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #000000, #0A4D3C);
    top: 30%;
    right: 25%;
    animation-delay: 15s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(212, 176, 106, 0.6); }
    100% { box-shadow: 0 0 30px rgba(212, 176, 106, 0.8); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes icon-glow {
    0% { text-shadow: 0 0 5px rgba(212, 176, 106, 0.5); }
    100% { text-shadow: 0 0 15px rgba(212, 176, 106, 0.8); }
}

@keyframes expand {
    0% { width: 50px; }
    100% { width: 70px; }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

@keyframes float-shape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .profiles-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .profile-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .avatar-initials {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .avatar-container {
        width: 140px;
        height: 140px;
    }
    
    .role-badge {
        font-size: 0.75rem;
        padding: 10px 15px;
    }
    
    .profile-header h3 {
        font-size: 1.5rem;
    }
    
    .quote-container blockquote {
        padding: 20px 15px 15px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .leadership-profiles {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .profile-content {
        padding: 30px 20px 20px;
    }
    
    .role-badge span {
        display: none;
    }
    
    .role-badge {
        padding: 8px 12px;
    }
}

/* Enhanced Badge Styles */
.role-badge {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-green), #156951);
    color: white;
    padding: 12px 25px;
    border-radius: 0 30px 30px 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    background: var(--secondary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 3px;
}

/* Enhanced Content Styles */
.profile-content {
    padding: 2.5rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 1)
    );
    position: relative;
}

.profile-content h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.profile-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.designation {
    color: var(--secondary-gold);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Young Innovator Specific Styles */
.young-innovator .role-badge {
    background: linear-gradient(90deg, #FFD700, var(--secondary-gold));
    color: var(--primary-green);
}

/* Enhanced Hover Effects */
.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-card:hover .profile-image::after {
    opacity: 1;
}

.profile-card:hover .role-badge {
    transform: translateX(0);
}

.profile-card:hover .experience-badge {
    transform: scale(1.1) rotate(10deg);
}

.profile-card:hover h3::after {
    width: 100%;
}

/* Decorative Elements */
.profile-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-gold);
    border-left: none;
    border-bottom: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.profile-card:hover::before {
    opacity: 0.2;
    transform: rotate(45deg);
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.profile-card:nth-child(1) { animation-delay: 0.2s; }
.profile-card:nth-child(2) { animation-delay: 0.4s; }
.profile-card:nth-child(3) { animation-delay: 0.6s; }

/* Social Links (Optional) */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 77, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .profiles-container {
        flex-wrap: wrap;
    }

    .profile-card {
        flex: 0 0 calc(50% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .profile-card {
        flex: 0 0 100%;
    }

    .profile-image {
        height: 350px;
    }

    .profile-content {
        padding: 2rem;
    }
}
/* Departments Section Styles */
.departments-section {
    padding: 8rem 0;
    background: linear-gradient(to right, rgba(10, 77, 60, 0.02), rgba(212, 176, 106, 0.02));
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.departments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(10, 77, 60, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(212, 176, 106, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.departments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Department Card Styles */
.department-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 176, 106, 0.1);
    overflow: hidden;
}

/* Department Icon */
.dept-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.1), rgba(212, 176, 106, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.dept-icon i {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    transition: all 0.3s ease;
}

/* Department Content */
.dept-content h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.dept-content h4 {
    color: var(--secondary-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.dept-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Features List */
.dept-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dept-features span {
    background: rgba(10, 77, 60, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.dept-features span i {
    color: var(--secondary-gold);
}

/* Department Link */
.dept-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.dept-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

/* Hover Effects */
.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.department-card:hover .dept-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-green);
}

.department-card:hover .dept-icon i {
    color: var(--white);
}

.dept-features span:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.dept-features span:hover i {
    color: var(--white);
}

.dept-link:hover {
    color: var(--secondary-gold);
}

.dept-link:hover::after {
    width: 100%;
}

/* Decorative Elements */
.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent, rgba(212, 176, 106, 0.05));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.department-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .departments-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .departments-container {
        grid-template-columns: 1fr;
    }

    .department-card {
        padding: 2rem;
    }
}

/* ===== FAQ SECTION STYLES ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 176, 106, 0.1) 0%, rgba(212, 176, 106, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 176, 106, 0.05) 0%, rgba(212, 176, 106, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4B06A 0%, #B8941A 100%);
    border-radius: 2px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.geometric-accent {
    display: block;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #D4B06A 0%, #B8941A 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: 15px;
    margin-top: 40px;
}

/* Individual FAQ Item */
.faq-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 176, 106, 0.1);
    margin-bottom: 10px;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 176, 106, 0.3);
}

/* FAQ Question */
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #D4B06A 0%, #B8941A 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    color: #fff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #B8941A 0%, #D4B06A 100%);
}

.faq-item.active .faq-icon i {
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    border-top: 1px solid rgba(212, 176, 106, 0.1);
}

.faq-content {
    padding: 25px 30px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-content p {
    margin: 0 0 15px 0;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content ul, .faq-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-content li strong {
    color: #333;
    font-weight: 600;
}

.faq-content a {
    color: #D4B06A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-content a:hover {
    color: #B8941A;
    text-decoration: underline;
}

/* FAQ Footer */
.faq-footer {
    margin-top: 60px;
    text-align: center;
}

.faq-contact-cta {
    background: linear-gradient(135deg, #D4B06A 0%, #B8941A 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(212, 176, 106, 0.3);
}

.faq-contact-cta h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.faq-contact-cta p {
    font-size: 1.1rem;
    margin: 0 0 25px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.faq-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.faq-btn.primary {
    background-color: #fff;
    color: #D4B06A;
    border: 2px solid #fff;
}

.faq-btn.primary:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.faq-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.faq-btn.secondary:hover {
    background-color: #fff;
    color: #D4B06A;
    transform: translateY(-2px);
}

/* Animation Classes */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-contact-cta {
        padding: 30px 20px;
    }
    
    .faq-contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
    }
    
    .faq-icon i {
        font-size: 12px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }

/* Smooth Scrolling for FAQ Links */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.faq-question:focus {
    outline: 2px solid #D4B06A;
    outline-offset: 2px;
}

.faq-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .faq-section {
        background: #fff !important;
        box-shadow: none !important;
    }
    
    .faq-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .faq-contact-cta {
        display: none;
    }
}
/* ===== STATISTICS COUNTER SECTION ===== */
.stats-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0e7553 100%);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.stats-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-section .section-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stats-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
    background: #fff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
}
/* ===== CLIENT TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 176, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    position: relative;
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 176, 106, 0.2);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-gold);
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    margin: 0 0 5px 0;
    color: var(--primary-green);
    font-size: 1.3rem;
}

.client-details span {
    color: var(--secondary-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.client-company {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-company i {
    color: var(--secondary-gold);
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-arrow:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-gold);
    transform: scale(1.2);
}


/* ===== NEWS & UPDATES SECTION ===== */
.news-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 30px;
    margin-top: 50px;
}

.news-item.featured {
    grid-row: span 2;
}

.news-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 176, 106, 0.1);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-item.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.news-category {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-category.featured-tag {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
}

.news-category.award {
    background: linear-gradient(135deg, #ffd700, #f39c12);
    color: #fff;
}

.news-category.innovation {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: #fff;
}

.news-category.csr {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: #fff;
}

.news-category.partnership {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: #fff;
}

.news-category.insights {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: #fff;
}

.news-content {
    padding: 25px;
}

.news-item.featured .news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--secondary-gold);
}

.news-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 1.3rem;
}

.news-item.featured h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.news-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-item.featured p {
    font-size: 1.1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--secondary-gold);
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* News CTA */
.news-cta {
    text-align: center;
    margin-top: 60px;
}

.view-all-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 77, 60, 0.3);
}

.view-all-news-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 77, 60, 0.4);
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .news-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-item.featured {
        grid-column: span 1;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-meta {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .news-image {
        height: 180px;
    }
    
    .news-item.featured .news-image {
        height: 220px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-item h3 {
        font-size: 1.1rem;
    }
    
    .news-item.featured h3 {
        font-size: 1.4rem;
    }
}
/* ===== QUALITY & SAFETY STANDARDS SECTION ===== */
.quality-safety-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quality-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 176, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold));
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.quality-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.quality-card:hover .quality-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-gold), #d4a574);
}

.quality-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.quality-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quality-features {
    list-style: none;
    padding: 0;
}

.quality-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.quality-features i {
    color: var(--secondary-gold);
    font-size: 1rem;
}

/* Certifications Section */
.certifications-section {
    margin-top: 80px;
    padding: 60px 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.certifications-section h3 {
    text-align: center;
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 176, 106, 0.1);
}

.cert-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cert-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-info h4 {
    color: var(--primary-green);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.cert-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Quality Metrics */
.quality-metrics {
    margin-top: 80px;
    text-align: center;
}

.quality-metrics h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.metric-item {
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    color: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(10, 77, 60, 0.3);
}

.metric-item:hover::before {
    opacity: 1;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .quality-safety-section {
        padding: 80px 0;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-card {
        padding: 30px 20px;
    }
    
    .certifications-section {
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cert-item {
        padding: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-item {
        padding: 30px 15px;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .quality-card {
        padding: 25px 15px;
    }
    
    .quality-icon {
        width: 60px;
        height: 60px;
    }
    
    .quality-icon i {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/* ===== PROJECT GALLERY SECTION ===== */
.project-gallery-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 30px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    align-self: flex-end;
    color: #fff;
}

.gallery-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.project-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.completed {
    background: #28a745;
    color: #fff;
}

.project-status.ongoing {
    background: #ffc107;
    color: #000;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    align-self: flex-start;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.gallery-load-more {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 77, 60, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 77, 60, 0.4);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
}

.lightbox-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .gallery-image {
        height: 220px;
    }
}
/* ===== AWARDS & RECOGNITION SECTION ===== */
.awards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.awards-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-gold), var(--primary-green));
    transform: translateX(-50%);
    border-radius: 2px;
}

.award-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.award-item:nth-child(even) {
    flex-direction: row-reverse;
}

.award-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-gold);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 176, 106, 0.3);
}

.award-card {
    width: 45%;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 176, 106, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.award-item:nth-child(odd) .award-card {
    margin-right: auto;
}

.award-item:nth-child(even) .award-card {
    margin-left: auto;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.award-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.award-item:nth-child(odd) .award-card::before {
    right: -35px;
}

.award-item:nth-child(even) .award-card::before {
    left: -35px;
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
}

.award-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.award-content h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.award-organization {
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.award-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.award-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.award-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(10, 77, 60, 0.1);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.award-features i {
    color: var(--secondary-gold);
}

/* Recognition Stats */
.recognition-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-gold), #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-timeline {
        margin: 40px 20px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .award-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 60px;
    }
    
    .award-year {
        position: relative;
        left: -60px;
        transform: none;
        margin-bottom: 20px;
    }
    
    .award-card {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .award-card::before {
        left: -45px !important;
        right: auto !important;
    }
    
    .recognition-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .recognition-stats {
        grid-template-columns: 1fr;
    }
    
    .award-card {
        padding: 20px;
    }
    
    .award-content h3 {
        font-size: 1.2rem;
    }
}
/* ===== TECHNOLOGY & INNOVATION SECTION ===== */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0e7553 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 L 10 10 M 10 0 L 10 20 M 10 10 L 20 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
}

.technology-section .section-header h2 {
    color: #fff;
}

.technology-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
}

.tech-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.tech-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.tech-features {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--secondary-gold);
    font-size: 0.8rem;
}

.tech-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Innovation Showcase */
.innovation-showcase {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-header h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.showcase-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.showcase-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    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 ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-gold);
    border: none;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.showcase-content {
    padding: 20px;
}

.showcase-content h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Technology Partners */
.tech-partners {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tech-partners h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.partner-logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .technology-section {
        padding: 80px 0;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
        padding: 30px 20px;
    }
    
    .tech-stats {
        gap: 15px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tech-card {
        padding: 25px 15px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon i {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== CSR ACTIVITIES SECTION ===== */
.csr-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.csr-intro {
    margin: 50px 0;
    text-align: center;
}

.csr-intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.csr-intro-content h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.csr-intro-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.csr-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.csr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.csr-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.csr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.csr-card:hover .csr-image img {
    transform: scale(1.1);
}

.csr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.csr-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.csr-content {
    padding: 30px;
}

.csr-content h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.csr-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.csr-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.csr-stat {
    text-align: center;
    flex: 1;
}

.csr-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
}

.csr-stat .stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.csr-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.csr-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.csr-features i {
    color: var(--secondary-gold);
    font-size: 0.8rem;
}

/* CSR Impact Dashboard */
.csr-impact-dashboard {
    margin-top: 80px;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.csr-impact-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,3 7,6 C7,3 4,3 4,6 C4,10 10,16 10,16 C10,16 16,10 16,6 C16,3 13,3 13,6 C13,3 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
}

.csr-impact-dashboard h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.impact-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CSR Gallery */
.csr-gallery {
    margin-top: 80px;
    text-align: center;
}

.csr-gallery h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.gallery-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--secondary-gold);
    color: #fff;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .csr-section {
        padding: 80px 0;
    }
    
    .csr-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .csr-content {
        padding: 25px 20px;
    }
    
    .csr-stats {
        gap: 15px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .csr-impact-dashboard {
        padding: 40px 20px;
    }
    
    .gallery-slide img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .csr-intro-content {
        padding: 30px 20px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* ===== CSR ACTIVITIES SECTION ===== */
.csr-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.csr-intro {
    margin: 50px 0;
    text-align: center;
}

.csr-intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.csr-intro-content h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.csr-intro-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.csr-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 176, 106, 0.2);
}

.csr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.csr-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.csr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.csr-card:hover .csr-image img {
    transform: scale(1.1);
}

.csr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.csr-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.csr-content {
    padding: 30px;
}

.csr-content h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.csr-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.csr-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.csr-stat {
    text-align: center;
    flex: 1;
}

.csr-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
}

.csr-stat .stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.csr-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.csr-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.csr-features i {
    color: var(--secondary-gold);
    font-size: 0.8rem;
}

/* CSR Impact Dashboard */
.csr-impact-dashboard {
    margin-top: 80px;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-green), #0e7553);
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.csr-impact-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,3 7,6 C7,3 4,3 4,6 C4,10 10,16 10,16 C10,16 16,10 16,6 C16,3 13,3 13,6 C13,3 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
}

.csr-impact-dashboard h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.impact-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CSR Gallery */
.csr-gallery {
    margin-top: 80px;
    text-align: center;
}

.csr-gallery h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
}

.gallery-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--secondary-gold);
    color: #fff;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .csr-section {
        padding: 80px 0;
    }
    
    .csr-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .csr-content {
        padding: 25px 20px;
    }
    
    .csr-stats {
        gap: 15px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .csr-impact-dashboard {
        padding: 40px 20px;
    }
    
    .gallery-slide img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .csr-intro-content {
        padding: 30px 20px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* Full Screen Footer Background */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0e7553 100%);
    color: var(--white);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
    padding-bottom: 0;
}
     
/* Alternative method if the above doesn't work */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0e7553 100%);
    color: var(--white);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    
    /* Force full viewport width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Ensure no parent containers constrain the footer */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Remove any container constraints */
.container,
.main-wrapper,
.page-wrapper {
    overflow-x: visible;
}

/* Footer content container - keeps content centered but background full width */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    box-sizing: border-box;
}

/* Enhanced Geometric Pattern Overlay - Full Width */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(212, 176, 106, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 176, 106, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 176, 106, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 176, 106, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.1;
    pointer-events: none;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
    100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

/* Enhanced Company Info Section */
.footer-section.company-info {
    padding-right: 2rem;
    position: relative;
}

.footer-logo {
    height: 280px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.1);
}

.footer-logo:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
}

.company-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 300;
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 176, 106, 0.3);
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a:hover i {
    color: var(--primary-green);
    transform: scale(1.1);
}

/* Enhanced Quick Links Section */
.footer-section.quick-links h3 {
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.footer-section.quick-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), transparent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.quick-links:hover h3::after {
    width: 60px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.quick-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--secondary-gold);
    font-weight: bold;
}

.quick-links a:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
    padding-left: 10px;
}

.quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Newsletter Section */
.footer-section.newsletter {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h3 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), transparent);
    border-radius: 2px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 176, 106, 0.3);
    transform: translateY(-2px);
}

.newsletter-form button {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #d4a574 100%);
    color: var(--primary-green);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 176, 106, 0.4);
    background: linear-gradient(135deg, #e0bb7a 0%, var(--secondary-gold) 100%);
}

.newsletter-form button:hover::before {
    left: 100%;
}

/* Enhanced Footer Bottom - Full Width */
.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 176, 106, 0.3),
        transparent
    );
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    transform: translateY(-1px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .company-info {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
        /* Maintain full width on mobile */
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .company-info {
        padding-right: 0;
    }

    .footer-logo {
        height: 280px;
        margin: 0 auto 1.5rem;
        display: block;
    }

    .quick-links h3::after,
        .quick-links h3::after,
    .newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .quick-links a {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .social-links a i {
        font-size: 1.1rem;
    }

    .newsletter {
        margin: 0 auto;
        max-width: 400px;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 40px;
        /* Ensure full width on small screens */
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .footer-content {
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-logo {
        height: 280px;
    }

    .company-info p {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a i {
        font-size: 1rem;
    }

    .newsletter {
        padding: 1.5rem;
        max-width: 100%;
    }

    .newsletter h3 {
        font-size: 1.1rem;
    }

    .newsletter p {
        font-size: 0.85rem;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Animation for footer entrance */
.footer-section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.5s;
}

/* Additional full-width utilities */
.footer-full-width {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* Override any parent container constraints */
.main-container,
.page-container,
.site-container {
    overflow-x: visible !important;
}

/* Ensure body doesn't constrain footer */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* If footer is inside a wrapper, break it out */
.content-wrapper .footer,
.main-wrapper .footer,
.page-wrapper .footer {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* Alternative breakout method */
.footer-breakout {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    margin-left: 0;
    margin-right: 0;
}

/* Force full viewport width */
.footer-viewport {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Debug helper - remove after implementation */
.footer-debug {
    border: 3px solid lime !important;
    box-shadow: inset 0 0 0 3px red !important;
}

/* CSS Grid alternative for full width */
.footer-grid-container {
    display: grid;
    grid-template-columns: 1fr min(1200px, 100%) 1fr;
    grid-column-gap: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-grid-container > * {
    grid-column: 2;
}

.footer-grid-container .footer-background {
    grid-column: 1 / -1;
    grid-row: 1;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0e7553 100%);
}

/* Flexbox alternative for full width */
.footer-flex-container {
    display: flex;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, #0e7553 100%);
}

.footer-flex-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

/* JavaScript solution backup */
.js-full-width {
    transition: all 0.3s ease;
}

/* Print styles */
@media print {
    .footer {
        width: 100% !important;
        margin: 0 !important;
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    .footer::before {
        display: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .footer {
        background: #000 !important;
        border-top: 3px solid #fff !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .footer::before {
        animation: none !important;
    }

    .footer-section {
        animation: none !important;
    }
}

/* Force hardware acceleration for smooth animations */
.footer {
    transform: translateZ(0);
    will-change: transform;
}

/* Ensure footer stays above other elements */
.footer {
    z-index: 100;
    position: relative;
}

/* Additional viewport width enforcement */
.footer {
    min-width: 100vw;
    box-sizing: border-box;
}

/* Container query support (modern browsers) */
@container (min-width: 0px) {
    .footer {
        width: 100cqw;
    }
}
/* FORCE REMOVE WHITE SPACE */
body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}

.footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Hide any elements that might be added after footer */
.footer ~ .cookie-consent,
.footer ~ .cookie-customize-modal,
.footer ~ .search-modal,
.footer ~ .tooltip,
.footer ~ .toast {
    display: none !important;
}

/* Force fixed positioning for floating elements */
.whatsapp-container,
.cookie-preferences-btn,
.theme-toggle,
.print-btn {
    position: fixed !important;
    margin: 0 !important;
    padding: 0 !important;
}
