/* Custom Styling */
:root {
    --primary-color: #0d6efd; /* Blue color from logo */
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* Mobile la horizontal scroll honar nahi */
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.top-bar i {
    color: var(--primary-color);
}

.social-links a {
    color: #555;
    margin-left: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Navbar */
.main-logo {
    height: 93px; /* Adjust as per your logo size */
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 10px 15px !important;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Enquiry Button */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 20px 0;
    }
    
    .nav-item {
        border-bottom: 1px solid #f1f1f1;
    }
    
    .btn-primary {
        margin-top: 15px;
        width: 100%;
    }
}


/* --- Hover Dropdown Logic --- */

/* Desktop view sathi dropdown hover var open honyasathi */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0); /* Animation effect */
    }

    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        transform: translateY(10px); /* Survatila thoda khali asel */
        margin-top: 0; 
    }
}

/* --- Premium Look Changes --- */

.dropdown-menu {
    border: none;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft Shadow */
    padding: 10px;
    min-width: 220px;
    left: -80px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    color: #000000;
    transition: all 0.2s ease;
}

/* Hover kelyavar background ani text color badal */
.dropdown-item:hover {
    background-color: #daecff;
    color: var(--primary-color) !important;
    padding-left: 20px; /* Thoda slide effect */
}

/* Dropdown arrow cha color */
.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
    color: var(--primary-color);
}

