/* Copyright © 2025 ICLT Softech Solutions. All Rights Reserved. Do not copy. */

html,body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


.bg-myblue {
    background-color: #093979;
}

.bg-myyellow {
    background-color: #fbc505;
}

a {

  text-decoration: none;
}

/* Input Fields */
.form-control {
    border: 2px solid #ced4da;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

/* Input Focus Effect */
.form-control:focus {
    border-color: #0056b3 !important;
    box-shadow: 0px 0px 8px rgba(0, 86, 179, 0.3) !important;
    outline: none !important;
}

/* Select Focus - Remove Bootstrap Default */
.form-select {
    border: 2px solid #ced4da;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s ease-in-out;
    appearance: none; /* Remove default dropdown styling */
}

/* Select Focus Effect */
.form-select:focus {
    border-color: #0056b3 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Label Styling */
.form-label {
    font-weight: 600;
    color: #333;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
    border: none !important;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085) !important;
}

/* Optional: Glassmorphism for modal */
.modal-glass {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth and slow modal fade-in */
.modal.fade .modal-dialog {
  transition: transform 0.6s ease-out, opacity 0.6s ease-out !important;
  transform: translateY(-20px);
  opacity: 0;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}



/* ================= Top Header ================= */
.top-header {
    background: #093979; /* Brand Color */
    color: #fff !important;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
}


/* Welcome Text */
.welcome-text {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

/* Social Icons & Links */
.top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
}

.social-icons a:hover {
    color: #fbc505;
    transform: scale(1.1);
}

/* Divider Line */
.divider {
    width: 2px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 15px;
}

/* Links */
.top-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    margin-right: 15px;
}

.top-links a:hover {
    color: #fbc505;
}

/* Login Link */
.login-link i {
    margin-right: 5px;
}

/* Mobile View - Top Header */
@media (max-width: 768px) {
   .top-header {
        padding: 10px 0;
        text-align: center;
    }

    .row.d-flex {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .top-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-icons {
        display: flex;
        gap: 10px;
    }

    .social-icons a {
        font-size: 16px;
        margin-right: 5px;
    }

    .divider {
        display: none;
    }

    .top-links {
        display: flex;
        flex-direction: row; /* Keep elements side by side */
        align-items: center;
        gap: 15px;
    }

    .top-links a {
        margin-right: 0;
        font-size: 14px;
    }
}

/* ================= Navigation Bar ================= */
.navbar-top {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Links */
.navbar-nav .nav-item .nav-link {
    color: #093979;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #fbc505;
}

/* ================= Dropdown Styling ================= */
/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    background: #2c3e50;
    border-radius: 5px;
    border: none;
    padding: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.navbar-nav .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #2980b9;
    color: #fff;
}

/* Dropdown Hover - Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Icon Animation */
.dropdown-icon {
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}

/* ================= Mobile Dropdown Fix ================= */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: absolute !important; /* Fix positioning */
        top: 100% !important;
        left: 0;
        z-index: 1000;
        background: #2c3e50 !important;
        border-radius: 5px;
        border: none;
        width: auto;
        min-width: 200px; /* Ensures proper width */
        visibility: hidden;  /* Hide initially */
        opacity: 0;
        transform: translateY(10px);
        transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    /* When dropdown is active */
    .navbar-nav .dropdown.show .dropdown-menu {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: white !important;
        padding: 10px 15px;
    }

}

/* Enable multi-level dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}



/* ================= Navbar Button ================= */
.nav-button {
    background-color: #fbc505;
    color: #093979;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.nav-button:hover {
    background-color: #093979;
    color: #fff;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* ================= Notification Top ================= */

/* Marquee */
.marquee-parent {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 30px;
}

.marquee-child {
    display: inline-block;
    width: 2000px;
    height: 30px;
    position: absolute;
    animation: marquee 15s linear infinite;
}

.marquee-child:hover {
    animation-play-state: paused;
    cursor: pointer;
}

@keyframes marquee {
    0% { left: 100%; }
    100% { left: -147px; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .notify-back {
        font-size: 14px;
        padding: 5px 10px;
    }

    .marquee-child span {
        font-size: 14px;
    }
}

/* Slider */
.slider-height {
    height: 500px;
}

.slider-area {
  background: #093979 url('../img/carousel1.webp') center center / cover no-repeat;
}
@supports not (background-image: url('image.webp')) {
  .slider-area {
    background-image: url('assets/img/carousel1.jpg');
  }
}

.slider__caption h3 span {
    color: #fbc505; /* Brand yellow highlight */
}

/* Responsive Optimizations */
@media (max-width: 992px) {
    .slider-area {
        min-height: 65vh;
    }

    .slider-area .slider__caption h1 {
        font-size: 30px !important;
    }

    .slider__btn a {
        font-size: 14px;
        padding: 8px 16px;
    }
}

.slider-area {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}

.slider-area .slider__caption h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}


.section-topbuttom{
position:relative;
 
 }

.main_2{
position:absolute;
width:100%;
bottom:-150px;
 }

.spec_btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: 0.3s;
}

/* Hover Effects */
.spec_btn:hover {
    transform: scale(1.05);
}

/* About Us Section */

/* Brand Colors */
.text-myblue {
    color: #093979;
}
.text-myyellow {
    color: #fbc505;
}

/* Image Styling */
.about-img-box {
    position: relative;
    max-width: 100%;
}

.about-img-box img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.about-overlay {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: rgba(9, 57, 121, 0.05);
    border-radius: 15px;
    transform: rotate(-5deg);
}

/* Button Styling */
.btn.bg-myblue {
    transition: all 0.3s ease-in-out;
}

.btn.bg-myblue:hover {
    background: #082d5f;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-us {
        background-position: top;
        padding: 20px 0 60px !important;
    }
    .about-img-box img {
        width: 100%;
    }
}

