/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/ABOUT\ US\ BG.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

/* About Section Styles */
.bg-primary-light {
    background-color: rgba(0, 97, 242, 0.1);
    letter-spacing: 1px;
}

.about-img-wrap {
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s;
}

.about-img-wrap:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Modern Play Button */
.btn-play-modern {
    width: 80px;
    height: 80px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0061f2;
    font-size: 20px;
    transition: 0.3s;
}

.btn-play-modern:hover {
    background: #0061f2;
    color: #fff;
    transform: scale(1.1);
}

/* Floating Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #001d3d;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Typography Refinement */
#about h1 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
}

#about .display-5 span {
    display: block;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}
/* Custom Header Improvements */
.navbar {
    height: 80px;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 30px 15px;
    font-size: 15px;
}

/* Mega Menu Styles */
.mega-menu {
    top: 100% !important;
    left: 0;
    right: 0;
    display: none;
    background-color: #fff;
}

.dropdown:hover .mega-menu {
    display: block;
}

.mega-menu .dropdown-item {
    padding: 10px 0;
    font-weight: 500;
    color: #666;
    background: transparent;
}

.mega-menu .dropdown-item:hover, 
.mega-menu .active-link {
    color: #007bff;
    padding-left: 5px;
    transition: 0.3s;
}

.bg-primary-light {
    background-color: #e7f1ff;
}