/* --- Global / Utility Classes sathi (Nirmiti Brand Colors) --- */
:root {
    --primary-color: #0d6efd; /* Brand Blue */
    --gradient-start: #008cff; /* Light Blue */
    --gradient-end: #0056d6; /* Dark Blue */
    --text-white-70: rgba(255, 255, 255, 0.7);
    --text-white-60: rgba(255, 255, 255, 0.6);
    --border-white-05: rgba(255, 255, 255, 0.05);
    --bg-white-05: rgba(255, 255, 255, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.z-2 { z-index: 2; }
.backdrop-blur { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.letter-spacing-1 { letter-spacing: 1px; }
.lh-1-2 { line-height: 1.2; }
.max-w-500 { max-width: 500px; }
.x-small { font-size: 0.75rem; }
.fs-7 { font-size: 0.85rem; }
.text-muted-light { color: #aaa; }

/* --- Compact Modern Hero Section --- */
.compact-hero {
    min-height: 550px; /* Highly optimized compact height */
    background-color: #121212; /* Dark backup background */
    overflow: hidden;
    position: relative;
    padding-top: 40px; /* Space for Top Bar */
    padding-bottom: 30px;
}

/* Background Visuals */
.hero-bg-visual {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Subdued background visual */
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 70% 30%, rgb(1 95 185 / 72%) 0%, rgb(3 45 84 / 90%) 100%);
    z-index: 1;
}

/* Floating Pattern (Simplified geometric) */
.floating-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(7, 106, 255, 0.096) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

/* Left Content styling */
.content-card {
    position: relative;
    border: 1px solid var(--border-white-05);
    background: rgba(20, 20, 20, 0.4); /* Subtle glass wrapper */
}

.main-title {
    font-size: 40px; /* Compact text size */
}

.text-primary-gradient {
    background: linear-gradient(135deg, #00bfff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Approval Tag simplified */
.approval-tag {
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.03);
}

/* Buttons with Gradient and Icon Forward */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    color: white;
    box-shadow: 0 8px 20px rgba(0, 140, 255, 0.3);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: white;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    border-color: white;
    color: #121212;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* Simplified Icon Forward Effect */
.hvr-icon-forward .hvr-icon {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease-out;
}
.hvr-icon-forward:hover .hvr-icon {
  transform: translateX(3px);
}
/* Grow Effect simplified */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  transition: transform 0.2s ease-out;
}
.hvr-grow:hover {
  transform: scale(1.02);
}

/* Right Side: Form styling */
.form-wrapper {
    max-width: 380px; /* Very compact width */
}

.modern-enquiry-card {
    background: rgba(255, 255, 255, 0.98); /* Bright modern look */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

/* Compact Form Inputs */
.form-group.position-relative .input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 2;
}

.form-control-modern, .form-select-modern {
    width: 100%;
    padding: 12px 12px 12px 38px; /* Compact padding */
    border: 1.5px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: #333;
    transition: 0.2s;
}

.form-control-modern:focus, .form-select-modern:focus {
    outline: none;
    border-color: var(--gradient-start);
    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.04);
}

.form-select-modern {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Mobile Adjustments simplified */
@media (max-width: 991px) {
    .compact-hero {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }
    
    .hero-content-col {
        padding-right: var(--bs-gutter-x) !important; /* reset right padding */
    }
    
    .content-card {
        padding: 25px;
    }
    
    .main-title { font-size: 28px; }
    
    .sub-title { font-size: 1rem; margin-left: auto; margin-right: auto; }
    
    .approval-tag { margin-left: auto; margin-right: auto; text-align: left; }
    
    .d-flex.flex-wrap.gap-2 { justify-content: center; }
    
    .form-wrapper { margin-top: 30px; }
    
    .modern-enquiry-card { padding: 30px !important; }
}

/* Approval Box Styling */
.approval-container {
    background: rgba(255, 255, 255, 0.08); /* Transparent blackish look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Course Title Gradient */
.text-primary-gradient {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Button Shadow */
.btn-primary-gradient {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    transition: 0.3s;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    .approval-container {
        padding: 15px;
    }
}


/* --- Our Courses Section Styling --- */

.courses-section {
    background-color: #fcfcfc !important;
}

.divider-custom {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 15px;
}

/* Course Card Base */
.course-card {
    background: #f3f3f3;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color);
}

/* Image Wrapper */
.course-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-img-wrapper img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Content Area */
.course-content h4 {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.4;
}

.course-meta p {
    font-size: 15px;
    color: #000000;
}

/* Buttons */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Highlighted Card (Optional) */
.active-card {
    border: 2px solid var(--primary-color);
}

/* Animation utility */
.hvr-grow {
    transition: transform 0.3s ease;
}
.hvr-grow:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .course-content {
        text-align: center;
    }
    .course-meta {
        text-align: left;
        display: inline-block;
    }
}


/* --- Partners Section Styling --- */

.partners-section {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #d8d8d8;
}

.divider-small {
    height: 3px;
    width: 40px;
    background: var(--primary-color);
    margin-top: 10px;
    border-radius: 2px;
}

/* Partner Logo Card */
.partner-logo-card {
    background: #fff;
    padding: 2px;
    border-radius: 12px;
    border: 1px solid #f0f0f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Fixed height for symmetry */
    transition: all 0.3s ease;
  
}

.partner-logo-card:hover {
    filter: grayscale(0%); /* Hover kelyavar original color */
    opacity: 1;
    transform: scale(1.05);
    border-color: #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

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

/* MSBSVET logo jar image_dc97c8.png madhun vapraycha asel tar adjust karnya sathi */
.logo-crop {
    object-position: right; /* Fakt Board cha seal disnyasathi adjust karu shakta */
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .partner-logo-card {
        padding: 10px;
        height: 80px;
    }
}

/* --- Value Add Section Styling --- */

.value-add-section {
    background-color: #f7f7f7;
}

/* Image Stack Styling */
.image-stack {
    padding: 20px;
}

.main-img {
    transition: transform 0.4s ease;
    border: 8px solid #f8f9fa;
}

.image-stack:hover .main-img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 140px;
}

/* Program List Styling */
.icon-box {
    width: 50px;
    height: 50px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 4%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.program-item:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.program-item h5 {
    color: #333;
    font-size: 1.1rem;
}

.program-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #000000 !important;
}

/* Certification Notice */
.certification-notice {
    background-color: #e7f2ff;
    border-left: 5px solid var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .image-stack {
        margin-bottom: 30px;
        text-align: center;
    }
    .experience-badge {
        right: 10%;
    }
}

/* --- Software Showcase Styling --- */

.software-showcase {
    background: #fdfdfd;
}

/* Fixed Height Logo Box sathi */
.logo-box {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.082);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Logos grid standard sathi high height adjust karu shakta */
}

.logo-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06) !important;
}

.logo-box img {
    max-height: 100%; /* Box chya height fit karnya sathi */
    max-width: 100%;  /* Box chya width fit karnya sathi */
    object-fit: contain; /* Aspect ratio retain karun box fit karnya sathi */
    transition: transform 0.3s ease;
}

.logo-box:hover img {
    transform: scale(1.03); /* Subtle internal zoom on hover */
}

/* Animation Utility */
.hvr-float {
    transition: transform 0.3s ease-out;
}
.hvr-float:hover {
    transform: translateY(-5px);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .logo-box {
        height: 80px; /* Mobile var thodi height kami */
        padding: 15px;
    }
}

/* --- Admissions Section Styling --- */

.admissions-section {
    background: linear-gradient(to right, #ffffff, #f0f0f0);
}

.government-auth {
    background-color: #e7f0fa !important;
}

/* Procedure Card & Steps */
.procedure-card {
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.procedure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.steps-container {
    position: relative;
}

/* Step connecting line */
.steps-container::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    bottom: 20px;
    width: 2px;
    background: #e9ecef;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
}

/* Button Pulse Animation */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2) !important;
}


