/* Minimal custom styles, rely on Bootstrap for layout */

/* Theme Colors */
:root {
    --theme-primary: #1976d2;
    /* Blue */
    --theme-accent: #3cf0ff;
    /* Cyan */
    --theme-bg: #fff;
    /* White */
    --theme-dark: #181a2a;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--theme-bg);
    color: #222;
    font-size: 0.95rem;
    /* Make overall font size smaller */
}

/* Top Info Strip */
.top-strip {
    background: var(--theme-dark);
    color: #fff;
    font-size: 0.97em;
    padding: 0.4rem 0;
}

.social-links a {
    color: #fff;
    margin-left: 0.7rem;
    font-size: 1.1em;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ff2ad4;
}

/* Sticky Header */
.main-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 100;
    transition: box-shadow 0.3s, transform 0.3s;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 24px rgba(36, 36, 80, 0.13);
    animation: stickyFadeIn 0.4s;
}

@keyframes stickyFadeIn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 0.7rem;
}

.btn-custom {
    border-radius: 0 !important;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.btn-signin {
    border: 1.5px solid #b48aff;
    color: #23234a;
    background: transparent;
}

.btn-signin:hover {
    background: #b48aff;
    color: #fff;
}

.btn-signup {
    background: #ff2ad4;
    color: #fff;
}

.btn-signup:hover {
    background: #b48aff;
}

.btn-contact {
    background: #1a2f50 !important;
    color: #fff !important;
    border: 1.5px solid #1a2f50 !important;
    border-radius: 3px !important;
}

.btn-contact:hover {
    background: #1a2f50 !important;
    color: #fff !important;
    border-color: #2563eb !important;
}

.btn-bookslot {
    background: #23234a;
    color: #fff;
    border: 1.5px solid #23234a;
    width: 120px;
    transition: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.btn-bookslot .bookslot-icon {
    display: inline-block;
    margin-left: 8px;
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
}

.btn-bookslot:hover {
    width: 120px;
    background: #23234a;
    color: #fff;
    border-color: #23234a;
}

.btn-bookslot:hover .bookslot-icon {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.logo-img {
    display: block;
    max-height: 110px;
    max-width: 150px;
    width: auto;
    height: auto;
    /* Remove border-radius and background if not needed */
    /* border-radius: 0; */
    /* background: none; */
    box-shadow: none;
    object-fit: contain;
    /* Keeps full image visible */
    object-position: center;
    /* Centers image */
    background-color: #f5f5f5;
    margin: 0 auto;
}

/* Slider Section */
.slider {
    background: linear-gradient(90deg, var(--theme-bg) 60%, #e3f0ff 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider .container {
    position: relative;
    z-index: 2;
}

.slider h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #23234a;
    letter-spacing: -1px;
    line-height: 1.15;
}

.slider .lead {
    font-size: 1.25rem;
    color: #4a4a6a;
    margin-bottom: 2rem;
}

.slider-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}



.slider-img-wrap img {
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(36, 36, 80, 0.13);
    border-radius: 18px;
    width: 100%;
    max-width: 340px;
    height: auto;
    /* Remove background and border */
    background: none;
    border: none;
    margin: 0 auto;
}

/* Hero Slider Section (like your image) */
.slider.hero-slider {
    background: linear-gradient(120deg, var(--theme-dark) 60%, var(--theme-primary) 100%);
    color: #fff;
    min-height: 440px;
    border-radius: 0;
    /* Remove round corners */
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 10px 40px 0 rgba(36, 36, 80, 0.18);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}



.slider .container {
    position: relative;
    z-index: 2;
}

.slider-label {
    font-size: 1.55rem;
    font-weight: 400;
    /* Remove bold */
    color: #3cf0ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(60, 240, 255, 0.08);
    display: inline-block;
    padding: 0.35em 1.3em;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    margin-top: -1.2rem;
    top: -10px;
}

.slider-title {
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 3.6rem;
    /* Increased size */
    line-height: 1.08;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 24px #1a174d33;
}

.slider-title-main {
    color: #3cf0ff;
    font-size: 2.8rem;
    /* Increased size */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px #3cf0ff44;
}

.slider-title-sub {
    color: #fff;
    font-size: 3.6rem;
    /* Increased size */
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px #fff4;
}

.slider-subtitle {
    font-size: 1.18rem;
    color: #e0e0e0;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Button layout: make it more prominent and modern */
.slider-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    background: linear-gradient(90deg, var(--theme-accent) 0%, var(--theme-primary) 100%);
    color: #fff;
    /* White text */
    font-weight: 400;
    /* Remove bold */
    border: none;
    border-radius: 32px;
    padding: 0.85em 2.6em;
    font-size: 1.25rem;
    box-shadow: 0 4px 24px #3cf0ff33;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.slider-cta-btn:hover {
    background: linear-gradient(90deg, var(--theme-primary) 0%, var(--theme-accent) 100%);
    color: #fff;
    box-shadow: 0 6px 32px #1976d244;
    transform: translateY(-2px) scale(1.04);
}

.slider-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.slider-img-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #fff 0%, #fafafa57 0%, #fff0 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(1px);
}

/* Add icons randomly over the image in the slider */
.slider-img-icon {
    position: absolute;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px #23234a22;
    width: 2.6em;
    height: 2.6em;
    min-width: 32px;
    min-height: 32px;
    max-width: 48px;
    max-height: 48px;
    font-size: 1.3em;
    opacity: 0.93;
    z-index: 3;
    pointer-events: none;
    transition: transform 0.2s;
    /* Center icon in circle */
    text-align: center;
    line-height: 1;
    padding: 0;
}

.slider-img-icon i {
    margin: 0 auto;
    display: block;
    line-height: 1;
}

/* Randomized positions for up to 7 icons */
.slider-img-icon.icon1 {
    left: 6%;
    top: 5%;
    color: #ff2ad4;
    font-size: 2.1rem;
}

.slider-img-icon.icon2 {
    /* robot */
    left: 88%;
    top: 28%;
    /* more away and down */
    color: #1976d2;
    font-size: 2rem;
    /* bigger */
}

.slider-img-icon.icon3 {
    /* cloud */
    left: 15%;
    top: 80%;
    color: #ffc107;
    font-size: 1.5rem;
    /* bigger than chat */
}

.slider-img-icon.icon4 {
    /* bolt */
    left: 85%;
    top: 70%;
    color: #3cf0ff;
    font-size: 1.2rem;
}

.slider-img-icon.icon5 {
    /* chart-line (chat) */
    left: 75%;
    top: 2%;
    color: #00e676;
    font-size: 1.0rem;
    /* smaller */
}

.slider-img-icon.icon6 {
    left: 3%;
    top: 54%;
    color: #ff9800;
    font-size: 1rem;
}

.slider-img-icon.icon7 {
    /* database */
    left: 70%;
    top: 85%;
    color: #8e24aa;
    font-size: 1.1rem;
}

/* Solutions Slider Section */
.solutions-slider-section {
    background: #fff;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: #23234a;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.solution-desc {
    font-size: 1.1rem;
    color: #4a4a6a;
    margin-bottom: 0.5rem;
}

/* Solution icon and image for slider slides */
/* .solution-icon {
    font-size: 2.7rem;
    color: #3cf0ff;
    background: #f7f8fa;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 12px #3cf0ff22;
    position: relative;
    z-index: 2;
} */

.solution-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 18px;
    background: #f7f8fa;
    box-shadow: 0 4px 18px #23234a11;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Remove custom slider animation and controls styles */
.custom-slider,
.custom-slide,
.custom-slide.active,
.custom-slide.exiting-left,
.custom-slide.exiting-right,
.custom-slider-prev,
.custom-slider-next {
    /* No longer needed, let Bootstrap handle carousel */
    /* This block can be deleted or left empty */
}

/* Remove overflow:hidden from .carousel-inner if present */
.carousel-inner {
    overflow: visible !important;
}

/* @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        justify-content: space-between !important;
        width: 75%;
    }
} */

/* .nav-link:hover {
    color: #1976d2;
    transition: color 0.3s ease;
}


/* Dropdown open on hover for desktop */
/* @media (min-width: 992px) {
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    } */
   /* .nav-link:hover,
    .navbar-nav .dropdown:hover>.nav-link,
    .navbar-nav .dropdown:hover>.dropdown-toggle {
        color: #1976d2;
    } */
/* } */ 

/* General hover effect */
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1976d2 !important; 
}

