        
/*////////font-family/////////////////////*/

            .nunito-font {
            font-family: "Nunito", sans-serif;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
            }
            .syc-font {
            font-family: "Syne", sans-serif;
            font-optical-sizing: auto;
            font-weight: 600;
            font-style: normal;
            }

         .top-header {
            background-color: #00ADEE;
            color: white;
            padding: 18px 0;
            font-size: 16px;
        }
        .logo-container {
            display: flex;
            align-items: center;
        }
        .logo-img {
            height: 89px;
            margin-right: 15px;
        }
        .institution-name {
            font-weight: bold;
            margin-bottom: 0;
            line-height: 1.2;
            font-size:22px;
            color: #000000;
            font-weight: 600;
        }
        .institution-address {
            font-size: 16px;
            margin-bottom: 0;
            line-height: 2;
            font-weight: 500;
        }
        .action-button {
            text-align: center;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: block;
            color: #333;
            text-decoration: none;
        }
        .action-button:hover {
            background-color: #00ADEE;
            color: white !important;
        }
        .action-button:active, .action-button:focus {
            background-color: #0088cc;
            color: white !important;
        }
        .action-button i {
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
        }
        .action-button span {
            font-size: 12px;
        }
        
        /* Navbar Shadow */
        .navbar {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        /* Improved Smooth Collapse Animation */
        .navbar-collapse.collapsing {
            height: auto;
            transition: height 0.35s ease;
            overflow: hidden;
        }
        
        .navbar-collapse.show {
            transition: height 0.35s ease;
        }
        
        /* Mobile toggle button center alignment */
        @media (max-width: 991.98px) {
            .navbar-toggler-container {
                display: flex;
                justify-content: center;
                width: 100%;
                order: 2;
                margin-top: 10px;
            }
            .logo-container {
                flex-direction: column;
                text-align: center;
                width: 100%;
                order: 1;
            }
            .logo-img {
                margin-right: 0;
                margin-bottom: 10px;
            }
            .navbar-collapse {
                order: 3;
            }
            
            /* Smooth mobile menu animation */
            .navbar-collapse {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            
            .navbar-collapse.show {
                max-height: 500px;
                transition: max-height 0.5s ease-in;
            }
            
            /* Card adjustments for mobile */
            .card-body {
                padding: 15px 20px 15px 15px;
            }
        }

        .hero-title {
            font-size: 70px;
            margin-bottom: 50px;
        }
        .portal-btn {
            border: 1px solid #dee2e6 !important;
            border-radius: 8px !important;
            padding: 12px 24px !important;
            font-size: 18px !important;
            font-weight: 500 !important;
            width: 100%;
            transition: all 0.3s ease;
            background-color: #D0E6F2 !important;
            color: #034E8C !important;
        }
        .portal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #b8d9ee !important;
        }
        .buttons-container {
            border: 1px solid #dee2e6;
            border-radius: 12px;
            padding: 20px;
            background-color: #f8f9fa;
        }


        .portal-btn {
            border: 1px solid #dee2e6 !important;
            border-radius: 8px !important;
            padding: 12px 24px !important;
            font-size: 18px !important;
            font-weight: 500 !important;
            width: 100%;
            transition: all 0.3s ease;
            background-color: #D0E6F2 !important;
            color: #333 !important;
        }
        .portal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #b8d9ee !important;
        }
        .buttons-container {
            border: 1px solid #dee2e6;
            border-radius: 12px;
            padding: 20px;
            background-color: #f8f9fa;
        }

        /* Cards Section */
        .cards-section {
            padding: 30px 0;
        }
        .custom-card {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .custom-card:hover {
            transform: translateY(-5px);
        }
        .card-body {
            padding: 20px 40px 20px 20px; /* top right bottom left */
             
        }
        .card-icon {
            font-size: 40px;
            color: #ffffff;
            margin-bottom: 15px;
        }
        .card-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }
        .card-text {
            color: #666;
        }

         /* Card adjustments for mobile */
            .card-body {
                padding: 15px 20px 15px 15px;
            }
         /* New Card Styles */
        .custom-card {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-color: #0000;
            background-color: #f8f9fa; /* Light background color */
        }
        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .card-header {
            background-color: transparent;
            padding: 15px 15px 0 15px;
            display: flex;
            justify-content: flex-end; /* Only keep eye icon on right */
            align-items: center;
            border-bottom: none; /* Remove header line */
        }
        .eye-icon {
            color: #464646;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .eye-icon:hover {
            color: #0088cc;
            transform: scale(1.1);
        }
        .card-body {
            padding: 20px;
            text-align: center;
           
        }
        .card-logo {
            height: 117px;
            margin-bottom: 15px;
        }
        .card-title {
            font-weight: 600;
            margin-bottom: 0;
            color: #333;
            font-size: 1rem;
        }
        .card-footer {
            background-color: transparent;
            border-top: none;
            padding: 0 15px 15px 15px;
            text-align: center;
        }
        .apply-btn {
           
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            width: auto;
            font-size: 0.85rem;
            background-color: ;
        }
        .apply-btn:hover {
            background-color: #0088cc;
            color: white;
        }

        @media (max-width: 767.98px) {
            .card-logo {
                height: 40px;
            }
            .card-body {
                padding: 15px;
            }
        }

        .admission-container {
            position: relative;
            display: inline-block;
            padding-right: 26px; /* Space for the circle */
        }
        .admission-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
        }
        .double-circle {
            position: absolute;
            top: -12px;
            right: 0;
            width: 18px;
            height: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .outer-circle {
            width: 100%;
            height: 100%;
            background-color:  #86b7fe; /* Dark blue */
            border-radius: 50%;
            position: absolute;
        }
        .inner-circle {
            width: 8px;
            height: 8px;
            background-color: #0d6efd; /* Light blue */
            border-radius: 50%;
            position: relative;
            z-index: 1;
        }
        .outer-circle-completed {
            width: 100%;
            height: 100%;
            background-color:  #fd9090; /* Dark blue */
            border-radius: 50%;
            position: absolute;
        }
        .inner-circle-completed {
            width: 8px;
            height: 8px;
            background-color: #fd0d0d; /* Light blue */
            border-radius: 50%;
            position: relative;
            z-index: 1;
        }

        
        .double-circle:hover .outer-circle {
           background-color: #6ea8fe;/* Darker blue on hover */
        }
        .double-circle:hover .inner-circle {
             /* Slightly darker light blue on hover */
              background-color: #0b5ed7; 
        }
        .double-circle:hover .outer-circle-completed {
           background-color: #f87474;/* Darker blue on hover */
        }
        .double-circle:hover .inner-circle-completed {
             /* Slightly darker light blue on hover */
              background-color: #df0303; 
        }


 /* Header with centered logo and title */
        .school-header-single-page {
            padding: 30px 0;
            text-align: center;
        }
        
        .logo-img-single-page {
            height: 60px;
            margin-right: 15px;
        }
        
        .school-title-single-page {
            display: inline-flex;
            align-items: center;
        }
        
        /* Watermark style for hero section */
        .hero-section {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .watermark {
            position: absolute;
            opacity: 0.1;
            width: 400px;
            height: 400px;
            z-index: 0;
        }
        
        .hero-content-single-page {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px 20px;
        }
        
        .hero-title-single-page {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }


        /* Admission Card Styles */

        .admission-cards-container {
            border: 1px solid #B2AEAEA1;
            border-radius: 10px;
            max-width: 800px;
            margin: 30px auto;
            padding: 20px;
            background-color: ;
        }
        
        .admission-cards-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #020101;
           
        }
        
        /* Admission Card Styles */
        .admission-card-school {
            background-color: #ECECEC;
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 15px;
           
        }
        
        .card-content-school {
            display: flex;
            align-items: center;
        }
        
        .info-column {
            flex: 1;
            padding-right: 20px;
        }
        
        .button-column {
            flex-shrink: 0;
        }
        
        .institute-name-school {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 4px;
        }
        
        .session-info {
            font-size: 13px;
            color: #646363;
            margin-bottom: 2px;
        }
        
        .fee-info {
            font-size: 13px;
            color: #646363;
            font-weight: 500;
        }
        
        .apply-btn-school {
            background-color: #4B4D4E;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .apply-btn-school:hover {
            background-color: #3a3c3d;
        }

        
        /* Scrolling Marquee with Title */
        .marquee-container {
            background-color: #2BA0FF;
            padding: 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            overflow: hidden;
            display: flex;
            position: relative;
        }
        
        .marquee-title {
            background-color: #C9EDFB;
            color: #00ADEE;
            padding: 10px 15px;
            font-weight: bold;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }
        
        .marquee-content {
            white-space: nowrap;
            animation: scroll 25s linear infinite;
            padding: 8px 0;
            display: inline-block;
            color: white;
            padding-right: 100%;
            will-change: transform;
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        /* Improved Smooth Collapse Animation */
        .navbar-collapse.collapsing {
            height: auto;
            transition: height 0.35s ease;
            overflow: hidden;
        }
        
        .navbar-collapse.show {
            transition: height 0.35s ease;
        }
        
        /* Mobile toggle button center alignment */
        @media (max-width: 991.98px) {
            .navbar-toggler-container {
                display: flex;
                justify-content: center;
                width: 100%;
                order: 2;
                margin-top: 10px;
            }
            
            .logo-container {
                flex-direction: column;
                text-align: center;
                width: 100%;
                order: 1;
            }
            
            .logo-img {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .navbar-collapse {
                order: 3;
            }
            
            /* Smooth mobile menu animation */
            .navbar-collapse {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            
            .navbar-collapse.show {
                max-height: 500px;
                transition: max-height 0.5s ease-in;
            }
            
            /* Card adjustments for mobile */
            .card-body {
                padding: 15px 20px 15px 15px;
            }
            
            /* Change School dropdown button */
            .navbar-collapse .dropdown {
                width: 100%;
            }
            
            .navbar-collapse .dropdown-menu {
                width: 100% !important;
            }
            
            .navbar-collapse .btn {
                width: 100%;
            }
        }
 /* Improved Smooth Collapse Animation */
        .navbar-collapse.collapsing {
            height: auto;
            transition: height 0.35s ease;
            overflow: hidden;
        }
        
        .navbar-collapse.show {
            transition: height 0.35s ease;
        }
        
        /* Mobile toggle button center alignment */
        @media (max-width: 991.98px) {
            .navbar-toggler-container {
                display: flex;
                justify-content: center;
                width: 100%;
                order: 2;
                margin-top: 10px;
            }
            
            .logo-container {
                flex-direction: column;
                text-align: center;
                width: 100%;
                order: 1;
            }
            
            .logo-img {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .navbar-collapse {
                order: 3;
            }
            
            /* Smooth mobile menu animation */
            .navbar-collapse {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            
            .navbar-collapse.show {
                max-height: 500px;
                transition: max-height 0.5s ease-in;
            }
            
            /* Card adjustments for mobile */
            .card-body {
                padding: 15px 20px 15px 15px;
            }
            
            /* Change School dropdown button */
            .navbar-collapse .dropdown {
                width: 100%;
            }
            
            .navbar-collapse .dropdown-menu {
                width: 100% !important;
            }
            
            .navbar-collapse .btn {
                width: 100%;
            }
        }

        .hero-title {
            font-size: 70px;
            margin-bottom: 50px;
        }
        
        .portal-btn {
            border: 1px solid #dee2e6 !important;
            border-radius: 8px !important;
            padding: 12px 24px !important;
            font-size: 18px !important;
            font-weight: 500 !important;
            width: 100%;
            transition: all 0.3s ease;
            background-color: #D0E6F2 !important;
            color: #034E8C !important;
        }
        
        .portal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #b8d9ee !important;
        }
        
        .buttons-container {
            border: 1px solid #dee2e6;
            border-radius: 12px;
            padding: 20px;
            background-color: #f8f9fa;
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 50px;
            }
            
            .buttons-row .col-md-4 {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
            }
            
            .buttons-row {
                justify-content: center !important;
            }
            
            .footer-column {
                text-align: center;
            }
        }


        /* Admission Card Styles - Enhanced for Mobile */
        .admission-cards-container {
            border: 1px solid #B2AEAEA1;
            border-radius: 10px;
            margin: 30px auto;
            padding: 20px;
            max-width: 100%;
        }
        
        .admission-cards-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #020101;
        }
        
        /* Admission Card Styles */
        .admission-card-school {
            background-color: #ECECEC;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .card-content-school {
            display: flex;
            flex-wrap: wrap;
        }
        
        .info-column {
            flex: 1 1 100%;
            padding-right: 0;
            margin-bottom: 15px;
        }
        
        .button-column {
            flex: 1 1 100%;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .button-column:last-child {
            margin-bottom: 0;
        }
        
        .button-column span {
            display: block;
            margin-top: 5px;
            font-size: 12px;
            color: #646363;
        }
        
        .institute-name-school {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .session-info, .fee-info {
            font-size: 14px;
            color: #646363;
            margin-bottom: 5px;
        }
        
        .apply-btn-school {
            background-color: #4B4D4E;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .apply-btn-school:hover {
            background-color: #3a3c3d;
        }
        
        /* Circular link style */
        .eye-icon {
            background-color: #4B4D4E;
            padding: 4px 8px;
            color: #ffffff;
            font-size: 12px;
            border-radius: 5px;
            text-decoration: none;
            margin-left: 10px;
            display: inline-block;
        }
        
        /* Responsive styles */
        @media (min-width: 768px) {
            .card-content-school {
                flex-wrap: nowrap;
                align-items: center;
            }
            
            .info-column {
                flex: 1;
                padding-right: 20px;
                margin-bottom: 0;
            }
            
            .button-column {
                flex: 0 0 auto;
                text-align: right;
                margin-bottom: 0;
                padding-left: 15px;
            }
            
            .button-column span {
                text-align: right;
                margin-left: 0;
            }
            
            .apply-btn-school {
                width: auto;
                min-width: 180px;
                margin: 0;
            }
            
            /* For cards with multiple buttons */
            .button-column + .button-column {
                margin-left: 15px;
            }
        }
        
            
            .institute-name-school {
                font-size: 15px;
            }
            
            .session-info, .fee-info {
                font-size: 13px;
            }
            
            .apply-btn-school {
                font-size: 14px;
                padding: 8px 12px;
            }
            
            .eye-icon {
                margin-left: 5px;
                padding: 3px 6px;
            }
        }

        
        /* Mobile specific styles */
        @media (max-width: 767.98px) {
            /* Fix for admission card buttons on mobile */
            .admission-card-school {
                position: relative;
                padding-bottom: 70px;
            }
            
            .card-content-school {
                flex-direction: column;
            }
            
            .button-column {
                position: absolute;
                bottom: 15px;
                left: 0;
                right: 0;
                text-align: center;
                margin-top: 15px;
            }
            
            .button-column button {
                width: 90%;
                margin: 5px auto;
                white-space: normal;
            }
            
            /* For cards with multiple buttons */
            .button-column + .button-column {
                bottom: 70px;
            }
            
            /* Adjust info column */
            .info-column {
                padding-right: 0;
                margin-bottom: 15px;
            }
            
            /* Fix the timer text position */
            .button-column span {
                position: absolute;
                bottom: -20px;
                left: 0;
                right: 0;
                text-align: center;
                margin-left: 0 !important;
            }
            
            /* Make hero section more compact */
            .hero-section {
                min-height: 400px;
            }
            
            .hero-title-single-page {
                font-size: 2rem;
            }
            
            /* Fix padding for cards container */
            .admission-cards-container {
                padding: 15px;
            }
            
            /* Adjust the "Apply for Another School" button */
            .container .row .col.text-center {
                padding: 15px !important;
            }
            
            .container .row .col.text-center .btn {
                width: 100%;
                padding: 12px !important;
                font-size: 16px !important;
            }
        }
        /* Footer Styles */
        .footer {
            background-color: #f8f9fa;
            padding: 40px 0 0;
            border-top: 1px solid #dee2e6;
        }
        .footer-column {
            margin-bottom: 30px;
        }
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #00ADEE;
        }
        .copyright-section {
            background-color: #e9ecef;
            padding: 20px 0;
            text-align: center;
        }
        .copyright-btn {
            background-color: #D0E6F2;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 14px;
            color: #333;
            transition: all 0.3s;
        }
        .copyright-btn:hover {
            background-color: #b8d9ee;
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 50px;
            }
            .buttons-row .col-md-4 {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
            }
            .buttons-row {
                justify-content: center !important;
            }
            .footer-column {
                text-align: center;
            }
        }

        