/* Let's Talk Button */
.btn-primary {
    background-color: #0061f2;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #004dc0;
    transform: translateY(-2px);
}
/* Carousel Backgrounds with AI-style Blur */
.slider-bg-1 {
    background: radial-gradient(circle at 80% 20%, rgba(0, 97, 242, 0.15) 0%, #fff 60%);
    min-height: 100vh;
}

.slider-bg-2 {
    background: linear-gradient(135deg, #001d3d 0%, #004dc0 100%);
    min-height: 100vh;
}

.slider-bg-3 {
    background: radial-gradient(circle at 70% 50%, rgba(0, 97, 242, 0.2) 0%, #f8f9fa 50%);
    min-height: 100vh;
}

/* Caption Alignment */
.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
}

/* Custom Dot Indicators */
.custom-indicators {
    bottom: 50px;
    justify-content: flex-end;
    margin-right: 5%;
}

.custom-indicators button {
    width: 30px !important;
    height: 4px !important;
    border-radius: 2px;
    background-color: #0061f2 !important;
    opacity: 0.3;
    border: none;
    margin: 0 5px;
}

.custom-indicators button.active {
    opacity: 1;
    width: 50px !important;
}

/* Animation refinement */
.carousel-item h1 {
    line-height: 1.1;
    letter-spacing: -1px;
}
/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0061f2;
    --dark-navy: #001d3d;
}

body { font-family: 'Inter', sans-serif; }

/* Backgrounds */
.slider-bg-white { 
    background: radial-gradient(circle at 75% 30%, rgba(0, 97, 242, 0.2) 0%, #ffffff 55%); 
    height: 100vh;
}
.slider-bg-blue { 
    background: linear-gradient(135deg, var(--dark-navy) 0%, #004dc0 100%); 
    height: 100vh;
}
.slider-bg-gray { 
    background: radial-gradient(circle at 80% 50%, rgba(0, 97, 242, 0.1) 0%, #f8f9fa 60%); 
    height: 100vh;
}

/* Typography - THE SAME AS SS */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em; /* This creates the compact look */
    color: #111;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #4a4a4a;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Buttons & Elements */
.btn-tkxel {
    background-color: var(--primary-blue);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.btn-tkxel:hover { background-color: #004dc0; color: white; }

.badge-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
}

/* Webinar Card (Slider 1) */
.webinar-card {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #004dc0 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    width: 380px;
    margin-left: auto;
}

.webinar-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.register-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* Indicators */
.custom-indicators {
    bottom: 40px;
    justify-content: flex-end;
    margin-right: 5%;
}

.custom-indicators button {
    width: 40px !important;
    height: 5px !important;
    background-color: var(--primary-blue) !important;
    border-radius: 2px;
    margin: 0 5px;
    opacity: 0.2;
}

.custom-indicators button.active { opacity: 1; }

/* Recognized Section */
.recognized-text {
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 1.5px;
}

.logo-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    filter: grayscale(1);
    opacity: 0.5;
}

.logo-grid img { height: 24px; }
/* Import Inter for the premium tech look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.navbar {
    background-color: #ffffff;
    height: 80px; /* Fixed height for consistency */
    border-bottom: 1px solid #f0f0f0;
}

/* Matching the exact link spacing and font weight from the image */
.navbar-light .navbar-nav .nav-link {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    padding: 28px 16px !important; /* Vertical padding to center in 80px bar */
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0061f2;
}

/* Mega Menu Style Refinement */
.mega-menu {
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}

.active-link {
    color: #0061f2 !important;
    background-color: transparent !important;
    font-weight: 600 !important;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 0;
    color: #666;
}

.dropdown-item:hover {
    background: transparent;
    color: #0061f2;
}

/* The 'Let's Talk' Button to match image */
.btn-primary {
    background-color: #0061f2;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004dc0;
    transform: translateY(-1px);
}
/* Company Menu Alignment */
.mega-menu {
    border-top: 1px solid #eee !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.mega-menu h6 {
    font-size: 15px;
    letter-spacing: -0.2px;
}

.mega-menu p {
    font-size: 13px;
    line-height: 1.5;
}

/* Featured Box specific style */
.featured-box img {
    width: 100%;
    object-fit: cover;
    max-height: 180px;
}

.bg-primary-light {
    background-color: #e7f1ff;
    border-radius: 4px;
}
/* Container Box Settings */
.service-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    background-color: #fff;
    cursor: pointer;
    overflow: hidden;
}

/* Title Spacing */
.service-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    transition: color 0.3s ease;
}

/* Hidden Wrapper */
.service-list-wrapper {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

/* Curved Box (Pill) Style */
.service-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background-color: transparent;
    transition: all 0.3s ease;
}

/* Hover States */
.service-box:hover {
    box-shadow: 0 20px 50px rgba(0, 97, 242, 0.08);
    z-index: 10;
}

.service-box:hover .service-title {
    color: #0061f2;
}

.service-box:hover .service-list-wrapper {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.service-tag:hover {
    border-color: #0061f2;
    color: #0061f2;
    background-color: rgba(0, 97, 242, 0.05);
}

.service-icon-wrap img {
    max-height: 120px;
    transition: transform 0.4s ease;
}

.service-box:hover .service-icon-wrap img {
    transform: scale(1.05);
}
/* Typography and Spacing for Stats Section */
.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1.4;
}

/* Specific line spacing for the large numbers */
.display-3 {
    letter-spacing: -3px !important;
    font-weight: 800 !important;
}

/* Semi-transparent borders for the grid */
.border-white-25 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Ensure the 'Work with us' button stays sharp */
.btn-light {
    transition: all 0.3s ease;
    border: 1px solid white;
}

.btn-light:hover {
    background-color: transparent !important;
    color: white !important;
}
/* Partnerships Section Styling */
.partnerships-section {
    /* Precise blue gradient matching the screenshot */
    background: linear-gradient(135deg, #001d3d 0%, #004dc0 100%); 
    font-family: 'Inter', sans-serif;
}

.partnerships-section h2 {
    line-height: 1.1;
}

/* Semi-transparent white borders for the clean look */
.border-white-15 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.partner-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Partner Logo Effects */
.partner-logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Soft glow on logos */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.partner-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Mobile Responsive Borders */
@media (max-width: 991px) {
    .border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}
/* Footer Color Palette & Typography */
.bg-dark-navy {
    background-color: #121820; /* Exact dark slate-navy from reference */
    font-family: 'Inter', sans-serif;
}

.bg-black-navy {
    background-color: #0d1218;
}

.x-small { font-size: 11px; }

/* Link Styling */
.footer-links a {
    display: block;
    color: #9499a0;
    font-size: 13px;
    text-decoration: none;
    padding: 4px 0;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #0061f2;
}

/* Badge Tweaks */
.badge { font-size: 8px; vertical-align: middle; }

/* Social Buttons */
.btn-social-dark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a222c;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.btn-social-dark:hover {
    background-color: #0061f2;
    color: white;
}

/* Form refinement */
.footer input.form-control:focus {
    background-color: #1a222c;
    border-color: #0061f2;
    box-shadow: none;
    color: white;
}
/* Engagement Section Styling */
.engagement-section {
    background-color: #fcfdfe;
    font-family: 'Inter', sans-serif;
}

.engagement-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.engagement-card.highlight {
    border-top: 4px solid #0061f2; /* BILSTECH Blue */
}

/* Unique Slide-Up & Glow Animation */
.engagement-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 97, 242, 0.1);
    border-color: #0061f2;
}

