@font-face {
  font-family: "BruumFY";
  src: url("fonts/BruumFY-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

.legacy-page-section {
    padding: 24px 0 56px;
    background: var(--bg-light);
}

.legacy-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 40px;
    align-items: start;
}

.legacy-page-intro .section-title {
    margin-bottom: 24px;
}

.legacy-page-intro .welcome-content {
    padding-right: 10px;
}

.legacy-media-frame {
    border: 1px solid rgba(176, 124, 44, 0.45);
    background: #fff;
    padding: 10px;
}

.legacy-media-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.detail-card {
    background: #ffffff;
    border: 1px solid rgba(176, 124, 44, 0.24);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.detail-card h3 {
    margin: 0 0 14px;
    font-family: "BruumFY", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    text-transform: uppercase;
}

.detail-card p,
.detail-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

.detail-list {
    margin: 0;
    padding-left: 1.15rem;
}

.detail-list li + li {
    margin-top: 0.45rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 36px;
    align-items: start;
}

.contact-form-panel,
.contact-info-panel {
    background: #ffffff;
    border: 1px solid rgba(176, 124, 44, 0.24);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-panel {
    padding: 24px;
    margin-top: 20px;
}

.form-note {
    margin: 16px 0 22px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--light-text);
}

.contact-form-panel .form-label {
    margin-bottom: 0.45rem;
    font-family: "BruumFY", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--dark-text);
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
    min-height: 48px;
    border-radius: 0;
    border-color: rgba(17, 17, 17, 0.18);
    font-family: inherit;
}

.contact-form-panel textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-submit {
    margin-top: 8px;
    background: #000000;
    border: none;
    color: #ffffff;
    padding: 12px 32px;
    font-family: "BruumFY", Arial, sans-serif;
    font-size: 1rem;
}

.contact-submit:hover,
.contact-submit:focus {
    background: var(--primary-gold);
    color: #ffffff;
}

.contact-side {
    display: grid;
    gap: 22px;
}

.contact-info-panel {
    padding: 24px;
}

.contact-info-panel h3 {
    margin: 0 0 18px;
    font-family: "BruumFY", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-text);
}

.contact-info-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.contact-info-item + .contact-info-item {
    margin-top: 16px;
}

.contact-info-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info-item strong,
.contact-info-item p {
    color: var(--light-text);
}

.contact-info-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
}