/* --- Creativity & Faculty Section --- */

.text-primary-gradient {
    background: linear-gradient(178deg, #d7e9ff 0%, #0463f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary-gradient1 {
    background: linear-gradient(178deg, #0199ff 0%, #013b92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider-custom {
    height: 4px;
    width: 80px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Faculty Card Design */
.faculty-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color);
}

.faculty-img {
    height: auto;
    overflow: hidden;
    background: #f8f9fa; /* Placeholder color */
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Photo stretch honar nahi */
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-img img {
    transform: scale(1.1);
}

.faculty-info h5 {
    color: #333;
    font-size: 1.1rem;
}

.faculty-info p {
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .faculty-img {
        height: 250px;
    }
}

/* --- Hands-On Projects Styling --- */

.hands-on-projects {
    background-color: #f9f9f9;
}

/* Image Wrapper */
.project-img-wrapper {
    padding: 10px;
}

.project-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s;
}

.project-floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 160px;
    text-align: center;
}

/* Feature Icons */
.feature-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.feature-item h5 {
    font-size: 1.1rem;
    color: #222;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .project-img-wrapper img {
        height: 350px;
        margin-bottom: 30px;
    }
    .project-floating-card {
        right: 10px;
        bottom: 40px;
    }
}

/* --- Mentorship & Placement Styling --- */

.mentorship-placement {
    background-color: #ffffff;
}

.info-box {
    transition: all 0.4s ease;
    border: 1px solid #e0dfdf !important;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: var(--primary-color) !important;
}

/* Background Patterns (Optional decoration) */
.mentorship-bg::after {
    content: '\f500'; /* Users icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 150px;
    color: rgba(0,0,0,0.02);
    z-index: 0;
}

.placement-bg::after {
    content: '\f0b1'; /* Briefcase icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 150px;
    color: rgba(0,0,0,0.02);
    z-index: 0;
}

.info-box * {
    position: relative;
    z-index: 1;
}

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-box {
        padding: 30px 20px !important;
    }
    .info-box h3 {
        font-size: 1.5rem;
    }
}

/* --- Unique Advantages List Styling --- */

.unique-advantages-list {
    background-color: #ffffff;
}

.advantage-list-item {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 12px 15px;
    background: #fcfcfc;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
}

.advantage-list-item:hover {
    background-color: #f0f7ff;
    border-color: var(--primary-color);
    transform: translateX(5px);
    color: var(--primary-color);
}

.check-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: 900;
}

/* Highlight for important item */
.highlight-item {
    background-color: #eef5ff;
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .advantage-list-item {
        font-size: 14px;
        padding: 10px;
    }
}



/* --- Testimonials 2-Box Styling --- */

.testimonial-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color); /* Premium highlight */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.stars i {
    font-size: 14px;
    margin-right: 2px;
}

.text-warning {
    color: #ffc107 !important; /* Gold stars */
}

.italic {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Arrow Styling */
.carousel-control-custom {
    width: 45px;
    height: 45px;
    background: rgb(70, 70, 70);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    border: 1px solid #eee;
}

.carousel-control-custom:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-control-prev { left: -60px; }
.carousel-control-next { right: -60px; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        display: none; /* Mobile var arrows nako aslyaas dots vaparta yetil */
    }
    .px-lg-5 {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/* --- Contact Section Styling --- */

.contact-section {
    background: #fff;
    scroll-margin-top: 100px;
}

/* Form Styling */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.custom-input {
    padding: 12px 18px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Contact Info Box Icons */
.contact-icon-box {
    width: 45px;
    height: 45px;
    background: #eef5ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.map-wrapper iframe {
    filter: grayscale(20%);
    transition: 0.3s;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-bottom: 40px;
    }
}

/* --- Modern FAQ Styling --- */

.faq-modern {
    background-color: #fdfdfd;
}

/* Sticky Header on Desktop */
@media (min-width: 992px) {
    .faq-header-sticky {
        position: sticky;
        top: 100px;
    }
}

.underline-glow {
    position: relative;
    z-index: 1;
}

.underline-glow::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(13, 110, 253, 0.15);
    z-index: -1;
}

/* Modern Accordion Items */
.accordion-modern .accordion-item {
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.accordion-modern .accordion-button {
    padding: 25px;
    background: transparent;
    color: #333;
    font-size: 1.1rem;
}

.accordion-modern .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    box-shadow: none;
}

/* Number Styling */
.faq-number {
    font-size: 0.9rem;
    color: var(--primary-color);
    background: #f0f7ff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 800;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
}

/* Icon Rotation */
.accordion-modern .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d6efd' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1.2rem;
}