.card-icon {
    font-size: 2.5rem;
    color: #0061f2;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.engagement-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.engagement-card h5 {
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.card-features {
    list-style: none;
    margin-top: 20px;
    border-top: 1px solid #f1f4f8;
    padding-top: 20px;
}

.card-features li {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.card-features li i {
    margin-right: 10px;
}
/* Typography & Precision Spacing */
.who-we-are {
    font-family: 'Inter', sans-serif;
}

.who-we-are h1 {
    letter-spacing: -2px; /* Tight spacing for premium look */
}

.fw-extrabold {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -3px;
}

/* Pillar Cards Styling */
.pillar-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 97, 242, 0.08);
    border-color: #0061f2;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 97, 242, 0.08);
    color: #0061f2; /* BILSTECH Primary Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

/* Vertical Stats Divider */
.who-we-are .border-end {
    border-color: #eee !important;
}

@media (max-width: 768px) {
    .who-we-are .border-end { border: none !important; border-bottom: 1px solid #eee; padding-bottom: 20px; }
}
/* Services Refinement */
.service-box {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 420px;
    background-color: #fff;
    cursor: pointer;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #1a1a1a;
}

/* Hidden Wrapper Logic */
.service-list-wrapper {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

/* Hover Reveals */
.service-box:hover {
    box-shadow: 0 20px 50px rgba(0, 97, 242, 0.08);
    z-index: 5;
    transform: translateY(-5px);
}

.service-box:hover .service-list-wrapper {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
}

/* Curved Pill Style */
.service-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555 !important;
    transition: 0.3s;
}

.service-tag:hover {
    border-color: #0061f2;
    color: #0061f2 !important;
    background: rgba(0, 97, 242, 0.03);
}
/* Service Page Header */
.service-detail-header {
    background: radial-gradient(circle at 70% 30%, rgba(0, 97, 242, 0.2) 0%, #001d3d 100%);
    position: relative;
    overflow: hidden;
}

.text-primary-light {
    color: #4da3ff;
}

/* Capability Card with Animation */
.capability-card {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-color: #f0f0f0 !important;
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: #0061f2 !important;
    box-shadow: 0 15px 45px rgba(0, 97, 242, 0.08);
}

/* Typography Refinement */
.display-3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -3px !important;
}

h2, h5 {
    font-family: 'Inter', sans-serif;
}

/* Custom Primary Color for BILSTECH */
.btn-primary {
    background-color: #0061f2;
    border-color: #0061f2;
}

.btn-primary:hover {
    background-color: #004dc0;
    transform: scale(1.02);
}
.service-tag{
border:none;
background:#eef3ff;
padding:6px 14px;
border-radius:20px;
font-size:13px;
cursor:pointer;
transition:0.3s;
}

.service-tag:hover{
background:#0061f2;
color:white;
}

.service-details{
background:#f8f9fa;
padding:12px;
border-radius:6px;
}
/* =============================
CTA Section
============================= */

.cta-section{
    background: linear-gradient(135deg,#001d3d,#004dc0);
    color:white;
    overflow:hidden;
    position:relative;
}

/* Floating animation circles */
.cta-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-150px;
    right:10%;
    animation: float 8s infinite alternate;
}

.cta-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-120px;
    left:5%;
    animation: float 10s infinite alternate-reverse;
}

@keyframes float{
    from{
        transform:translateY(0px);
    }
    to{
        transform:translateY(40px);
    }
}

/* Stats Box Animation */

.stat-box{
    transition:0.4s ease;
}

.stat-box:hover{
    transform:translateY(-10px);
}

/* Button Animation */

.cta-btn{
    background:white;
    color:#001d3d;
    padding:14px 28px;
    font-weight:700;
    border:none;
    transition:0.4s;
}

.cta-btn:hover{
    background:#001d3d;
    color:white;
    transform:scale(1.05);
}

/* Text Style */

.stat-number{
    font-size:70px;
    font-weight:800;
    letter-spacing:-2px;
}

.stat-label{
    color:rgba(255,255,255,0.75);
    font-size:14px;
    letter-spacing:1px;
}

/* Responsive */

@media(max-width:768px){

.stat-number{
    font-size:50px;
}

.text-md-end{
    text-align:left !important;
}

}
/* Swiper Image Styling */
.aboutSwiper {
    width: 100%;
    padding: 20px 0;
}

.aboutSwiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutSwiper .swiper-slide img {
    width: 380px; /* Adjust based on your image widths */
    height: 250px;
    object-fit: cover;
    border-radius: 4px; /* Matches the clean-cut edges in image_ccdc04.jpg */
    transition: transform 0.3s ease;
}

/* Typography Refinement */
.display-5 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

/* Swiper Container sizing and smooth linear flow */
.aboutSwiper {
    width: 100%;
    padding: 40px 0; /* Vertical breathing room */
    /* Forces the slider to move at a constant, non-stopping speed */
    transition-timing-function: linear !important; 
}

.aboutSwiper .swiper-slide {
    width: auto; /* Required for slidesPerView: "auto" to work */
    display: flex;
    justify-content: center;
}

.aboutSwiper .swiper-slide img {
    /* Fixed professional dimensions to match the reference */
    width: 420px; 
    height: 280px; 
    
    /* Prevents stretching by cropping the image to fit the box */
    object-fit: cover; 
    
    /* Rounded corners for a modern, unique feel */
    border-radius: 8px; 
    
    /* Soft shadow to add depth against the white background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    /* Transition for subtle hover effect */
    transition: transform 0.3s ease;
}

/* Optional: Slight lift when the user hovers over an image */
.aboutSwiper .swiper-slide img:hover {
    transform: translateY(-5px);
    cursor: pointer;
}
/* Section Padding for Large Screens */
@media (min-width: 992px) {
    .ps-lg-5 {
        padding-left: 5rem !important; /* This creates the large gap from the screen edge */
    }
    .pe-lg-5 {
        padding-right: 4rem !important; /* This creates the internal gap between text and image */
    }
}

/* Gallery Frame Styling */
.gallery-container {
    background: #fff;
}

.meeting-image-frame {
    position: relative;
    border-radius: 12px; /* Smooth corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.meeting-image-frame img {
    width: 100%;
    height: 400px; /* Fixed height for boardroom look */
    object-fit: cover; /* Prevents distortion */
}

/* Strategy Badge */
.strategy-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #0061f2; /* BILSTECH Primary Blue */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Badge styling for professional labeling */
.badge-overlay, .badge-overlay-small {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #0061f2; /* BILSTECH Blue */
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 97, 242, 0.3);
}