/* Custom Button */
.custom-btn {
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover {
    transform: scale(1.05);
}

/* Gradient Button */
.gradient-btn {
    background: linear-gradient(45deg, #fbc505, #ff8800);
    border: none;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.gradient-btn:hover {
    background: linear-gradient(45deg, #ff8800, #fbc505);
    transform: scale(1.05);
}


/* Text Alignment */
.text-justify {
    text-align: justify;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .about-us .row {
        flex-direction: column-reverse;
    }
    .gradient-btn {
        width: 100%;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 80px 0;
}

.why-choose-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 57, 121, 0.75);
}

.section-head h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-head p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
}

/* Feature Box */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-box .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #fbc505, #ff7b00);
    border-radius: 50%;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    transition: 0.4s;
}

.feature-box:hover .icon {
    transform: rotate(360deg);
}

.feature-box h6 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-box {
        padding: 20px;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Course Card */
.course-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.course-card:hover {
    transform: scale(1.05);
}

.course-icon {
    font-size: 40px;
    color: #fbc505;
}

.course-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.course-info {
    font-size: 1rem;
    color: #555;
}

/* Card */
.card {
    transition: transform 0.3s ease;
}

.card-title {
    text-align: center;
    color: #000;
}

.card-text {
    text-align: justify;
}


/* Section Background */
.notice-performer-section {
    position: relative;
    overflow: hidden;
}

/* Gradient Overlay */
.notice-performer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #093979;
}

/* Glassmorphism Effect */
.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pills & Active Tabs */
.nav-pills .nav-link {
    font-weight: 600;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    transition: 0.3s;
}
.nav-pills .nav-link.active {
    background: #ffffff !important;
    color: #000 !important;
    font-weight: bold;
}


/* Large Background Icons */
.notice-icon,
.performer-icon {
    position: absolute;
    font-size: 130px;
    color: rgba(255, 255, 255, 0.07);
    top: 20px;
    right: 20px;
    z-index: 0;
}

/* Best Performer */
.performer-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    position: relative;
}
.performer-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .notice-box, .performer-box {
        margin-bottom: 20px;
    }
    .notice-icon, .performer-icon {
        font-size: 100px;
        top: 10px;
        right: 10px;
    }
}
/* Light Gradient Background with Texture Feel */
.become-instructor {
    background: #093979 ;
    position: relative !important;
    overflow: hidden !important;
    padding: 80px 0 !important;
}

/* Elegant Box with Shadow */
.instructor-box {
    background: #ffffff !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    padding: 50px !important;
    text-align: center;
    transition: all 0.4s ease;
}
.instructor-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* SVG Decorative Element */
.become-instructor figure img {
    position: absolute;
    top: 10%;
    right: 5%;
    opacity: 0.08 !important;
    max-width: 160px !important;
    z-index: 0;
}

