:root {
    --primary-color: #0d1b3a;
    --accent-color: #f7c600;
    --section-padding: 80px 0;
    --container-max-width: 1300px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* COMMON SECTION STYLES */
.standard-section {
    padding: var(--section-padding);
}

.standard-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* <!-- ====================== NAVBAR ====================== --> */
.navbar-custom {
    background: #ffffff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
.navbar-brand img {
    height: 60px;
    width: auto;
}
.navbar-nav {
    align-items: center;
}
.navbar-nav .nav-link {
    padding: 0.8rem 1.2rem !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}
/* Mobile toggler improvements */
#mobileToggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}
.navbar-toggler {
    border: none !important;
    padding: 4px 8px;
}
.navbar-toggler:focus {
    box-shadow: none !important;
}
/* <!-- ====================== SIDEBAR ====================== --> */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    transition: 0.3s;
}
.sidebar-overlay.show {
    width: 100%;
    opacity: 1;
}
/* SIDEBAR MAIN */
.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);

    z-index: 1100;
    padding: 30px 25px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);

    transition: 0.4s ease;
}
.sidebar.show {
    right: 0;
}
/* HEADER */
.sidebar-header {
    text-align: center;
    margin-bottom: 20px;
}

.side-logo {
    width: 170px;
    padding: 5px;
}
.sidebar-header p {
    margin-top: 15px;
    font-size: 15px;
    color: #333;
    opacity: 0.9;
}
/* SIX ICON GRID */
.sidebar-icons {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    justify-items: center;
}
.sidebar-icons img {
    width: 80px;
    height: 80px;
    padding: 8px;
    border-radius: 16px;

    transition: 0.2s;
}
.sidebar-icons img:hover {
    transform: scale(1.07);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
}
/* CONTACT SECTION */
.sidebar-contact {
    margin-top: 25px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d1b3a, #102a56);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.sidebar-contact p {
    margin: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
}
.sidebar-contact i {
    margin-right: 10px;
    font-size: 18px;
    color: #f7c600;
}

/* <!-- ====================== HERO SLIDER IMPROVEMENTS ====================== --> */
#heroSlider {
    margin-top: 0;
}
.hero-img {
    height: 90vh;
    object-fit: cover;
    filter: brightness(55%);
    width: 100%;
}
.custom-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    color: white;
    padding: 0 20px;
}
.custom-caption h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.custom-caption .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.6;
}
.discover-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.discover-btn:hover {
    background-color: white;
    color: #333;
    transform: translateY(-2px);
}
/* <!-- ====================== TRUSTED SECTION IMPROVEMENTS ====================== --> */
.trusted-section {
    padding: var(--section-padding);
    background: #fff;
}

.trusted-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 25px;
}

.trusted-desc {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 95%;
}

/* BRAND GRID - 6 LOGOS KE LIYE PERFECT LAYOUT */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    padding: 20px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
}

.brand-logo {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    object-fit: contain;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.12);
}

/* ====================== ABOUT SECTION IMPROVEMENTS ====================== */