/* --- Footer Section Styling --- */

.footer-section {
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #444;
    border: 1px solid #eee;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Newsletter Input */
.footer-newsletter .form-control {
    border-radius: 25px 0 0 25px;
    border: 1px solid #eee;
    padding: 10px 15px;
    font-size: 14px;
}

.footer-newsletter .btn {
    border-radius: 0 25px 25px 0;
    padding: 0 20px;
}

.footer-divider {
    opacity: 0.1;
    margin: 30px 0 20px;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .footer-links {
        padding-bottom: 20px;
    }
    .social-links {
        justify-content: center;
        display: flex;
        margin-bottom: 30px;
    }
}

/* --- Modern Breadcrumb Banner Styling --- */

.page-header-banner {
    /* Tumhi hya thikani ek changla interior cha photo background la deu shakta */
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.9)), 
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0; /* Header chi height vadhavli aahe */
    position: relative;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    opacity: 1;
    color: var(--primary-color); /* Tumcha primary blue color */
}

/* Breadcrumb Divider Color (/) */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Heading Underline Effect */
.header-line {
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header-banner {
        padding: 50px 0;
        text-align: center;
    }
    .header-line {
        margin: 0 auto;
    }
    .display-4 {
        font-size: 2rem;
    }
}

/* --- Sticky Sidebar Styling --- */
.course-sidebar {
    background: #fff;
    border-top: 5px solid var(--primary-color);
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Sidebar behavior on mobile */
@media (max-width: 991px) {
    .course-sidebar {
        position: static !important;
        margin-top: 40px;
    }
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}


/* --- Gallery Page Styling --- */

.gallery-card {
    height: 300px; /* Fixed height for symmetry */
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.gallery-card img {
    transition: transform 0.6s ease;
}

/* Hover Zoom & Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.7); /* Tumcha primary blue color with opacity */
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Page Banner (Reference to your existing style) */
.page-header-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1556761175-4b46a572b786?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

/* --- Page Header Banner --- */
.page-header-banner {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.95)), 
                url('img/banner1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.header-line {
    width: 70px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* --- Contact Form Card --- */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

.custom-input {
    padding: 12px 18px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
}

/* --- Contact Icons --- */
.contact-page-icon {
    width: 50px;
    height: 50px;
    background: #eef5ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* --- Social Boxes --- */
.social-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.fb { background: #3b5998; }
.insta { background: #e4405f; }
.linkd { background: #0077b5; }
.yt { background: #ff0000; }
.wa { background: #25d366; }

.social-box:hover {
    transform: translateY(-5px);
    color: #fff;
    filter: brightness(1.2);
}

/* Map grayscale filter for a professional look */
.map-section iframe {
    filter: grayscale(100%);
    transition: 0.5s;
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

.about-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(0, 0, 0, 0.7)), 
               ;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.value-icon {
    font-size: 40px;
    color: var(--primary-color);
}

.value-card {
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}
.small {
font-size: 15px;
}

/* --- Approved By Minimal Styling --- */

.approved-by-minimal {
    font-family: 'Inter', sans-serif;
    max-width: 490px; /* Limits the width */
}

.fw-black { font-weight: 800; }

.approval-logo-wrap {
    border-color: #eee !important;
}

.approval-logo {
    height: 88px; /* Size of the logo */
    width: auto;
}

/* For Hero Section (if it's not dark background) */
.btn-outline-dark-pro:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

a {
    color: #000;
    text-decoration: none;
}


/* --- Executive Professional Styling --- */

.about-pro {
    font-family: 'Inter', sans-serif;
}

.fw-black { font-weight: 800; }
.ls-2 { letter-spacing: 2px; }

/* Icon Block Styling */
.icon-block {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-primary-soft { background-color: rgba(13, 110, 253, 0.1); }
.bg-success-soft { background-color: rgba(25, 135, 84, 0.1); }

/* Content Box Styling */
.content-pro-box {
    position: relative;
}

/* Border Accents for Large Screens */
@media (min-width: 992px) {
    .border-start { border-left: 3px solid #0d6efd !important; }
    .border-end-lg { border-right: 3px solid #0a7ef3 !important; }
    .border-start-lg { border-left: 2px solid #0a7ef3 !important; }
}

/* Typography Adjustments */
.fs-5 {
    font-size: 16px !important;
    font-weight: 400;
    color: #000000 !important;
}

.lh-base {
    line-height: 1.85 !important;
}

/* Benefits Card Styling */
.benefits-featured-card {
    background-color: #f8fafc !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .title-overlap {
        margin-bottom: 20px;
        text-align: center;
    }
    .content-pro-box {
        text-align: center;
        padding: 0 !important;
        border: none !important;
    }
}


/* --- Artistic Modern Styling --- */

.master-artistic { font-family: 'Inter', sans-serif; }
.fw-black { font-weight: 900; }
.ls-3 { letter-spacing: 3px; }

/* Attractive Heading Effect */
.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-line {
    width: 80px;
    height: 6px;
    background: #0d6efd;
    border-radius: 10px;
}

/* 1-Line Colorful Icon Bar */
.bg-blue-grad { background: linear-gradient(135deg, #0d6efd, #0dcaf0); }
.bg-orange-grad { background: linear-gradient(135deg, #fd7e14, #ffc107); }
.bg-purple-grad { background: linear-gradient(135deg, #6610f2, #d63384); }

.icon-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.8rem;
}

.sep-line { width: 1px; height: 25px; background: #eee; }

/* Professional Bullets */
.fancy-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 500;
}

.fancy-bullets li::before {
    content: "\f058"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 1.1rem;
}

/* Typography & Effects */
.lh-lg { line-height: 1.9 !important; }
.fs-5 { font-size: 1.15rem !important; }
.x-small { font-size: 0.6rem; letter-spacing: 1px; }

.transition { transition: all 0.3s ease; }
.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

@media (max-width: 991px) {
    .modern-stats-bar { flex-direction: column; align-items: flex-start; gap: 15px; }
    .sep-line { display: none; }
    .display-3 { font-size: 2.5rem; }
}

/* --- Artistic Modern Styling --- */
.master-artistic { font-family: 'Inter', sans-serif; }
.fw-black { font-weight: 900; }
.ls-3 { letter-spacing: 3px; }

/* Attractive Heading Effect */
.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-line {
    width: 80px;
    height: 6px;
    background: #0d6efd;
    border-radius: 10px;
}

/* 1-Line Colorful Icon Bar */
.bg-blue-grad { background: linear-gradient(135deg, #0d6efd, #0dcaf0); }
.bg-orange-grad { background: linear-gradient(135deg, #fd7e14, #ffc107); }
.bg-purple-grad { background: linear-gradient(135deg, #6610f2, #d63384); }

.icon-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.8rem;
}

.sep-line { width: 1px; height: 25px; background: #eee; }

/* Professional Bullets */
.fancy-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 500;
}

.fancy-bullets li::before {
    content: "\f058"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 1rem;
}

/* Typography & Effects */
.lh-lg { line-height: 1.8 !important; }
.fs-5 { font-size: 1.1rem !important; }
.x-small { font-size: 0.6rem; letter-spacing: 1px; }
.x-small-text { font-size: 0.9rem; }

.transition { transition: all 0.3s ease; }
.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

@media (max-width: 991px) {
    .modern-stats-bar { flex-direction: column; align-items: flex-start; gap: 15px; }
    .sep-line { display: none; }
    .display-3 { font-size: 2.3rem; }
}

/* --- Suitable For Section Styling --- */

.suitable-for-section h3 {
    font-size: 24px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
}

.suitable-icon {
    font-size: 24px;
    color: #28a745; /* Professional Green color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.suitable-text {
    font-size: 18px;
    line-height: 1.5;
}

.suitable-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.suitable-item:hover {
    background: #fff;
    border-color: #dee2e6;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateX(10px);
}

/* Image Hover Effect */
.salary-img-wrapper {
    border: 1px solid #eee;
}

.salary-img-wrapper img {
    transition: 0.5s;
}

.salary-img-wrapper:hover img {
    transform: scale(1.03);
}