/* Dropdown open on hover (Desktop only) */
@media (min-width: 992px) {

    /* Show dropdown on hover */
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Change text color on hover + when dropdown is open */
    .navbar-nav .dropdown:hover > .nav-link,
    .navbar-nav .dropdown:hover > .dropdown-toggle,
    .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
        color: #1976d2;
    }

    /* Smooth hover transition for dropdown items */
    .dropdown-item {
        transition: color 0.3s ease, background-color 0.3s ease;
    }
}


@media (max-width: 991.98px) {
    .main-nav .navbar-nav {
        gap: 2.5rem;
        justify-content: space-between;
        width: 100%;
        display: flex;
    }

    .slider.hero-slider {
        min-height: 260px;
        padding: 2.5rem 0 1.5rem 0;
        border-radius: 12px;
    }

    .slider-title {
        font-size: 2.2rem;
    }

    .slider-title-main,
    .slider-title-sub {
        font-size: 1.7rem;
    }

    .slider-hero-img {
        max-width: 180px;
    }

    .slider-img-wrap::before {
        width: 180px;
        height: 180px;
    }

    .slider-img-icon {
        min-width: 24px;
        min-height: 24px;
        max-width: 32px;
        max-height: 32px;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .slider.hero-slider {
        padding: 0rem 0 0rem 0;
        border-radius: 0;
    }

    .slider-title {
        font-size: 1.3rem;
    }

    .slider-title-main,
    .slider-title-sub {
        font-size: 1.1rem;
    }

    .slider-hero-img {
        max-width: 110px;
    }

    /* Make white circle background more visible on mobile */
    .slider-img-wrap::before {
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, #fff 60%, #fafafa 100%);
        opacity: 0.95;
        filter: blur(0.5px);
    }

    .slider-img-icon {
        min-width: 18px;
        min-height: 18px;
        max-width: 22px;
        max-height: 22px;
        font-size: 0.8em;
    }

    .main-nav .navbar-nav {
        gap: 0.5rem;
    }
}

/* Process Card Section (Our Solutions) */
.process-cards-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.process-cards-row {
    margin-top: 0;
    align-items: stretch;
    /* ensure equal height columns */
}

.process-card {
    background: var(--theme-bg);
    border-radius: 18px;
    box-shadow: 0 8px 32px #23234a13;
    padding: 1.2rem 1rem 1.2rem 1rem;
    text-align: center;
    transition: box-shadow 0.18s, transform 0.18s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    /* force equal height */
}

.process-card:nth-child(even) {
    background: #fff;
}

.process-card:hover {
    box-shadow: 0 16px 48px #1976d222;
    transform: translateY(-6px) scale(1.025);
}

.process-card-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: none;
}