.abt-area-ms {
    background: var(--primary-color);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.abt-container-ms {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.abt-left-ms {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.abt-small-title-ms {
    color: #F5C400;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.abt-main-title-ms {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
}

.abt-desc-ms {
    color: #d4e3e4;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.abt-btn-ms {
    background: #F5C400;
    padding: 12px 32px;
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.abt-btn-ms:hover {
    background: #e6b800;
    transform: translateY(-2px);
    color: #000;
}

.abt-right-ms {
    position: relative;
    height: auto;
}

.abt-image-container-ms {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.abt-main-image-ms {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.abt-main-image-ms:hover {
    transform: scale(1.05);
}






/* ====================== SERVICES SECTION IMPROVEMENTS ====================== */
.services-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* SERVICE IMAGE STYLES */
.service-image {
    width: 100%;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-desc {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px; 
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-color);
}

.service-link:hover {
    color: var(--accent-color);
    gap: 0.8rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.expertise-header {
    /* background: #ffffff; */
    padding: 2.5rem 1.5rem;
    height: 100%;
}

.expertise-main-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.expertise-subtitle {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.expertise-desc {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.expertise-btn {
    background: var(--accent-color);
    color: white;
    padding: 12px 35px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}


/* ====================== Counter section ====================== */

.stats-section {
    padding: 100px 0;
    background: #fff;
}

.stats-bg {
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
    /* border: 1px solid #000; */
}

/* Light White Layer on BG Image */
.stats-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.stats-bg .container {
    position: relative;
    z-index: 2;
}

/* MAIN NUMBER */
.stats-main-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #f5b800;
    margin-bottom: 20px;
}

/* TITLE */
.stats-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #003b49;
    margin-bottom: 60px;
    line-height: 1.4;
}

/* STATS ROW */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* EACH STAT ITEM */
.stat-box {
    text-align: center;
    width: 170px;
}

/* ICONS */
.stat-icon {
    font-size: 45px;
    color: #f5b800;
    margin-bottom: 10px;
}

/* VALUE */
.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #003b49;
}

/* LABEL */
.stat-label {
    font-size: 1rem;
    color: #003b49;
    opacity: 0.8;
}



/* <!-- ====================== VALUES SECTION ====================== --> */
.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-title {
    font-size: 3rem;
    font-weight: 800;
    color: #003b49;
    line-height: 1.3;
    margin-bottom: 20px;
}

.values-subtitle {
    font-size: 1.2rem;
    color: #003b49;
    opacity: 0.8;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
}


/* <!-- ====================== LATEST NEWS SECTION ====================== --> */

/* SECTION SETUP */
.news-section {
    padding: 20px 0;
    padding-bottom: 100px;
    background: #fff;
    /* border: 1px solid #000; */
}

.news-subtitle {
    color: #f5b800;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-title {
    font-size: 3rem;
    font-weight: 800;
    color: #003b49;
    margin-bottom: 50px;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.news-card {
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
}

/* IMAGE WRAPPER */
.news-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE */
.news-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5b800;
    color: #000;
    padding: 5px 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-yellow {
    background: #e0a800;
}

/* TITLE */
.news-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: #003b49;
    margin: 20px 0 10px;
}

/* DESCRIPTION */
.news-desc {
    color: #003b49;
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* READ MORE */
.news-readmore {
    font-weight: 700;
    font-size: 0.95rem;
    color: #003b49;
    transition: 0.3s;
}

.news-readmore:hover {
    color: #f5b800;
}

/* ====================== CONTACT-HERO SECTION IMPROVEMENTS ====================== */

.container-ms {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background: url("../images/h2.webp") center/cover no-repeat; */
    background: url("/assets/images/h2.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0;
    color: #fff;
    overflow: hidden;
}

/* Premium Dark Gradient Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 25%,
        rgba(0, 0, 0, 0.5) 55%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

/* Main layout inside container */
.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 400px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    /* border: 1px solid #fff; */
}

/* Left Content */
.hero-content {
    max-width: 650px;
    animation: fadeUp 1.2s ease;
        /* border: 1px solid #fff; */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 520px;
    opacity: 0.95;
}

/* Button */
.contact-btn {
    background: #f9c400;
    padding: 15px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    display: inline-block;
    transition: all .3s ease;
}

.contact-btn:hover {
    background: #ffd534;
    transform: translateY(-3px);
}

/* Right Play Button */
.play-box {
    text-align: center;
    animation: fadeIn 1.6s ease;
    margin-right: 200px;
        /* border: 1px solid #fff; */
}

.play-circle {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255,255,255,0.45);
    transition: 0.3s;
}

.play-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255,255,255,0.7);
}

.play-circle span {
    font-size: 32px;
    color: #0e1b25;
    font-weight: bold;
}

.play-text {
    margin-top: 14px;
    letter-spacing: 3px;
    color: #f9c400;
    font-weight: 700;
    font-size: 0.92rem;
}


.hero-video-box {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 800px;
    z-index: 10;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.close-video {
    position: absolute;
    top: 5px;
    right: 15px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
    z-index: 20;
}


/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}


<!-- /* ====================== NEED HELP IMPROVEMENTS ====================== */ -->


.need-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.need-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.5;
    /* margin-bottom: 25px; */
        /* border: 1px solid #000; */
}
.need-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
        /* border: 1px solid red; */
}

.need-desc {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 95%;
        /* border: 1px solid #000; */
}

.need-btn-ms {
    background: #F5C400;
    padding: 12px 32px;
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.need-btn-ms:hover {
    background: #e6b800;
    transform: translateY(-2px);
    color: #000;
}






/* ====================== OTHER PAGE HEADER IMPROVEMENTS ====================== */
/* HEADER SECTION WITH BACKGROUND IMAGE */
        /* --- OTHER HEADER (Background Image Area) --- */
.other-header {
    position: relative;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0; 
}

/* Dark Blue Overlay - Text pop karne ke liye */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 58, 0.65); /* Theme Blue with transparency */
    z-index: 1;
}

/* Header Text Styling */
.other-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive Huge Font */
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.other-header-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

/* --- FLOATING TITLE BOX (The White Box) --- */
.floating-title-section {
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Ye Negative Margin box ko upar khinchega */
    padding-bottom: 50px; /* Niche wale section se gap */
}

.page-title-box {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.08); /* Soft Shadow */
    max-width: 1100px; /* Container width control */
    margin: 0 auto;
    border-radius: 4px; /* Slight rounded corners optional */
}

