body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* Transparent Header with Background */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 12px 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: #FFC107; */
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}
/* .header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.5) 2px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.3;
} */
/* Logo Styling */
/* Header Base */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header.scrolled {
    background: #ffffff !important;
    transition: background 0.3s ease;
}
/* === LOGO SECTION === */
.logo-section {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.main-logo {
    max-height: 60px;
    transition: all 0.3s ease-in-out;
}
.mother-logo {
    max-height: 61px;
    opacity: 0.9;
    transition: all 0.3s ease-in-out;
}
.main-logo:hover,
.mother-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}
/* === ACCREDITATION SECTION === */
.accreditation-section {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    scroll-behavior: smooth;
    background: #ffffff;
    border-radius: 5px;
    padding: 12px 15px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}
.accreditation-logos {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}
.accreditation-logo {
    max-height: 50px;
    transition: transform 0.3s ease;
}
.accreditation-logo:hover {
    transform: scale(1.1);
}
/* === RESPONSIVE === */
@media (max-width: 992px) {
    .header {
        padding: 10px 20px;
    }
    .logo-section {
        margin-right: 10px;
        text-align: center;
        margin-bottom: 0;
        border: none;
    }
    .logo {
        justify-content: center;
    }
    .main-logo,
    .mother-logo {
        max-height: 30px;
    }
    .accreditation-logo {
        max-height: 30px;
    }
    .accreditation-section {
        padding: 8px 10px;
    }
}
/* Banner Section with Animated Background */
.banner {
    position: relative;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Ensures no overflow issues */
    padding-bottom:110px;
}
/* Background Image with Ken Burns Effect */
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/jisu-bg.png') no-repeat center center;
    background-size: cover; /* ensures the full image is visible */
    z-index: -1;
}
/* Overlay Effect with Smooth Transition */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Darker overlay for better visibility */
    animation: fadeOverlay 3s ease-in-out;
}
/* Ken Burns Zoom Animation */
@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* Slight zoom for cinematic effect */
    }
}
/* Fade-in Overlay Animation */
@keyframes fadeOverlay {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Content Animation - Fade in & Slide Up */
.banner .content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out forwards 1s;
}
/* Fade-in Up Effect */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (min-width: 1400px) {
    .banner {
        padding-bottom: 160px;
    }
}
@media (min-width: 1500px) {
    .banner {
        padding-bottom: 180px;
    }
}
@media (min-width: 1600px) {
    .banner {
        padding-bottom: 200px;
    }
}
@media (min-width: 1700px) {
    .banner {
        padding-bottom: 280px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    /* Add your styles here */
    .banner {
    background: url('../images/jisu-bg.png') no-repeat left center;
    background-size: cover; /* ensures the full image is visible */
    padding-bottom:80px;
    }
    .lead-form{
        margin-left: 10px !important;
    }
}
/* Dark-themed Content Box */
.content-box {
    position: relative;
    color: white;
    padding: 35px;
    border-radius: 12px;
    max-width: 600px;
    /* background: #1959a9;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15); */
    transition: all 0.3s ease-in-out;
}
/* Interactive Hover Effect */
.content-box:hover {
    transform: translateY(-5px); /* Smooth lift effect */
}
/* Heading Styling */
.content h1 {
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #ffcc00; /* Engaging contrast */
}
.content h1 span{
    font-size: 30px;
    font-weight: bold;
}
/* Paragraph Styling */
.content p {
    text-align: left;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.95;
    color: #ffffff;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .content-box {
        max-width: 100%;
        padding: 30px;
        text-align: center;
    }
    .content h1 {
        text-align: center;
        font-size: 34px;
    }
    .content p {
        text-align: center;
        font-size: 18px;
    }
}
/* Mobile-specific styling */
@media (max-width: 768px) {
    .header{
        background: #ffffff !important;
    }
    /* Hide the dark overlay in mobile */
    /* Adjust content box to have the background image */
    .content-box {
        display: block !important;
        background: url('../images/jisu-bg-mobile.png') no-repeat center center / cover;
        width: 100vw; /* full viewport width */
        height: 200px;
        color: #fff;
        border-radius: 10px;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: none;
    }
    /* Optional: add darker overlay within content-box for readability */
    .content-box::before {
        content: '';
        position: absolute;
        inset: 0;
        /* background: rgba(0, 0, 0, 0.6); */
        z-index: 0;
        border-radius: 10px;
    }
    .content-box > * {
        position: relative;
        z-index: 1;
    }
}
@media (max-width: 768px) {
    .banner::before {
        background: rgba(0, 0, 0, 0.75) !important; /* darker overlay for better contrast */
    }
}
/* Lead Form with Stylish Background */
/* Lead Form - Compact & Enhanced */
.lead-form {
    margin-left: 80px;
    position: relative;
    background: #ffffff; /* Subtle Contrast */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
    max-width: 380px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
/* Scholarship Box Styling */
.scholarship-box {
    background: linear-gradient(135deg, #4466a6 10%, #ffc107 90%);
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-in-out;
}
/* Subtle Glow on Hover */
.scholarship-box:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(2, 166, 87, 0.3);
}
/* Scholarship Text Styling */
.scholarship-box p {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
/* Animation Effect */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .scholarship-box {
        font-size: 16px;
        padding: 12px 15px;
    }
}
/* Form Heading */
.lead-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4466a6; /* Matching Logo Color */
    text-align: center;
    letter-spacing: 0.5px;
}
/* Form Fields - Compact & Refined */
.form-control {
    border-radius: 8px;
    margin-bottom: 12px;
    height: 45px;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
    padding: 10px 14px;
    font-size: 15px;
    color: #333;
    background: rgba(255, 255, 255, 0.8); /* Slight Transparency */
}
/* Field Focus Effect */
.form-control:focus {
    border-color: #4466a6;
    box-shadow: 0px 0px 8px rgba(19, 27, 62, 0.3);
    transform: scale(1.02);
    background: white;
}
/* Placeholder Styling */
.form-control::placeholder {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
/* Change placeholder color on focus */
.form-control:focus::placeholder {
    color: transparent;
}
/* reCAPTCHA Field */
.recaptcha-container {
    text-align: center;
    margin-bottom: 15px;
}
/* Primary Button Styling */
.btn-primary {
    margin-top: 10px;
    background: #4466a6;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    color: white;
}
/* Fade-in Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Apply Animation */
.lead-form {
    animation: fadeIn 0.8s ease-in-out;
}
.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
}
/* Responsive Design */
@media (max-width: 768px) {
    .lead-form {
        margin: auto;
        max-width: 100%;
        padding: 20px;
    }
}
/* Fade-in Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Apply Animation */
.content-box, .lead-form {
    animation: fadeIn 1s ease-in-out;
}
/* Responsive Design */
@media (max-width: 992px) {
    .banner {
        height: auto;
        padding: 100px 0;
        text-align: center;
        flex-direction: column;
    }
    .content-box {
        max-width: 100%;
        padding: 30px;
        text-align: center;
        margin-bottom: 20px;
    }
}
.admission-heading-wrapper {
    position: relative;
    background: linear-gradient(135deg, #004085, #02a657);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    padding: 30px 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.admission-heading {
    text-align: left;
    padding-left: 10px;
}
    .admission-heading-wrapper {
        position: relative;
        background: linear-gradient(95deg, #004085, #f8c400);
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
        padding: 10px 20px;
        margin-bottom: 40px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    .admission-heading {
        text-align: left;
    }
    .admission-heading h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 27px;
        font-weight: 600;
        color: #fff;
        margin: 0;
        text-transform: uppercase;
        position: relative;
    }
    @media (max-width: 768px) {
        .admission-heading h2 {
        font-size: 17px !important;
        }
    }
/* About Section */
.about-section {
    position: relative;
    padding: 100px 20px;
    background: #f9f9f9; /* Light background */
    color: #333;
    overflow: hidden;
    z-index: 1;
}
/* Text & Image Containers */
.text-content,
.image-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #1f2c6b;
    animation: fadeInDown 1s ease-in-out;
}
/* Tagline */
.section-tagline {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #02a657;
    font-style: italic;
    animation: fadeInUp 1s ease-in-out;
}
/* Main Text */
.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInLeft 1s ease-in-out;
}
/* Highlighted Items */
.about-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    animation: fadeInUp 1s ease-in-out;
    margin-bottom: 25px;
}
.highlight-text {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    background: #f1f1f1;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.highlight-text::before {
    content: "✔";
    margin-right: 10px;
    font-size: 20px;
    color: #28a745;
}
.highlight-text:hover {
    transform: scale(1.05);
    background: #e0f8f1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* CTA */
.about-cta {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    color: #555;
    animation: fadeInUp 1.2s ease-in-out;
}
/* Image Styling */
.about-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: zoomIn 1.2s ease-in-out;
}
/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    .section-tagline {
        font-size: 18px;
    }
    .about-text {
        font-size: 16px;
    }
    .highlight-text {
        font-size: 15px;
    }
    .about-highlight {
        justify-content: center;
    }
    .text-content,
    .image-content {
        padding: 20px;
        margin-top: 20px;
    }
}
/* Our Courses Section */
/* Our Courses Section */
.courses-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title span {
    color: #131b3e; /* Theme Color */
}
.section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}
/* Search Bar */
.search-bar {
    margin-bottom: 20px;
    text-align: center;
}
.search-bar input {
    width: 60%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    outline: none;
    transition: 0.3s;
}
.search-bar input:focus {
    border-color: #131b3e;
    box-shadow: 0 0 10px rgba(19, 27, 62, 0.2);
}
/* Scrollable Course Tabs in Responsive View */
.course-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none; /* Hides scrollbar in Firefox */
}
/* Hide Scrollbar for Webkit Browsers */
.course-tabs::-webkit-scrollbar {
    display: none;
}
/* Tabs Styling */
.course-tabs .tab {
    padding: 12px 20px;
    background: linear-gradient(135deg, #dde1e7, #ffffff);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto; /* Ensures tabs don't shrink */
}
/* Active & Hover Effects */
.course-tabs .tab:hover,
.course-tabs .tab.active {
    background: linear-gradient(135deg, #131b3e, #27356e);
    color: white;
    border: none;
    box-shadow: 0px 6px 15px rgba(19, 27, 62, 0.3);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .course-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        justify-content: flex-start; /* Aligns tabs to the left for better scrolling */
    }
    .course-tabs .tab {
        padding: 10px 15px;
        font-size: 14px;
    }
}
/* Course List */
.course-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.course-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border-left: 5px solid #131b3e; /* Left border for subtle accent */
}
/* Smooth Hover Effect */
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Icon (Optional) */
.course-card .icon {
    font-size: 40px;
    color: #131b3e;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}
/* Course Title */
.course-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #131b3e;
    margin-bottom: 5px;
    transition: color 0.3s;
}
/* Course Description */
.course-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
/* Interactive Hover Effects */
.course-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: #131b3e; /* Text changes to white for contrast */
    background-color: #141b3b;
}
/* Full Background Change with Radial Gradient */
/* Change Text & Icon Color on Hover */
.course-card:hover h3,
.course-card:hover .icon {
    color: #f8c400; /* Yellowish tone for better readability */
}
.course-card:hover p{
    color: #ffffff;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .course-card {
        padding: 15px;
    }
    .course-card h3 {
        font-size: 16px;
    }
    .course-card p {
        font-size: 13px;
    }
}
/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #2b3e60);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
/* Section Title */
.achievements-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.achievements-section .section-title span {
    color: #FFD700; /* Gold Highlight */
}
.achievements-section .section-subtitle {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}
/* Wrapper for Horizontal Scroll */
.achievements-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
/* Scrolling Achievements */
.achievements-slider {
    display: flex;
    width: max-content;
    animation: scrollAnimation 25s linear infinite;
}
/* Achievement Card */
.achievement-card {
    background: #fff;
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    min-width: 300px;
    max-width: 320px;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.achievement-card:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}
