/* Font imports */
@font-face {
    font-family: 'BruumFY';
    src: url('../fonts/BruumFY-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

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

@font-face {
    font-family: 'BruumFY';
    src: url('../fonts/BruumFY-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b07c2c;
    --dark-color: #000000;
    --light-color: #f9f9f9;
    --gray-color: #e5e5e5;
}

body {
    font-family: 'BruumFY', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #945d1c;
}

/* Header styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    z-index: 100;
}

.logo-container {
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.logo {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100%;
}

nav {
    background-color: black;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #eee;
}

nav .container {
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
}

nav ul li {
    margin: 0 6px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    font-size: 15px;
	color: white;
    text-transform: none;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero section styles */
.hero {
	min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

/* Counter section styles */
.counter-section {
    background-color: #000;
    color: white;
    padding: 15px 0;
}

.counter-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter {
    font-size: 0.9rem;
}

.counter span {
    color: white;
    font-weight: bold;
}

.gallery-btn .btn {
    background-color: #ff2500;
    color: white;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Stats section styles */
.stats {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item {
    padding: 20px 10px;
    text-align: center;
}

.stat-item img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    max-height: 40px;
}

.stat-item .number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-item .text {
    font-size: 0.9rem;
}

/* Institute Info Section styles */
.institute-info {
    padding: 4rem 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.video-container {
    position: relative;
    width: 90%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0 auto;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.info-content h2 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
	margin-right: 6rem;
}

.info-content .read-more {
    color: var(--primary-color);
    font-weight: 600;
}

/* Upcoming awards section styles */
.upcoming-awards-section {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 5px;
    width: 80px;
    background-color: var(--primary-color);
}

.section-title::before {
    right: calc(50% + 280px);
}

.section-title::after {
    left: calc(50% + 280px);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.award-item {
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    position: relative;
}

.award-item .award-image {
    position: relative;
    width: 100%;
    max-width: 400px; /* or any preferred max width */
    margin: auto;
    overflow: hidden;
}

.award-item .award-image img {
    width: 100%;
    aspect-ratio: 3/2;
    height: auto;
    object-fit: cover; /* Ensures image covers the container */
    display: block;
}

.award-item .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.award-item h3 {
    font-size: 1.3rem;
    padding: 15px 20px 5px;
	margin-right: 4rem;
    color: var(--dark-color);
}

.award-item .date, 
.award-item .location {
    padding: 0 20px;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #666;
}

.award-item .date {
    font-weight: bold;
}

.award-item .nominate-btn {
    display: inline-block;
    margin: 15px 20px 20px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
	font-size:80%;
}

/* Global Dignitaries Section Styles */
.global-dignitaries {
    background-color: var(--light-color);
}

.global-dignitaries-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.global-dignitaries-content {
    flex: 1;
    max-width: 1000px;
}

.global-dignitaries h2.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    text-transform: uppercase;
    line-height: 1.4;
}

.global-dignitaries .section-title::before,
.global-dignitaries .section-title::after {
    content: "";
    position: absolute;
    top: 25%;
    height: 5px;
    width: 80px;
    background-color: var(--primary-color);
}

.global-dignitaries .section-title::before {
    right: calc(50% + 315px);
}

.global-dignitaries .section-title::after {
    left: calc(50% + 315px);
}

.global-dignitaries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.dignitary-image {
    overflow: hidden;
    padding: 5px;
    aspect-ratio: 1/1;
}

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

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

.dignitary-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.role-model-text {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    line-height: 1.4;
}

/* Glorious Years Badge Styles */
.glorious-years-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    color: white;
    margin: 0 30px;
    flex-shrink: 0;
}

.glorious-years-badge.left {
    align-self: flex-start;
    margin-top: 140px;
}

.glorious-years-badge.right {
    align-self: flex-end;
    margin-bottom: 5px;
}

.glorious-years-badge.left.down{
    align-self: flex-start;
    margin-top: 5px;
} 

.glorious-years-badge .number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.glorious-years-badge .text {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.2;
}


.role-model-women .award-image {
    width: 100%;
    height: auto;
    overflow: visible; /* Change from 'hidden' to allow full image display */
}

.role-model-women .award-image img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Change from 'cover' to 'contain' to show the entire image */
    display: block;
}

.role-model-women .section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: black;
    text-transform: uppercase;
    position: relative;
    line-height: 1.3;
}

.role-model-women .section-title::before,
.role-model-women .section-title::after {
    content: "";
    position: absolute;
    top: 25%;
    height: 5px;
    width: 80px;
    background-color: var(--primary-color);
}

.role-model-women .section-title::before {
    right: calc(50% + 315px);
}

.role-model-women .section-title::after {
    left: calc(50% + 315px);
}

/* Full width content */
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.role-model-content {
    width: 100%;
}


.excellence .award-description .award-caption .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.award-image {
    width: 100%;
    max-height: 600px;
    overflow:;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-caption {
    width: 100%;
    background-color: #000;
    padding: 1rem;
    text-align: left;
}

.award-caption h3 {
    margin-left: 4rem;
	margin-right: 28rem;
    font-size: 1.5rem;
    line-height: 1.4;
    color: white;
}

.award-description {
    background-color: #e5e5e5;
    padding: 1rem;
    text-align: left;
}
.excellence {
    background-color: #f9f9f9;
    text-align: center;
}

.award-description p {
    margin-left: 4rem;
	margin-right: 17rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: black;
    max-width: 100%;
}

.excellence p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: black;
    max-width: 100%;
}


/* Fix lazy loading to ensure images always appear */
.lazy-load {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
    visibility: visible !important;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 1200px) {
    
    .role-model-women .section-title::before,
    .role-model-women .section-title::after {
        width: 60px;
    }
    
    .role-model-women .section-title::before {
        right: calc(50% + 215px);
    }
    
    .role-model-women .section-title::after {
        left: calc(50% + 215px);
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 1.6rem;
    }
    
    .global-dignitaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .global-dignitaries-wrapper {
        flex-direction: column;
    }
    
    .glorious-years-badge {
        margin: 30px 0;
        width: 120px;
        height: 120px;
    }
    
    .glorious-years-badge.left {
        order: 1;
    }
    
    .global-dignitaries-content {
        order: 2;
    }
    
    .glorious-years-badge.right {
        order: 3;
    }

    .role-model-women .section-title {
        font-size: 1.5rem;
    }
    
    .role-model-women .section-title::before,
    .role-model-women .section-title::after {
        width: 50px;
    }
    
    .role-model-women .section-title::before {
        right: calc(50% + 180px);
    }
    
    .role-model-women .section-title::after {
        left: calc(50% + 180px);
    }
    
    .award-caption h3 {
        font-size: 1.2rem;
    }
    
    .excellence .award-description p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px 10px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .global-dignitaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content p {
        margin-right: 0;
    }

    
    .role-model-women .section-title::before,
    .role-model-women .section-title::after {
        width: 40px;
    }
    
    .role-model-women .section-title::before {
        right: calc(50% + 150px);
    }
    
    .role-model-women .section-title::after {
        left: calc(50% + 150px);
    }
}

@media (max-width: 576px) {
    .global-dignitaries-grid, .awards-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .global-dignitaries-grid {
        grid-template-columns: 1fr;
    }
    
    .role-model-women .section-title::before,
    .role-model-women .section-title::after {
        width: 30px;
    }
    
    .role-model-women .section-title::before {
        right: calc(50% + 140px);
    }
    
    .role-model-women .section-title::after {
        left: calc(50% + 140px);
    }
}

/* Leadership Excellence Section */
.leadership-excellence {
    padding: 1rem 0;
    background-color: white;
    position: relative;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 10px;
}

.leadership-item {
    text-align: center;
}

.leadership-item img {
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 15px;
}

/*.leadership-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}*/

.leadership-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}

/* Responsive design for leadership excellence section */
@media (max-width: 1200px) {
    .leadership-excellence .section-title::before {
        right: calc(50% + 180px);
    }
    
    .leadership-excellence .section-title::after {
        left: calc(50% + 180px);
    }
}

@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-excellence .section-title::before {
        right: calc(50% + 150px);
    }
    
    .leadership-excellence .section-title::after {
        left: calc(50% + 150px);
    }
}

@media (max-width: 768px) {
    .leadership-excellence .section-title::before {
        width: 40px;
        right: calc(50% + 130px);
    }
    
    .leadership-excellence .section-title::after {
        width: 40px;
        left: calc(50% + 130px);
    }
}

@media (max-width: 576px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-excellence .section-title::before {
        width: 30px;
        right: calc(50% + 110px);
    }
    
    .leadership-excellence .section-title::after {
        width: 30px;
        left: calc(50% + 110px);
    }
}
/* Full Width Horizontal Divider */
.full-width-divider {
    width: 100%;
    height: 10px;
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    display: block;
    position: relative;
    left: 0;
    right: 0;
}

/* For truly full width that extends beyond container boundaries */
.full-width-divider.extend-edges {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
      
        /* Footer styles */
        .footer {
            width: 100%;
            background-color: #f2f2f2;
			padding: 2rem;
            color: #333;
            font-size: 13px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 20% 20% 20% 20% 20%;
            border-bottom: 1px solid #f2f2f2;
        }
        
        .footer-column {
            padding: 20px 10px;
            border-right: 1px solid #f2f2f2;
        }
        
        .footer-column:last-child {
            border-right: none;
        }
        
        .footer-logo-section {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: top;
            text-align: center;
            padding: 20px;
        }
        
        .footer-logo {
            width: 140px;
            margin-bottom: 15px;
        }
        
        .logo-text {
            font-size: 16px;
            text-align: center;
            line-height: 1.3;
        }
        
        .column-title {
            color: #b07c2c;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #b07c2c;
        }
        
        .footer-links a:before {
            content: '> ';
            margin-right: 5px;
            color: #000;
        }
        
        .subscribe-section {
            padding: 20px 0;
            text-align: center;
            display: grid;
            grid-template-columns: 3fr 1fr 1fr;
            gap: 20px;
            align-items: center;
        }
        
        .subscribe-title {
            color: #b07c2c;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
            grid-column: 1;
            text-align: left;
            padding-left: 15rem;
        }
        
        .subscribe-form {
            display: flex;
            grid-column: 1;
            padding-left: 15rem;
        }
        
        .subscribe-input {
            flex: 1;
            padding: 10px;
			width: 450px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: #ccc;
        }
        
        .submit-button {
            padding: 10px 20px;
            background-color: #000;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 50px;
        }
        
        .social-media {
            grid-column: 3;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            padding-right: 20px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
        }
        
        .social-icon.facebook {
            background-color: #3b5998;
        }
        
        .social-icon.instagram {
            background-color: #e1306c;
        }
        
        .social-icon.twitter {
            background-color: #1da1f2;
        }
        
        .social-icon.linkedin {
            background-color: #0077b5;
        }
        
        .social-icon.youtube {
            background-color: #ff0000;
        }
        
        .newsletter-text {
            grid-column: 1 / span 3;
            text-align: center;
            padding: 0 8px;
            line-height: 1.6;
            margin-top: 10px;
        }
        
        .footer-bottom {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 15px 0;
            font-size: 14px;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-logo-section {
                grid-row: 1;
                grid-column: 1 / span 2;
            }
            
            .subscribe-section {
                grid-template-columns: 1fr;
            }
            
            .subscribe-title,
            .subscribe-form,
            .social-media,
            .newsletter-text {
                grid-column: 1;
            }
            
            .social-media {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-logo-section {
                grid-column: 1;
            }
            
            .footer-column {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }
        }
/* Role Model Women Section - Fixed CSS */
.role-model-women {
    padding: 0; /* Remove padding to allow full width display */
    background-color: white;
    position: relative;
    margin-bottom: 2rem; /* Add consistent margin between sections */
    clear: both; /* Prevent floating elements from overlapping */
    overflow: hidden; /* Contain floated children */
	object-fit:cover;
}

/* Add a clearfix to ensure the container fully contains its children */
.role-model-women::after {
    content: "";
    display: table;
    clear: both;
}

.role-model-women .container {
    margin-bottom: 4rem; /* Add space after container-based sections */
}

.role-model-women .role-model-content {
    width: 100%;
    position: relative;
}

/* Complete reset for role-model-image */
.role-model-image {
    width: 100%;
    height: auto;
    overflow: visible;
    max-height: none !important; /* Override any max-height restriction */
}

.role-model-image img {
    width: 100%;
    height: auto;
    max-height: none !important; /* Override any max-height restriction */
    object-fit: fill !important; /* Use fill instead of contain or cover */
    display: block;
    margin: 0 auto;
}
/* Fix for regular award images to maintain their style */
.award-image:not(.role-model-image) {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.award-image:not(.role-model-image) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add space between consecutive full-width sections */
.full-width + .full-width {
    margin-top: 2rem;
}

/* Fix for the leadership grid in role-model-women sections */
.role-model-women .leadership-grid {
    margin-bottom: 2rem;
}

/* Global Dignitaries Section adjustments */
.global-dignitaries {
    margin-bottom: 2rem;
    clear: both;
    overflow: hidden;
}

/* Fix for the text in the role-model-image when present */
.role-model-image .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: white;
    padding: 0.5rem;
}

.role-model-image .text h3 {
    margin-left: 5rem;
	padding-right: 43rem;
    color: white;
}

/* Ensure excellence section doesn't overlap */
.excellence {
    clear: both;
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

/* Fix for the section spacing in mobile view */
@media (max-width: 768px) {
    .role-model-women {
        margin-bottom: 1.5rem;
    }
    
    .role-model-women .container {
        margin-bottom: 1.5rem;
    }
    
    .global-dignitaries {
        margin-bottom: 1.5rem;
    }
}

/* Specific fix for the award-image display issue */
.role-model-women .role-model-content {
    width: 100%;
    position: relative;
}


/* Remove any aspect ratio restrictions */
.award-image.role-model-image {
    aspect-ratio: auto !important;
}

.award-image.role-model-image img {
    aspect-ratio: auto !important;
}

/* Fix for any potential parent container issues */
.role-model-content.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none;
    overflow: visible;
}

/* Ensure no height restrictions on any parent containers */
.role-model-women, 
.role-model-content,
.award-image,
.role-model-image {
    height: auto !important;
    min-height: 0 !important;
}
/* Fix for upcoming awards section images */
.upcoming-awards-section {
    padding: 4rem 0;
    background-color: var(--light-color);
    overflow: visible;
}

/* Fix the award item container */
.upcoming-awards-section .award-item {
    border-radius: 5px;
    overflow: visible;
    background-color: white;
    position: relative;
    height: auto;
}

/* Fix for the award image container */
.upcoming-awards-section .award-item .award-image {
    position: relative;
    width: 100%;
    height: auto;
    max-height: none !important;
    margin: auto;
    overflow: visible;
}

/* Fix the actual image */
.upcoming-awards-section .award-item .award-image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: fill !important;
    max-height: none !important;
    display: block;
}

/* Fix for award content to ensure proper spacing */
.upcoming-awards-section .award-item h3,
.upcoming-awards-section .award-item .date,
.upcoming-awards-section .award-item .location {
    padding: 5px 15px;
    margin: 0;
}

/* Fix for dynamically loaded images */
.awards-grid img {
    max-height: none !important;
    object-fit: fill !important;
    width: 100%;
    height: auto !important;
}

/* Ensure the grid has proper spacing */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Override any JavaScript-applied styles */
.upcoming-awards-section img[style] {
    max-height: none !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* Footer Subscribe Section Responsive Fix */

/* Keep desktop styles unchanged */
.subscribe-section {
    padding: 20px 0;
    text-align: center;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.subscribe-title {
    color: #b07c2c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    grid-column: 1;
    text-align: left;
    padding-left: 15rem;
}

.subscribe-form {
    display: flex;
    grid-column: 1;
    padding-left: 15rem;
}

.subscribe-input {
    flex: 1;
    padding: 10px;
    width: 450px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ccc;
}

.submit-button {
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 50px;
}

.social-media {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 20px;
}

/* Responsive overrides */
@media (max-width: 992px) {
    .subscribe-section {
        grid-template-columns: 1fr;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .subscribe-title,
    .subscribe-form,
    .social-media,
    .newsletter-text {
        grid-column: 1;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .subscribe-title {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    
    .subscribe-input {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    
    .submit-button {
        margin-left: 0;
        width: 100%;
        max-width: 200px;
    }
    
    .social-media {
        justify-content: center;
        margin: 20px 0;
    }
    
    .newsletter-text {
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .subscribe-section {
        padding: 15px;
    }
    
    .subscribe-title {
        font-size: 16px;
    }
    
    .social-media {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .subscribe-section {
        padding: 10px;
    }
    
    .subscribe-title {
        font-size: 14px;
    }
    
    .subscribe-form {
        width: 100%;
    }
    
    .subscribe-input,
    .submit-button {
        width: 100%;
    }
    
    /* Fix any potential overflow issues in smallest screens */
    .footer-container {
        padding: 0 10px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Hide badges on mobile devices */
@media (max-width: 768px) {
    .glorious-years-badge.left,
    .glorious-years-badge.right {
        display: none !important;
    }
    
    /* Adjust the global-dignitaries-content to take full width when badges are hidden */
    .global-dignitaries-content {
        width: 100%;
    }
    
    /* Center the content without the badges */
    .global-dignitaries-wrapper {
        display: block;
    }
}

/* Responsive Section Titles Fix */

/* Desktop styles - keep original styling */
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-size: 1.8rem;
    line-height: 1.3;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 25%;
    height: 5px;
    width: 80px;
    background-color: var(--primary-color);
}

.section-title::before {
    right: calc(50% + 315px);
}

.section-title::after {
    left: calc(50% + 315px);
}

/* Responsive styles for section titles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title::before {
        right: calc(50% + 250px);
        width: 70px;
    }
    
    .section-title::after {
        left: calc(50% + 250px);
        width: 70px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 1.4rem;
        padding: 0 20px;
    }
    
    .section-title::before {
        right: calc(50% + 200px);
        width: 60px;
    }
    
    .section-title::after {
        left: calc(50% + 200px);
        width: 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 0 15px;
        margin-bottom: 2rem;
    }
    
    /* Adjust decorative lines */
    .section-title::before {
        right: calc(50% + 150px);
        width: 40px;
    }
    
    .section-title::after {
        left: calc(50% + 150px);
        width: 40px;
    }
    
    /* Handle line breaks for mobile */
    .section-title br {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Make decorative lines shorter on very small screens */
    .section-title::before {
        right: calc(50% + 110px);
        width: 30px;
    }
    
    .section-title::after {
        left: calc(50% + 110px);
        width: 30px;
    }
}

@media (max-width: 400px) {
    /* For extremely small screens, hide decorative lines */
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .section-title {
        padding: 0 5px;
    }
}

/* Hero Slider with Fixed Dimensions */
.hero-slider {
    position: relative;
    width: 1366px; /* Fixed width as requested */
    height: 768px; /* Fixed height as requested */
    max-width: 100%; /* Ensures it doesn't overflow on smaller screens */
    margin: 0 auto; /* Centers the slider */
    overflow: visible; /* Changed from hidden to allow scrolling when needed */
    background-color: #000;
}

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

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 1366px; /* Fixed exact width */
    height: 768px; /* Fixed exact height */
    object-fit: none; /* No scaling, cropping or stretching */
    object-position: center center;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    padding: 0 10%;
    color: white;
    text-align: center;
    z-index: 10;
    background: rgb(255 255 255 / 50%);
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.slide-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Overlay gradient to ensure text readability */
.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 3;
}

/* Navigation Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.arrow {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: var(--primary-color);
}

.arrow i {
    font-size: 1.2rem;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}
/* Add responsive behavior while maintaining aspect ratio */
@media (max-width: 1366px) {
    .hero-slider {
        width: 100%; /* Full viewport width */
        height: auto; /* Height will be determined by aspect ratio */
        aspect-ratio: 1366/768; /* Maintain the exact aspect ratio */
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensure the entire image is visible */
    }
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
}

/* For very small screens, allow scrolling if needed */
@media (max-width: 576px) {
    .hero-slider {
        overflow-x: auto; /* Enable horizontal scrolling if needed */
        overflow-y: auto; /* Enable vertical scrolling if needed */
        aspect-ratio: auto; /* Remove aspect ratio constraint */
        min-height: 300px; /* Minimum height on small screens */
    }
    
    /* Ensure the image maintains its original dimensions for scrolling */
    .slide img {
        width: 1366px;
        height: 768px;
        max-width: none; /* Allow the image to be larger than container for scrolling */
    }
    
    .slide-content {
        bottom: 15%;
        padding: 0 5%;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        max-width: 300px;
    }
    
    .slider-arrows {
        padding: 0 1rem;
    }
    
    .arrow {
        width: 35px;
        height: 35px;
    }
    
    .arrow i {
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    background: transparent;
    border: none;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

.mobile-nav-toggle .icon {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-nav-toggle .icon::before,
.mobile-nav-toggle .icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-nav-toggle .icon::before {
    top: -8px;
}

.mobile-nav-toggle .icon::after {
    top: 8px;
}

.mobile-nav-toggle[aria-expanded="true"] .icon {
    background-color: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Default state - visible on desktop */
.primary-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

/* Only apply these styles on mobile */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .primary-navigation {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        transform: translateX(100%);
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        overflow-y: auto;
    }
    
    .primary-navigation[data-visible="true"] {
        transform: translateX(0);
    }
    
    .primary-navigation li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .primary-navigation li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* Global Dignitaries Full Width Enhancement */

/* Comprehensive Fix for Global Dignitaries Full Width */

/* Ensure the section truly spans full viewport width with no restrictions */
.global-dignitaries.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
}

/* Expand the container to take more width */
.global-dignitaries .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Improve the wrapper to distribute space better */
.global-dignitaries-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box;
    max-width: none;
}

/* Expand the content area significantly */
.global-dignitaries-content {
    flex: 1;
    max-width: none;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Increase size of the badges */
.glorious-years-badge {
    width: 200px; /* Increased from 150px */
    height: 200px; /* Increased from 150px */
    margin: 0 50px; /* Increased horizontal margin */
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.glorious-years-badge .number {
    font-size: 4rem; /* Increased from 3rem */
}

.glorious-years-badge .text {
    font-size: 1.5rem; /* Increased from 1.2rem */
}

/* Increase text area spacing */
.dignitary-text {
    padding: 15px; /* Increased from 10px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-model-text {
    font-size: 0.9rem; /* Increased from 0.9rem */
    line-height: 1.5;
    width: 100%;
}

/* Enlarge image containers */
.dignitary-image {
    padding: 1px; /* Increased from 5px */
    aspect-ratio: 1/1;
}

/* Give the grid more breathing room */
.global-dignitaries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* Increased from 15px */
    width: 100%;
}

/* Fix for any overflow issues */
.role-model-women, 
.role-model-content,
.award-image,
.role-model-image {
    max-width: none;
    overflow: visible;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .glorious-years-badge {
        width: 180px;
        height: 180px;
        margin: 0 40px;
    }
    
    .glorious-years-badge .number {
        font-size: 3.6rem;
    }
}

@media (max-width: 1200px) {
    .glorious-years-badge {
        width: 160px;
        height: 160px;
        margin: 0 30px;
    }
    
    .global-dignitaries-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .global-dignitaries-wrapper {
        flex-direction: column;
    }
    
    .glorious-years-badge {
        margin: 30px 0;
        width: 140px;
        height: 140px;
    }
    
    .glorious-years-badge.left {
        order: 1;
    }
    
    .global-dignitaries-content {
        order: 2;
    }
    
    .glorious-years-badge.right {
        order: 3;
    }
    
    .global-dignitaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Keep existing hide badges on mobile devices rule */
@media (max-width: 768px) {
    .glorious-years-badge.left,
    .glorious-years-badge.right {
        display: none !important;
    }
    
    .global-dignitaries-content {
        width: 100%;
    }
    
    .global-dignitaries-wrapper {
        display: block;
    }
}