/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-gold: #b07c2c;
    --primary-gold-hover: #b8860b;
    --dark-bg: #1a1a1a;
    --dark-text: #000000;
	--gray-bg: #f2f2f2;
    --light-text: #000000;
    --white: #ffffff;
    --border-light: #e0e0e0;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: 'Nunito Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==========================================================================
   Top Contact Bar
   ========================================================================== */
.top-contact-bar {
    background: var(--gray-bg);
    color: var(--white);
    padding: 0px 0;
    font-size: 13px;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-link {
    color: var(--dark-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-size: 13px;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-icon {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
}

.directory-link {
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 0px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.directory-link:hover {
    background: var(--primary-gold-hover);
}

/* ==========================================================================
   Main Header Navigation
   ========================================================================== */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 400;
    font-size: 15px;
    padding: 5px 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-separator {
    color: var(--light-text);
    font-weight: normal;
    font-size: 13px;
    margin: 0 2px;
    user-select: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.lang-option {
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--dark-text);
    padding: 2px 4px;
}

.lang-option.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.lang-option:hover:not(.active) {
    color: var(--primary-gold);
}

.separator {
    color: var(--light-text);
    margin: 0 0px;
}


/* ==========================================================================
   Golden Line Below Navigation
   ========================================================================== */
.main-nav {
    position: relative;
}

.golden-line {
    position: absolute;
    left: 0;
    right: 150px; /* Leave space for language toggle */
    bottom: -1px;
    height: 1px;
    background: var(--primary-gold);
    z-index: 1;
}

/* Position the line to align with nav-links specifically */
.nav-links {
    position: relative;
}

.nav-links::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px; /* Adjust based on nav padding */
    height: 1px;
    background: linear-gradient(90deg, var(--dark-bg) 0%, #ffd700 50%, var(--dark-bg) 100%);
    z-index: 1;
}

/* Hide the original golden-line div since we're using pseudo-element */
.golden-line {
    display: none;
}

/* Responsive adjustments for golden line */
@media (max-width: 1024px) {
    .nav-links::after {
        display: none; /* Hide on mobile when using hamburger menu */
    }
}
/* ==========================================================================
   Mobile Menu Toggle
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.mobile-active {
        left: 0;
    }
    
    .nav-links li {
        flex-direction: column;
    }
    
    .nav-links a {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 10px 20px;
    }
    
    .nav-separator {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .top-contact-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-link {
        font-size: 12px;
    }
    
    .directory-link {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .main-nav {
        padding: 8px 0;
    }
    
    .language-toggle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 10px;
    }
    
    .contact-link {
        font-size: 11px;
        gap: 6px;
    }
    
    .contact-icon {
        font-size: 12px;
    }
    
    .directory-link {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .nav-links a {
        font-size: 18px;
    }
}

.EventDate {
	color: var(--dark-text);	
	font-weight: 600px;
	font-size: 24px;
}
/* ==========================================================================
   Hero Sections
   ========================================================================== */

.hero-logo-section {
    padding: 15px 0;
    text-align: center;
}

.hero-logo img {
    max-width: 100%;
    width: 1100px;
    height: 330px;
    object-fit: fit;
}

/* Tablet and below */
@media (max-width: 1024px) {
    .hero-logo img {
        width: 800px;
        height: 220px;
    }
}

/* Mobile and below */
@media (max-width: 768px) {
    .hero-logo img {
        width: 600px;
        height: 160px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-logo img {
        width: 400px;
        height: 110px;
    }
}
/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */

.hero-slider-section {
    background: #ffffff;
    padding: 0;
    position: relative;
}

.hero-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid rgba(255,255,255,0.8);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.dot.active {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Golden Line Above Hero Banner */
.hero-golden-line {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: var(--primary-gold);
    margin: 0 auto 30px auto;
}

/* Responsive adjustments for hero golden line */
@media (max-width: 1024px) {
    .hero-golden-line {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .hero-golden-line {
        max-width: 98%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-golden-line {
        margin-bottom: 15px;
    }
}
/* ==========================================================================
   Timer Section
   ========================================================================== */

.timer-section {
    background: var(--bg-light);
    padding: 10px 0;
    text-align: center;
}

.timer-content p {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.countdown {
    font-size: 18px;
    color: var(--dark-text);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: var(--white);
    padding: 10px 0;
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    min-width: 150px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-icon {
    margin: 0 auto 15px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Icon styling for all three libraries */
.stat-icon .material-icons,
.stat-icon .fas,
.stat-icon .las {
    font-size: 32px;
    line-height: 1;
    vertical-align: middle;
    display: block;
}
.stat-item h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 500;
}

/* ==========================================================================
   Welcome & Content Sections
   ========================================================================== */

.welcome-section {
    padding: 20px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: left;
    padding-left: 10px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.welcome-content {
    padding-left: 10px;
    padding-right: 40px;
    text-align: left;
}

.welcome-content p {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.5;
    color: var(--light-text);
}

/* ==========================================================================
   Strategic Partners Section - Rectangular Design
   ========================================================================== */

.strategic-partners-section {
    background: var(--white);
    padding: 20px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-placeholder {
    background: #c0c0c0;
    border: 2px solid #999999;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.partner-placeholder:hover {
    border-color: #777777;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Remove the nested logo area completely and reset any inherited styles */
.partner-logo-area {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
}

/* Add text overlay for placeholder */
.partner-placeholder::before {
    content: "AWARD CATEGORY";
    color: #666;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-placeholder {
        min-height: 150px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-placeholder {
        min-height: 120px;
    }
    
    .partner-placeholder::before {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .partner-placeholder {
        min-height: 100px;
    }
    
    .partner-placeholder::before {
        font-size: 11px;
    }
}

/* ==========================================================================
   Sustainability Section
   ========================================================================== */

.sustainability-section {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    gap: 20px;
    align-items: center;
}

.sustainability-image {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sustainability-image img {
    width: 100%;
    height: 400px;
    object-fit: fit;
    transition: transform 0.3s ease;
}

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

.sustainability-text {
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.sustainability-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
}


/* Golden Title Underline */
.title-underline {
    width: 320px;
    height: 5px;
    background: var(--primary-gold);
    margin-bottom: 30px;
    border-radius: 0px;
}

/* Alternative gradient golden underline */
.title-underline-gradient {
    width: 150px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    margin-bottom: 30px;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-underline,
    .title-underline-gradient {
        width: 120px;
        height: 3px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .title-underline,
    .title-underline-gradient {
        width: 100px;
        margin-bottom: 15px;
    }
}

.sustainability-description {
    font-size: 20px;
    line-height: 1.5;
    color: var(--light-text);
	margin-right: 80px;
}

/* Format the path-breaking achievements text */
.sustainability-section > .container > p:first-child,
.achievements-text {
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sustainability-section > .container > p:first-child,
    .achievements-text {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .sustainability-section > .container > p:first-child,
    .achievements-text {
        font-size: 15px;
        margin-bottom: 15px;
    }
}
/* ==========================================================================
   Innovation Section
   ========================================================================== */

.innovation-section {
    background: var(--bg-light);
    padding: 40px 0;
    overflow: hidden;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 20px;
    align-items: center;
}

.innovation-text {
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.innovation-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: right;
}

.innovation-description {
    font-size: 20px;
    line-height: 1.5;
    color: var(--light-text);
    text-align: right;
	margin-left: 100px;
}

.innovation-image {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.innovation-image img {
    width: 100%;
    height: 450px;
    object-fit: fit;
    transition: transform 0.3s ease;
}

/* Golden Title Underline */
.title-underlineR {
    width: 320px;
    height: 5px;
    background: var(--primary-gold);
    margin-bottom: 30px;
    margin-left: auto;
    border-radius: 0px;
}

/* Alternative gradient golden underline */
.title-underline-gradient {
    width: 150px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    margin-bottom: 30px;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-underlineR,
    .title-underline-gradient {
        width: 120px;
        height: 3px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .title-underlineR,
    .title-underline-gradient {
        width: 100px;
        margin-bottom: 15px;
    }
}

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

.innovation-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.1), rgba(0, 168, 232, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.innovation-image:hover::before {
    opacity: 1;
}

/* ==========================================================================
   Objectives Section
   ========================================================================== */

.objectives-section {
    background: #ffffff;
    padding: 60px 0;
}

.objectives-section .section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    padding-left: 10px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.objective-card {
    background: #f8f9fa;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.objective-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.objective-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.objective-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #333;
    font-weight: 600;
}

.objective-card p {
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    margin: 0 25px 25px 25px;
}

/* ==========================================================================
   Global Cities Best Practices Section
   ========================================================================== */
   
.global-cities-section {
    background: #ffffff;
    padding: 60px 0;
}

.global-cities-section .section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 50px;
    color: #1a1a1a;
    padding-left: 0;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
}

.practice-item {
    padding: 40px 30px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
    display: flex;
    align-items: center;
    min-height: 120px;
    transition: background-color 0.3s ease;
}

.practice-item:nth-child(3n) {
    border-right: none;
}

.practice-item:nth-child(n+7) {
    border-bottom: none;
}

.practice-item:hover {
    background: #f8f9fa;
}

.practice-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    padding: 20px 0;
    background: var(--bg-light);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 700;
}

/* ==========================================================================
   Articles Section
   ========================================================================== */

.articles-section {
    background: var(--white);
    padding: 40px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--bg-light);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.article-card:hover {
    transform: translateY(-10px);
}

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

.article-card h3 {
    font-size: 21px;
    padding-left: 60px;
    padding-right: 40px;
    color: var(--dark-text);
    line-height: 1.5;
}

.article-card a{
    text-decoration: none;
    color: #333;
}

.article-card p {
    font-size: 19px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 20px 20px;
    color: var(--light-text);
    line-height: 1.5;
}

/* ==========================================================================
   Footer Separator Line
   ========================================================================== */

.footer-separator {
    width: 100%;
    height: 8px;
    background: var(--primary-gold);
    margin: 0;
    padding: 0;
    border: none;
}

/* Alternative gradient version */
.footer-separator-gradient {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-gold-hover) 0%, var(--primary-gold) 50%, var(--primary-gold-hover) 100%);
    margin: 0;
    padding: 0;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-separator,
    .footer-separator-gradient {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .footer-separator,
    .footer-separator-gradient {
        height: 5px;
    }
}


/* ==========================================================================
   Animation Classes
   ========================================================================== */

.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet and below - Hide top contact bar */
@media (max-width: 1024px) {
    .top-contact-bar {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.mobile-active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-logo img {
        width: 600px;
    }
    
    .hero-slider img {
        width: 700px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .sustainability-content {
        gap: 40px;
    }
    
    .innovation-content {
        gap: 40px;
    }
    
    .sustainability-title,
    .innovation-title {
        font-size: 42px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slider-dots {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo img {
        width: 500px;
    }
    
    .hero-slider {
        max-width: 600px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .section-title {
        font-size: 28px;
        padding-left: 20px;
        text-align: center;
    }
    
    .welcome-content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .sustainability-content,
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sustainability-title,
    .innovation-title {
        font-size: 36px;
        text-align: center;
    }
    
    .title-underline,
    .title-underlineR {
        margin: 20px auto 30px;
    }
    
    .sustainability-text,
    .innovation-text {
        padding: 0;
        text-align: center;
    }
    
    .innovation-description {
        text-align: center;
    }
    
    .sustainability-image img,
    .innovation-image img {
        height: 300px;
    }
    
    .objectives-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .innovation-text {
        order: 2;
    }
    
    .innovation-image {
        order: 1;
    }
    
    .objective-card {
        margin: 0 10px;
    }
    
    .objectives-section .section-title {
        text-align: center;
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .global-cities-section {
        padding: 40px 0;
    }
    
    .global-cities-section .section-title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-item {
        border-right: none;
        padding: 30px 20px;
        min-height: 100px;
    }
    
    .practice-item:nth-child(n+1) {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .practice-item:last-child {
        border-bottom: none;
    }
    
    .practice-item p {
        font-size: 15px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    .action-btn {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        width: 350px;
    }
    
    .hero-slider {
        max-width: 400px;
    }
    
    .slider-container {
        height: 280px;
    }
    
    .slider-dots {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 300px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .stat-item h3 {
        font-size: 20px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
    
    .sustainability-title,
    .innovation-title {
        font-size: 28px;
    }
    
    .sustainability-image img,
    .innovation-image img {
        height: 250px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-placeholder {
        padding: 25px 20px;
        min-height: 100px;
    }
    
    .partner-logo-area {
        height: 50px;
    }
    
    .global-cities-section .section-title {
        font-size: 28px;
    }
    
    .practice-item {
        padding: 25px 15px;
        min-height: 80px;
    }
    
    .practice-item p {
        font-size: 14px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 30px;
    }
}

/* ==========================================================================
   Footer Styles - Refactored Grid Layout
   ========================================================================== */

/* Footer Main Container */
.main-footer {
    background: #e5e5e5;
    padding: 40px 0 0;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

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

/* ==========================================================================
   Footer Content Layout
   ========================================================================== */

.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}



.footer-logo {
    width: 120px;
    height: auto;
    border-radius: 0%;
}

/* Navigation Grid */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Footer Columns */
.footer-column h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-transform: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    display: block;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
}

/* ==========================================================================
   Second Row Navigation
   ========================================================================== */

.footer-second-row {
    margin-bottom: 30px;
}

.footer-second-grid {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr) 200px;
    gap: 30px;
}

.footer-spacer {
    /* Empty space for alignment */
}

/* ==========================================================================
   Newsletter and Social Section
   ========================================================================== */

.footer-newsletter-section {
    margin-bottom: 30px;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 200px 2fr 120px 200px 200px;
    gap: 20px;
    align-items: center;
}

.newsletter-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
    text-transform: none;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    min-width: 250px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #666;
}

.submit-column {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-top: 27px;
}

.submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 2;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #333;
}

/* Social Media Icons */
.social-column {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-top: 27px;
    justify-content: flex-start;
}

.social-icons {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons li a i {
    font-size: 16px;
}

/* Individual social media colors */
.social-icons li:nth-child(1) a { background: #3b5998; } /* Facebook */
.social-icons li:nth-child(2) a { background: #e4405f; } /* Instagram */
.social-icons li:nth-child(3) a { background: #1da1f2; } /* Twitter */
.social-icons li:nth-child(4) a { background: #0077b5; } /* LinkedIn */
.social-icons li:nth-child(5) a { background: #ff0000; } /* YouTube */

.social-icons li a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* ==========================================================================
   Footer Description
   ========================================================================== */

.footer-description {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   Copyright Section
   ========================================================================== */

.footer-copyright {
    background: #000;
    padding: 15px 0;
    margin-top: 0;
}

.footer-copyright p {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .footer-second-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .submit-column,
    .social-column {
        justify-content: center;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-second-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
   
    
    .footer-logo {
        width: 60px;
    }

    
    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 11px;
    }
    
    .newsletter-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .social-icons li a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-description p {
        font-size: 11px;
        padding: 0 10px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-nav-grid,
    .footer-second-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content,
    .footer-second-row,
    .footer-newsletter-section {
        margin-bottom: 20px;
    }
    
    
    .footer-logo {
        width: 50px;
    }
    
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icons li a {
        width: 30px;
        height: 30px;
    }
    
    .social-icons li a i {
        font-size: 12px;
    }
}