 .news-ticker {
     background: #f8f9fa;
     /* Light grey background */
     overflow: hidden;
     position: relative;
     height: 50px;
     /* You can adjust the height */
     display: flex;
     align-items: center;
 }

 .news-ticker-text {
     display: inline-block;
     white-space: nowrap;
     padding-left: 100%;
     animation: ticker 15s linear infinite;
     font-weight: bold;
     font-size: 18px;
     color: #333;
 }

 @keyframes ticker {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 /* Style for the main box */
 .rotate-box {
     border: 1px solid rgb(192, 191, 191);
     border-radius: 20px;
     padding: 1.5rem;
     text-align: center;
     transition: all 0.3s ease-in-out;
     /* display: flex;
            flex-direction: column; */
     align-items: center;
     justify-content: center;
     perspective: 1000px;
     /* 3D Effect */
 }

 /* Image rotation effect */
 .rotate-img {
     width: 100px;
     /* Adjust size */
     height: 100px;
     border-radius: 50%;
     object-fit: cover;
     transform-style: preserve-3d;
     animation: rotateEarth 5s linear infinite;
     box-shadow: inset -15px -15px 20px rgba(0, 0, 0, 0.6),
         inset 10px 10px 20px rgba(255, 255, 255, 0.3);
 }

 /* Light & Shadow for 3D Effect */
 .rotate-img::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.5));
     mix-blend-mode: multiply;
 }

 /* Continuous Rotation */
 @keyframes rotateEarth {
     from {
         transform: rotateY(0deg);
     }

     to {
         transform: rotateY(360deg);
     }
 }


 /* Add spacing between slick items */
 .slick-item {
     padding: 0 10px;
     /* Adjust horizontal spacing between slides */
 }

 /* Adjust negative margins for the slick list to maintain alignment */
 .slick-list {
     margin-left: -10px;
     margin-right: -10px;
 }

 @media only screen and (max-width: 991px) {
     .navbar-area.navigation-style-02 .custom-container .logo-wrapper {
         max-width: 200px;
     }
 }

 /* Bottom border on hover */
 .navbar-nav li a:hover {
     border-bottom: 2px solid #007bff;
     /* Adjust the color to your preference */
 }

 /* Active state with bottom border */
 .navbar-nav li.active a {
     border-bottom: 2px solid #007bff;
     /* Active state color */
 }

 /* For better visibility on desktop screens */
 @media (min-width: 768px) {
     .navbar-nav li {
         display: inline-block;
         /* margin-right: 30px; */
         /* Adjust space between menu items */
     }
 }

 /* Button Container Styling */
 .contact-buttons {
     position: fixed;
     right: 31px;
     bottom: 100px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     z-index: 99999;
 }

 /* Button Styling */
 .contact-buttons a {
     display: flex;
     align-items: center;
     text-decoration: none;
     font-size: 18px;
     font-weight: bold;
     border-radius: 50px;
     /* Circular shape */
     padding: 10px;
     color: white;
     width: 50px;
     /* Initially small */
     height: 50px;
     overflow: hidden;
     white-space: nowrap;
     transition: all 0.4s ease-in-out;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     justify-content: center;
     position: relative;
 }

 /* WhatsApp Button */
 .whatsapp-btn {
     background-color: #25D366;
 }

 .whatsapp-btn:hover {
     background-color: #1ebe5d;
 }

 /* Call Button */
 .call-btn {
     background-color: #0d6efd;
 }

 .call-btn:hover {
     background-color: #0b5ed7;
 }

 /* Icon Styling - Always Visible */
 .contact-buttons i {
     font-size: 24px;
     /* Ensure icons are large enough */
     width: 40px;
     /* Fixed width */
     text-align: center;
     position: absolute;
     /*left: px;*/
     transition: margin-right 0.4s ease-in-out;
 }

 /* Hover Effect: Expand Width */
 .contact-buttons a {
     width: 50px;
     /* Small by default */
     justify-content: center;
 }

 .contact-buttons a:hover {
     width: 180px;
     /* Expand on hover */
     padding: 10px 20px;
     justify-content: start;
 }

 /* Initially Hide Text */
 .contact-buttons a span {
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.4s ease-in-out, visibility 0.4s;
     margin-left: 50px;
     /* Push text outside the button */
 }

 /* Show Text on Hover */
 .contact-buttons a:hover span {
     opacity: 1;
     visibility: visible;
     margin-left: 35px;
 }

 /* Gradient Colors */
 :root {
     --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3);
 }

 /* Main Card Styling */
 .service-card {
     border-radius: 10px;
     transition: all 0.4s ease-in-out;
     padding: 20px;
     text-align: center;
     background: #fff;
     box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
     cursor: pointer;
     position: relative;
     overflow: hidden;
     color: #000;
     transform: translateY(30px);
     opacity: 0;
     animation: slideIn 0.6s forwards ease-in-out;
 }

 /* Slide-in Animation */
 @keyframes slideIn {
     0% {
         transform: translateY(30px);
         opacity: 0;
     }

     100% {
         transform: translateY(0);
         opacity: 1;
     }
 }

 /* Hover Effects */
 .service-card:hover {
     background: var(--primary-gradient);
     color: #fff;
     transform: rotate(2deg) scale(1.05);
     box-shadow: 0px 10px 25px rgba(110, 142, 251, 0.5);
 }

 /* Ripple Effect in Gradient Color */
 .service-card::before {
     content: "";
     position: absolute;
     width: 150px;
     height: 150px;
     background: var(--primary-gradient);
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0);
     border-radius: 50%;
     transition: all 0.6s ease-in-out;
     opacity: 0;
     z-index: 0;
 }

 .service-card:hover::before {
     transform: translate(-50%, -50%) scale(4);
     opacity: 0.3;
 }

 /* Floating Icon Animation */
 .service-card img {
     width: 77px;
     height: 100%;
     margin-bottom: 15px;
     animation: float 3s infinite ease-in-out;
     position: relative;
     z-index: 1;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 /* Text Styling */
 .service-card h5 {
     font-weight: bold;
     color: inherit;
     position: relative;
     z-index: 1;
     font-size: 15px;
 }

 .service-card p {
     color: black;
     /* Default text color */
     transition: color 0.3s ease-in-out;
     /* Smooth transition */
 }

 .service-card:hover p {
     color: white;
     /* Text color on hover */
 }


 /* Contact Container with Background */
 .contact-container {
     /* max-width: 900px;
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
            color: #fff;
            display: flex;
            flex-wrap: wrap;
            margin: 50px auto; */


     /* max-width: 900px; */
     background: linear-gradient(135deg, #003b49, #3a7d92);
     /* APSA colors */
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
     color: #fff;
     display: flex;
     flex-wrap: wrap;
     margin: 50px auto;

 }

 /* Left Section - Contact Info */
 .contact-info {
     flex: 1;
     background: rgba(255, 255, 255, 0.2);
     padding: 25px;
     border-radius: 15px;
     text-align: left;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
 }

 /* Contact Info Title */
 .contact-info h2 {
     font-weight: bold;
     font-size: 22px;
     margin-bottom: 15px;
     color: #ffffff;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Contact Details */
 .contact-item {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
 }

 /* Flip Cards */
 .location-card {
     width: 100%;
     height: 60px;
     perspective: 1000px;
     margin-bottom: 15px;
     cursor: pointer;
 }

 .card-inner {
     width: 100%;
     height: 100%;
     transition: transform 0.6s;
     transform-style: preserve-3d;
     position: relative;
 }

 .location-card:hover .card-inner,
 .location-card.active .card-inner {
     transform: rotateY(180deg);
 }

 .location-card {
     perspective: 1000px;
 }

 .card-inner {
     width: 100%;
     height: 100%;
     transition: transform 0.6s;
     transform-style: preserve-3d;
     position: relative;
 }

 .location-card:hover .card-inner {
     transform: rotateY(180deg);
 }

 .card-front,
 .card-back {
     width: 100%;
     height: 100%;
     position: absolute;
     backface-visibility: hidden;
 }

 .card-back {
     transform: rotateY(180deg);
 }


 .card-front,
 .card-back {
     width: 100%;
     height: 100%;
     position: absolute;
     backface-visibility: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
     font-weight: bold;
     font-size: 16px;
     padding: 10px;
     text-align: center;
 }

 .card-front {
     background-color: rgba(255, 255, 255, 0.3);
     color: white;
 }

 .card-back {
     transform: rotateY(180deg);
     background-color: white;
     color: #333;
     border: 2px solid #007bff;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 15px;
     /* Increased padding for better spacing */
     border-radius: 10px;
     min-height: 90px;
     /* Ensures proper height */
 }

 .visit-btn {
     background-color: #007bff;
     color: white;
     padding: 6px 12px;
     margin-top: 8px;
     /* Added margin to prevent overlap */
     border-radius: 5px;
     font-size: 14px;
     text-decoration: none;
     display: inline-block;
 }

 .visit-btn:hover {
     background-color: #0056b3;
 }

 /* Icons - Improved Visibility */
 .contact-item i {
     font-size: 18px;
     background: rgba(255, 255, 255, 0.7);
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     margin-right: 12px;
     color: #6e8efb;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
 }

 /* Contact Text */
 .contact-item p {
     margin: 0;
     font-size: 16px;
     font-weight: 500;
     color: #ffffff;
 }

 /* Social Icons */
 .social-icons {
     display: flex;
     justify-content: start;
     margin-top: 15px;
 }

 .social-icons a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: #6e8efb;
     transition: 0.3s ease-in-out;
     font-size: 18px;
     margin-right: 10px;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
 }

 /* Social Icons Hover */
 .social-icons a:hover {
     background: #fff;
     color: #6e8efb;
     transform: scale(1.1);
 }

 /* Right Section - Contact Form */
 .contact-form {
     flex: 2;
     padding: 30px;
 }

 /* Form Title */
 .contact-form h2 {
     text-align: center;
     font-size: 22px;
     font-weight: bold;
     margin-bottom: 20px;
     color: #fff;
 }

 /* Form Group */
 .form-group {
     position: relative;
     margin-bottom: 15px;
 }

 /* Input Fields */
 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 14px;
     border: 1px solid rgba(0, 0, 0, 0.4);
     background: rgba(255, 255, 255, 0.3);
     border-radius: 8px;
     font-size: 15px;
     color: #fff;
     outline: none;
     transition: 0.3s ease-in-out;
     box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
 }

 /* Placeholder Styling */
 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: rgba(255, 253, 253, 0.8);
 }

 /* Input Field Hover & Focus */
 .form-group input:focus,
 .form-group textarea:focus {
     background: rgba(255, 255, 255, 0.5);
     transform: scale(1.02);
     border-color: #000000;
     box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3);
 }

 /* Submit Button */
 .submit-btn {
     width: 100%;
     background: linear-gradient(135deg, #ff758c, #ff7eb3);
     color: #fff;
     padding: 14px;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
     transition: 0.3s ease-in-out;
     box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
 }

 /* Submit Button Hover */
 .submit-btn:hover {
     transform: scale(1.05);
     box-shadow: 0px 6px 12px rgba(255, 255, 255, 0.5);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .contact-container {
         flex-direction: column;
     }

     .contact-info {
         text-align: center;
     }

     .social-icons {
         justify-content: center;
     }
 }


 /* Video Carousel Container */
 .video-carousel {
     max-width: 900px;
     margin: auto;
     padding: 50px 0;
 }

 /* Default Video Slide */
 .video-slide {
     width: 220px !important;
     /* Fixed width for desktop */
     transform: scale(0.7);
     transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
     opacity: 0.5;
     position: relative;
 }

 /* Centered Slide Effect */
 .slick-center {
     transform: scale(1);
     opacity: 1;
     z-index: 2;
 }

 /* Video Container */
 .video-container {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
     cursor: pointer;
     width: 100%;
     height: 250px;
     /* Reduced height for better visibility */
 }

 /* Hidden Video iFrame */
 .video-iframe {
     width: 100%;
     height: 100%;
     border-radius: 10px;
     display: none;
 }

 /* Video Cover Image */
 .video-cover {
     width: 100%;
     height: 100%;
     border-radius: 10px;
     object-fit: cover;
 }

 /* Play Button */
 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(0, 0, 0, 0.6);
     color: white;
     font-size: 20px;
     padding: 15px;
     border-radius: 50%;
     cursor: pointer;
     transition: 0.3s;
 }

 /* Hover Effect */
 .play-button:hover {
     background: rgba(0, 0, 0, 0.8);
 }

 /* Slick Slider Customization */
 .slick-list {
     overflow: hidden;
 }

 .slick-track {
     display: flex;
     align-items: center;
 }

 /* Slide Positioning */
 .slick-slide {
     width: 100% !important;
     /* Fixed for desktop */
     transform: scale(0.7);
     transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
 }

 /* Active Slide */
 .slick-active {
     transform: scale(0.85);
 }

 /* Ensure Center Slide is Fully Visible */
 .slick-center {
     transform: scale(1);
     opacity: 1;
 }

 /* 📌 Responsive Fixes for Mobile */
 @media (max-width: 768px) {
     .video-carousel {
         max-width: 100%;
         padding: 20px 0;
     }

     .slick-list {
         padding: 0 10px;
     }

     .video-slide {
         width: 100% !important;
         /* Full width for better view */
         transform: scale(1);
         opacity: 1;
     }

     .video-container {
         height: 180px;
         /* Smaller height for mobile */
     }

     .video-cover,
     .video-iframe {
         height: 180px;
     }

     .play-button {
         font-size: 16px;
         padding: 10px;
     }

     .slick-slide {
         width: 90% !important;
         transform: scale(1);
         opacity: 1;
     }

     .slick-center {
         transform: scale(1.1);
     }
 }

 /* Modal Header & Button Styling */
 .modal-header,
 .modal-footer .btn-primary {
     background-color: #134f5e;
     color: white;
 }

 /* Floating Label Fix */
 .form-group {
     position: relative;
     margin-bottom: 1.5rem;
 }

 .floating-label {
     position: absolute;
     top: 50%;
     left: 12px;
     transform: translateY(-50%);
     color: #aaa;
     font-size: 14px;
     transition: 0.3s ease-in-out;
     pointer-events: none;
     background: white;
     padding: 0 5px;
 }

 /* Move Label Above on Focus */
 .form-control:focus~.floating-label,
 .form-control:not(:placeholder-shown)~.floating-label {
     top: -10px;
     left: 10px;
     font-size: 12px;
     color: #134f5e;
 }

 /* Hide Placeholder When Focused */
 .form-control::placeholder {
     color: transparent;
 }

 /* Required Field Star */
 .required {
     color: red;
     font-weight: bold;
 }

 .studentslidcslider {
     padding: 20px 10px;
     /* Padding added */
 }

 .student-card {
     text-align: center;
     background: #fff;
     border-radius: 15px;
     padding: 20px;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     margin: 10px;
     /* Added margin */
 }

 .student-image-container {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     margin-bottom: 15px;
 }

 .student-image {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #007bff;
 }

 .student-name {
     font-size: 1.4rem;
     font-weight: bold;
     color: #333;
 }

 .student-details {
     font-size: 1rem;
     color: #666;
 }

 /* counselling card */
 .counsellingcard {
     position: relative;
     width: 320px;
     height: 418px !important;
     /* Fixed height */
     border-radius: 20px;
     overflow: hidden;
     background: #111;
     color: #fff;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     transition: transform 0.3s ease-in-out;
 }

 .counsellingcard:hover {
     transform: scale(1.05);
 }

 .counsellingcard::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(255 255 255 / 0%));
     z-index: 1;
 }

 .counsellingcard img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     position: absolute;
     top: 0;
     left: 0;
     transition: transform 0.3s ease-in-out;
 }

 .counsellingcard:hover img {
     transform: scale(1.1);
 }

 .counsellingcard-content {
     position: absolute;
     bottom: 0px;
     left: 0px;
     right: 0px;
     z-index: 2;
     background: rgba(255, 255, 255, 0.2);
     /* Semi-transparent white */
     padding: 15px;
     border-radius: 10px;
     backdrop-filter: blur(10px);
     /* Glass effect */
 }

 .counsellingcard h2 {
     font-size: 22px;
     margin-bottom: 10px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #fff;
 }

 .counsellingcard p {
     font-size: 14px;
     line-height: 1.5;
     color: #fff;
 }

 @media (max-width: 768px) {
     .counsellingcard {
         width: 280px;
         height: 450px;
     }
 }

 /* Auto popup */
 /* Popup Styling */
 .autopopup {
     display: none;
     position: fixed;
     width: 400px;
     background: white;
     padding: 20px;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
     border-radius: 10px;
     text-align: center;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     z-index: 1000;
 }

 .autopopup-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 999;
 }

 .autopopup-close {
     background: red;
     color: white;
     border: none;
     padding: 10px 20px;
     margin-top: 15px;
     cursor: pointer;
     border-radius: 5px;
 }

 /* Parent container to align items side by side */
 .content-wrapper {
     max-width: 900px !important;
     height: 250px;
     /* Adjust based on your design */
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 40px;
     /* Space between text and image */
     max-width: 1100px;
     padding: 20px;
     background: #ffffff;
     border-radius: 10px;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
 }

 /* Text content */
 .text-box {
     max-width: 500px;
     text-align: left;
     min-height: 80px;
     /* Prevent movement */
 }

 .text-box h2 {
     font-size: 28px;
     font-weight: bold;
     color: #333;
 }

 .typing-container {
     display: inline-block;
     min-width: 120px;
     /* Adjust according to longest word */
     height: 30px;
 }

 .typing-text {
     color: #ff6600;
     font-weight: bold;
     display: inline-block;
     white-space: nowrap;
 }

 /* Call to action button */
 .cta-button {
     display: inline-block;
     background: #ff6600;
     color: white;
     padding: 10px 20px;
     border-radius: 5px;
     text-decoration: none;
     font-weight: bold;
     transition: 0.3s;
     animation: pulse 1.5s infinite;
 }

 .cta-button:hover {
     background: #e65c00;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 /* Image size */
 .image-box {
     flex-shrink: 0;
     /* Prevent image from resizing */
 }

 .image-box img {
     max-width: 300px;
     height: auto;
     display: block;
     z-index: 99999;
     position: absolute;
     top: -50px;
 }

 /* Responsive design */
 @media (max-width: 768px) {
     .content-wrapper {
         flex-direction: column;
         text-align: center;
     }


     .video-slider-mobile video {
         max-height: 300px;
         object-fit: cover;
         margin-bottom: 10px;
     }

     .carousel-inner {
         margin-bottom: 1rem;
     }

     .carousel-indicators [data-bs-target] {
         width: 8px;
         height: 8px;
         border-radius: 50%;
     }



     .video-carousel {
         display: none;
     }

     .text-box {
         max-width: 100%;
     }

     .image-box img {
         /* max-width: 200px;
                position: absolute;
                top: 290px;
                align-items: center;
                display: flex;
                justify-content: center; */
         display: none;
     }
 }

 /* scholoar */
 .scholarship-card {
     background: #fff;
     max-width: 400px;
     border-radius: 15px;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
     /* padding: 20px; */
     text-align: left;
 }

 .card-header {
     background-color: #eef4ff;
     border-radius: 12px;
     padding: 15px;
     display: flex;
     align-items: left;
     justify-content: left;
 }

 .logo {
     max-width: 100px;
 }

 .card-title {
     font-size: 1.2rem;
     font-weight: bold;
     margin-top: 15px;
 }

 .university-name {
     font-weight: bold;
     display: flex;
     align-items: left;
     margin-top: 5px;
 }

 .flag {
     width: 22px;
     height: 15px;
     margin-right: 8px;
     border-radius: 3px;
 }

 .details {
     font-size: 0.9rem;
     color: #555;
     margin-top: 10px;
 }

 .detail-label {
     font-weight: bold;
     color: #333;
     font-size: 0.85rem;
 }

 .detail-value {
     font-size: 1rem;
     color: #444;
 }

 @media (min-width: 768px) {
     .video-slider-mobile {
         display: none;
     }
 }

 /* Hide carousel by default */
 #video-carousel-wrapper {
     display: none;
 }

 /* Show and style carousel only on mobile */
 @media (max-width: 768px) {
     #video-carousel-wrapper {
         display: flex;
         justify-content: center;
         align-items: center;
         padding: 16px;
     }

     #videoCarousel {
         width: 100%;
         max-width: 480px;
         border-radius: 8px;
         overflow: hidden;
     }

     .carousel-video {
         width: 100%;
         height: auto;
         object-fit: cover;
         border-radius: 8px;
     }

     .carousel-indicators button {
         width: 8px;
         height: 8px;
         border-radius: 50%;
     }

     .carousel-control-prev-icon,
     .carousel-control-next-icon {
         background-size: 100% 100%;
     }
 }

 /* scholarship */
 .custom-scholarship-slider .custom-scholarship-card {
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.3s ease;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
     background: #fff;
 }

 .custom-scholarship-slider .custom-scholarship-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
 }

 .custom-scholarship-slider .custom-scholarship-img {
     height: 180px;
     object-fit: cover;
     width: 100%;
 }

 .custom-scholarship-slider .custom-card-body {
     padding: 1.3rem;
 }

 .custom-scholarship-slider .custom-title {
     font-size: 1.25rem;
     font-weight: bold;
 }

 .custom-scholarship-slider .custom-info-list {
     font-size: 0.95rem;
 }

 .custom-scholarship-slider .custom-info-list li {
     margin-bottom: 6px;
 }

 .custom-scholarship-slider .custom-info-list i {
     color: #0d6efd;
     margin-right: 8px;
 }

 .custom-scholarship-slider .custom-badge-top {
     position: absolute;
     top: 15px;
     left: 15px;
     background-color: #f4f4f4;
     font-weight: 600;
     color: #fff;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
 }

 .custom-scholarship-slider .slick-slide {
     padding: 15px;
 }

 .custom-scholarship-slider .slick-prev:before,
 .custom-scholarship-slider .slick-next:before {
     color: #333;
     font-size: 26px;
 }



 .stats-section {
     position: relative;
     overflow: hidden;
     padding: 80px 20px;
 }

 /* Floating shapes */
 .floating-shape {
     position: absolute;
     border-radius: 50%;
     opacity: 0.18;
     animation: float 12s infinite ease-in-out;
     z-index: 1;
 }

 .shape1 {
     width: 160px;
     height: 160px;
     background: #4facfe;
     top: 6%;
     left: 3%;
     animation-delay: 0s;
 }

 .shape2 {
     width: 110px;
     height: 110px;
     background: #00f2fe;
     bottom: 8%;
     right: 8%;
     animation-delay: 2s;
 }

 .shape3 {
     width: 140px;
     height: 140px;
     background: #43e97b;
     top: 48%;
     left: 68%;
     animation-delay: 4s;
 }

  

 .stats-container {
     position: relative;
     z-index: 2;
     max-width: 1100px;
     margin: auto;
 }

 .section-heading {
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 20px;
     background: linear-gradient(45deg, #4facfe, #00f2fe);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .section-text {
     font-size: 1.05rem;
     color: #404d63;
     margin-bottom: 30px;
     line-height: 1.6;
 }

 .counter-box {
     background: #fff;
     border-radius: 15px;
     padding: 28px;
     text-align: center;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
     transition: transform .28s ease, box-shadow .28s ease;
 }

 .counter-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
 }

 .counter-box i {
     font-size: 40px;
     color: #0b3d91;
     margin-bottom: 10px;
     transition: transform .28s ease;
 }

 .counter-box:hover i {
     transform: scale(1.15);
 }

 .counter-number {
     font-size: 2.25rem;
     font-weight: 700;
     color: #06253b;
     margin-top: 6px;
 }

 .counter-label {
     margin-top: 6px;
     font-size: 1rem;
     color: #4b5568;
     font-weight: 500;
 }

 @media (max-width: 767px) {
     .section-heading {
         font-size: 1.6rem;
     }

     .floating-shape {
         display: none;
     }
 }