/* Welcome Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeOutSplash 1.5s ease-in-out 4.5s forwards;
    padding: 20px;
    box-sizing: border-box;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.splash-welcome-text {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    opacity: 0;
    transform: translateY(-30px);
    animation: welcomeTextAppear 0.8s ease-out 0.2s forwards;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.15);
}

.splash-logo-primary {
    max-width: 320px;
    height: auto;
    opacity: 0;
    transform: scale(0.4);
    animation: logoAppear1 1s ease-out 0.8s forwards;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.splash-logo-secondary {
    max-width: 500px;
    height: auto;
    opacity: 0;
    transform: translateY(40px);
    animation: logoAppear2 1s ease-out 1.5s forwards;
    filter: drop-shadow(0 4px 20px rgba(30, 58, 138, 0.15));
}

.splash-institute-name {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    opacity: 0;
    transform: scale(0.8);
    animation: instituteNameAppear 1s ease-out 2.2s forwards;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
    margin-top: 10px;
    line-height: 1.2;
}

.splash-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    opacity: 0;
    transform: translateY(30px);
    animation: taglineAppear 1s ease-out 2.9s forwards;
    margin-top: 5px;
    white-space: nowrap;
    line-height: 1.3;
}

.hindi-text {
    color: #d97706;
    font-weight: 700;
    margin-right: 10px;
    text-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
}

@keyframes welcomeTextAppear {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoAppear1 {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoAppear2 {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes instituteNameAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes taglineAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutSplash {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Responsive Splash Screen */
@media (max-width: 768px) {
    .splash-welcome-text {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .splash-logo-primary {
        max-width: 220px;
    }

    .splash-logo-secondary {
        max-width: 350px;
    }

    .splash-institute-name {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .splash-tagline {
        font-size: 1.3rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .splash-welcome-text {
        font-size: 1.6rem;
    }

    .splash-logo-primary {
        max-width: 180px;
    }

    .splash-logo-secondary {
        max-width: 280px;
    }

    .splash-institute-name {
        font-size: 1.2rem;
    }

    .splash-tagline {
        font-size: 1.1rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Disable image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Disable selection on specific elements if needed, but allow text selection for readability */
p, h1, h2, h3, h4, h5, h6, li, span, div {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #dc2626;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f0f4ff;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Scroll Animations - Optimized for Speed */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.animate-fade-in.visible {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Top Bar Section */
.top-bar-section {
    background: #0f172a;
    border-top: 2px solid #e5e7eb;
}

.top-bar-section .since-btn {
    background: white;
    color: #0f172a;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
}

.top-bar-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.top-bar-section p {
    color: #fbbf24;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 767px) {
    .top-bar-section .container-fluid {
        padding: 1rem;
    }
    
    .top-bar-section .since-btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
    
    .top-bar-section h3 {
        font-size: 1rem;
    }
    
    .top-bar-section p {
        font-size: 0.875rem;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.container-fluid {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Ensure sections are full width and content is centered */
section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    display: block;
}

/* Force all containers to be centered */
.container,
.container-fluid {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Responsive container padding for different screen sizes */
@media (min-width: 768px) {
    .container-fluid,
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .container-fluid,
    .container {
        padding: 0 3rem;
    }
}

/* Ensure all section content is centered */
section > .container,
section > .container-fluid,
section > div {
    margin-left: auto;
    margin-right: auto;
}

/* Fix specific sections */
#section9 .new-english-container,
#section8 .why-choose-us-container,
#section33 .footer-before-container,
.placement-section,
.quick-enquiry-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Ensure row content is properly aligned */
.row {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Center all content blocks */
.py-standard,
.pt-0,
.mb-standard {
    margin-left: auto;
    margin-right: auto;
}

/* Fix hero section */
#course-banner1a {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

#course-banner1a img {
    width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header Styles */
header {
    position: relative;
    z-index: 1000;
}

/* Top Bar (Dark Blue) */
.top-navbar {
    background: #0f172a;
    color: white;
    padding: 0.75rem 0;
}

.top-navbar .since-btn {
    background: white;
    color: #0f172a;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.top-navbar h2 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: white;
    text-align: center;
}

.top-navbar h2 span {
    color: #fbbf24;
}

/* Main Navbar */
.desktop-navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.desktop-navbar .navbar {
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 767px) {
    .desktop-navbar .navbar {
        padding: 0.75rem 1rem;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 65px;
    width: auto;
}

.founder-section {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    border-left: 2px solid #0f172a;
}

.founder-label {
    color: #dc2626;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.founder-name {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.125rem;
    margin-top: 2px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-menu li a:hover {
    color: #dc2626;
}

.nav-menu li.dropdown {
    position: relative;
}

.nav-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
    display: none;
    z-index: 100;
}

.nav-menu li:hover .sub-menu {
    display: block;
}

.nav-menu li .sub-menu li a {
    padding: 0.6rem 1.5rem;
    display: block;
    color: #0f172a;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-menu li .sub-menu li a:hover {
    background: #f8fafc;
    color: #dc2626;
}

.nav-menu .submenu {
    position: relative;
}

.nav-menu .submenu .child-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 260px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
    display: none;
}

.nav-menu .submenu:hover .child-menu {
    display: block;
}

.header-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-quick-enquiry {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-quick-enquiry:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.btn-contact-us {
    background: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-contact-us:hover {
    background: #1e293b;
    color: white;
    transform: translateY(-1px);
}

/* Mobile Navbar */
.mobile-navbar {
    background: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-navbar .main-logo {
    height: 60px;
}

.call-us-button {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.call-us-button:hover {
    background: #b91c1c;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 1001;
}

.sidebar.active {
    right: 0;
}

.sidebar .menu ul {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
}

.sidebar .menu ul li {
    border-bottom: 1px solid #e5e7eb;
}

.sidebar .menu ul li a {
    padding: 1rem 0;
}

.sidebar .menu ul li .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding-left: 1rem;
    border-top: 1px solid #e5e7eb;
}

.menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
}

/* Banner Section */
#course-banner1a {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

#course-banner1a img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    min-height: 500px;
    object-fit: cover;
}

/* Section 1 - Google Reviews */
#section1 {
    padding: 3rem 0;
    background: white;
}

.h4 {
    font-size: 1.75rem;
    text-align: center;
    color: #0f172a;
    margin-bottom: 2rem;
}

.span03 {
    color: #3b82f6;
}

.google-rating-container {
    background: white;
    border: 3px solid #0f172a;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-top: 0;
    position: relative;
}

.google-rating-container::before,
.google-rating-container::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 12px;
    background: #0f172a;
    border-radius: 10px;
}

.google-rating-container::before {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.google-rating-container::after {
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.google-rating-container h3 {
    font-size: 3.5rem;
    color: white;
    background: #0f172a;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 0;
    display: inline-block;
}

/* About Us Section */
#section9 {
    padding: 3rem 0;
    background: white;
    position: relative;
}

#section9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #0f172a;
    border-bottom-right-radius: 60px;
}

.new-courses-button {
    background: #0f172a;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.new-english-container .bg-Image img {
    width: 100%;
    border-radius: 16px 0 16px 16px;
    border: 5px solid #0f172a;
    border-right: none;
    border-bottom: none;
}

.new-courses-inner h1 {
    color: #0f172a;
    font-size: 2rem;
}

/* Why Choose Us Section */
#section8 {
    padding: 2rem 0;
    background: #f0f4ff;
}

.why-choose-us-container {
    background: #f0f4ff;
}

.why-choose-us-container .h3 {
    font-size: 1.75rem;
    color: white;
    background: #0f172a;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.right-arrow-icon-image {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
}

.why-choose-paragraph {
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.text-content-container {
    background: white;
    border: 2px solid #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
}

.why-choose-us-image {
    width: 100%;
    border-radius: 12px;
}

/* Testimonials Section */
#section33 {
    padding: 2rem 0;
    background: #0f172a;
}

#section33 .footer-before-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

#section33 .footer-before-container h5 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.owl-carousel .owl-nav button {
    background: white !important;
    color: #0f172a !important;
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    font-size: 1.25rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    background: #f3f4f6 !important;
    border-color: #0f172a !important;
}

.owl-carousel .owl-dots {
    display: none;
}

/* Proud Students Owl Carousel */
.proud-students-section .owl-carousel .owl-nav {
    top: -55px;
}

.footer-before-container {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.beyond-card-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid #0f172a;
    transition: var(--transition);
}

.beyond-card-container:hover {
    transform: translateY(-5px);
}

.image-container {
    background: white;
}

.image-container iframe {
    display: block;
    background: white;
    border-radius: 12px;
}

.centre-at-a-glance-header {
    background: #0f172a;
    margin-bottom: 2rem;
}

.centre-at-a-glance-header h5 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.centre-at-a-glance-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid #0f172a;
    transition: var(--transition);
}

.centre-at-a-glance-card:hover {
    transform: translateY(-5px);
}

/* Listen From Our Proud Students Section */
.proud-students-section {
    padding-top: 0;
    margin-top: 4rem;
}

.proud-students-header {
    background: #0f172a;
    margin-bottom: 2rem;
}

.proud-students-header h5 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.proud-student-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid #0f172a;
    transition: var(--transition);
}

.proud-student-card .d-flex {
    align-items: center;
    justify-content: center;
    width: 100%;
}

.proud-student-card:hover {
    transform: translateY(-5px);
}

.proud-students-section .proud-student-card .d-flex img.proud-student-image,
.proud-student-image,
.proud-student-image.last-card-image,
.proud-student-image.testimonial-image {
    width: 150px !important;
    height: 150px !important;
    max-width: 150px !important;
    max-height: 150px !important;
    min-width: 150px !important;
    min-height: 150px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 3px solid #0f172a !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    margin-top: 1rem !important;
    aspect-ratio: 1/1 !important;
    display: block !important;
}

.proud-student-content {
    padding: 1.5rem;
}

.proud-student-content .quotes {
    color: #0f172a;
    font-size: 1.5rem;
}

.proud-student-review {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 3rem 0;
    background: white;
}

.google-reviews-section h2 {
    text-align: center;
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.google-reviews-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.google-reviews-left h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.google-rating {
    color: #f59e0b;
    font-weight: 700;
    font-size: 1.1rem;
}

.google-rating span {
    font-size: 0.85rem;
    color: #6b7280;
}

.google-reviews-btn {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.google-reviews-btn:hover {
    background: #0f172a;
    color: white;
}

/* Director Desk Section */
.director-desk-section {
    padding: 3rem 0;
    background-color: white !important;
    background: white !important;
    margin-bottom: 4rem !important;
}

/* Centre at a Glance Section */
.centre-at-a-glance-section {
    padding-top: 0;
    margin-bottom: 4rem;
    background-color: white !important;
    background: white !important;
}

.centre-at-a-glance-card .image-container {
    background: white;
}

.centre-at-a-glance-card .last-card-image {
    background-color: white !important;
    border-radius: 8px;
}

.director-image-container {
    position: relative;
    padding-right: 2rem;
}

.director-image {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.director-image-container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background: #0f1f56;
    border-radius: 12px;
    z-index: 1;
}

.director-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.director-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border: 3px solid #0f172a;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
}

.director-paragraph {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.director-name {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.director-title {
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.image-container iframe {
    display: block;
}

/* Popup Form */
.popupform-enquery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    display: none;
}

.popupform-enquery.active {
    display: flex;
}

.enquery-right {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.closeform {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.closeform:hover {
    background: #f3f4f6;
    color: var(--text-dark);
}

.enquery-right h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0f172a;
    position: relative;
    padding-bottom: 0.75rem;
}

.enquery-right h3:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #dc2626;
}

.form-control01,
select.form-control01 {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.form-control01:focus,
select.form-control01:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #0f172a, #3b82f6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Utility Classes */
.py-standard {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pb-standard {
    padding-bottom: 4rem;
}

.pt-0 {
    padding-top: 0;
}

.mb-standard {
    margin-bottom: 4rem;
}

/* Director Desk Section */
.new-abc-button {
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Courses Section */
.course-content-container .item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 0 10px;
}

.course-content-container .item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-content-container .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-button {
    background: linear-gradient(135deg, #0f172a, #3b82f6);
    color: white;
    padding: 1rem;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.course-content-container .item a {
    text-decoration: none;
}

/* Contact Section */
.contact-card-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-card-container h5 {
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Client Logos Section */
.client-logo .col-md-2 {
    text-align: center;
    padding: 1.5rem;
}

.client-logo-img img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.client-logo-img img[src*="34.png"],
.client-logo-img img[src*="37.jpg"] {
    object-fit: cover;
    border-radius: 50%;
}

.client-logo h3 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a, #0f172a);
    color: white;
    padding: 4rem 0 0;
}

footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

footer ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.copyright {
    background: #0f172a;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.copyright p {
    color: #9ca3af;
    margin: 0;
}

.copyright .social {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.copyright .social li a {
    display: inline-block;
    transition: var(--transition);
}

.copyright .social li a:hover {
    transform: translateY(-3px);
}

.copyright .social li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Floating Buttons */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: #0f172a;
    transform: translateY(-3px);
    color: white;
}

.floating_btn {
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 999;
}

.floating_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: whatsappGlow 2s infinite;
    transition: transform 0.3s ease;
}

@keyframes whatsappGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.floating_btn a:hover {
    transform: scale(1.15);
    color: white;
    animation: none;
}

.floating_btn .contact_icon i {
    font-size: 1.75rem;
}

.call-action {
    position: fixed;
    bottom: 180px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.call-action:hover {
    transform: scale(1.1);
    color: white;
}

.call-action i {
    font-size: 1.5rem;
}

/* Testimonial Section */
.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow);
}

.student-testimonial-container {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.quotes {
    color: #3b82f6;
    font-size: 2rem;
}

.review-description {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.last-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .course-banner-heading {
        font-size: 2.25rem;
    }
    
    .text-blue {
        font-size: 1.5rem;
    }
    
    .course-banner-duration-heading {
        font-size: 1.75rem;
    }
    
    .copyright .social {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Tablet company logos */
    .client-logo .col-md-2 {
        padding: 0.75rem;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .client-logo-img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .client-logo-img img {
        max-height: 65px;
        max-width: 65px;
    }

    .client-logo h3 {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    /* Force no horizontal overflow */
    * {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    html,
    body {
        width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .course-banner-heading {
        font-size: 1.75rem;
    }
    
    .text-blue {
        font-size: 1.25rem;
    }
    
    .course-banner-duration-heading {
        font-size: 1.5rem;
    }
    
    .py-standard {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .floating_btn,
    .call-action,
    .scroll-top {
        right: 15px;
    }
    
    .call-action {
        left: 15px;
    }
    
    .floating_btn a,
    .call-action,
    .scroll-top {
        width: 50px;
        height: 50px;
    }

    /* Ensure all containers are 100% width */
    .container,
    .container-fluid,
    section,
    .row,
    .col-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-12 {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Smaller company logos on mobile */
    .client-logo .col-md-2 {
        padding: 0.5rem;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .client-logo-img {
        padding: 0.5rem;
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .client-logo-img img {
        max-height: 50px;
        max-width: 50px;
    }

    .client-logo h3 {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    /* Fix specific sections */
    .new-english-container,
    .why-choose-us-container,
    .google-reviews-custom-container,
    .placement-header,
    .quick-enquiry-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Our Courses Section */
.our-courses-section {
    background: #f8fafc;
}

.our-courses-header {
    background: #0f172a;
    color: white;
}

.our-courses-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
}

.our-course-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.our-course-card img {
    width: 100%;
    height: auto;
    display: block;
}

.our-course-content {
    padding: 1rem;
    background: #0f172a;
}

.our-course-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.our-course-content a {
    text-decoration: none;
    display: block;
}

.our-course-content a:hover .our-course-title {
    text-decoration: none;
}

.our-courses-section .container {
    position: relative;
}

.our-courses-section .owl-nav {
    position: absolute;
    top: -60px;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.our-courses-section .owl-nav button {
    width: 40px;
    height: 40px;
    border: 2px solid #0f172a;
    border-radius: 8px;
    background: white;
    color: #0f172a;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.our-courses-section .owl-nav button:hover {
    background: #0f172a;
    color: white;
}

.our-courses-section .owl-dots {
    display: none;
}

/* Quick Enquiry Section */
.quick-enquiry-section {
    background: #f8fafc;
}

.quick-enquiry-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.quick-enquiry-card {
    background: white;
    border: 2px solid #0f172a;
    border-radius: 16px;
    padding: 2rem;
}

.quick-enquiry-heading {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-enquiry-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.quick-enquiry-input:focus {
    border-color: #0f172a;
}

.quick-enquiry-submit {
    background: #0f172a;
    color: white;
    border: none;
    padding: 0.75rem 3rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quick-enquiry-submit:hover {
    background: #1e293b;
}

/* Placement Section */
.placement-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 0;
}

.placement-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
}

.placement-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.placement-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #fbbf24;
}

.client-logo {
    padding-top: 1rem;
}

.client-logo .col-md-2 {
    padding: 1rem;
}

.client-logo-img {
    background: white;
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
}

.client-logo-img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #0f172a;
}

.client-logo-img img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.client-logo-img img[src*="34.png"],
.client-logo-img img[src*="37.jpg"] {
    object-fit: cover;
    border-radius: 50%;
}

.client-logo h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.75rem;
    text-align: center;
}

/* Hero Section Responsive - END OF FILE */
.hero-desktop {
    display: block !important;
}

.hero-mobile {
    display: none !important;
}

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

    .hero-mobile {
        display: block !important;
    }
}

/* Responsive YouTube Iframes */
iframe {
    max-width: 100%;
}

/* Fix all images for mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
