.cta-bottom-2{
        background: #f7f7f7;
}
.red-section{
        padding: 30px 0;
        position: relative;
}
.overlay-red{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #dd0021;
    opacity: .8;
}
.contentBlock.sty ul {
          list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding: 0;
    font: 100 18px / 24px "Roboto", sans-serif;
    letter-spacing: 0;
    color: #595472;
    font-weight: 400;
}
.contentBlock.sty ul li{
        margin-bottom: 10px;
        list-style: disc;
}
.contentBlock.sty .h3 {
        margin-bottom: 50px;
}

.test-sec {
        background: #1e3346;
}
.test-sec .col-lg-4{
        margin-left: 50px;
}
@media (max-width:991px) {
        .test-sec .col-lg-4{
        margin-left: 0;
}

}

/* --- Desktop Styles (Aapka Existing Code) --- */
/* --- Desktop Base Styles --- */
header .top-bar {
    padding: 2px 0;
    background-color: #ffffff;
    text-align: right;
}
header .social-links i {
    color: #68c2ff;
    font-size: 15px;
}
header .social-links a {
    line-height: 1;
    gap: 5px;
    text-decoration: none;
}
.top-bar .d-flex {
    display: flex;
    align-items: center;
}
.top-bar p {
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 0 30px;
    padding: 0;
    color: #006FC2;
}
header .logo {
    flex: 0 0 300px;
    max-width: 300px;
    text-align: left;
}
.header .logo img {
    max-width: 75%;
}

/* Navigation Base */
.navigation { margin-left: auto; }
.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.navigation ul li { position: relative; }
.navigation ul li a {
    line-height: 40px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 16.5px;
    color: #595472;
    text-decoration: none;
    font-weight: normal;
    transition: 0.3s;
}

/* Desktop Hover Line */
.navigation ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #dd0021;
    transition: all .3s ease-in-out;
}
.navigation ul li:hover > a::before { width: 100%; }

/* Desktop Dropdown Settings */
.dropdown {
    z-index: 999;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease-in-out;
    min-width: 300PX;
}
.arrow {
        font-size: 24px;
        margin-top: 10px;
        margin-left: 15px;
}
.navigation ul li:hover .dropdown {
    visibility: visible;
    opacity: 1;
}
.dropdown-inner {
    background-color: white;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dropdown-box .main-link {
    color: #555 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}
.dropdown-box p {
    font-size: 14px;
    color: #595472;
    line-height: 1.5;
}
.bdr-right { border-right: solid 1px rgba(0, 0, 0, 0.1); }

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #006FC2;
    transition: 0.3s;
}
header .top-bar{
        padding: 2px 0;
        background-color: #ffffff;
        text-align: right;
}
header .social-links i{
        color: #68c2ff;
        font-size: 15px;
}
header .social-links a{
        line-height: 1;
        gap: 5px;
}
.top-bar .d-flex {
        display: flex;
        align-items: center;
}
.top-bar p{
        font-size: .8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 0 30px;
    padding: 0;
color: #006FC2;
}

/* --- MOBILE RESPONSIVE (Strict Overrides) --- */
@media (max-width: 991px) {
    .menu-toggle { display: flex; }
    .top-bar .d-flex {
        justify-content: center !important;
    } 
    .aero {
            right: 22%;
    font-size: 25px;
    top: 30%;
    position: absolute;
    }
    .navigation {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 360px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding-top: 60px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: block !important;
    }
    .navigation.active { right: 0; }

    .navigation ul { flex-direction: column; }
    .navigation ul li { width: 100%; border-bottom: 1px solid #eee; }
    .navigation ul li a { padding: 15px 20px; height: auto; width: 100%; }

    /* Reset Dropdown for Mobile Accordion */
    .dropdown {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: none; /* JS will toggle this */
        min-width: 100% !important;
        transition: none !important;
    }
    .navigation ul li.open .dropdown { display: block !important; }

    .dropdown-inner { padding: 0; box-shadow: none; }
    .dropdown-box p { display: none !important; } /* Hide descriptions */
    
    /* Heading becomes the clickable link */
    .dropdown-box .main-link {
        padding: 12px 30px !important;
        margin: 0 !important;
        background: #fcfcfc;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px !important;
        color: #006FC2 !important;
    }
    .bdr-right { border-right: none !important; }

    /* X Animation */
    .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width:575px) {
    header .logo img {
        width: 70% !important;
    }
}

@media (max-width:450px) {
        .py-3 {
                padding: 0 1rem !important;
        }
        .top-bar .d-flex {
                display: block !important;
                padding: 3px 0;
        }
        .top-bar .social-links {
                justify-content: center;
                margin-bottom: 4px;
        }
        .top-bar p {
                text-align: center;
        }

}