/* Headline & Paragraph Styling */
.become-instructor h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.become-instructor p {
    font-size: 1.15rem !important;
    color: #555 !important;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

/* Stylish Call-to-Action Button */
.instructor-btn {
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    color: #fff;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    border: none;
    transition: all 0.3s ease;
}
.instructor-btn:hover {
    background: linear-gradient(135deg, #ffb84d, #ff9800);
    transform: scale(1.07);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
}

/* Responsive Tuning */
@media (max-width: 992px) {
    .become-instructor h2 {
        font-size: 2rem !important;
    }
    .become-instructor p {
        font-size: 1rem !important;
    }
    .instructor-box {
        padding: 30px !important;
    }
    .become-instructor figure img {
        max-width: 120px !important;
    }
}

/* Entire Section Background */
.our-student {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background-color: #faf8fc;
    color: #333;
    z-index: 1;
}

/* Optional Pattern Layer */
.our-student::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237d8de0' fill-opacity='0.3' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

/* Section Title and Description */
.key-points {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}
.key-points h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}
.key-points p {
    font-size: 1.1rem;
    color: #6c7a89;
    max-width: 600px;
    margin: 0 auto;
}

/* Marquee Track */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 2;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Student Card Styling */
.student-card {
    flex: 0 0 auto;
    width: 240px;
    margin: 0 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    text-align: center;
}
.student-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Student Image */
.student-img-container {
    margin-bottom: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    padding: 5px;
    display: inline-block;
    background: #fff;
}
.student-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

/* Student Info Text */
.student-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2c3e50;
}
.student-info h6 {
    font-size: 14px;
    color: #6c7a89;
    margin-bottom: 4px;
}
.course {
    color: #f39c12;
    font-weight: 600;
}
.location {
    font-style: italic;
    color: #95a5a6;
}



.counter{
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    width: 210px;
    min-height: 246px;
    padding: 25px 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.counter:after{
    content: '';
    background: linear-gradient(to right, #eff0f2, #fefefe);
    height: 152px;
    width: 152px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: 25px;
    left: 50%;
    z-index: -1;
}


.buttomcounter {
    padding: 60px 0;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2); /* Light Background Gradient */
    color: #333; /* Darker text for contrast */
    text-align: center;
}

.counter-box {
    background: rgba(255, 255, 255, 0.8); /* Softer Glass effect */
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-box {
    font-size: 40px;
    color: #ff9800; /* Softer contrast */
    margin-bottom: 15px;
}

.count-number {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50; /* Stronger contrast */
    transition: transform 0.3s ease-in-out;
}

.counter-box:hover .count-number {
    transform: scale(1.1);
}

.counter-box p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    color: #555;
}


.testimonial-area {
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

 .text-brand {
    color: #0d6efd;
  }

  .testimonial-box-wrapper,
  .faq-wrapper {
    min-height: 100%;
  }

  .testimonial-box-wrapper {
    text-align: center;
  }

  .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    background-color: #f9f9f9;
    color: #212529;
    border-radius: 0.5rem;
  }

  .accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
  }

  .accordion-body {
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
  }

  @media (max-width: 767px) {
    .testimonial-box-wrapper,
    .faq-wrapper {
      min-height: auto;
    }
  }

/* Page Title Section */
.page-title {
    position: relative;
    padding: 20px 0;
    text-align: center;
    color: white;
    background: linear-gradient(to right, #2c3e50, #2980b9);
}

/* Overlay on Breadcrumb */
.page-title::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);  /* Dark Overlay */
    z-index: 1;
}

.page-title h4,
.page-title nav {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
}

.breadcrumb .breadcrumb-item a {
    color: white;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fdee3b;
}



/* About Us Page Section */
.about-us-page {
    padding: 50px 0;
}

.about-us-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
}

/* Mission & Vision Section */
.mission-vision-area {
    background: linear-gradient(to right, #1b2838, #1f4068); /* Deep Brand Colors */
    padding: 60px 0;
    color: white;
}

/* Cards */
.mission-card {
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism Effect */
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Icons */
.mission-icon {
    font-size: 60px;
    color: #fbc505; /* Golden Accent */
    margin-bottom: 15px;
}

/* Card Title */
.text-highlight {
    font-size: 24px;
    font-weight: 600;
    color: #fbc505;
}

/* Text */
.mission-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-head h4 {
        font-size: 28px;
    }
    .text-highlight {
        font-size: 22px;
    }
    .mission-icon {
        font-size: 50px;
    }
}

      /* Icon Box Styling */
.icon-box_aims {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02)); /* Lighter contrast */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    border-left: 5px solid #ff8c00; /* More vibrant left border */
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    color: #333; /* Darker text for contrast */
}

