body {
    font-family: 'Arial', sans-serif;
}
h1
 {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; }
.header-banner {
    background-color: #fafafa;
    padding: 1rem 0;
}

.alert-banner {
    background-color: #ffd700;
    color: #000;
    text-align: center;
    padding: 0.5rem;
    font-size: 20px;
}

  
/* ================= Stats Section ================= */
.stats-container {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
}

/* Centered Heading Styles */
.main-heading h1{
  font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 30px 0 30px 0;
    font-size: 36px;
}



.sub-heading {
    font-size: 1.2rem;
    color: #5a6e7c;
    font-weight: 400;
    margin-bottom: 0;
}

/* Simple & Professional Card Design */
.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.8rem 1rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Hover Effect */
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

/* Number Styling */
.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.6rem;
    margin-top: 18px;
    /* color: #2d4697; */
    background: #2d4697;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text Styling */
.stat-text {
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 22px;
    color: #5a6e7c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Column Styling */
.video-wrapper {
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: stretch;
}

/* Main Video Container */
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* keeps proper video ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
}

/* Show FULL video (no crop, captions visible) */
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Responsive Improvements */
@media (max-width: 991px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .sub-heading {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .stats-container {
        padding: 3rem 0;
    }
    
    .main-heading {
        font-size: 1.6rem;
    }
    
    .sub-heading {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .video-wrapper {
        margin-top: 2rem;
    }
}

/* Optional: Add subtle animation on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: fadeInUp 0.5s ease forwards;
}
.blue-card {
    background: linear-gradient(135deg, #2d4697, #4f6edb);
}

.orange-card {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.green-card {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.purple-card {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}
.red-card {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.teal-card {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}
/* Fix text color */
.stat-text {
    color: rgba(255,255,255,0.85);
}
.stat-number {
    -webkit-text-fill-color: white;
}


.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }


/* Program offered */
.header-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.program-title {
    text-align: center;
}

.program-title span:last-child {
    color: #2d4697;
}

.program-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none; /* Hide all cards by default */
}

.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.nav-pills .nav-link {
    background-color: #f0f0f0;
    margin-right: 10px;
    border-radius: 5px;
    color: #333;
}

.nav-pills .nav-link.active {
    background-color: #2d4697;
    color: white;
}

.overview-section {
    background-color: #ffff99;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.tab-content-container {
    display:none; /* Hide tab content by default */
}


.Program-heading h1 {
    /* font-family: "Anton", serif; */
    font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 30px 0 30px 0;
    font-size: 36px;
}

.Program-heading span {
    color: #2d4697;
    font-weight: 700;
}