.achievement-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.achievement-img img {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}
.achievement-card:hover .achievement-img img {
    transform: scale(1.1);
}
/* Content Inside Card */
.achievement-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFD700; /* Gold */
}
.achievement-content p {
    font-size: 15px;
    color: #000;
    opacity: 0.9;
    line-height: 1.5;
}
/* Infinite Scroll Animation */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 20px;
    }
    .achievement-card {
        min-width: 250px;
    }
}
/* Placement Section */
.placement-section {
    background: linear-gradient(135deg, #eef2ff, #c7d2fe); /* Soft Purple-Blue Gradient */
    padding: 60px 0;
    text-align: center;
    color: #222;
    position: relative;
    overflow: hidden;
}
/* Light Glass Overlay */
/* .placement-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1;
} */
/* Section Title */
.placement-section .section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #131b3e;
}
/* Subtitle */
.placement-section .section-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.85;
    position: relative;
    z-index: 2;
    font-weight: 500;
}
/* Placement Stats Grid */
.placement-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}
/* Stat Box with Glass Effect */
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Hover Effect */
.stat:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
/* Progress Circle */
.progress-circle {
    position: relative;
    width: 110px;
    height: 110px;
}
/* SVG Progress Bar */
.progress-svg {
    width: 110px;
    height: 110px;
    transform: rotate(-90deg);
}
/* Background Circle */
.bg-circle {
    fill: none;
    stroke: rgba(0, 0, 0, 0.15);
    stroke-width: 7;
}
/* Animated Progress */
.progress {
    fill: none;
    stroke: #131b3e;
    stroke-width: 7;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease-in-out;
}
/* Counter Number */
.count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: #131b3e;
    transition: color 0.3s ease-in-out;
}
/* Hover Effect on Count */
.stat:hover .count {
    color: #f8c400; /* Golden highlight */
}
/* Stat Text */
.stat p {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    transition: color 0.3s ease-in-out;
}
/* Hover Effect on Text */
.stat:hover p {
    color: #f8c400;
}
/* Responsive */
@media (max-width: 768px) {
    .placement-stats {
        gap: 25px;
    }
    .stat {
        width: 160px;
        padding: 20px;
    }
    .count {
        font-size: 24px;
    }
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 18px;
    }
}
/* Section Styling */
/* ====== Partner Section Styling ====== */
.partner-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
}
.section-title span {
    color: #ff9800;
}
.partner-slider {
    position: relative;
    padding: 10px 0;
}
/* Partner Logos */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}
.partner-slider .swiper-slide img {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}
.swiper-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: #ff9800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #222a68;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ff9800;
    opacity: 0.5;
    transition: 0.3s;
}
.swiper-pagination-bullet-active {
    background: #222a68;
    opacity: 1;
}
/* Footer Styles */
.footer {
    background: #131b3e; /* Dark Blue Background */
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* Footer Item */
.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Footer Icons */
.footer-item i {
    font-size: 18px;
    color: #ffdf00; /* Theme Highlight Color */
}
/* Footer Links */
.footer-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer-item a:hover {
    color: #ffdf00; /* Green Hover Effect */
}
/* Responsive: Stacked on Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}
/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}
/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #131b3e 50%, #f8c400 50%);
    text-align: center;
}
.section-title span {
    color: #ff9800;
}
/* Testimonial Box */
.testimonial-box {
    background: white;
    padding: 40px;
    max-width: 750px;
    margin: auto;
    border-radius: 12px;
    /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
    position: relative;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}
/* Quote Icon */
.testimonial-box::before {
    content: "\f10d"; /* FontAwesome quote icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: rgba(255, 152, 0, 0.2);
}
/* Student Image */
.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff9800;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
}
.testimonial-box:hover .testimonial-img {
    transform: scale(1.1);
}
/* Testimonial Text */
.testimonial-text {
    font-size: 18px;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding: 10px 20px;
}
.testimonial-text::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff9800;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}
/* Name and Role */
.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #222a68;
    margin-top: 15px;
}
.testimonial-role {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}
/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}
/* Infrastructure Section */
/* Infrastructure Section */
.infra-section {
    position: relative;
    background: black;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}
