 
        html,
        body {
            overflow-x: hidden;
            width: 100%;

        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f8f9fa;
        }


        /* HEADER BUTTON */
.call-header-btn{
    background:#007075;
    color:#fff;
    border:none;
    padding:10px 22px;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
}

/* POPUP OVERLAY */
.popup-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:9999;
}

/* POPUP BOX */
.popup-box{
    background:#fff;
    width:92%;
    max-width:400px;
    margin:8% auto;
    padding:26px;
    border-radius:12px;
    position:relative;
    text-align:center;
}

.popup-box h3{
    margin-bottom:6px;
    color:#007075;
}

.popup-sub{
    font-size:14px;
    margin-bottom:18px;
    color:#555;
}

.popup-box input,
.popup-box select{
    width:100%;
    padding:11px;
    margin-bottom:14px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.popup-box button{
    width:100%;
    padding:13px;
    background:#007075;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.popup-box button:hover{
    background:#005e60;
}

.close-btn{
    position:absolute;
    top:10px;
    right:14px;
    font-size:22px;
    cursor:pointer;
}


 
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px !important;
    }
}

/* ===== Logo Slider Container ===== */
.logo-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    padding: 0 10px;
}

/* ===== Each Logo Slide ===== */
.logo-slider .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0 10px;        /* horizontal gap between logos */
    height: 100px;          /* fixed height */
    max-width: 160px;       /* restrict slide width */
    box-sizing: border-box;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== Logo Images ===== */