.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-track {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.logo-box {
    width: 100%;
    height: 110px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(45, 70, 151, 0.1);
    padding: 12px;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(45, 70, 151, 0.15);
    border-color: rgba(45, 70, 151, 0.3);
}

.logo-box img {
    max-width: 85%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo-track {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-track {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Internship Partners */
.internship-partners {
    overflow: hidden;
}

.partner-slider {
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider-track {
    display: flex;
    animation: slide 10s linear infinite;
}

.partner-logo {
    max-height: 80px;
    margin: 0 20px;
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Testimonial Section */
.Testimonial-heading h1 {
    font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 30px 0 30px 0;
    font-size: 36px;
}

.Testimonial-heading span {
    color: #2d4697;
    font-weight: 700;
}

.carousel .carousel-item {
    color: #434343;
    overflow: hidden;
    min-height: 120px;
    font-size: 13px;
}

.carousel .media img {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 50%;
}

.carousel .testimonial {
    padding: 0 15px 0 60px;
    position: relative;
}

.carousel .testimonial::before {
    content: "\201C";
    font-family: Arial, sans-serif;
    color: #ffcd06;
    font-weight: bold;
    font-size: 68px;
    line-height: 54px;
    position: absolute;
    left: 15px;
    top: 0;
}

.carousel .overview b {
    text-transform: uppercase;
    color: #2d4697;
}

.carousel .carousel-indicators {
    bottom: -40px;
}

.carousel-indicators li, .carousel-indicators li.active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 1px 3px;
    box-sizing: border-box;
}

.carousel-indicators li {	
    background: #8d8d8d;
    border: 4px solid #fff;
}

.carousel-indicators li.active {
    color: #fff;
    background: #2d4697;   
    border: 5px double;    
}


.Recruiter-heading h1 {
    /* font-family: "Anton", serif; */
    font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 30px 0 30px 0;
    font-size: 36px;
}

.Recruiter-heading span {
    color: #2d4697;
    font-weight: 700;
}

/* Navigation Improvements */

.nav-pills {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.nav-pills::-webkit-scrollbar {
    display: none;
}

/* =========================== RESPONSIVE STYLING =========================== */

/* Large Devices (desktops, less than 1200px) */
@media (max-width: 1200px) {
    .stat-number {
        font-size: 2.2rem;
    }
    
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 992px) {
  
    .stat-number {
        font-size: 2rem;
    }
}

/* Small Devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
   
    .header-banner img {
        max-height: 40px !important;
    }
    
    .alert-banner {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Program Section Responsive */
    .header-section {
        padding: 15px;
    }
    
    .program-title {
        font-size: 20px;
        text-align: center;
    }
    
    .program-card {
        padding: 15px;
    }
    
    .program-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .nav-pills .nav-link {
        white-space: nowrap;
        margin-right: 5px;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .overview-section {
        padding: 15px;
    }
    
    /* Testimonial Section Responsive */
    .carousel .testimonial {
        padding: 0 10px 0 50px;
    }
    
    .carousel .testimonial::before {
        font-size: 50px;
        left: 10px;
    }
    
    .placement-title h2, 
    .placement-blue, 
    .highlights-bg, 
    .Recruit-black, 
    .highlights-blue {
        font-size: 1.8rem;
    }
    
    /* Logo Box Responsive */
    .logo-box {
        width: 120px;
        height: 80px;
    }
 
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 576px) {
    .placement-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
    
    .placement-title h2, 
    .placement-blue, 
    .highlights-bg, 
    .Recruit-black, 
    .highlights-blue {
        font-size: 1.5rem;
    }
    
    .logo-track {
        gap: 10px;
    }
    
    .logo-box {
        width: 100px;
        height: 70px;
    }
    
    .captcha-box {
        flex-direction: column;
        align-items: center;
    }
    
    .captcha-canvas {
        width: 100%;
        max-width: 200px;
    }
    
    .partner-logo {
        max-height: 60px;
        margin: 0 15px;
    }
}

/* Very Small Devices (small phones, less than 400px) */
@media (max-width: 400px) {
    .form-toggle button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .logo-box {
        width: 90px;
        height: 60px;
    }
    
    .placement-title h2, 
    .placement-blue, 
    .highlights-bg, 
    .Recruit-black, 
    .highlights-blue {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .program-title {
        font-size: 18px;
    }
    
    .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
  
}



/* Base banner styles with improved responsiveness */
/* .hero-section, */
.Admisssion-Section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Admission Process Banner */
.Admisssion-Section {
    background-image: url('Images/Admission\ process.jpg');
    min-height: 450px;
    padding: 4rem 2rem;
}



/* Banner Content Containers */
.banner-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Add overlay for better text readability on banners if needed */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Ensure images in banners are responsive */
.banner-image {
    max-width: 100%;
    height: auto;
}

/* Large Devices (desktops, less than 1200px) */
@media (max-width: 1200px) {
  
    .Admisssion-Section {
        min-height: 400px;
    }
    
   
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 992px) {
 
    
    .Admisssion-Section {
        min-height: 340px;
        background-position: 60% center;
        padding: 3rem 1.5rem;
    }
    
  
}

/* Small Devices (landscape phones, less than 768px) */
@media (max-width: 768px) {

    
    .Admisssion-Section {
        min-height: 750px;
        background-position: 60% center;
        padding: 2rem 1rem;
        background-image: url('Images/ADMISSION-PROCESS.png');
    }
    
 
  
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 576px) {

    .Admisssion-Section {
        min-height: 700px;
        background-position: 70% center;
        background-image: url('Images/ADMISSION-PROCESS.png');
    }
    
  
    
}

/* Very Small Devices (small phones, less than 400px) */
@media (max-width: 400px) {
    .Admisssion-Section {
        min-height: 450px;
        background-position: 75% center;
        background-image: url('Images/ADMISSION-PROCESS.png');
    }

}

/* Prevent content overflow */
.container-fluid {
    overflow-x: hidden;
}

/* Add object-fit polyfill for IE support */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* If background images fail to load */
.hero-section.bg-fallback {
    background-color: #e0e0e0;
}

.Admisssion-Section.bg-fallback {
    background-color: #f0f0f0;
}

.placement-banner.bg-fallback {
    background-color: #e8e8e8;
}



/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Cover Image Container */
.cover-image-container {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cover Image */
.cover-image {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: center;
    display: none; 
}

/* Show default image initially */
.default-image {
    display: block;
}

/* Image Swap at 900px */
@media (max-width: 900px) {
    .default-image {
        display: none;
    }
    .small-image {
        display: block;
    }
}

/* Registration Container */
.registration-container {
    position: absolute;
    top: 52%;
    right: 3% !important;
    transform: translateY(-50%);
    width: 90%;
    max-width: 446px;
    z-index: 10;
}

/* Registration Card */
.registration-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    width: 100%;
}

/* Buttons */
.action-btns .btn {
    width: 100%;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #2d4697;
}

.btn-primary:focus, .btn-light:focus {
    box-shadow: none;
}

/* CAPTCHA Box */
.captcha-box {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.captcha-text {
    /* font-family: 'Courier New', monospace; */
    /* font-weight: bold; */
    letter-spacing: 4px;
    font-size: 1.5rem;
    color: #333;
}

.refresh-icon {
    margin-left: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
}

/* Hide login form initially */


/* Responsive Styles */
@media (max-width: 991px) {
    .registration-container {
        right: 50%;
        transform: translateX(50%) translateY(-50%);
        max-width: 400px;
    }
   
}

@media (max-width: 767px) {
   
    .registration-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 90%;
        padding: 20px;
        margin-top: -50px; 
       
    }
}

/* placement card slider */
.placement-section {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.placement-title {
    text-align: center;
    margin-bottom: 2rem;
}

.Placement-heading h1 {
    font-weight: 700;
    font-style: normal;
    text-align: center;
    padding: 30px 0 30px 0;
    font-size: 36px;
}

.Placement-heading span {
    color: #2d4697;
    font-weight: 700;
}


/* Card container with fixed dimensions */
.placement-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    height: 460px; 
    width: 280px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Profile image - rectangular shape */
.profile {
    width: 200px;  
    height: 240px; 
    border-radius: 8px; 
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow */
}

/* Text content section */
.card-content {
    margin: 0.75rem 0;
    width: 100%;
}

.name {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.course, .batch {
    color: #666;
    margin: 0.25rem 0;
}

/* Company logo - fixed dimensions */
.company-logo {
    width: 100px;  
    height: 70px;  
    object-fit: contain;
    margin: 0 auto;
    display: block;
}


/* =========================
   Cover Carousel Styling
========================= */
.cover-carousel {
  position: relative;
}

.cover-carousel .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Dots for cover carousel */
.cover-carousel .owl-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 6px;
  background: #D6D6D6;
  display: block;
  border-radius: 50%;
  transition: background 0.3s;
}

.cover-carousel .owl-dot.active span {
  background: #333;
}

/* Navigation arrows for cover carousel */
.cover-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  border: none;
  z-index: 1;
}

.cover-carousel .owl-nav .owl-prev {
  left: -20px;
}
.cover-carousel .owl-nav .owl-next {
  right: -20px;
}

.cover-carousel .owl-nav button span {
  font-size: 1.5rem;
  color: #333;
}

/* =========================
   Card Carousel Styling
========================= */
.card-carousel {
  position: relative;
}

.card-carousel .item {
  padding: 10px;
}

.card-carousel .item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Dots for card carousel */
.card-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.card-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: inline-block;
  border-radius: 50%;
  transition: background 0.3s;
}

.card-carousel .owl-dot.active span {
  background: #869791;
}

/* Navigation for card carousel */
.card-carousel .owl-nav button {
  background: #fff !important;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

.card-carousel .owl-nav .owl-prev {
  left: -15px;
}
.card-carousel .owl-nav .owl-next {
  right: -15px;
}

.card-carousel .owl-nav button span {
  font-size: 1.2rem;
  color: #333;
}

/* Make sure dimensions stay fixed across all screen sizes */
@media (max-width: 768px) {
    .placement-card {
        width: 280px;
        height: 420px;
    }

    .profile {
        width: 200px;
        height: 240px;
    }

    .company-logo {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .placement-card {
        width: 280px;
        height: 420px;
    }

    .profile {
        width: 200px;
        height: 240px;
    }

    .company-logo {
        width: 100px;
        height: 50px;
    }
}
.placement-section {
    position: relative;
    width: 100%;
}




/* //////////placement banner ///////////*/
.placement-banner {
    background-image: url('Images/PLacement-Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    position: relative;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .placement-banner {
        min-height: 400px;
    }
}

@media (max-width: 992px) {
    .placement-banner {
        min-height: 350px;
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .placement-banner {
        min-height: 300px;
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .placement-banner {
        min-height: 200px;
        padding: 1.5rem 0;
        background-position: top;
    }
}

@media (max-width: 400px) {
    .placement-banner {
        min-height: 150px;
        padding: 1rem 0;
        background-position: top center;
    }
}



      /* <!-- facilities card  Custom CSS --> */

        .facility-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 5px;
            margin: 10px 0;
            transition: all 0.3s ease;
        }

        .facility-card:hover {
            transform: translateY(-6px);
        }

        .facility-card img {
            height: 180px;
            object-fit: cover;
            width: 100%;
        }

        .carousel-indicators {
            bottom: -42px;
            z-index: 0;
        }




            /*MODERN FOOTER ========== */
        .nist-footer {
            background-color: #000616;
        margin-top:40px;

        }

        /* bottom footer area (dark section) */
        .bottom-footer {
            background-color: #000616;
            padding-top: 30px;
            padding-bottom: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        /* column styles for menu sections */
        .col-sm-4 {
            flex: 0 0 33.333%;
            max-width: 33.333%;
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .col-md-12 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 15px;
        }

        .col-sm-3 {
            /* flex: 0 0 25%;
            max-width: 25%; */
            padding: 0 15px;
        }

        /* footer menu header */
        .footer-menu-header {
            font-family: 'Segoe UI', 'Open Sans', sans-serif;
            font-weight: 700;
            color: #ffffff;
            font-size: 18px;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            position: relative;
            display: inline-block;
        }
      

        /* bottom menu list */
        .bottom-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .bottom-menu li {
            margin-bottom: 10px;
        }
        .bottom-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .bottom-menu li a:before {
            content: "›";
            font-size: 16px;
            color: #df9d00;
            transition: transform 0.2s;
            display: inline-block;
        }
        .bottom-menu li a:hover {
            color: #df9d00;
            transform: translateX(4px);
            text-decoration: none;
        }
        .bottom-menu li a:hover:before {
            transform: translateX(3px);
        }

        /* horizontal divider */
        .footer-divider {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, #1e2a4a, #df9d00, #1e2a4a);
            margin: 15px 0 20px 0;
        }

        /* footer container (brand + contact) */
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 20px;
            margin-top: 5px;
        }

        .footer-brand-section {
            display: flex;
            align-items: center;
            gap: 18px;
            flex: 1;
            min-width: 260px;
        }

        .footer-logo {
            flex-shrink: 0;
        }
        .footer-logo img {
            width: 85px;
            transition: transform 0.2s;
        }
        .footer-logo img:hover {
            transform: scale(1.02);
        }

        .footer-instuname {
            color: #ffffff;
        }
        .footer-instuname p {
            margin: 0;
            line-height: 1.4;
        }
        .footer-instuname p:first-child {
            font-weight: 700;
            font-size: 18px;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }
        .footer-instuname p:last-child {
            font-size: 13px;
            color: #cbd5e6;
        }

        .footer-contact-section {
            text-align: right;
            flex: 1;
            min-width: 260px;
            color: #ffffff;
        }
        .footer-contact-section p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-contact-section a {
            color: #df9d00;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        .footer-contact-section a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .copyright-bar-modern {
            background-color: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 14px 0;
        }
        .copyright-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            gap: 12px;
        }
        .copyright-text {
            color: #b0bbd9;
            font-size: 13px;
        }
        .copyright-text a {
            color: #df9d00;
            text-decoration: none;
            font-weight: 600;
        }
        .copyright-text a:hover {
            text-decoration: underline;
        }
        .social-icons-modern {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .social-icons-modern a {
            color: #e0e7ff;
            font-size: 18px;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #ffffff;
            text-decoration: none;
        }
        .social-icons-modern a:hover {
            color: #df9d00;
            background: rgba(223, 156, 0, 0.692);
            transform: translateY(-2px);
        }

        /* responsive breakpoints */
        @media (max-width: 768px) {
            .col-sm-4 {
                flex: 0 0 100%;
                max-width: 100%;
                text-align: center;
            }
            .footer-menu-header:after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-menu-header {
                display: block;
                /* text-align: center; */
            }
            .bottom-menu li a {
                justify-content: center;
            }
            .footer-container {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .footer-brand-section {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .footer-contact-section {
                text-align: center;
            }
            .copyright-inner {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .social-icons-modern {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .footer-logo img {
                width: 70px;
            }
            .footer-instuname p:first-child {
                font-size: 16px;
            }
            .footer-contact-section p {
                font-size: 12px;
            }
        }

        /* preserve original hover behavior exactly as in requirement */
        .bottom-menu li a:hover {
            color: #df9d00;
            text-decoration: none;
        }
        hr {
            border-color: #1f2a44;
        }



    /* Placement Highlights Section */
.placement-highlights-section {
    position: relative;
}

.placement-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    margin: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    height: 250px;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.placement-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}


/* Responsive */
@media (max-width: 768px) {
    .placement-card {
        height: 200px;
        margin: 8px;
    }
}

@media (max-width: 576px) {
    .placement-card {
        height: 180px;
        margin: 5px;
    }
}


/* recruiters-logo-crousel */

.Recruit-black {
    color: #1a1a2e;
    font-weight: bold;
}

.highlights-blue {
    color: #2d4697;
    font-weight: bold;
}

.recruiters-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    padding: 10px;
}

.logo-box {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 15px;
    aspect-ratio: 3/2;
    transition: all 0.3s ease;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 70, 151, 0.15);
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2d4697;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider-btn:hover {
    background: #1a2d6e;
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Dots Navigation */
.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2d4697;
    width: 25px;
    border-radius: 5px;
}

.dot:hover {
    background: #2d4697;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .logo-box {
        padding: 10px;
    }
}

/* Animation for slides */
@keyframes fadeSlide {
    from {
        opacity: 0.5;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-slide.active-slide .logo-box {
    animation: fadeSlide 0.5s ease forwards;
}