.badge-overlay-small {
    padding: 8px 18px;
    font-size: 10px;
    background: #001d3d; /* Darker blue for secondary milestone */
}
.meeting-card img{
width:100%;
height:260px;
object-fit:cover;
transition:0.4s;
}

.meeting-card:hover img{
transform:scale(1.05);
}
.services-section{
background:#f9f9f9;
}

.service-list{
list-style:none;
padding:0;
}

.service-list li{
padding:12px 15px;
border-bottom:1px solid #eee;
cursor:pointer;
font-weight:500;
transition:0.3s;
}

.service-list li:hover{
background:#000;
color:#fff;
padding-left:20px;
}

.service-content{
background:#fff;
padding:30px;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
animation:fadeIn 0.4s ease;
}

.service-info h3{
font-weight:700;
margin-bottom:15px;
}

.service-info p{
color:#555;
line-height:1.7;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.about-video-wrap {
    background-color: #000;
    /* Mirroring the clean rounded corners from your office shots */
    border-radius: 16px !important; 
}

.team-item img {
    width: 100%;
    aspect-ratio: 1/1; /* perfect square */
    object-fit: contain; /* no crop */
    background: #f8f9fa; /* optional: empty space background */
    border-radius: 8px;
}

.team-item h5 {
    margin-top: 12px;
    font-weight: 600;
}

.team-social li a {
    color: #007bff;
    transition: 0.3s;
}

.team-social li a:hover {
    color: #0056b3;
}