.infra-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.infra-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.infra-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
/* Auto Scrolling Slider */
.infra-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.infra-track {
    display: flex;
    gap: 20px;
    min-width: 100%;
}
/* Individual Cards */
.infra-card {
    flex: 0 0 300px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}
.infra-card:hover {
    transform: translateY(-5px);
}
.infra-card img {
    width: 100%;
    border-radius: 10px;
}
.infra-card h3 {
    font-size: 22px;
    margin-top: 15px;
    font-weight: bold;
    color: #ff9800;
}
.infra-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}
/* Modal Enhancements */
/* Modal Enhancements */
.modal-content {
    max-width: 420px;
    border-radius: 12px;
    background: rgba(13, 1, 78, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.modal label{
    text-align: center;
    color:#fff;
    font-weight: 700;
}
.modal-content:hover {
    transform: translateY(-4px);
}
/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #2C3E50 10%, #ff9800 90%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    text-align: center;
    padding: 14px;
    position: relative;
}
.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.btn-close {
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
/* Modal Body */
.modal-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.25);
}
/* Modal Footer */
.modal-footer {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    padding: 12px;
    justify-content: space-between;
}
/* Form Fields */
.form-control {
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(8px);
}
.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.form-control:focus {
    border-color: #243D80;
    box-shadow: 0 0 10px rgba(36, 61, 128, 0.3);
    background: rgba(255, 255, 255, 0.4);
}
/* Style for the CAPTCHA container */
/* Style for Math CAPTCHA */
.math-captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
#mathCaptchaQuestion {
    font-weight: bold;
    font-size: 1.1rem;
    color: #222a68;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #ffdf00;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}