.contact-info-item p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .legacy-page-intro,
    .detail-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@font-face {
  font-family: "BruumFY";
  src: url("fonts/BruumFY-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BruumFY";
  src: url("fonts/BruumFY-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "NewJune";
  src: url("fonts/NewJune-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "NewJune";
  src: url("fonts/NewJune-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

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

.shell {
  width: min(1520px, calc(100vw - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.shell--hero {
  width: min(1500px, calc(100vw - 34px));
}

.shell--narrow {
  width: min(1360px, calc(100vw - 90px));
}

/* ==========================================================================
   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: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Top Contact Bar
   ========================================================================== */
.top-strip {
    background: #f0f0f0;
    color: #111111;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.top-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    padding-left: 48px;
    padding-right: 0;
}

.top-strip__contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-strip__contact a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-size: 1.15rem;
    text-transform: none;
}

.top-strip__contact a:hover {
    opacity: 0.8;
}

.top-strip__contact i {
    font-size: 1.25rem;
}

.top-strip__button {
    background: #8c661d;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.5rem;
    border-radius: 0px;
    font-weight: 500;
    font-size: 1.15rem;
    text-transform: none;
    letter-spacing: 0;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.top-strip__button:hover {
    background: var(--primary-gold-hover);
}

.lang-bar {
    background: var(--white);
}

.lang-bar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
    color: var(--dark-text);
    font-size: 13px;
    font-weight: 700;
}

.lang-eng {
    color: var(--primary-gold);
}

.lang-ar {
    color: var(--dark-text);
}

/* Navigation Styles */
.main-nav {
  display: block;
  width: 100%;
  margin: 0.5rem 0 0.75rem;
  padding: 4px 0;
  background: #000000;
}

.main-nav .shell {
    padding-bottom: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  max-width: 100%;
  border-bottom: none;
}

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

.nav-list li:not(:last-child)::after {
  content: "|";
  display: block;
  margin: 0 6px;
  color: #ffffff;
  font-weight: 300;
}



.nav-list a {
  text-decoration: none;
  font-family: "BruumFY", Arial, sans-serif;
  display: inline-block;
  padding: 6px 2px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list a:hover {
  color: #B0822A;
}

.lang-link {
    font-weight: 700 !important;
    color: #B0822A !important;
}

.lang-link--active {
    color: #ffffff !important;
}


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

.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: #ffffff;
    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: #000000;
        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;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .top-strip__inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .top-strip__contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-strip__contact a {
        font-size: 12px;
    }

    .lang-bar__inner {
        justify-content: center;
        padding-right: 0;
    }
    
    .top-strip__button {
        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: 0;
    text-align: center;
}

.hero-logo img {
    max-width: 100%;
    width: 1300px;
    height: 340px;
    object-fit: cover;
}

/* 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;
    margin-top: 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: cover;
    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 {
    display: none;
}

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

@media (max-width: 768px) {
    .hero-golden-line {
        display: none;
    }
}

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

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

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

.countdown {
    font-size: 20px;
    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.8;
    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: cover;
    transition: transform 0.3s ease;
    border: 1px solid #b8860b;
}

.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: 'Playfair Display', 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: 'Playfair Display', 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: cover;
    transition: transform 0.3s ease;
    border: 1px solid #b8860b;
}

/* 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: #666666;
    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 */




/* ==========================================================================
   Footer Styles (Imported from CorporateBrands)
   ========================================================================== */

.site-footer {
  background: #ffffff;
  color: #111111;
  border-top: 8px solid var(--gold);
  margin-top: 60px;
}

.site-footer .shell {
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 0;
}

.footer-col {
  padding: 0 14px;
}

.footer-col:not(:nth-child(4n + 1)) {
  border-left: 1px solid #d4d4d4;
}

.footer-col h3,
.newsletter-block h3,
.social-block h3 {
  margin: 0 0 10px;
  color: #8a5f1c;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 700;
  text-transform: uppercase;
}

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

.footer-col li {
  margin-bottom: 0.15rem;
}

.footer-col a {
  color: #111111;
  text-decoration: none;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.18vw, 1.32rem);
  font-weight: 400;
}

.footer-bottom-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 28px 14px 0;
}

.newsletter-block {
  flex: 1;
  max-width: 760px;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
}

.newsletter-form input {
  flex: 1;
  height: 38px;
  border: none;
  border-radius: 4px;
  background: #cccccc;
  padding: 0 0.9rem;
  font-size: 1rem;
}

.newsletter-form button {
  height: 38px;
  padding: 0 1rem;
  border: none;
  border-radius: 4px;
  background: #000000;
  color: #ffffff;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.social-block {
  text-align: center;
}

.social-block h3 {
  color: #111111;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.social-icons a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(45deg, #ffcb52, #ff3576, #9440ff); }
.social-x { background: #000000; }
.social-li { background: #0a66c2; }
.social-yt { background: #ff0000; }

.footer-disclaimer {
  max-width: 1250px;
  margin: 18px auto 0;
  padding: 0 18px 18px;
  text-align: center;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.12vw, 1.18rem);
  font-weight: 400;
  line-height: 1.35;
}

.footer-copyright {
  background: #000000;
  color: #ffffff;
  padding: 14px 0;
}

.footer-copyright p {
  margin: 0;
  text-align: center;
  font-family: inherit;
  font-size: clamp(0.92rem, 1vw, 1.06rem);
  font-weight: 400;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col:not(:nth-child(4n + 1)) {
    border-left: none;
  }

  .footer-col:not(:nth-child(2n + 1)) {
    border-left: 1px solid #d4d4d4;
  }

  .footer-bottom-band {
    flex-direction: column;
    align-items: stretch;
  }

  .social-block {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col,
  .footer-col:not(:nth-child(2n + 1)) {
    border-left: none;
    padding: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 120px;
  }
}

/* Finance/Jubilee-style subpage alignment */
.finance-subpage-layout .counter-top {
  background: #ffffff;
  padding: 14px 0 2px;
}

.finance-subpage-layout #timetext {
  text-align: center;
}

.finance-subpage-layout .timetext {
  margin: 0;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 1.2rem;
  color: #111111;
}

.finance-subpage-layout .counter {
  background: #ffffff;
  padding: 14px 0 10px;
}

.finance-subpage-layout .counter-desc {
  padding: 0 8px;
  border-right: 1px solid #ececec;
}

.finance-subpage-layout .counter-desc img {
  width: auto;
  max-height: 42px;
  margin: 0 auto 10px;
}

.finance-subpage-layout .counter-desc h2 {
  margin: 0 0 4px;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #b0822a;
}

.finance-subpage-layout .counter-desc p {
  margin: 0;
  font-family: "NewJune", Arial, sans-serif;
  font-size: 1.05rem;
  color: #555555;
}

.finance-subpage-layout .finance-subpage-divider {
  width: min(1500px, calc(100vw - 96px));
  margin: 0 auto 24px;
  border: 0;
  border-top: 1px solid #cfa24b;
  opacity: 1;
}

.finance-subpage-layout .welcome-section,
.finance-subpage-layout .legacy-page-section,
.finance-subpage-layout .sustainability-section,
.finance-subpage-layout .features-section,
.finance-subpage-layout .feature,
.finance-subpage-layout .feature--light {
  background: #ffffff;
}

.finance-subpage-layout .hero-slider-section {
  padding-top: 0;
  margin-top: 0;
}

.finance-subpage-layout .legacy-media-frame,
.finance-subpage-layout .sustainability-image,
.finance-subpage-layout .feature-card {
  border: 1px solid rgba(176, 124, 44, 0.45);
  background: #ffffff;
  padding: 10px;
  box-shadow: none;
}

.finance-subpage-layout .welcome-section,
.finance-subpage-layout .legacy-page-section,
.finance-subpage-layout .sustainability-section,
.finance-subpage-layout .features-section,
.finance-subpage-layout .contact-section,
.finance-subpage-layout .feature {
  padding: 20px 0 36px;
}

.finance-subpage-layout .section-title,
.finance-subpage-layout .nomination-title,
.finance-subpage-layout .sustainability-title {
  margin-bottom: 24px;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  text-transform: none;
}

.finance-subpage-layout .legacy-page-intro,
.finance-subpage-layout .sustainability-content,
.finance-subpage-layout .contact-layout,
.finance-subpage-layout .feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 32px;
  align-items: start;
}

.finance-subpage-layout .welcome-content p,
.finance-subpage-layout .achievements-text,
.finance-subpage-layout .sustainability-description,
.finance-subpage-layout .detail-card p,
.finance-subpage-layout .detail-list li,
.finance-subpage-layout .contact-layout p {
  font-family: "NewJune", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #333333;
}

.finance-subpage-layout .contact-form-panel,
.finance-subpage-layout .contact-info-panel,
.finance-subpage-layout .detail-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.finance-subpage-layout .feature-card h3,
.finance-subpage-layout .feature__title {
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #111111;
  text-transform: none;
}

.finance-subpage-layout .feature-card a,
.finance-subpage-layout .feature__link-row a {
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 1.08rem;
  color: #a67820;
  text-decoration: none;
}

@media (max-width: 991px) {
  .finance-subpage-layout .legacy-page-intro,
  .finance-subpage-layout .sustainability-content,
  .finance-subpage-layout .contact-layout,
  .finance-subpage-layout .feature__inner {
    grid-template-columns: 1fr;
  }

  .finance-subpage-layout .counter-desc {
    border-right: 0;
    margin-bottom: 20px;
  }
}
