/* Hero Section */
.hero-section {
    position: relative;
    height: 5vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center; /* Center image horizontally & vertically */
    background-repeat: no-repeat;
    background-size: cover; /* Show full image without cropping */
    background-color: #001f33; /* Fallback background if image doesn't fill */
    margin: 0;
    padding: 0;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh; /* Further reduce height for mobile */
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(0, 0, 0, 0.1); /* 0.1 = very light, 0.4 = darker */
    z-index: 1;
}

.hero-background {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Hero Spacing */
.hero-spacing {
    /* height: 10px; */
    background: var(--Primary-Blue-Dark-Blue, #001f33);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: transparent;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* About Content Section */
.about-content-section {
    background: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #001f33;
    margin-bottom: 15px;
    line-height: 1.2;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 30px;
    opacity: 0.9;
}

.title-divider {
    width: 800px;
    height: 1px;
    background: #001f33;
    margin: 0 auto 50px;
    border-radius: 2px;
    max-width: 90%;
}

.about-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #001f33;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text {
    padding-right: 30px;
}

.about-image img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Footer Section */
.footer-section {
    padding: 60px 0 30px;
    color: #ffffff;
    position: relative;
}

.footer-brand {
    margin-bottom: 30px;
    margin-top: 30px;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 180px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-description.limited-width {
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffea00;
    padding-left: 5px;
}

.footer-link.underlined {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #001f33;
    color: #87ceeb;
    font-size: 0.9rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2c5f7f;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-value:hover {
    color: #ffea00;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 100px 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are-section .container-fluid {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
}

.who-we-are-section .row {
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 400px;
    align-items: center;
}

.who-we-are-section .col-lg-7,
.who-we-are-section .col-lg-5 {
    padding: 0;
}

.who-we-are-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: var(--primary-blue-blue-10, #487fff1a);
    z-index: 1;
}

.who-we-are-content {
    padding: 60px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-we-are-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.who-we-are-section .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    text-align:start;
}

.who-we-are-section .section-text:last-child {
    margin-bottom: 0;
}

.who-we-are-section .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

.who-we-are-section .highlight-text9 {
    color: #60a5fa;
    font-weight: 600;
}

.who-we-are-image {
    position: relative;
    z-index: 2;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.who-we-are-section .who-we-are-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Platform Section */
.platform-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-section .container-fluid {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
}

.platform-section .row {
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 400px;
    align-items: center;
}

.platform-section .col-lg-7,
.platform-section .col-lg-5 {
    padding: 0;
}

.platform-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: var(--primary-blue-blue-10, #487fff1a);
    z-index: 1;
}

.platform-content {
    padding: 60px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-section .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #ffffff;
    text-align: start;
}

.platform-section .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

.platform-image {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.platform-section .platform-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Founder Card Section */
.founder-card-section {
    background: #072948;
    border-radius: 15px;
    padding: 30px;
    width: 370px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-card-section .section-header {
    margin-bottom: 25px;
}

.founder-card-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.founder-card-section .title-divider {
    width: 200px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 0;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.founder-info-item {
    margin-bottom: 10px;
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.founder-designation {
    font-size: 1.1rem;
    font-weight: 500;
    color: #87ceeb;
    margin-bottom: 5px;
    line-height: 1.4;
}

.founder-location {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 5px;
    opacity: 0.9;
}

.founder-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.founder-link:hover {
    color: #87ceeb;
    text-decoration: underline;
    transform: translateX(5px);
}

/* What We Do Section */
.what-we-do-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 120px 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-do-section .container-fluid {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
}

.what-we-do-section .row {
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 400px;
    align-items: center;
}

.what-we-do-section .col-lg-7,
.what-we-do-section .col-lg-5 {
    padding: 0;
}

.what-we-do-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: var(--primary-blue-blue-10, #487fff1a);
    z-index: 1;
}

.what-we-do-content {
    padding: 60px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-we-do-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.what-we-do-section .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #ffffff;
    text-align: justify;
}

.what-we-do-section .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

.what-we-do-image {
    position: relative;
    z-index: 2;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.what-we-do-section .what-we-do-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Additional Content Section */
.additional-content-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 120px 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.additional-content-section .container-fluid {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
}

.additional-content-section .row {
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 400px;
    align-items: center;
}

.additional-content-section .col-lg-7,
.additional-content-section .col-lg-5 {
    padding: 0;
}

.additional-content-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: var(--primary-blue-blue-10, #487fff1a);
    z-index: 1;
}

.additional-content {
    padding: 60px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.additional-content-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.additional-content-section .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: justify;
}

.additional-content-section .section-text:last-child {
    margin-bottom: 0;
}

.additional-content-section .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

.additional-image {
    position: relative;
    z-index: 2;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.additional-content-section .additional-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Platform Support Section */
.platform-support-section {
    margin: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.platform-support-content {
    position: relative;
    z-index: 2;
}

.support-text-container {
    position: relative;
    background: var(--primary-blue-blue-10, #487fff1a);
    border-radius: 15px;
    padding: 60px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: full;
    height: 18px;
    background: #072947;
    z-index: -1;
    margin-left: -50vw;
    margin-right: -50vw;
}

.support-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 3;
    font-weight: 400;
}

.support-text .highlight-white {
    color: #ffffff;
    font-weight: 600;
}

.support-text .highlight-blue {
    color: #60a5fa;
    font-weight: 600;
}

/* Join Us Section */
.join-us-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 120px 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-us-section .container-fluid {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
}

.join-us-section .row {
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 400px;
    align-items: center;
}

.join-us-section .col-lg-7,
.join-us-section .col-lg-5 {
    padding: 0;
}

.join-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: var(--primary-blue-blue-10, #487fff1a);
    z-index: 1;
}

.join-us-content {
    padding: 60px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-us-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.join-us-section .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: justify;
}

.join-us-section .section-text:last-child {
    margin-bottom: 30px;
}

.join-us-section .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

.join-us-section .join-us-buttons {
    margin-top: 20px;
}

.join-us-section .join-btn,
.join-us-section .refer-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.join-us-section .join-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    color: #0a1428;
}

.join-us-section .join-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.join-us-section .refer-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.join-us-section .refer-btn:hover {
    background: #ffd700;
    color: #0a1428;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Custom Button Styles */
.custom-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-light.custom-btn {
    background: #ffffff;
    color: #001f33;
    border-color: #ffffff;
}

.btn-light.custom-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light.custom-btn {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light.custom-btn:hover {
    background: #ffffff;
    color: #001f33;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.join-us-image {
    position: relative;
    z-index: 2;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.join-us-section .join-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Sections Responsive Design */
@media (max-width: 991px) {
    .who-we-are-section::before,
    .what-we-do-section::before,
    .platform-section::before,
    .additional-content-section::before,
    .join-us-section::before {
        width: 100%;
    }

    .platform-support-section {
        margin: 80px 20px;
        padding: 60px 0;
    }

    .support-text-container {
        padding: 40px 30px;
    }

    .support-text {
        font-size: 1rem;
    }

    .who-we-are-section .row,
    .what-we-do-section .row,
    .platform-section .row,
    .additional-content-section .row,
    .join-us-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .who-we-are-content,
    .what-we-do-content,
    .platform-content,
    .additional-content,
    .join-us-content {
        padding: 60px 40px;
        order: 1;
    }

    .who-we-are-image,
    .what-we-do-image,
    .platform-image,
    .additional-image,
    .join-us-image {
        order: 2;
        margin-top: 0;
    }

    .who-we-are-section .who-we-are-image img,
    .what-we-do-section .what-we-do-image img,
    .platform-section .platform-image img,
    .additional-content-section .additional-image img,
    .join-us-section .join-us-image img {
        height: 250px;
    }

    .who-we-are-section .section-title,
    .what-we-do-section .section-title,
    .platform-section .section-title,
    .additional-content-section .section-title,
    .join-us-section .section-title {
        font-size: 2.2rem;
    }

    .founder-card-section {
        padding: 25px;
        margin-top: 30px;
    }

    .founder-card-section .section-title {
        font-size: 1.6rem;
    }

    .founder-card-section .title-divider {
        width: 150px;
    }

    .founder-name {
        font-size: 1.2rem;
    }

    .founder-designation {
        font-size: 1rem;
    }

    .founder-location,
    .founder-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section,
    .what-we-do-section,
    .platform-section,
    .additional-content-section,
    .join-us-section {
        padding: 0;
        margin: 40px 20px;
    }

    .who-we-are-section .row,
    .what-we-do-section .row,
    .platform-section .row,
    .additional-content-section .row,
    .join-us-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .who-we-are-content,
    .what-we-do-content,
    .platform-content,
    .additional-content,
    .join-us-content {
        padding: 50px 30px;
        order: 1;
    }

    .who-we-are-image,
    .what-we-do-image,
    .platform-image,
    .additional-image,
    .join-us-image {
        order: 2;
    }

    .who-we-are-section .who-we-are-image img,
    .what-we-do-section .what-we-do-image img,
    .platform-section .platform-image img,
    .additional-content-section .additional-image img,
    .join-us-section .join-us-image img {
        height: 220px;
    }

    .who-we-are-section .section-title,
    .what-we-do-section .section-title,
    .platform-section .section-title,
    .additional-content-section .section-title,
    .join-us-section .section-title {
        font-size: 1.8rem;
    }

    .join-us-section .join-btn,
    .join-us-section .refer-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .platform-support-section {
        margin: 60px 15px;
        padding: 50px 0;
    }

    .support-text-container {
        padding: 30px 20px;
    }

    .support-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .who-we-are-section,
    .what-we-do-section,
    .platform-section,
    .additional-content-section,
    .join-us-section {
        padding: 0;
        margin: 20px 10px;
    }

    .who-we-are-content,
    .what-we-do-content,
    .platform-content,
    .additional-content,
    .join-us-content {
        padding: 40px 20px;
    }

    .who-we-are-section .who-we-are-image img,
    .what-we-do-section .what-we-do-image img,
    .platform-section .platform-image img,
    .additional-content-section .additional-image img,
    .join-us-section .join-us-image img {
        height: 200px;
    }

    .who-we-are-section .section-title,
    .what-we-do-section .section-title,
    .platform-section .section-title,
    .additional-content-section .section-title,
    .join-us-section .section-title {
        font-size: 1.6rem;
    }

    .who-we-are-section .section-text,
    .what-we-do-section .section-text,
    .platform-section .section-text,
    .additional-content-section .section-text,
    .join-us-section .section-text {
        font-size: 0.95rem;
    }

    .platform-support-section {
        margin: 40px 10px;
        padding: 40px 0;
    }

    .support-text-container {
        padding: 25px 15px;
    }

    .support-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-spacing {
        height: 40px;
    }
}

.custom-btn {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .title-divider {
        width: 300px;
        margin-bottom: 40px;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer-section {
        padding: 50px 0 25px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer-logo-img {
        width: 160px;
        height: 70px;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 30px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-title {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

    .contact-details {
        text-align: center;
    }

    .contact-icon {
        margin-top: 0;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .title-divider {
        width: 200px;
    }

    .about-heading {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    /* Footer Extra Small */
    .footer-section {
        padding: 30px 0 15px;
    }

    .footer-logo-img {
        width: 120px;
        height: 50px;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }
}

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

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: var(--Primary-Blue-Dark-Blue, #001f33);
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}