.process-card-title {
    font-size: 2rem;
    font-weight: 400;
    color: #2a3b6d;
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.process-card-desc {
    font-size: 1.13rem;
    color: #3a4a6a;
    margin-bottom: 0;
    font-weight: 400;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Smaller font for Our Solutions process cards section */
.process-cards-section .process-card-title {
    font-size: 1.1rem;
    color: #23234a;
    /* black/dark */
}

.process-cards-section .process-card-desc {
    font-size: 0.97rem;
    color: #23234a;
    /* black/dark */
}

/* Responsive for process cards */
@media (max-width: 991.98px) {
    .process-card {
        min-height: 160px;
        padding: 1rem 0.7rem 1rem 0.7rem;
    }

    .process-card-title {
        font-size: 1.3rem;
    }

    .process-card-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 600px) {
    .process-card {
        min-height: 0;
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    }

    .process-card-title {
        font-size: 1.1rem;
    }

    .process-card-img {
        width: 48px;
        height: 48px;
    }
}

/* Promotion Section */
/* .promotion-section {
    background: #e3f0ff;
    border-radius: 14px;
    margin: 2rem 0 0 0;
}

.promotion-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #23234a;
}

.promotion-desc {
    font-size: 1.08rem;
    color: #23234a;
}

.promotion-btn {
    font-weight: 500;
    border-radius: 24px;
    background: #1976d2;
    border: none;
    transition: background 0.18s;
}

.promotion-btn:hover {
    background: #23234a;
    color: #fff;
}

.promotion-section-custom {
    background: var(--theme-primary);
    border-radius: 0;
    margin: 2.5rem 0 0 0;
    overflow: hidden;
    padding: 0;
} */

/* .promo-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1.2rem;
} */

/* .promo-highlight {
    color: var(--theme-accent);
    font-weight: 500;
    letter-spacing: 1px;
}

.promo-desc {
    color: #e3f0ff;
    font-size: 1.13rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.promo-btn {
    display: inline-block;
    background: #fff;
    color: var(--theme-primary);
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.85em 2.2em;
    border-radius: 1rem;
    box-shadow: 0 4px 24px #0a4a8a22;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    margin-top: 0.5rem;
}

.promo-btn:hover {
    background: var(--theme-accent);
    color: var(--theme-primary);
    box-shadow: 0 8px 32px #3cf0ff44;
}

.promo-img {
    max-width: 320px;
    min-width: 160px;
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 0 8px 32px #23234a22;
    background: #fff;
    margin: 0 auto;
    display: block;
} */

@media (max-width: 991.98px) {
    /* .promotion-section-custom {
        border-radius: 1.2rem;
        padding: 0.5rem 0;
    } */
/* 
    .promo-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    } */

    /* .promo-img {
        max-width: 180px;
    }

    .promo-btn {
        font-size: 1rem;
        padding: 0.7em 1.5em;
    }

    .promo-desc {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .promotion-section-custom .col-md-7,
    .promotion-section-custom .col-md-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
} */

@media (max-width: 600px) {
    /* .promotion-section-custom {
        border-radius: 0.7rem;
        padding: 0.5rem 0.2rem;
    } */

    /* .promo-title {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    } */

    /* .promo-img {
        max-width: 100px;
    }

    .promo-btn {
        font-size: 0.95rem;
        padding: 0.6em 1.2em;
    }

    .promo-desc {
        font-size: 0.93rem;
        margin-bottom: 0.7rem;
    } */
}

/* Latest Jobs Section */
.latest-jobs-section {
    background: #f7f8fa;
    letter-spacing: 0.03em;
}

.latest-jobs-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #232323;
    margin-bottom: 1.2rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.job-card {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 4px 24px #23234a10;
    padding: 1.1rem 1.1rem 0.7rem 1.1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.18s, transform 0.18s;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #232323;
    font-size: 0.97rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.job-card:hover {
    box-shadow: 0 8px 32px #716cd044;
    transform: translateY(-2px) scale(1.01);
}

.job-title {
    font-size: 1rem;
    font-weight: 700;
    color: #232323;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.job-company,
.job-rating,
.job-reviews,
.job-meta,
.job-qual,
.job-tag,
.job-date {
    color: #232323 !important;
    font-size: 0.93rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.job-rating i {
    color: #ffc107 !important;
}

.job-meta i,
.job-qual i {
    color: #232323 !important;
}

.job-tag {
    display: inline-block;
    background: #f3f4fd;
    border-radius: 0.7rem;
    padding: 0.22em 0.7em;
    margin-right: 0.3em;
    margin-bottom: 0.2em;
    border: 1px solid #ecebfa;
    font-size: 0.91rem;
    color: #232323 !important;
}

.job-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 0.7rem;
    background: #f7f8fa;
    box-shadow: 0 2px 8px #716cd022;
    margin-left: 0.5rem;
}

.job-date {
    font-size: 0.91rem;
}

.job-apply-btn {
    background: #1a174d;
    color: #fff !important;
    font-weight: 600;
    border: none;
    border-radius: 2rem;
    padding: 0.35em 1.5em;
    font-size: 0.97rem;
    box-shadow: 0 2px 12px #716cd022;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.job-apply-btn:hover {
    background: #1976d2;
    color: #fff !important;
    box-shadow: 0 4px 18px #3cf0ff44;
}

.view-more-jobs-btn {
    display: inline-block;
    background: #1a174d;
    color: #fff !important;
    font-weight: 600;
    border: none;
    border-radius: 2rem;
    padding: 0.5em 1.7em;
    font-size: 1rem;
    box-shadow: 0 2px 12px #716cd022;
    text-decoration: none;
    margin-top: 0.7rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.view-more-jobs-btn:hover {
    background: #1976d2;
    color: #fff !important;
    box-shadow: 0 4px 18px #3cf0ff44;
}

@media (max-width: 991.98px) {
    .job-card {
        padding: 0.7rem 0.7rem 0.7rem 0.7rem;
        min-height: 120px;
        font-size: 0.91rem;
    }

    .latest-jobs-title {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .job-card {
        padding: 0.5rem 0.3rem 0.5rem 0.3rem;
        min-height: 0;
        font-size: 0.89rem;
    }

    .job-title {
        font-size: 0.93rem;
    }

    .job-company,
    .job-meta,
    .job-qual,
    .job-tag,
    .job-date {
        font-size: 0.87rem;
    }

    .job-logo {
        width: 20px;
        height: 20px;
    }

    .view-more-jobs-btn {
        font-size: 0.93rem;
        padding: 0.4em 1em;
    }
}

/* NSE Placement Carousel Cards */
#nse-placement-carousel .item {
    background: #fff;
    /* Remove border and border-radius for a mature look */
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    margin: 0 0.5rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#nse-placement-carousel .item img {
    /* Remove border-radius for square/rectangular image */
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0.7rem;
    background: #f7f8fa;
}

#nse-placement-carousel .fw-bold {
    font-size: 1.05rem;
    color: #23234a;
}

#nse-placement-carousel .text-muted {
    font-size: 0.95rem;
    color: #888 !important;
}

/* Contact Section Custom Styles */
.contact-section-custom {
    background: var(--theme-primary);
    border-radius: 0;
    /* margin: 2.5rem 0 0 0; */
    overflow: hidden;
    padding: 0;
}

.contact-content {
    min-height: 200px;
}

.contact-title {
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1.1rem;
}

.contact-highlight {
    color: var(--theme-accent);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.contact-desc {
    color: #e3f0ff;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.contact-btn {
    display: inline-block;
    background: #fff;
    color: var(--theme-primary);
    font-weight: 500;
    font-size: 1.01rem;
    padding: 0.7em 2em;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px #716cd044;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    margin-top: 0.5rem;
    border: none;
}

.contact-btn:hover {
    background: #e3f0ff;
    color: var(--theme-dark);
    box-shadow: 0 4px 18px #716cd066;
}

.contact-img {
    max-width: 260px;
    min-width: 120px;
    width: 100%;
    border-radius: 1.1rem;
    object-fit: cover;
    box-shadow: 0 4px 18px #bdbdbd22;
    background: #fff;
    margin: 0 auto;
    display: block;
}

@media (max-width: 991.98px) {
    .contact-section-custom {
        border-radius: 0.7rem;
        padding: 0.5rem 0;
    }

    .contact-title {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
    }

    .contact-img {
        max-width: 140px;
    }

    .contact-btn {
        font-size: 0.97rem;
        padding: 0.6em 1.3em;
    }

    .contact-desc {
        font-size: 0.97rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 600px) {
    .contact-section-custom {
        border-radius: 0.5rem;
        padding: 0.3rem 0.1rem;
    }

    .contact-title {
        font-size: 0.98rem;
        margin-bottom: 0.5rem;
    }

    .contact-img {
        max-width: 80px;
    }

    .contact-btn {
        font-size: 0.93rem;
        padding: 0.5em 1em;
    }

    .contact-desc {
        font-size: 0.91rem;
        margin-bottom: 0.6rem;
    }
}

/* NSE Successful Placements Section */
.nse-placement-section {
    background: #fff;
}

.nse-placement-title {
    font-weight: 600;
    color: #23234a;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    font-size: 1.38rem;
    letter-spacing: 0.5px;
    width: 100%;
}

.nse-placement-card {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    margin: 0 0.5rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.nse-placement-img {
    max-width: 90px;
    max-height: 90px;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0.7rem;
    background: #f7f8fa;
}

.nse-placement-name {
    font-size: 1.05rem;
    color: #23234a;
    font-weight: 500;
}

.nse-placement-company {
    font-size: 0.95rem;
    color: #888;
}

/* Improved mobile layout for promo/contact/jobs sections */
@media (max-width: 991.98px) {

    .promo-row,
    .contact-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .promo-content,
    .contact-content {
        align-items: center !important;
        text-align: center !important;
        padding: 1.2rem 0.7rem !important;
    }

    .promo-img-col,
    .contact-img-col {
        justify-content: center !important;
        align-items: center !important;
        padding: 0.7rem 0 !important;
    }

    /* .promo-title,
    .contact-title {
        font-size: 1.08rem;
        margin-bottom: 0.5rem;
        line-height: 1.18;
    } */

    .promo-desc,
    .contact-desc {
        font-size: 0.97rem;
        margin-bottom: 0.5rem;
    }

    .promo-btn,
    .contact-btn {
        font-size: 0.97rem;
        padding: 0.5em 1.1em;
    }

    .promo-img,
    .contact-img {
        max-width: 110px;
    }

    .promotion-section-custom,
    .contact-section-custom {
        padding: 0.7rem 0.2rem;
        margin: 1.2rem 0 0 0;
    }
}

@media (max-width: 600px) {

    .promo-row,
    .contact-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .promo-content,
    .contact-content {
        align-items: center !important;
        text-align: center !important;
        padding: 0.7rem 0.2rem !important;
    }

    .promo-img-col,
    .contact-img-col {
        justify-content: center !important;
        align-items: center !important;
        padding: 0.3rem 0 !important;
    }

    /* .promo-title,
    .contact-title {
        font-size: 0.97rem;
        margin-bottom: 0.3rem;
        line-height: 1.13;
    } */

    .promo-desc,
    .contact-desc {
        font-size: 0.91rem;
        margin-bottom: 0.3rem;
    }

    .promo-btn,
    .contact-btn {
        font-size: 0.93rem;
        padding: 0.4em 0.8em;
    }

    .promo-img,
    .contact-img {
        max-width: 70px;
    }

    .promotion-section-custom,
    .contact-section-custom {
        padding: 0.3rem 0.05rem;
        margin: 0.7rem 0 0 0;
        border-radius: 0.4rem;
    }

    /* Latest Jobs Section mobile fix */
    .jobs-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .jobs-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .latest-jobs-title,
    .latest-jobs-section h2 {
        font-size: 1rem !important;
        padding-bottom: 0.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .job-card {
        padding: 0.5rem 0.1rem 0.5rem 0.1rem;
        min-height: 0;
        font-size: 0.87rem;
    }
}

/* Footer Styles */
.main-footer {
    position: relative;
    background: var(--theme-dark);
    color: #fff;
    overflow: hidden;
    z-index: 2;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

.main-footer .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 0.7rem;
    background: #fff;
    box-shadow: 0 2px 8px #23234a22;
}

.footer-company-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0.3rem;
}

.footer-desc {
    font-size: 1rem;
    color: #e3f0ff;
    margin-bottom: 0.5rem;
}

.footer-contact {
    color: #fff;
    font-size: 0.97rem;
    display: block;
    margin-bottom: 0.1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.25rem;
    margin-right: 0.7rem;
    transition: color 0.18s;
}

.footer-social a:hover {
    color: var(--theme-accent);
}

.footer-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #e3f0ff;
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.18s;
}

.footer-links a:hover {
    color: var(--theme-accent);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #fff2;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.93rem;
    color: #e3f0ff;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .main-footer .container-fluid {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .footer-brand {
        align-items: flex-start;
    }

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

    .footer-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .main-footer .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-title {
        font-size: 0.97rem;
        margin-bottom: 0.4rem;
    }

    .footer-links a {
        font-size: 0.91rem;
    }

    .footer-logo {
        width: 38px;
        height: 38px;
    }

    .footer-company-name {
        font-size: 1.05rem;
    }

    .footer-bottom {
        font-size: 0.89rem;
        padding-top: 0.7rem;
    }
}

/* Make font size smaller */
.navbar-nav .nav-link,
.header-actions .btn-custom {
    font-size: 0.75rem !important;
}

/* Dropdown menu font size */
.dropdown-menu,
.dropdown-item {
    font-size: 0.93rem !important;
}

/* Section titles smaller */
/* .promo-title,
.contact-title,
.latest-jobs-title,
.nse-placement-title,
.solution-title,
.process-card-title,
.footer-title {
    font-size: 1rem !important;
} */

/* Section descriptions smaller */
.promo-desc,
.contact-desc,
.solution-desc,
.process-card-desc,
.footer-desc {
    font-size: 0.92rem !important;
}

/* Buttons smaller */
.promo-btn,
.contact-btn,
.slider-cta-btn,
.job-apply-btn,
.view-more-jobs-btn {
    font-size: 0.93rem !important;
    padding: 0.5em 1.1em !important;
}

/* Card/job text smaller */
.job-title,
.job-company,
.job-meta,
.job-qual,
.job-tag,
.job-date,
.process-card-title,
.process-card-desc {
    font-size: 0.91rem !important;
}

/* Footer links smaller */
.footer-links a,
.footer-bottom {
    font-size: 0.91rem !important;
}

/* Responsive: even smaller on mobile */
@media (max-width: 600px) {
    body {
        font-size: 0.89rem;
    }

    .navbar-nav .nav-link,
    .header-actions .btn-custom,
    .dropdown-menu,
    .dropdown-item,
    .contact-title,
    .latest-jobs-title,
    .nse-placement-title,
    .solution-title,
    .process-card-title,
    .footer-title,
    .promo-desc,
    .contact-desc,
    .solution-desc,
    .process-card-desc,
    .promo-btn,
    .contact-btn,
    .slider-cta-btn,
    .job-apply-btn,
    .view-more-jobs-btn,
    .job-title,
    .job-company,
    .job-meta,
    .job-qual,
    .job-tag,
    .job-date,
    .footer-links a,
    .footer-bottom {
        font-size: 0.87rem !important;
    }
}

/* Desktop footer only */
.desktop-footer {
    display: block;
}

@media (max-width: 767.98px) {
    .desktop-footer {
        display: none !important;
    }
}

/* Mobile sticky footer nav */
.mobile-footer-nav {
    display: none;
}

@media (max-width: 767.98px) {
    .mobile-footer-nav {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 -2px 12px #23234a11;
        justify-content: space-around;
        align-items: center;
        padding: 0;
        height: 60px;
    }

    .mobile-footer-nav .footer-nav-item {
        flex: 1 1 0;
        text-align: center;
        color: #b0b3c6;
        text-decoration: none;
        font-size: 0.95rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 2px;
        height: 100%;
        transition: color 0.13s;
        background: transparent;
        border: none;
        outline: none;
        position: relative;
    }

    .mobile-footer-nav .footer-nav-item.active,
    .mobile-footer-nav .footer-nav-item:active,
    .mobile-footer-nav .footer-nav-item:focus {
        color: var(--theme-primary);
        background: none;
    }

    .mobile-footer-nav .footer-nav-icon {
        font-size: 1.35rem;
        display: block;
        margin-bottom: 0.1rem;
        line-height: 1;
    }

    .mobile-footer-nav .footer-nav-label {
        font-size: 0.83rem;
        line-height: 1;
        display: block;
        font-weight: 500;
        letter-spacing: 0.01em;
    }

    /* Remove floating style for Jobs */
    .mobile-footer-nav .footer-nav-middle {
        position: static;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        width: auto;
        height: auto;
        margin: 0;
        color: inherit;
        border: none;
        padding: 0;
        z-index: auto;
    }

    .mobile-footer-nav .footer-nav-middle .footer-nav-icon {
        background: none;
        border-radius: 0;
        width: auto;
        height: auto;
        font-size: 1.35rem;
        color: inherit;
        box-shadow: none;
        margin: 0 auto 0.1rem auto;
    }

    .mobile-footer-nav .footer-nav-middle .footer-nav-label {
        font-size: 0.83rem;
        color: inherit;
        font-weight: 500;
        margin-top: 0;
    }
}

/* Hide desktop footer on mobile */
@media (max-width: 767.98px) {
    .main-footer .container-fluid {
        display: none !important;
    }
}

/* --- Mobile Footer Nav: Make all items visually equal, Jobs not bold or different --- */
@media (max-width: 767.98px) {
    .mobile-footer-nav {
        /* ...existing code... */
        height: 60px;
    }

    .mobile-footer-nav .footer-nav-item,
    .mobile-footer-nav .footer-nav-middle {
        flex: 1 1 0;
        text-align: center;
        color: #b0b3c6;
        text-decoration: none;
        font-size: 0.95rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 2px;
        height: 100%;
        transition: color 0.13s;
        background: transparent;
        border: none;
        outline: none;
        position: relative;
        border-radius: 0;
        box-shadow: none;
        width: auto;
        margin: 0;
    }

    .mobile-footer-nav .footer-nav-item.active,
    .mobile-footer-nav .footer-nav-item:active,
    .mobile-footer-nav .footer-nav-item:focus,
    .mobile-footer-nav .footer-nav-middle.active,
    .mobile-footer-nav .footer-nav-middle:active,
    .mobile-footer-nav .footer-nav-middle:focus {
        color: var(--theme-primary);
        background: none;
    }

    .mobile-footer-nav .footer-nav-icon {
        font-size: 1.35rem;
        display: block;
        margin-bottom: 0.1rem;
        line-height: 1;
        background: none !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        box-shadow: none !important;
        color: inherit !important;
    }

    .mobile-footer-nav .footer-nav-label {
        font-size: 0.83rem;
        line-height: 1;
        display: block;
        font-weight: 500;
        letter-spacing: 0.01em;
        color: inherit !important;
        margin-top: 0;
    }
}

/* Mobile Footer Nav - Active icon colorful */
@media (max-width: 767.98px) {

    .mobile-footer-nav .footer-nav-item.active .footer-nav-icon,
    .mobile-footer-nav .footer-nav-middle.active .footer-nav-icon {
        color: #ff2ad4 !important;
        /* You can use any color you want for "active" */
        /* Example: color: #3cf0ff !important; */
        /* Or add text-shadow for more pop: */
        text-shadow: 0 2px 12px #ff2ad444;
    }
}

/* Make promo and contact section font sizes bigger */
/* .promo-title,
.contact-title {
    font-size: 2.1rem !important;
    line-height: 1.22;
    margin-bottom: 1.1rem;
} */

.promo-desc,
.contact-desc {
    font-size: 1.18rem !important;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

@media (max-width: 991.98px) {

    /* .promo-title,
    .contact-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem;
    } */

    .promo-desc,
    .contact-desc {
        font-size: 1.05rem !important;
        margin-bottom: 0.7rem;
    }
}

@media (max-width: 600px) {

    /* .promo-title,
    .contact-title {
        font-size: 1.13rem !important;
        margin-bottom: 0.5rem;
    } */

    .promo-desc,
    .contact-desc {
        font-size: 0.97rem !important;
        margin-bottom: 0.4rem;
    }
}

/* Sticky Right Sidebar Floating Action Button (Desktop only) */
.fab-right-sidebar {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    pointer-events: none;
}

.fab-right-sidebar>* {
    pointer-events: auto;
}

/* --- Redesigned FAB to match the demo image --- */
.fab-right-sidebar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    pointer-events: none;
}

.fab-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.18s, transform 0.18s;
}

.fab-actions.fab-actions-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.fab-action-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    color: #222;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 12px #23234a18, 0 1px 2px #0001;
    min-width: 110px;
    height: 38px;
    padding: 0 16px 0 10px;
    font-size: 0.97rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.13s;
    outline: none;
    position: relative;
    gap: 8px;
    letter-spacing: 0.01em;
    border: 1px solid #f2f2f2;
}

.fab-action-btn i {
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    margin-right: 0;
    transition: background 0.15s, color 0.15s;
}

.fab-action-btn span {
    font-size: 0.97rem;
    margin-left: 4px;
    font-weight: 500;
    color: #23234a;
    letter-spacing: 0.01em;
}

.fab-action-btn:hover {
    background: #f3f7fa;
    color: #1976d2;
    box-shadow: 0 4px 16px #1976d222;
    transform: translateY(-2px) scale(1.04);
}

.fab-action-btn[aria-label="WhatsApp"] {
    color: #25d366;
    border-color: #e0f7e9;
}

.fab-action-btn[aria-label="WhatsApp"] i {
    background: #e0f7e9;
    color: #25d366;
}

.fab-action-btn[aria-label="WhatsApp"]:hover {
    background: #e0f7e9;
    color: #128c7e;
}

.fab-action-btn[aria-label="Call"] {
    color: #1976d2;
    border-color: #e3f0ff;
}

.fab-action-btn[aria-label="Call"] i {
    background: #e3f0ff;
    color: #1976d2;
}

.fab-action-btn[aria-label="Call"]:hover {
    background: #e3f0ff;
    color: #0a4a8a;
}

/* Remove Chatbot FAB action button styles */
.fab-action-btn[aria-label="Chatbot"],
.fab-action-btn[aria-label="Chatbot"]:hover,
.fab-action-btn[aria-label="Chatbot"] i {
    /* No special styles needed, fallback to default .fab-action-btn */
}

.fab-main-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #19c37d;
    /* solid green */
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px #23234a22;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    outline: none;
    margin-bottom: 0;
}

.fab-main-btn.fab-open {
    background: #1976d2;
    /* solid blue */
    color: #fff;
    transform: rotate(45deg) scale(1.08);
    box-shadow: 0 8px 32px #1976d244;
}

.fab-main-btn .fa,
.fab-main-btn .fas,
.fab-main-btn .fa-solid,
.fab-main-btn .fa-xmark,
.fab-main-btn .fa-times,
.fab-main-btn .fa-close {
    font-size: 1.3rem;
    line-height: 1;
}

/* --- FAB UI: Remove gradient, use solid color, remove underline from <a> --- */
.fab-main-btn {
    background: #19c37d;
    /* solid green */
}

.fab-main-btn.fab-open {
    background: #1976d2;
    /* solid blue */
}

/* Remove underline from all FAB action <a> tags */
.fab-action-btn,
.fab-action-btn:visited,
.fab-action-btn:active {
    text-decoration: none !important;
    box-shadow: 0 2px 12px #23234a18, 0 1px 2px #0001;
}

/* Remove underline on hover as well */
.fab-action-btn:hover {
    text-decoration: none !important;
}

/* --- FAB: Use #1a2f50 instead of green --- */
.fab-main-btn {
    background: #1a2f50;
}

.fab-main-btn.fab-open {
    background: #1976d2;
}

/* Chatbot FAB action button: use #1a2f50 for icon and hover */
.fab-action-btn[aria-label="Chatbot"] {
    color: #1a2f50;
    border-color: #eaf0fa;
}

.fab-action-btn[aria-label="Chatbot"] i {
    background: #eaf0fa;
    color: #1a2f50;
}

.fab-action-btn[aria-label="Chatbot"]:hover {
    background: #eaf0fa;
    color: #1a2f50;
}

/* --- "Ready for Your Next" and "Have a Project or Question?" section color --- */
.promotion-section-custom {
    background: #1a2f50;
}

/* .promo-title,
.promo-highlight {
    color: #fff !important;
} */

.promo-btn {
    color: #1a2f50;
}

.promo-btn:hover {
    background: var(--theme-accent);
    color: #1a2f50;
}

.contact-section-custom {
    background: #1a2f50;
}

.contact-title,
.contact-highlight {
    color: #fff !important;
}

.contact-btn {
    color: #1a2f50;
}

.contact-btn:hover {
    background: var(--theme-accent);
    color: #1a2f50;
}

/* Hide Top Info Strip and Sticky Header on mobile */
@media (max-width: 991.98px) {
    .top-strip {
        display: none !important;
    }

    .main-header {
        display: block !important;
    }

    .mobile-header {
        display: flex !important;
    }
}

/* Mobile header base style (hidden by default, shown on mobile) */
.mobile-header {
    display: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1050;
    position: relative;
    min-height: 56px;
}

.mobile-header .logo-img {
    max-height: 48px;
    max-width: 90px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 0;
    margin: 0;
}

.mobile-header .btn-signin {
    font-size: 1rem;
    padding: 0.4em 1.2em;
    border-radius: 3px !important;
    background: #fff;
    color: #1976d2;
    border: 1.5px solid #1976d2;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.mobile-header .btn-signin:hover {
    background: #1976d2;
    color: #fff;
}

/* Make mobile header sticky at the top */
@media (max-width: 991.98px) {
    .sticky-mobile-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1051;
    }
}