.logo-slider .slick-slide img {
    max-height: 80px;       /* fit inside slide height */
    max-width: 100%;        /* prevent wide logos from overflowing */
    object-fit: contain;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.logo-slider .slick-slide img:hover {
    filter: grayscale(0);
    transform: scale(1.05); /* subtle zoom */
}

/* ===== Remove Slick Default Outline ===== */
.slick-slide:focus {
    outline: none;
}

/* ===== Slick Dots (optional) ===== */
.slick-dots {
    bottom: -25px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #000;
}

.slick-dots li.slick-active button:before {
    color: #007bff;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .logo-slider .slick-slide {
        height: 90px;
        max-width: 140px;
        margin: 0 8px;
    }
    .logo-slider .slick-slide img {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .logo-slider .slick-slide {
        height: 80px;
        max-width: 120px;
        margin: 0 6px;
    }
    .logo-slider .slick-slide img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-slider .slick-slide {
        height: 70px;
        max-width: 100px;
        margin: 0 4px;
    }
    .logo-slider .slick-slide img {
        max-height: 50px;
    }
}

 


        .hero {
            /* background: linear-gradient(120deg, #0d6efd, #0a58ca); */
            background-image: url('./imgofcollg/home-banner.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: #fff;
            /* padding: 90px 0; */
            padding: 40px 0;
                margin-top: 70px !important;

        }


        footer {
            background: #fff;
            border-top: 1px solid #e5e5e5;
        }

        /* CARD */
        .university-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            transition: .3s ease;
        }

        .university-card:hover {
            box-shadow: 0 14px 35px rgba(0, 0, 0, .15);
        }

        /* IMAGE */
        .card-image-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .4s ease;
        }

        .university-card:hover .card-img {
            transform: scale(1.05);
        }

        /* LOGO ON HOVER */
        .card-logo-hover {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #fff;
            padding: 8px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
            opacity: 0;
            transform: translateY(-10px);
            transition: .3s ease;
        }

        .card-logo-hover img {
            /* width: 48px; */
            width: 90px;
        }

        .university-card,
        .horizontal-card {
            max-width: 100%;
            overflow: hidden;
        }

        .card-image-wrap img,
        .horizontal-image img {
            max-width: 100%;
            display: block;
        }


        .university-card:hover .card-logo-hover {
            opacity: 1;
            transform: translateY(0);
        }

        /* BODY */
        .card-body-custom {
            padding: 22px;
        }

        .badge-soft {
            background: #eef3ff;
            color: #0d6efd;
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 13px;
        }

        .tag {
            background: #f1f1f1;
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 12px;
        }

        .topform {
            width: 70%;
            float: right;
        }

        /* HORIZONTAL CARD */
        .horizontal-card {
            display: flex;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
            height: 100%;
        }

        /* IMAGE LEFT */
        .horizontal-image {
            position: relative;
            width: 320px;
            flex-shrink: 0;
        }

        .university-highlights p {
            line-height: 1.6;
            font-size: 14.5px;
        }

        .horizontal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* LOGO ON IMAGE */
        .horizontal-logo {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #fff;
            padding: 8px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
        }

        .horizontal-logo img {
            width: 50px;
        }

        /* CONTENT RIGHT */
        .horizontal-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .horizontal-card {
                flex-direction: column;
            }

            .horizontal-image {
                width: 100%;
                height: 200px;
            }
        }


        .enquuirecolor {
            background-color: #007075;
            color: white;
        }

        .downcolor {
            border: 1px solid #007075;
        }

        /* Mobile fix */
        @media (max-width: 768px) {
            .topform {
                width: 100%;
                float: none;
            }

            .card-logo-hover img {
                /* width: 48px; */
                width: 50px;
            }

            .phonecardpadding {
                margin-left: 1px;
            }
        }

        /* Disable hover, focus, active for Get Course Details button */
        .enquiirecolor,
        .enquiirecolor:hover,
        .enquiirecolor:focus,
        .enquiirecolor:active,
        .enquiirecolor:focus-visible {
            background-color: inherit !important;
            border-color: inherit !important;
            color: inherit !important;
            box-shadow: none !important;
            outline: none !important;
            transform: none !important;
            transition: none !important;
        }

        /* SECTION */
        .why-compact {
            padding: 55px 0;
        }

        /* BOX */
        .why-box {
            border: 1.5px solid #e3f1ef;
            border-radius: 16px;
            padding: 22px;
            height: 100%;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: #fff;
        }

        /* ICON */
        .why-icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 12px;
            background: #eef6f5;
            color: #007075;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        /* TEXT */
        .why-box h6 {
            font-weight: 600;
            margin-bottom: 6px;
            color: #007075;
        }

        .why-box p {
            font-size: 14.5px;
            color: #555;
            margin: 0;
            line-height: 1.6;
        }

        /* EQUAL HEIGHT FIX */
        .row.equal-height>[class*='col-'] {
            display: flex;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .why-compact {
                padding: 40px 0;
            }
            .viewbtn{
                display:none!important;
            }
            .hero{
                margin-top: 56px !important;
            }
        }


        /* SECTION */
        .specialization-section {
            padding: 60px 0;
            background-color: #fff;
        }

        /* TABS */
        .program-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .program-tab {
            padding: 10px 20px;
            border: 1.5px solid #dfeeee;
            border-radius: 30px;
            background: #fff;
            font-weight: 600;
            cursor: pointer;
            color: #007075;
        }

        .program-tab.active {
            background: #007075;
            color: #fff;
            border-color: #007075;
        }

        /* GRID */
        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 14px;
            max-width: 900px;
            margin: auto;
        }

        /* ITEM */
        .spec-item {
            border: 1.5px solid #003e35;
            border-radius: 14px;
            padding: 14px 16px;
            font-size: 14.5px;
            font-weight: 500;
            background: #fff;
            text-align: center;
        }

        /* TITLE */
        .section-title {
            max-width: 750px;
            margin: auto;
            margin-bottom: 20px;
        }

        /* SECTION */
        .opportunity-section {
            padding: 50px 0;
            background-color: #fff;
        }

        /* IMAGE */
        .opportunity-image {
            border-radius: 18px;
            overflow: hidden;
        }

        .opportunity-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* FEATURE CARD */
        .opportunity-card {
            border: 1.5px solid #e3f1ef;
            border-radius: 16px;
            padding: 18px;
            height: 100%;
            background: #fff;
            display: flex;
            gap: 14px;
        }

        /* ICON */
        .opportunity-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: #eef6f5;
            color: #007075;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        /* TEXT */
        .opportunity-card h6 {
            font-weight: 600;
            margin-bottom: 6px;
            color: #007075;
        }

        .opportunity-card p {
            font-size: 14.5px;
            color: #555;
            margin: 0;
            line-height: 1.6;
        }

        /* TITLE */
        .section-title {
            max-width: 720px;
            margin-bottom: 30px;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .opportunity-section {
                padding: 45px 0;
            }
        }

        /* admission process */
        /* SECTION */
        .process-section {
            padding: 80px 0;
        }

        /* TITLE */
        .process-title span {
            color: #007075;
        }

        /* STEPPER WRAP */
        .stepper {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }

        /* LINE */
        .stepper::before {
            content: "";
            position: absolute;
            top: 28px;
            left: 0;
            right: 0;
            height: 2px;
            background: #ddd;
            z-index: 0;
        }

        /* STEP */
        .step {
            position: relative;
            text-align: center;
            max-width: 200px;
            z-index: 1;
        }

        /* STEP BADGE */
        .step-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 18px;
        }

        /* COLORS */
        .step-1 {
            background: #00bcd4;
        }

        .step-2 {
            background: #4caf50;
        }

        .step-3 {
            background: #ffc107;
            color: #000;
        }

        .step-4 {
            background: #2196f3;
        }

        .step-5 {
            background: #9c27b0;
        }

        /* HEADING */
        .step h5 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* TEXT */
        .step p {
            font-size: 14.5px;
            color: #555;
            line-height: 1.6;
        }

        /* RESPONSIVE */
        @media(max-width:991px) {
            .stepper {
                flex-direction: column;
                gap: 30px;
            }

            .stepper::before {
                display: none;
            }

            .step {
                max-width: 100%;
                text-align: left;
                display: flex;
                gap: 16px;
                align-items: flex-start;
            }

            .step-badge {
                margin-bottom: 0;
                white-space: nowrap;
            }
        }
        
        /* ===== MOBILE ONLY ===== */