/* Breadcrumb Styling */
.page-breadcrumb {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1b3a;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-breadcrumb a {
    text-decoration: none;
    color: #0d1b3a;
    opacity: 0.7;
    transition: 0.3s;
}

.page-breadcrumb a:hover {
    color: #f7c600; /* Theme Yellow */
    opacity: 1;
}

.page-breadcrumb .separator {
    color: #f7c600;
    font-weight: bold;
}

.page-breadcrumb .current {
    color: #0d1b3a; /* Active Page Color */
}

/* Main Title inside Box */
.page-main-title {
    font-size: 3rem; /* Bada Font jaisa image me hai */
    font-weight: 800;
    color: #0d1b3a; /* Theme Dark Blue */
    margin-top: 5px;
    letter-spacing: -1px;
}



/* ====================== FOOTER IMPROVEMENTS ====================== */

.main-footer {
    background: #0d1b3a; /* theme primary */
    padding: 60px 0 10px 0;
    color: #e0e6eb; /* soft white for readability */
    font-family: 'Poppins', sans-serif;
          /* border: 1px solid white; */
}
.footer-heading {
    letter-spacing: 2px;
    font-size: 13px;
    color: #9aa5ad; /* subtle gray, theme-friendly */
    margin-bottom: 20px;
}
.footer-menu {
    list-style: none;
    padding: 0;

}
.footer-menu li {
    margin-bottom: 12px;
}
.footer-menu a {
    text-decoration: none;
    color: #e0e6eb; /* soft white */
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}
.footer-menu a:hover {
    color: #f7c600; /* theme accent */
}
.footer-menu .highlight {
    color: #f7c600;
}
.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    color: #e0e6eb;
}
.newsletter-desc {
    color: #9aa5ad;
    margin: 15px 0 20px;
    font-size: 15px;
}
.newsletter-box {
    display: flex;
    width: 100%;
}
.newsletter-input {
    width: 70%;
    padding: 14px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #102a56; /* slightly lighter than footer bg */
    color: #e0e6eb;
}
.newsletter-btn {
    width: 30%;
    background: #f7c600; /* theme accent */
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: black;
    cursor: pointer;
}
.main-footer-container {
  background: #0d1b3a;
  color: #e0e6eb;
  padding: 0px 20px;
  font-family: 'Poppins', sans-serif;
        /* border: 1px solid white; */
  
}
.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  
}
.footer-logo-container {
 display: flex;          /* ← new */
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;

}
.social-icons {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  margin-right: 90px;
}
.footer-policy-links {
  flex: 0 0 auto;
  white-space: nowrap;
}
.footer-bottom-row {
  text-align: center;
  margin-top: 20px;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #e0e6eb;
  background: #12313c;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: #f7c600;
  color: black;
}
.footer-logo {
  height: clamp(90px, 10vw, 80px); /* 50 → 80px responsive */
  width: auto;
  max-width: 100%;
}
.footer-policy-links a {
  color: #e0e6eb;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s;
}
.footer-policy-links a:hover {
  color: #f7c600;
}
.footer-copy {
  font-size: 14px;
  color: #b0bcc4;
}


/* ====================== Scroll To Top Button IMPROVEMENTS ====================== */

#scrollTopBtn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #f9c400;   /* Yellow theme */
    border: none;
    border-radius: 50%;
    color: #073b4c;
    font-size: 22px;
    display: none;  /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: #ffd84d;
    transform: translateY(-3px);
}
