/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
    font-size: clamp(16px, 2.8vw, 18px);
}

/* Top Bar */
.top-bar {
    background: rgb(21, 68, 199);
    color: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(14px, 2.8vw, 16px);
    flex-wrap: wrap;
}

.top-left i,
.top-left span {
    margin-right: 8px;
}

.top-left a,
.top-right a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: clamp(14px, 2.8vw, 16px);
}

.top-left a:hover,
.top-right a:hover {
    text-decoration: underline;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 5%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: clamp(50px, 10vw, 70px);
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    margin-left: 20px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(5px, 1vw, 10px);
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: clamp(16px, 2.8vw, 18px);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff5e3a;
}

/* Let's Talk Button */
.paynow a {
    display: form-inline-block;
    padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
    background-color: #ff5e3a;
    color: white;
    border-radius: 20px;
    font-weight: 500;
    font-size: clamp(14px, 2.2vw, 18px);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.paynow a:hover {
    background-color: #e04e2a;
    color: white;
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #000;
    padding: 5px 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    z-index: 1001;
}

.dropdown-content a {
    padding: 4px 12px;
    color: #333;
    white-space: nowrap;
    display: block;
    font-size: clamp(16px, 2.8vw, 18px);
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #ff5e3a;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Banner */
.main-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.pinimg.com/736x/56/a4/ab/56a4abae10d5fe3a04122825e61e782a.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 1rem;
    text-align: center;
}

.main-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.banner-txt h1 {
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.banner-txt p {
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #e0e7ff;
}

.button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #ff5e3a, #ff8c68);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.button:hover {
    background: linear-gradient(to right, #e04e2a, #ff7043);
    transform: scale(1.05);
}

/* Goal, Mission, Motto Sections */
.goal-section,
.mission-section,
.motto-section {
    background-color: #f9fbff;
    padding: 2rem 1rem;
}

.goal-wrapper,
.mission-wrapper,
.motto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.goal-content,
.mission-content,
.motto-content {
    flex: 1;
    min-width: 280px;
    padding: 1rem;
    color: #333;
}

.goal-top h4,
.mission-top h4,
.motto-top h4 {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    color: #0b1f3a;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.goal-bottom p,
.mission-bottom p,
.motto-bottom p {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    font-weight: 400;
}

/* Core Values Section */
.core-values-section {
    background-color: #f1f8fc;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.core-left {
    flex: 1;
    min-width: 280px;
    padding: 1rem;
    color: #333;
}

.core-left h2 {
    font-size: clamp(2rem, 5.5vw, 2.4rem);
    color: #0b1f3a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.core-left p {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    font-weight: 400;
}

.core-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Stats Section */
.stats-section {
    background-color: #0080b9;
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: #0071a8;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid #00e6e6;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item img.stat-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    margin-bottom: 0.8rem;
}

.stat-item h2 {
    font-size: clamp(2rem, 5.5vw, 2.4rem);
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-item p {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    color: #e0e7ff;
    font-weight: 500;
}

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, #f9fbff 0%, #e0e7ff 100%);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/subtle-white-feathers.png');
    opacity: 0.1;
    z-index: 1;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.awards-left {
    padding: 2rem;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.awards-left:hover {
    transform: translateY(-5px);
}

.awards-left h2 {
    font-size: clamp(2rem, 5.5vw, 2.4rem);
    color: #0b1f3a;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.awards-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #ff5e3a, #ff8c68);
    border-radius: 3px;
}

.awards-left p {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.know-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #ff5e3a, #ff8c68);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    transition: background 0.3s, transform 0.2s;
}

.know-more-btn:hover {
    background: linear-gradient(to right, #e04e2a, #ff7043);
    transform: scale(1.05);
}

.awards-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    padding: 1rem;
}

.award-logo {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.award-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

/* Partner Section */
.partner-section {
    background: linear-gradient(135deg, #f9fbff 0%, #e0e7ff 100%);
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/subtle-white-feathers.png');
    opacity: 0.1;
    z-index: 1;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partner-container h2 {
    font-size: clamp(2rem, 5.5vw, 2.4rem);
    color: #0b1f3a;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.partner-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #ff5e3a, #ff8c68);
    border-radius: 3px;
}

.partner-container p {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    color: #333;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.8;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    padding: 1rem;
}

.partner-logo {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Enhanced Footer Styles */
footer {
    background: linear-gradient(135deg, #0d6efd 0%, #003087 100%);
    color: #fff;
    padding: 3rem 1.2rem 1.5rem;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    opacity: 0.15;
    z-index: 1;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.locations {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.locations p:first-child {
    font-weight: 700;
    font-size: clamp(1.6rem, 3.2vw, 1.8rem);
    margin-bottom: 0.8rem;
    color: #fff;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.locations p:last-child {
    color: #e0e7ff;
    max-width: 1000px;
    margin: 0 auto;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 2;
}

.footer-section {
    margin-bottom: 1.5rem;
}

h4 {
    font-size: clamp(1.5rem, 3.2vw, 1.7rem);
    margin-bottom: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #ff5e3a, #ff8c68);
    border-radius: 3px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 0.8rem;
}

ul li a {
    color: #e0e7ff;
    text-decoration: none;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    transition: color 0.3s, transform 0.3s;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

ul li a:hover::before {
    width: 100%;
}

ul li a:hover {
    color: #ff5e3a;
    transform: translateX(8px);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #e0e7ff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 400;
    transition: color 0.3s;
}

.contact-info p:hover {
    color: #ff5e3a;
}

.contact-info p i {
    color: #ff5e3a;
    font-size: 1.6rem;
    transition: transform 0.3s;
}

.contact-info p:hover i {
    transform: scale(1.2);
}

.social-container {
    padding: 1.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.social-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: clamp(1.5rem, 3.2vw, 1.7rem);
    color: #fff;
    letter-spacing: 1.2px;
}

.Social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.8rem;
    justify-content: center;
}

.Social-icons a {
    color: #e0e7ff;
    font-size: clamp(1.8rem, 3.8vw, 2rem);
    transition: color 0.3s, transform 0.3s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.Social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
    background: #ff5e3a;
}

.footer-bottom {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1600px;
    text-align: center;
    padding: 1.5rem 0.75rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #e0e7ff;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 0.6px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, #ff5e3a, #ff8c68);
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-banner .container,
    .goal-wrapper,
    .mission-wrapper,
    .motto-wrapper,
    .core-values-section,
    .stats-section,
    .awards-container,
    .partner-container {
        max-width: 900px;
    }

    .banner-txt h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .banner-txt p {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .button {
        padding: 0.7rem 1.8rem;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .goal-content,
    .mission-content,
    .motto-content,
    .core-left,
    .awards-left,
    .partner-container {
        padding: 0.8rem;
    }

    .core-left h2,
    .awards-left h2,
    .partner-container h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .core-left p,
    .awards-left p,
    .partner-container p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .stat-item {
        min-width: 180px;
    }

    .stat-item h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .stat-item p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
        padding: 0 1.2rem;
    }

    .locations {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .locations p:first-child {
        font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    }

    .locations p:last-child {
        font-size: clamp(1rem, 2.2vw, 1.5rem);
    }

    h4 {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        margin-bottom: 1rem;
    }

    ul li a,
    .contact-info p {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }

    ul li {
        margin-bottom: 0.6rem;
    }

    .contact-info p {
        margin-bottom: 0.6rem;
    }

    .social-title {
        font-size: clamp(1.3rem, 3.2vw, 1.5rem);
        margin-bottom: 0.6rem;
    }

    .Social-icons {
        gap: 1rem;
        margin-top: 0.6rem;
    }

    .Social-icons a {
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
        width: clamp(36px, 5vw, 44px);
        height: clamp(36px, 5vw, 44px);
    }

    .footer-bottom {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: 1.2rem 0.6rem;
        margin-top: 1.5rem;
    }

    .goal-wrapper,
    .mission-wrapper,
    .motto-wrapper,
    .core-values-section,
    .awards-container {
        flex-direction: column;
    }

    .goal-image img,
    .mission-image img,
    .motto-image img,
    .core-right img {
        max-width: 80%;
        margin: 0 auto;
    }

    .stat-item {
        min-width: 160px;
    }

    .awards-container {
        grid-template-columns: 1fr;
    }

    .awards-left {
        padding: 1.5rem;
    }

    .awards-right {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 1.2rem;
    }

    .award-logo img {
        width: 90px;
        height: 90px;
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 1.2rem;
        padding: 0.8rem;
    }

    .partner-logo {
        padding: 0.8rem;
    }

    .partner-logo img {
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: clamp(13px, 2.5vw, 15px);
    }

    .top-left,
    .top-right {
        justify-content: center;
        width: 100%;
    }

    .top-left a,
    .top-right a {
        font-size: clamp(13px, 2.5vw, 15px);
    }

    .main-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
    }

    .nav-menu {
        display: none;
        width: 100%;
        margin-left: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 10px 15px;
        width: 100%;
        font-size: clamp(15px, 2.5vw, 17px);
    }

    .paynow a {
        width: calc(100% - 30px);
        margin: 10px 15px;
        text-align: center;
        padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
        font-size: clamp(13px, 2.2vw, 16px);
    }

    .hamburger {
        display: block;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        min-width: 100%;
        padding-left: 20px;
        display: none;
    }

    .dropdown-content a {
        padding: 4px 12px;
        font-size: clamp(15px, 2.5vw, 17px);
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .main-banner {
        padding: 2rem 0.8rem;
    }

    .banner-txt h1 {
        font-size: clamp(1.8rem, 4.5vw, 2.4rem);
    }

    .banner-txt p {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
    }

    .button {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .goal-section,
    .mission-section,
    .motto-section,
    .core-values-section,
    .stats-section,
    .awards-section,
    .partner-section {
        padding: 1.5rem 0.8rem;
    }

    .goal-top h4,
    .mission-top h4,
    .motto-top h4 {
        font-size: clamp(1.3rem, 2.8vw, 1.5rem);
    }

    .goal-bottom p,
    .mission-bottom p,
    .motto-bottom p {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .core-left h2,
    .awards-left h2,
    .partner-container h2 {
        font-size: clamp(1.8rem, 4.5vw, 2rem);
    }

    .core-left p,
    .awards-left p,
    .partner-container p {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .stat-item {
        min-width: 140px;
    }

    .stat-item h2 {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
    }

    .stat-item p {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
        padding: 0.8rem;
    }

    .partner-logo {
        padding: 0.6rem;
    }

    .partner-logo img {
        max-width: 80px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }

    .social-container {
        padding: 1rem 0.5rem;
        margin-top: 1rem;
    }

    .Social-icons {
        gap: 0.8rem;
        margin-top: 0.4rem;
    }

    .Social-icons a {
        font-size: clamp(1.4rem, 3.2vw, 1.6rem);
        width: clamp(28px, 4vw, 36px);
        height: clamp(28px, 4vw, 36px);
    }

    .stat-item {
        min-width: 100%;
        padding: 0.8rem;
    }

    .awards-section,
    .partner-section {
        padding: 2rem 0.8rem;
    }

    .awards-left {
        padding: 1rem;
    }

    .awards-right {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }

    .award-logo img {
        width: 80px;
        height: 80px;
    }

    .awards-left h2,
    .partner-container h2 {
        font-size: clamp(1.8rem, 4.5vw, 2rem);
    }

    .awards-left p,
    .partner-container p {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .know-more-btn {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.8rem;
        padding: 0.6rem;
    }

    .partner-logo {
        padding: 0.5rem;
    }

    .partner-logo img {
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: clamp(40px, 8vw, 50px);
    }

    .top-bar {
        font-size: clamp(13px, 2.2vw, 14px);
        padding: 8px 3%;
    }

    .top-left i,
    .top-left span,
    .top-right a {
        margin-right: 5px;
        margin-left: 5px;
        font-size: clamp(13px, 2.2vw, 14px);
    }

    .paynow a {
        width: calc(100% - 20px);
        margin: 8px 10px;
        padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 15px);
        font-size: clamp(12px, 2.2vw, 14px);
    }

    .main-banner {
        padding: 1.5rem 0.6rem;
    }

    .banner-txt h1 {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
    }

    .banner-txt p {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .button {
        padding: 0.5rem 1.2rem;
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    .goal-section,
    .mission-section,
    .motto-section,
    .core-values-section,
    .stats-section,
    .awards-section,
    .partner-section {
        padding: 1rem 0.6rem;
    }

    .goal-top h4,
    .mission-top h4,
    .motto-top h4 {
        font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    }

    .goal-bottom p,
    .mission-bottom p,
    .motto-bottom p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }

    .core-left h2,
    .awards-left h2,
    .partner-container h2 {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
    }

    .core-left p,
    .awards-left p,
    .partner-container p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }

    .stat-item h2 {
        font-size: clamp(1.6rem, 4.5vw, 1.8rem);
    }

    .stat-item p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.6rem;
        padding: 0.5rem;
    }

    .partner-logo {
        padding: 0.4rem;
    }

    .partner-logo img {
        max-width: 60px;
    }
}

@media (max-width: 400px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.6rem;
    }

    .locations {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .locations p:first-child {
        font-size: clamp(1.2rem, 2.8vw, 1.4rem);
        margin-bottom: 0.4rem;
    }

    .locations p:last-child {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    h4 {
        font-size: clamp(1.2rem, 2.8vw, 1.4rem);
        margin-bottom: 0.6rem;
    }

    ul li a,
    .contact-info p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    ul li {
        margin-bottom: 0.3rem;
    }

    .contact-info p {
        margin-bottom: 0.3rem;
    }

    .social-title {
        font-size: clamp(1.2rem, 2.8vw, 1.4rem);
        margin-bottom: 0.3rem;
    }

    .Social-icons {
        gap: 0.6rem;
        margin-top: 0.4rem;
    }

    .Social-icons a {
        font-size: clamp(1.4rem, 3.2vw, 1.6rem);
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        padding: 0.6rem 0.3rem;
        margin-top: 0.8rem;
    }

    .banner-txt h1 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .banner-txt p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .button {
        padding: 0.4rem 1rem;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }

    .goal-top h4,
    .mission-top h4,
    .motto-top h4 {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }

    .goal-bottom p,
    .mission-bottom p,
    .motto-bottom p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }

    .core-left h2,
    .awards-left h2,
    .partner-container h2 {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
    }

    .core-left p,
    .awards-left p,
    .partner-container p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }

    .stat-item h2 {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
    }

    .stat-item p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }

    .stat-item img.stat-icon {
        width: clamp(30px, 6vw, 40px);
        height: clamp(30px, 6vw, 40px);
    }

    .awards-right {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.6rem;
    }

    .award-logo img {
        width: 60px;
        height: 60px;
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .partner-logo {
        padding: 0.3rem;
    }

    .partner-logo img {
        max-width: 50px;
    }
}