#mathCaptchaResult {
    margin: 1px;
    flex: 1;
    padding: 10px;
    border: 2px solid #ffdf00;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}
#mathCaptchaResult:focus {
    outline: none;
    border-color: #004085;
    box-shadow: 0 0 8px rgba(0, 64, 133, 0.5);
}
/* Facts Section */
.facts {
    background: linear-gradient(135deg, #f5f0eb, #e6ddd3);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
/* Subtle Background Pattern */
.facts::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 200%;
    height: 150%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.15;
    z-index: 0;
}
.fact-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.fact-left {
    max-width: 310px;
    flex: 1;
}
.fact-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #222a68;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.fact-left span {
    color: #03017a;
}
.fact-left p {
    font-size: 20px;
    color: #444;
    line-height: 1.7;
}
/* Right Grid */
.fact-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    flex: 1;
}
/* Individual Fact Card */
.fact {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}
/* Hover Effects */
.fact:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
}
/* Icon Styling */
.fact-icon {
    margin-right: 18px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}
/* Icon Hover Effect */
.fact:hover .fact-icon {
    transform: scale(1.15) rotate(5deg);
}
/* Unique Colors for Icons */
.fact:nth-child(1) .fact-icon {
    background: #222a68;
}
.fact:nth-child(2) .fact-icon {
    background: #ffbf00;
}
.fact:nth-child(3) .fact-icon {
    background: #e74c3c;
}
.fact:nth-child(4) .fact-icon {
    background: #f39c12;
}
/* Text Inside Fact */
.fact h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222a68;
    margin: 0;
    transition: color 0.3s ease;
}
.fact:hover h3 {
    color: #ffbf00;
}
.fact p {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin: 6px 0 0;
    transition: color 0.3s ease;
}
.fact:hover p {
    color: #333;
}
/* Responsive Design */
@media (max-width: 992px) {
    .fact-div {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .fact-left, .fact-right {
        width: 100%;
    }
    .fact-right {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .fact {
        /* justify-content: center; */
        text-align: left;
    }
    .fact-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    .fact h3 {
        font-size: 22px;
    }
    .fact p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .fact-left h2 {
        font-size: 30px;
    }
    .fact-left p {
        font-size: 16px;
    }
}
/* Placement Section */
/* Placement Section */
.placement {
    background-color: #fcfaee;
    padding: 60px 0;
}
/* Background Container */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  display: none !important;
}
/* Swiper Container */
.swiper.mySwiper {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
/* Logo Box */
.company-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.3s ease;
}
.company-box:hover {
    transform: scale(1.05);
}
/* Image Styling */
.logo-company img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* filter: grayscale(100%); */
}
.logo-company img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #004085;
    transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #02a657;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    transition: background 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: #004085;
}
.placement-company .heading {
    margin-bottom: 30px;
}
.placement-company .heading h3 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    color: #222a68;
}
.placement-company .heading p {
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    color: #555;
}
/* Placement Background */
.placement {
    background-color: #f8f9fa;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
/* Placement Container */
.placement-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(132deg, #1959a9 90%, #FFC107 10%);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* Left Content Section */
.placement-content {
    flex: 1;
    color: #fff;
    text-align: left;
    padding-right: 40px;
    max-width: 55%;
    z-index: 2;
}
.placement-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}
.placement-content h2 span {
    color: #ffd700; /* Gold Accent */
}
.placement-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
/* Placement Amount */
.placement-amount {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.placement-amount .amount {
    color: #ffd700;
    font-size: 64px;
    font-weight: 800;
}
.placement-amount .crore {
    color: #ffd700;
    font-size: 32px;
    font-weight: 700;
}
.placement-amount .country {
    background-color: #c3cfe2;
    color: #fff;
}
/* Right Image Section */
.placement-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 45%;
    position: relative;
}
.placement-image img {
    width: 310px;
    height: 310px;
    border-radius: 50%; /* Circular Shape */
    border: 5px solid #FFD700; /* Yellow Border */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4); /* Enhanced Shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.placement-image img:hover {
    transform: scale(1.1); /* Slightly Bigger on Hover */
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.5); /* Stronger Shadow on Hover */
}
/* Name Tag */
.name {
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 15%;
    font-weight: 700;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 6px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
/* Hover Effect */
.placement-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.4);
}
/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .placement-bg {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .placement-content {
        max-width: 100%;
        padding: 0;
    }
    .placement-image {
        max-width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    .placement-content h2 {
        font-size: 34px;
    }
    .placement-amount .amount {
        font-size: 54px;
    }
    .placement-amount .crore {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .placement-bg {
        padding: 30px;
    }
    .placement-content h2 {
        font-size: 30px;
    }
    .placement-content p {
        font-size: 16px;
    }
    .placement-amount {
        padding: 10px 15px;
    }
    .placement-amount .amount {
        font-size: 46px;
    }
    .placement-amount .crore {
        font-size: 26px;
    }
    .placement-image img {
        max-width: 220px;
    }
    .name {
        font-size: 20px;
        bottom: 10px;
        left: 5%;
    }
}
@media (max-width: 480px) {
    .placement-bg {
        padding: 20px;
    }
    .placement-content h2 {
        font-size: 24px;
    }
    .placement-content p {
        font-size: 14px;
    }
    .placement-amount {
        gap: 6px;
        padding: 8px 12px;
    }
    .placement-amount .amount {
        font-size: 36px;
    }
    .placement-amount .crore {
        font-size: 20px;
    }
    .placement-amount .country {
        font-size: 14px;
        max-width: 180px;
    }
    .name {
        font-size: 16px;
        bottom: 10px;
        left: 15%;
    }
    .placement-image img {
        max-width: 100%;
    }
}
/* Testimonial Section */
/* Section Styling */
.testi-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}
.testi-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.testi-left {
    width: 30%;
}
.testi-left h3 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
}
.testi-left p {
    font-size: 18px;
    color: #444;
    margin: 10px 0 20px;
}
.btns {
    display: flex;
    gap: 12px;
}
.btns-innr {
    width: 45px;
    height: 45px;
    background: #222a68;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 18px;
    color: white;
}
.btns-innr:hover {
    background: #ffdf00;
}
/* Carousel Section */
.carousel-container {
    width: 70%;
}
.owl-carousel .owl-stage {
    display: flex;
}
/* Ensuring Equal Height for Items */
.owl-carousel .item {
    background: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensures equal height */
}
.owl-carousel ol, ul{
    padding-left: 0.61rem !important;
}
/* Enlarged Image */
.item img {
    width: 100%;
    height: auto; /* Increased height */
    object-fit: cover; /* Maintains aspect ratio */
    border-radius: 10px;
}
/* Equal Height for Content */
.testi-content {
    flex-grow: 1; /* Ensures equal height */
    margin-top: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.testi-content h3 {
    font-size: 14px;
    color: #fcb32d;
    margin-bottom: 8px;
}
.testi-content p {
    font-size: 16px;
    font-weight: bold;
    color: #222a68;
    margin-bottom: auto; /* Pushes elements to maintain equal spacing */
}
.package-box {
    margin-top: 10px;
    background: #eaf7ff;
    padding: 6px 12px;
    border-left: 4px solid #2196f3;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #0d47a1;
    display: inline-block;
    transition: all 0.3s ease;
}
.package-box strong {
    color: #004085;
}
/* Play Button */
.play-icon {
    font-size: 40px;
    color: #d9534f;
    transition: 0.3s;
    cursor: pointer;
}
.play-icon:hover {
    color: #c9302c;
}
/* Modal Styling */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative; /* Ensure close button is positioned relative */
}
/* Perfectly Positioned Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.close-modal:hover {
    color: #d9534f;
    background: #f5f5f5;
}
/* Responsive */
@media (max-width: 768px) {
    .testi-grid {
        flex-direction: column;
        text-align: center;
    }
    .testi-left,
    .carousel-container {
        width: 100%;
    }
    .btns {
        justify-content: center;
    }
    .video-modal-content {
        width: 90%;
    }
    .owl-carousel .item{
        margin-top: 20px;
    }
}
.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-top: 10px;
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #222a68;
    border-radius: 8px;
}
/* Modal Styling */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.testimonial-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
#testimonialText {
    padding: 18px;
    font-size: 18px;
    color: #333;
    font-style: italic;
    line-height: 1.5;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.close-modal:hover {
    color: #d9534f;
    background: #f5f5f5;
}
.custom-btn {
    background-color: #ff9800;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.custom-btn:hover {
    background-color: #e68900;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