/* Hover Effect */
.icon-box_aims:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    border-left: 5px solid #ff4500;
}

/* Icon Styling */
.icon-box_aims i {
    font-size: 50px;
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}


/* Responsive Typography */
@media (max-width: 768px) {
    .icon-box_aims {
        font-size: 14px;
        padding: 20px;
    }
    .icon-box_aims i {
        font-size: 40px;
    }
}


        /* Section Styling */
        .content-section {
            padding: 20px 0;
        }

        /* Document Cards */
        .doc-card {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02)); /* Lighter contrast */
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease-in-out;
            border-left: 5px solid #ff8c00; /* More vibrant left border */
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            font-size: 16px;
            color: #333; /* Darker text for contrast */
        }

        /* Hover Effect */
        .doc-card:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
            border-left: 5px solid #ff4500;
        }

        /* Icon Styling */
        .doc-card i {
            font-size: 50px;
            background: linear-gradient(45deg, #ff8c00, #ff4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        /* View Button */
        .btn-view {
            text-decoration: none;
            font-size: 16px;
            transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
        }

        .btn-view:hover {
            transform: scale(1.1);
        }


.photo-gallery-img:hover {
  transform: scale(1.7);
}
.photo-gallery-img {
  transition: transform .2s;
}

 /* Style adjustments */
    .contact-form-item {
        background: white;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

/* Apply Franchise */

/* Alert Messages */
.alert {
    font-weight: bold;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .form-control, .form-select {
        padding: 8px;
    }
}

/* WhatsApp Floating Button */
.floating-wpp {
    position: fixed;
    bottom: 80px;
    right: 31px;
    z-index: 9999;
    font-size: 14px;
    transition: bottom 0.3s ease;
}

.floating-wpp .floating-wpp-button {
    position: relative;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@media (max-width: 575px) {
    .floating-wpp {
        right: 16px;
    }
}

/* Scroll Up Button */
#scrollUp,
#back-top {
    background: #0d6efd;
    height: 50px;
    width: 50px;
    right: 31px;
    bottom: 18px;
    position: fixed;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
    box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

#scrollUp:hover,
#back-top:hover {
    background-color: #093979;
}

.scrollup a {
    text-decoration: none;
}

#scrollUp a i,
#back-top a i {
    display: block;
    line-height: 50px;
    font-size: 1.5rem;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 575px) {
  .floating-wpp {
    right: 16px;
  }

  #scrollUp,
  #back-top {
    right: 16px;
  }
}


/* Footer Top Section */
.footer-top {
    padding: 80px 0 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-top-item p,
.footer-top-item li,
.footer-top-item a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.footer-top-item {
    padding-top: 10px;
}

.footer-top-item ul {
    list-style: none;
    margin: 0;
    padding-left: 1.2em;
}

.footer-top-item ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.footer-top-item ul li::before {
    content: "+";
    position: absolute;
    left: -1.2em;
    color: #093979;
    font-weight: bold;
}

.footer-top-item a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

.footer-top-item a:hover {
    color: #093979;
}

.buttom-footer {
  background: #093979;
  padding-bottom: 10px;
  padding-top: 10px;
}

.buttom-footer-item {
color: white;
font-size: 17px;

}

.buttom-social a i {
  color: #ffffff;
}

.buttom-footer-item .buttom-social a i:hover {
  color: #fbc505;
}

.buttom-footer .buttom-footer-item a i {
  color: #ffffff;
}

.buttom-footer .buttom-footer-item a {
  color: #fbc505;
  text-decoration: none;
}

.buttom-footer .buttom-footer-item a:hover {
  color: #fff;
}

/* Responsive Alignment */
@media (max-width: 767px),
(min-width: 768px) and (max-width: 991px) {
    .buttom-footer-item,
    .buttom-footer-item .buttom-social {
        text-align: center;
    }
}



.fade-scrollbar::-webkit-scrollbar {

  width: 10px;
  background-color: transparent;

}

.fade-scrollbar::-webkit-scrollbar-thumb {

  background-color: rgba(9, 57, 121, 0.5);
  border-radius: 4px;
  transition: background-color 0.3s ease;

}

.fade-scrollbar::-webkit-scrollbar-thumb:hover {

  background-color: rgba(9, 57, 121, 0.8);

}