@media (max-width: 991px) {

    .stepper {
        flex-direction: column;      /* stack steps vertically */
        align-items: center;         /* center all steps */
        position: relative;
        gap: 30px;
        margin-top: 40px;
    }

    /* Hide horizontal line on mobile */
    .stepper::before {
        display: none;
    }

    .step {
        flex-direction: column;      /* keep badge above content */
        align-items: center;         /* center badge and text */
        max-width: 100%;
        text-align: center;          /* center text */
        gap: 10px;
    }

    .step-badge {
        margin-bottom: 10px;         /* space between badge and content */
    }

    .step-content h5 {
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}


        /* CTA SECTION */
        .cta-section {
            position: relative;
            padding: 90px 0;
            background-image: url('./imgofcollg/ctaf.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #fff;
        }

        /* OVERLAY */
        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        /* CONTENT */
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 780px;
            margin: auto;
            text-align: center;
        }

        /* BUTTON */
        .cta-btn {
            background: #007075;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
        }

        .cta-btn:hover {
            background: #007075;
            color: #fff;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .cta-section {
                padding: 65px 0;
            }
            
            .support-list {
                list-style: none;
                padding: 0;
                margin: 28px 0;
                display: flex;
                justify-content: left!important;
                gap: 28px;
                flex-wrap: wrap;
                /*text-align: left;*/
            }


        }

        /* FINAL CTA SECTION */
        .final-cta-clean {
            padding: 70px 0;
            background-color: #fff;
        }

        /* PANEL */
        .cta-panel {
            background: #f4fbfa;
            border: 1.5px solid #dceeee;
            border-radius: 22px;
            padding: 50px 40px;
            max-width: 980px;
            margin: auto;
            text-align: center;
        }

        /* TITLE */
        .cta-panel h2 {
            font-weight: 700;
            margin-bottom: 12px;
        }

        /* SUBTEXT */
        .cta-panel p {
            color: #555;
            font-size: 15.5px;
        }

        /* LIST */
        .support-list {
            list-style: none;
            padding: 0;
            margin: 28px 0;
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .support-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 15px;
        }

        /* ICON */
        .support-list i {
            color: #007075;
            font-size: 20px;
        }

        /* CTA TEXT */
        .cta-final-line {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        /* BUTTON */
        .cta-btn {
            background: #007075;
            color: #fff;
            border: none;
            padding: 14px 42px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
        }

        .cta-btn:hover {
            background: #007075;
            color: #fff;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .cta-panel {
                padding: 35px 22px;
            }

            .support-list {
                gap: 18px;
            }
        }
  