@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primaryheader: #2c4e89
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --dark-color: #1e3a8a;
    --light-color: #f0f9ff;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-bg: #f9fafb;
    --border-color: #e5e7eb;

    --border-radius: 8px;
    --transition: all 0.3s ease;
}
*{
      font-family: "Poppins", sans-serif;
}
/* 26-02-2026 */
.counselling-wrapper{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;
}

.counselling-btn{
    background:linear-gradient(135deg,#004aad,#007bff);
    color:#fff;
    padding:14px 28px;
    border:none;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,0.3);
    animation:counsellingPulse 2s infinite;
    transition:0.3s;
}

.counselling-btn:hover{
    transform:translateY(-3px);
}

/* Pulse Animation */
@keyframes counsellingPulse{
    0%{box-shadow:0 0 0 0 rgba(0,74,173,0.6);}
    70%{box-shadow:0 0 0 18px rgba(0,74,173,0);}
    100%{box-shadow:0 0 0 0 rgba(0,74,173,0);}
}

/* Hide on desktop */
@media(min-width:1025px){
    .counselling-wrapper{
        display:none;
    }
}

/* ================= MODAL OVERLAY ================= */

.counselling-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:all 0.4s ease;
    z-index:10000;
}

.counselling-overlay.counselling-active{
    opacity:1;
    visibility:visible;
}

/* ================= MODAL BOX ================= */

.counselling-modal{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:18px;
    position:relative;
    transform:scale(0.8) translateY(40px);
    opacity:0;
    transition:all 0.4s ease;
}

.counselling-overlay.counselling-active .counselling-modal{
    transform:scale(1) translateY(0);
    opacity:1;
        border-radius: 10px;
    overflow: hidden;
}

/* Close Button */


/* ================= FORM ================= */

.counselling-modal h3{
    margin-bottom:20px;
    text-align:center;
}

.counselling-field{
    margin-bottom:15px;
}

.counselling-field input,
.counselling-field select{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ddd;
    transition:0.3s;
}

.counselling-field input:focus,
.counselling-field select:focus{
    border-color:#004aad;
    box-shadow:0 0 0 2px rgba(0,74,173,0.1);
    outline:none;
}

.counselling-phone{
    display:flex;
    gap:10px;
}

.counselling-phone select{
    width:30%;
}

.counselling-phone input{
    width:70%;
}

.counselling-submit{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:linear-gradient(135deg, #152639, #152639);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.counselling-submit:hover{
    opacity:0.9;
}
/* 26-02-2026 */
/* 17-02-2026 */
/* ===== Contact Section ===== */
.sky-contact-section {
    background: #edf3f5;
    position: relative;
    padding: 70px 0;

}
.bg-shape{
    background: url('../images/bgshape.png');
    position: absolute;
    top: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0px;
    width: 100%;
    height: 100%;
}

.sky-contact-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s ease;
    text-align: left;
}

.sky-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sky-contact-title {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.sky-contact-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin-top: 8px;
}

.sky-contact-text {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
}

/* WhatsApp Button */
.sky-contact-btn {
      display: inline-block;
    margin-top: 15px;
    padding: 6px 20px;
    background: green;
    color: #ffff;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}
.study-destinations-section {
    padding: 80px 0;
}

.destination-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.4s ease;
}

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
    text-align: center;
}

.destination-overlay h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.dest-btn {
    background: #fff;
    color: #000;
    padding: 8px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
    transform: translateY(20px);
}

.dest-btn:hover {
    background: #007bff;
    color: #fff;
}

/* Hover Effect */
.destination-card:hover {
    transform: scale(1.03);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-card:hover h3,
.destination-card:hover .dest-btn {
    transform: translateY(0);
}



/* Social Icons */
.sky-social-icons {
    margin-top: 15px;
}

.sky-social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 12px;
    transition: 0.3s ease;
}

.sky-social-icons a:hover {
    background: #ff7a00;
}

/* ===== Skyline CTA Section ===== */
.skyline-cta-section {
    /* background: linear-gradient(107.02deg, #284d5d -16.09%, #2c4e89 50.82%, #375fa5 119.13%); */
    padding: 40px;
    border-radius: 25px;
    margin: 70px auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(107.02deg, #284d5d -16.09%, #2c4e89 50.82%, #375fa57d 119.13%), url(../images/counter_bg.jpg);
    background-size: cover;
    background-position: 100% 69%;
}
.skyline-cta-content{
    text-align: left;
}
.skyline-cta-section:before{
    content: '';
    /* background: url('../images/shape-9.webp'); */
       position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}


.skyline-cta-heading {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.skyline-cta-text {
    font-size: 18px;
    color: #e5e5e5;
    margin-bottom: 15px;
}

.skyline-cta-hours {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 15px;
}

.skyline-cta-highlight {
    color: #ffcc00;
    font-weight: 600;
}

.skyline-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-color), #128C7E);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.skyline-cta-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.skyline-cta-btn-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .skyline-cta-heading {
        font-size: 28px;
    }

    .skyline-cta-text {
        font-size: 15px;
    }
}

/* 17-02-2026 */
/* 15-02-2026 */
.box-consultant.all_new{
    height: auto;
}
.counselling{
        background-color: #0D7500;
    font-size: 20px;
    border-radius: 50px 50px 50px 50px;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    text-decoration: none;
    text-transform:capitalize;
    margin-top: 15px;
    display: inline-block;
}
.boximageexam{
    width: 100%;
    height: 100%;
}
.boximageexam img{
    width: 100%;
    height: 100%;
}
/* 15-02-2026 */
/* 14-02-2026 */
.country-visa-section {
    background: #f8f9fa;
}

.visa-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.visa-img {
    position: relative;
}

.visa-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.flag-icon {
    position: absolute;
    bottom: -20px;
    right: 15px;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #fff;
}

.visa-content {
    padding: 25px;
    padding-top: 35px;
}

.visa-content h4 a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.visa-content ul {
    padding-left: 18px;
}

.visa-content ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

.box-consultant .iconbox_consultant .icon_all{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 1px solid #000;
    padding: 15px;
}
.all_box-consultant{
     padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1px 7px rgb(0 0 0 / 36%);
}
.all_box-consultant .iconbox_consultant .box-consultant-content h3 a{
   margin: 10px 0px;
   font-size: 16px;
   color: #000;
   text-decoration: none;
}
.all_box-consultant .iconbox_consultant .box-consultant-content p{
   /* margin-bottom: 0px; */
   font-size: 14px;
}
.box-consultant{
        padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 1px 7px rgb(0 0 0 / 36%);
    height: 300px;
}
.box-consultant .iconbox_consultant .icon_all svg{
    width: 100%;
    height: 100%;
}
.box-consultant .iconbox_consultant .box-consultant-content h3{
   /* margin-bottom: 0px; */
   font-size: 16px;
}
.box-consultant .iconbox_consultant .box-consultant-content p{
   /* margin-bottom: 0px; */
   font-size: 14px;
}
.icon_all{

}
/* 14-02-2026 */
/* 11-02-2026 */
.ourmission_section{
    background:url('../images/Illustration.png');
      background-size: contain;
    background-position: right;
    padding: 200px 0px;
    background-repeat: no-repeat;
    background-color: #f5f6f8;
}
.ourmission{
     display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.5);
    border: 1px solid #305595;
}
.aboutuspage{
      display: flex;
    flex-direction: column;
    gap: 15px;
}
.video-wrapper {
    width: 100%;
    height: 400px; /* change as needed */
    overflow: hidden;
    border-radius: 20px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* important */
}
.teacher_details{
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
}
.teacher_image{
    height: 195px;
    width: 100%;

}
.teacher_image img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.teacherinfo h2{
      font-size: 18px;
    margin-bottom: 5px;
    margin-top: 15px;
}
.teacherinfo p{
    font-size: 15px;
    margin-bottom: 0px;
}
.ourmission h2{
   font-size: 21px;
    color: #315696;
    font-style: italic;
}
.ourmission h4{
    font-size: 22px;
}
.ourmission p{
    font-size: 16px;
}
/* Main Card Styling */
.grade-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    margin-bottom: 50px;
    transition: 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-5px);
}

/* Title */
.grade-card h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2d3d;
}

/* Form Groups */
.grade-card .form-group {
    background: #f9fbff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    margin-bottom: 20px;
    transition: 0.3s;
}

.grade-card .form-group:hover {
    border-color: #3b82f6;
}

/* Labels */
.grade-card label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #444;
}

/* Inputs and Select */
.grade-card input,
.grade-card select {
    border-radius: 10px !important;
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    transition: 0.3s;
}

.grade-card input:focus,
.grade-card select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Convert Button */
.convertbutton {
    text-align: center;
    margin-top: 10px;
}

.convertbutton button {
   display: flex;
    width: 104px;
    height: 40px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(107.02deg, #284d5d -16.09%, #2c4e89 50.82%, #375fa5 119.13%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color .4s ease;
    font-weight: 600;
    --webkit-tap-highlight-color: transparent;
}

/* Result Box */
.resultgrade input {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #3b82f6;
    background: #f0f6ff;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .grade-card {
        padding: 25px;
    }
}
.header_all h2{
    color: #1F2937;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* 11-02-2026 */
/* page link  */
 .related-links{
        margin-top: 30px;
        display: flex;
    font-size: 15px;
    justify-content: space-between;
    }
      .related-links a {
            display: none; /* JS decide karega kaunsa dikhe */
            margin: 6px 0;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            background: var(--primaryheader);
            padding: 10px 15px;
            border-radius: 25px;
        }

        .related-links a:hover {
            text-decoration: none;
        }
/* page link  */
/* blog sidebar  */
/* Sidebar Container */
.blog-sidebar {
    width: 100%;
    background: #f9f9f9;
    border-left: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
}
.blog-details-section{
    margin-top: 30px;
}
/* Table of Contents */
.blog-toc {
    margin-bottom: 30px;
}

.blog-toc h4 {
    font-size: 18px;
    color: #ffffff;
    padding: 10px;
    background: #2f5392;
}
.blog-toc a {
    display: block;
    color: #0077b5;
    text-decoration: none;
        padding: 6px 15px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.blog-toc a:hover {
    color: #005082;
    text-decoration: underline;
}

/* Sub-links inside TOC */
.toc-sub-links {
    margin-left: 12px;
}

.toc-sub-links a {
    font-size: 13px;
    color: #005082;
}

.toc-sub-links a:hover {
    color: #00335a;
    text-decoration: underline;
}

/* Widgets */
.sidebar-widget {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.sidebar-widget p.muted {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}


/* Join Widget */
.join-widget a.btn {
    width: 100%;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-sidebar {
        width: 100%;
        padding: 15px;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }
}

/* blog sidebar  */
.ielts-links {
    padding-left: 20px;
}
/* trainer page  */
/* Container */
.trainer-container {
       display: flex;
    justify-content: start;
    gap: 10px;
}

/* Card */
.trainer-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image */
.trainer-image {
    width: 180px;
    flex: 0 0 250px;
    height: 250px;
    background: linear-gradient(45deg, #315696, #2a4e72);
    border-radius: 20px;
    overflow: hidden;
}
.trainer-image img {
 height: 100%;
 object-position: top;
 width: 100%;
    object-fit: cover;
}

/* Info */
.trainer-info {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trainer-info h4 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.trainer-info h4 span {
    font-weight: 400;
    color: #666;
    font-size: 1rem;
}

.trainer-info p {
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}

.trainer-info .highlight {
    color: #1a73e8;
}
#searchForm {
    display: flex;
    flex-direction: column;
        align-items: start;
    gap: 20px;
}
/* LinkedIn Button */
.linkedin-link {
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    background: #0077b5;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
    width: fit-content;
    transition: background 0.3s ease;
}

.linkedin-link:hover {
    background: #005582;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .trainer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trainer-image img {
        width: 150px;
        height: 150px;
    }

    .trainer-info {
    padding: inherit;
}
 .trainer-info h4 {
        font-size:15px;
    }

    .trainer-info h4 span {
        font-size: 0.9rem;
    }

    .trainer-info p {
    font-size: 12px;
}
}

@media (max-width: 480px) {
    .trainer-image img {
        width: 120px;
        height: 120px;
    }

   
}
/* trainer page / coaching page overview */
.imageall{
    width: 40%;
    min-width: 200px;
    height: 215px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.imageall img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.w-60{
    width: 60%;
    min-width: 0;
}
@media (max-width: 768px) {
    .d-flex.gap-2 .w-60,
    .d-flex.gap-2 .imageall {
        width: 100% !important;
    }
    .d-flex.gap-2 {
        flex-direction: column;
    }
    .imageall {
        height: 220px;
    }
}
.ielts-links li {
    margin-bottom: 8px;
}
.flex-1{
   width: 50%;
}
.flex-1 img{
width: 100%;}
.ielts-links a {
    color: #0a58ca;
    text-decoration: none;
    font-weight: 500;
}

.ielts-links a:hover {
    text-decoration: underline;
}

/* faq section  */
.college-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Individual cards */
.college-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}



.college-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.college-card ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

.college-card ul li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .college-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .college-grid {
        grid-template-columns: 1fr;
    }
}

.icons_page{
    width: 50px;
    height: 50px;
    margin: 20px 0px 20px;
}
.icons_page img{
    width: 100%;
    height: 100%;
}
.icons2_page{
    font-size: 35px;
    /* height: 50px;*/
    margin: 20px 0px 20px;
}
.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1f36;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #2c4e89;
    color: #fff;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: #1e3c72;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 16px 0;
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.icon {
    font-size: 22px;
    font-weight: bold;
}

/* faq section  */
/* form design all  */
.form-container_about {
    max-width: 500px;
    margin: 0 auto;
    padding: 27px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    border: 1px solid #ccc;
}

.contentabout h3 {
    font-size: 40px;
}

.contentabout p,
.contentabout h3 {
    color: #fff;
}

.contentabout ul {
    padding-left: 0px;
}

.contentabout ul li {
    color: #fff;
    list-style: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    display: flex;
    gap: 10px;
}

.form-row .form-group {
    position: relative;
}

.form-row .form-group label {
    position: absolute;
    top: -6px;
    left: 10px;
    background: #fff;
    font-size: 10px;
}

.form-title {
    text-align: center;
    color: #1a365d;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.simple-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-direction: column;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
}
.form-group textarea,
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}
.form-group textarea:focus,
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}




.phone-input {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 120px;
    padding: 7px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.phone-input input {
    flex: 1;
}

.terms-checkbox {
    margin: 20px 0 0px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-checkbox input {
    margin-top: 3px;
}

.terms-checkbox label {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.4;
}

.terms-checkbox a {
    color: #3182ce;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #3182ce;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2c5282;
}

.submit-btn:active {
    transform: translateY(1px);
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-container {
        padding: 20px;
        margin: 10px;
    }

    .phone-input {
        flex-direction: column;
    }

    .country-code {
        width: 100%;
    }
}

.contentabout {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container_about .form-title {
    margin-bottom: 10px;
}

.form-row {
    margin-bottom: 10px;
}

.formdesignabout {
      position: absolute;
    right: 22px;
    top: -58px;
    background: #fff;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.form-row .form-group {
    margin-bottom: 5px;
}

.aboutbg {
    padding: 35px;
    position: relative;
    border-radius: 15px;
}

/* form design all  */
/* home page form new */
.form-text {
    display: none;
}

.enquiry-form-box {
    background: #fff;
    padding: 25px 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0px;
}

@media(max-width:768px) {
    .enquiry-form-box {
        position: static;
        margin-top: 30px;
    }
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fbfd;
}

/* Hero Section */



/* Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title span.text-danger {
    position: relative;
    display: inline-block;
}

.section-title span.text-danger::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(220, 53, 69, 0.2);
    z-index: -1;
}

.lead-text {
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Info Cards */
.info-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    height: 100%;
    background: #fff;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.info-card .card-body {
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    font-weight: 700;
    font-size: 1.3rem;
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-card p {
    margin: 0;
    font-weight: 500;
    color: #3a4a5c;
}

/* Form Box */
.enquiry-form-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-top: 5px solid #0d6efd;
    position: relative;
}


.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.8rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: .5rem;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: .75rem 1rem;
    border: 1px solid #ced4da;
    transition: .3s ease;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .25);
    border-color: #0d6efd;
}

/* Button */
.btn-primary {
    background: linear-gradient(to right, #0d6efd, #0b5ed7);
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, .3);
    transition: .3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, .4);
}

/* Responsive */
@media(max-width:992px) {
    .hero-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .lead-text {
        max-width: 100%;
    }
}

@media(max-width:768px) {
    .section-title {
        font-size: 2rem;
    }

    .enquiry-form-box {
        padding: 2rem;
    }

    .info-card .card-body {
        padding: 1.2rem;
    }
}

@media(max-width:576px) {
    .hero-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* home page form new */
/* couse details pag//e  */
.quick-facts {
    background: #f9fafc;
}

.study-details {
    background: #fff;
    line-height: 1.7;
}

.study-details h2 {

    margin-bottom: 10px;
    font-size: 22px;
    color: #1a1a2e;
}

.study-details p {
    color: #555;
    font-size: 15px;
}

.study-details ul {
    margin-left: 18px;
}

.study-details li {
    margin-bottom: 6px;
    color: #848484;
    font-weight: 400;
}

.enquiry-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 120px;
    border: 1px solid #c1c1c1;
}

.enquiry-box h4 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.enquiry-box textarea {
    min-height: 90px;
    resize: none;
}

.enquiry-box button {
    width: 100%;
    background: var(--primaryheader);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.enquiry-box button:hover {
    background: #1a47b7;
}

/* Mobile */
@media (max-width: 768px) {
    .enquiry-box {
        position: static;
        margin-top: 30px;
    }
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.fact-card {
    background: #fff;
    padding: 20px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-card i {
    font-size: 28px;
    color: #2a5bd7;
    margin-bottom: 8px;
}

.fact-card .label {
    display: block;
    font-size: 14px;
    color: #666;
}

.fact-card .value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}

/* Tablet */
@media (max-width: 992px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }
}

/* couse details pag//e  */
/* blog details  */

.p-50 {
    padding: 100px 0px 0px;
}


/* Blog Details Header */
.blog-details-header {
    margin-bottom: 40px;
}

.blog-details-header__title {
    font-size: 30px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-details-header__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-details-header__meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #6b7280;
    font-size: 14px;
}

.blog-details-header__meta-icon {
    margin-right: 6px;
    color: var(--primaryheader);
}

.blog-details-header__meta-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-details-header__meta-item a:hover {
    color: var(--primaryheader);
}

.blog-details-header__meta-item--date {
    font-weight: 500;
}

.blog-details-header__date {
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
}

/* Featured Image */
.featured-image-container {
    position: relative;
    border-radius: 8px;
        height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.featured-image:hover {
    transform: scale(1.03);
}

.publication-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primaryheader);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.publication-date--inline {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 1rem;
}

.publication-day {
    display: block;
    font-size: 29px;
    font-weight: 600;
}

.publication-month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Content */
.blog-content {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 40px;
}

.blog-content__paragraph {
       color: #374151;
    line-height: 1.7;
    margin: 0 0 16px 0;
    font-size: 17px;

}

.blog-content__paragraph:last-child {
    margin-bottom: 0;
}
.afbf-article h2 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 12px;
    border-bottom: 2px solid #EEF2FF;
    padding-bottom: 8px;
    color: #0d1117;
}
.highlight-box {
    background-color: #eff6ff;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box__title {
   font-size: 24px;
    margin-top: 28px;
    margin-bottom: 12px;
    border-bottom: 2px solid #EEF2FF;
    padding-bottom: 8px;
    color: var(--primaryheader);
}

/* Blog Footer */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-tags__label {
    font-weight: 600;
    margin-right: 10px;
    color: #1f2937;
}

.blog-tags__item {
    background-color: #f9fafb;
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.blog-tags__item:hover {
    background-color: var(--primaryheader);
    color: #ffffff;
}

.social-sharing {
    display: flex;
    align-items: center;
}

.social-sharing__label {
    font-weight: 600;
    margin-right: 15px;
    color: #1f2937;
}

.social-sharing__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f9fafb;
    color: #6b7280;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-sharing__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.social-sharing__link.twitter:hover {
    background-color: #000000;
    color: white;
}

.social-sharing__link.facebook:hover {
    background-color: #1877f2;
    color: white;
}

.social-sharing__link.pinterest:hover {
    background-color: #e60023;
    color: white;
}

.social-sharing__link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

/* Navigation Links */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.post-navigation__link {
    flex: 0 0 48%;
    padding: 25px;
    border-radius: 8px;
    background-color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.post-navigation__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.post-navigation__link.prev {}

.post-navigation__link.next {
    border-right: 4px solid var(--primaryheader);
    text-align: right;
}

.post-navigation__label {
    font-size: 14px;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.post-navigation__title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}



.btn-primary:hover {
    background-color: var(--primaryheader);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.sidebar-widget__title {

    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primaryheader);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form__input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.search-form__button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background-color: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s;
}

.search-form__button:hover {
    color: var(--primaryheader);
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post__image {
    flex: 0 0 80px;
    margin-right: 15px;
}

.recent-post__image img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post__title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post__title a:hover {
    color: var(--primaryheader);
}

.recent-post__meta {
    font-size: 14px;
    color: #6b7280;
}

/* Categories Widget */
.category-list {
    list-style: none;
}

.category-list__item {
    margin-bottom: 12px;
}

.category-list__item:last-child {
    margin-bottom: 0;
}

.category-list__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f2937;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.category-list__link:hover {
    color: var(--primaryheader);
    padding-left: 8px;
}

.category-list__link.active {
    color: var(--primaryheader);
    font-weight: 600;
}

.category-list__count {
    background-color: #f9fafb;
    color: #6b7280;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
}

/* Tags Widget */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list__item {
    background-color: #f9fafb;
    color: #6b7280;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.tags-list__item:hover {
    background-color: var(--primaryheader);
    color: #ffffff;
}

/* Comments Widget */
.recent-comment {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.recent-comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-comment__icon {
    flex: 0 0 40px;
    height: 40px;
    background-color: #f9fafb;
    color: var(--primaryheader);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.recent-comment__author {
    font-weight: 600;
    color: #1f2937;
}

.recent-comment__text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {

    .col-xl-8,
    .col-xl-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .post-navigation__link {
        flex: 0 0 100%;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-sharing {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .blog-content,
    .comments-section,
    .sidebar-widget {
        padding: 25px;
    }

    .blog-details-header__title {
        font-size: 32px;
    }

    .comment {
        flex-direction: column;
    }

    .comment__avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ===============================
   BLOG LIST PAGE
=================================*/

/* Row spacing (if not using Bootstrap g-4) */
.news-block {
    margin-bottom: 30px;
    display: flex;
}

/* Card */
.news-block .inner-box {
    position: relative;
    transition: all 300ms ease;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
}

/* Hover effect */
.news-block .inner-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Image Box */
.news-block .image-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Image */
.news-block .image-box .image {
    margin-bottom: 0;
    height: 100%;
}

.news-block .image-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 400ms ease;
}

/* Image hover zoom */
.news-block .inner-box:hover .image img {
    transform: scale(1.05);
}

/* Date Badge */
.news-block .image-box .date {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #000;
    height: 70px;
    width: 65px;
    text-align: center;
    background: #ffffff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 5px;
    z-index: 2;
}

.news-block .image-box .date .month {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--primaryheader);
    width: 100%;
    color: #fff;
    font-size: 12px;
    line-height: 28px;
    font-weight: 500;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Lower Content */
.news-block .lower-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Post Info */
.news-block .post-info {
    display: flex;
    gap: 15px;
    padding-left: 0;
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.news-block .post-info li {
    color: #6a6f78;
}

.news-block .post-info li i {
    margin-right: 6px;
    color: var(--primaryheader);
}

/* Title */
.news-block .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-block .title a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.news-block .title a:hover {
    color: var(--primaryheader);
}

/* Subheading Text */
.news-block .text {
    color: #6a6f78;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Read More Button */
.link-btn {
    font-size: 15px;
    color: #16171a;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.link-btn i {
    margin-left: 8px;
    font-size: 11px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background-color: var(--primaryheader);
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.link-btn:hover {
    color: var(--primaryheader);
}

/* ===============================
   PAGE TITLE SECTION
=================================*/

.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 110px 0;
    min-height: 250px;
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.6;
    content: "";
    z-index: 0;
}

.page-title .title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-breadcrumb {
    position: relative;
    padding-left: 0;
    color: #fff;
    z-index: 1;
}

.page-breadcrumb li {
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #ffffff;
    font-size: 14px;
}

.page-breadcrumb li a {
    text-decoration: none;
    color: #ffffff;
}

.page-breadcrumb li:after {
    position: absolute;
    content: "\f105";
    right: -6px;
    top: 1px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {
    .news-block .image-box {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .news-block .image-box {
        height: 200px;
    }

    .news-block {
        margin-bottom: 20px;
    }
}

/* blog details  */
/* blog  */
/* .news-block .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.news-block .image-box {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.news-block .image-box .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.news-block .image-box .date {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #000;
    z-index: 1;
    height: 76px;
    width: 70px;
    text-align: center;
    background: #ffffff;
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 800;
    border-radius: 10px;
    font-family: var(--title-font);
    padding: 10px 10px;
    z-index: 9;
}

.news-block .image-box .date .month {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--primaryheader);
    width: 100%;
    color: #fff;
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
}

.news-block .lower-content {
    position: relative;
    z-index: 2;
    border-radius: 7px;
    padding: 20px;
}

.link-btn {
    text-transform: capitalize;
    font-size: 16px;
    color: #16171a;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.link-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    background-color: var(--primaryheader);
    text-align: center;
    color: #fff;
}

.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 110px 0 110px;
    min-height: 250px;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    position: relative;
    z-index: -1;
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.6;
    content: "";
    z-index: 0;
}

.page-title .title {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 17px;
}

.page-breadcrumb {
    position: relative;
    margin-top: 5px;
    padding-left: 0px;
    color: #fff;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

div.text {
    color: #6a6f78;
}

.page-breadcrumb li a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.page-breadcrumb li:after {
    position: absolute;
    content: "\f105";
    right: -6px;
    top: 1px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: #ffffff;
}

.news-block .post-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0px;
    list-style: none;
    gap: 10px;
}

.news-block .post-info li .fa {
    color: var(--primaryheader);
}

.title a {
    text-decoration: none;
    color: #000;
}

.news-block .title {
    line-height: 1.2;
    font-weight: 500;
    font-size: 19px;
}

blog  */
/* visa  */
/* ====== WORK VISA PAGE - MODERN DESIGN 2026 ====== */

/* Hero Section */
.ws-hero {
    background: linear-gradient(rgba(44, 78, 137, 0.9), rgba(44, 78, 137, 0.95)),
        url('https://images.unsplash.com/photo-1553877522-43269d4ea984');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.ws-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c4e89, #4a7bc8, #2c4e89);
}

.ws-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ws-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ws-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ws-heading-large {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ws-text-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.ws-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ws-btn-primary {
    background: white;
    color: #2c4e89;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(44, 78, 137, 0.3);
}

.ws-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 78, 137, 0.4);
}

.ws-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ws-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Page Container */
.container_custum {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Headings */
.heading_page_all {
    text-align: center;
    margin-bottom: 40px;
}

.heading_page_all span {
    font-size: 30px;
    font-weight: 600;
    color: #1a365d;
    position: relative;
    display: inline-block;
}

.downline {
    color: #2c4e89;
    position: relative;
}



/* Sections */


.ws-text-body {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.ws-text-bold {
    font-weight: 700;
    color: #2c4e89;
}

/* Card Grid */
.ws-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ws-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border-top: 4px solid #2c4e89;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.ws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(44, 78, 137, 0.15);
    border-top-color: #4a7bc8;
}

.ws-card-icon {
    background: #2c4e89;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.ws-heading-card {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.ws-card-example {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid #2c4e89;
    font-size: 14px;
    color: #4a5568;
}

/* Benefits Grid */
.ws-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ws-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.ws-benefit-card:hover {
    border-color: #2c4e89;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 78, 137, 0.1);
}

.ws-benefit-icon {
    background: #2c4e89;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Why Choose Grid */
.ws-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ws-why-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.ws-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(44, 78, 137, 0.15);
    border-color: #2c4e89;
}

.ws-why-icon {
    background: #2c4e89;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

/* Table */
.ws-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ws-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.ws-table-header {
    background: #2c4e89;
}

.ws-table th {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    padding: 18px 20px;
    white-space: nowrap;
}

.ws-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #4a5568;
}

.ws-table tr:last-child td {
    border-bottom: none;
}

.ws-table tr:hover {
    background-color: #f8fafc;
}

.ws-table-requirement {
    font-weight: 600;
    color: #2c4e89;
    font-size: 15px;
    min-width: 200px;
}

/* FAQ */
.ws-faq-container {
    margin-top: 30px;
}

.ws-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ws-faq-item.ws-active {
    border-color: #2c4e89;
    box-shadow: 0 5px 15px rgba(44, 78, 137, 0.1);
}

.ws-faq-question {
    padding: 20px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #1a365d;
    transition: background-color 0.2s ease;
}

.ws-faq-question:hover {
    background: #f8fafc;
}

.ws-faq-icon {
    color: #2c4e89;
    transition: transform 0.3s ease;
}

.ws-faq-item.ws-active .ws-faq-icon {
    transform: rotate(180deg);
}

.ws-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-size: 15px;
    line-height: 1.7;
}

.ws-faq-item.ws-active .ws-faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ws-hero {
        padding: 40px 15px;
    }

    .ws-heading-large {
        font-size: 28px;
    }

    .ws-text-lead {
        font-size: 16px;
    }

    .ws-hero-actions {
        flex-direction: column;
    }

    .ws-hero-actions button {
        width: 100%;
        justify-content: center;
    }

    .heading_page_all span {
        font-size: 26px;
    }

    .ws-section {
        padding: 20px;
    }

    .ws-card-grid,
    .ws-benefits-grid,
    .ws-why-grid {
        grid-template-columns: 1fr;
    }

    .ws-benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .ws-table th,
    .ws-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .ws-heading-large {
        font-size: 24px;
    }

    .ws-btn-primary,
    .ws-btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .heading_page_all span {
        font-size: 22px;
    }

    .ws-card {
        padding: 20px;
    }

    .ws-benefit-card,
    .ws-why-card {
        padding: 20px;
    }
}

/* Animation for cards on scroll */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ws-card,
.ws-benefit-card,
.ws-why-card {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects for icons */
.ws-card:hover .ws-card-icon,
.ws-benefit-card:hover .ws-benefit-icon,
.ws-why-card:hover .ws-why-icon {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* visa  */
/* destination page design  */

.uk-study-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 40px;
}

.uk-study-header {
    color: white;
    padding: 60px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    z-index: 1;
    background-position: bottom !important;
    background-attachment: fixed !important;
}

.uk-study-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000005e;
    width: 100%;
    height: 100%;
    z-index: -1;

}


.uk-study-header h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.uk-study-header p {
    font-size: 16px;
    /* Slightly larger for header paragraph */
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto 15px;
    position: relative;
    font-weight: 400;
    line-height: 1.5;
}

.uk-study-flag {
    display: inline-block;
    background: linear-gradient(to right, #012169 33%, white 33%, white 66%, #C8102E 66%);
    width: 110px;
    height: 70px;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Desktop Tabs Navigation */
.uk-study-tabs-desktop {
    border-bottom: 2px solid #e2e8f0;
}

.uk-study-tabs-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin-bottom: 0px;
    padding-left: 0px;
}

.uk-study-tab-item {
    text-align: center;
}

.uk-study-tab-link {
    display: block;
    color: #333;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.uk-study-tab-item.active .uk-study-tab-link {
    color: var(--primaryheader);
    border-bottom-color: var(--primaryheader);
    background-color: rgba(30, 64, 175, 0.05);
}

/* .uk-study-tab-link:hover {
            background-color: rgba(30, 64, 175, 0.08);
            color: var(--primaryheader);
        } */

.uk-study-tab-link i {
    margin-right: 6px;
    font-size: 14px;
}

/* Mobile Dropdown Navigation */
.uk-study-tabs-mobile {
    display: none;
    padding: 15px 0px;
}

.uk-study-dropdown {
    width: 100%;
    position: relative;
}

.uk-study-dropdown-select {
    width: 100%;
    padding: 14px 18px;
    background-color: white;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.uk-study-dropdown-select i {
    transition: transform 0.3s ease;
}

.uk-study-dropdown.active .uk-study-dropdown-select i {
    transform: rotate(180deg);
}

.uk-study-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 2px solid #cbd5e1;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.uk-study-dropdown.active .uk-study-dropdown-options {
    max-height: 400px;
}

.uk-study-dropdown-option {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    /* Updated to 600 */
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.uk-study-dropdown-option:last-child {
    border-bottom: none;
}

.uk-study-dropdown-option:hover {
    background-color: #f8fafc;
}

.uk-study-dropdown-option.active {
    color: var(--primaryheader);
    background-color: rgba(30, 64, 175, 0.08);
}

.uk-study-dropdown-option i {
    margin-right: 8px;
    width: 18px;
    text-align: center;
    font-size: 14px;
}

/* Tab Content */
.uk-study-tab-content {
    display: none;
    padding: 30px 25px;
    animation: uk-study-fadeIn 0.5s ease;
}

.uk-study-tab-content.active {
    display: block;
}

@keyframes uk-study-fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fast Facts Grid */
.uk-study-facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.uk-study-fact-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.uk-study-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primaryheader);
}

.uk-study-fact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.uk-study-fact-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.uk-study-fact-title {
    color: #64748b;
    font-size: 12px;
    /* Updated to 12px */
    margin-bottom: 6px;
    font-weight: 600;
    /* Updated to 600 */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.uk-study-fact-value {
    color: #1e293b;
    font-size: 18px;
    /* Larger for values */
    font-weight: 600;
    /* Updated to 600 */
}

/* Content Headers */
.uk-study-content-title {
    color: var(--primaryheader);
    margin-bottom: 20px;
    font-size: 24px;
    /* Heading size */
    font-weight: 600;
    /* Updated to 600 */
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    position: relative;
}

.uk-study-content-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background-color: var(--primaryheader);
}

/* Content Sections */
.uk-study-content-intro {
    font-size: 14px;
    /* Updated to 14px */
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
}

.uk-study-content-section {
    margin-bottom: 28px;
}

.uk-study-section-title {
    color: #334155;
    font-size: 18px;
    /* Subheading size */
    font-weight: 600;
    /* Updated to 600 */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.uk-study-section-title i {
    margin-right: 8px;
    color: var(--primaryheader);
    font-size: 16px;
}

.uk-study-content-text {
    margin-bottom: 12px;
    font-size: 14px;
    /* Updated to 14px */
    color: #475569;
    line-height: 1.6;
    font-weight: 400;
}

.uk-study-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.uk-study-list-item {
    margin-bottom: 10px;
    font-size: 14px;
    /* Updated to 14px */
    color: #475569;
    position: relative;
    padding-left: 8px;
    font-weight: 400;
    line-height: 1.5;
}

.uk-study-list-item::before {
    content: "•";
    color: var(--primaryheader);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.uk-study-highlight-box {
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid var(--primaryheader);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.uk-study-highlight-title {
    color: var(--primaryheader);
    font-size: 16px;
    /* Subheading size */
    font-weight: 600;
    /* Updated to 600 */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.uk-study-highlight-title i {
    margin-right: 8px;
    font-size: 14px;
}

/* Statistics Grid */
.uk-study-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(242px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.uk-study-stat-item {
    background-color: white;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #ccc;
}

.uk-study-stat-number {
    color: var(--primaryheader);
    font-size: 24px;
    /* Larger for numbers */
    font-weight: 600;
    /* Updated to 600 */
    margin-bottom: 6px;
}

.uk-study-stat-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

/* Table Styling */
.uk-study-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    /* Updated to 14px */
}

.uk-study-table th {
    background-color: var(--primaryheader);
    color: white;
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    /* Updated to 600 */
    font-size: 14px;
    /* Updated to 14px */
}

.uk-study-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 400;
}

.uk-study-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.uk-study-table tr:hover {
    background-color: #f0f9ff;
}

.uk-study-table strong {
    font-weight: 600;
}

/* Footer */
.uk-study-footer {
    text-align: center;
    padding: 20px;
    color: #64748b;
    font-size: 12px;
    /* Updated to 12px */
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.uk-study-footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.uk-study-footer-link {
    margin: 0 12px;
    color: var(--primaryheader);
    text-decoration: none;
    font-weight: 600;
    /* Updated to 600 */
    font-size: 12px;
    /* Updated to 12px */
}

.uk-study-footer-link:hover {
    text-decoration: underline;
}

.uk-study-footer p {
    margin-bottom: 8px;
    font-weight: 400;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .uk-study-facts-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .uk-study-stats-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .uk-study-header h1 {
        font-size: 24px;
    }

    .uk-study-header p {
        font-size: 14px;
    }

    .uk-study-tabs-desktop {
        display: none;
    }

    .uk-study-tabs-mobile {
        display: block;
    }

    .uk-study-facts-container {
        grid-template-columns: 1fr 1fr;
    }
    .uk-study-fact-value {
    font-size: 13px;
}

    .uk-study-tab-content {
        padding: 0px;
    }

    .uk-study-content-title {
        font-size: 22px;
    }

    .uk-study-section-title {
        font-size: 16px;
    }

    .uk-study-highlight-title {
        font-size: 15px;
    }

    .uk-study-stat-number {
        font-size: 22px;
    }

    .uk-study-table {
        font-size: 13px;
    }
.visabreadcrumb .active {
    font-weight: 500;
    color: #fff;
    white-space: unset;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    font-size: 15px;
}
    .uk-study-table th,
    .uk-study-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .uk-study-container {
        margin-top: 10px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .uk-study-header {
        padding: 25px 20px;
    }

    .uk-study-header h1 {
        font-size: 22px;
    }

    .uk-study-fact-card {
        flex-direction: column;
        text-align: center;
        padding:8px;
    }
    .uk-study-list{
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .uk-study-fact-icon {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .uk-study-stats-grid {
        grid-template-columns: 1fr;
    }

    .uk-study-table {
        display: block;
        overflow-x: auto;
        font-size: 12px;
    }

    .uk-study-content-title {
        font-size: 20px;
    }

    .uk-study-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .uk-study-footer-link {
        margin: 4px 0;
    }
}

/* destination page design  */


/* why choose us  */
.why-choose-section {
    position: relative;
}

/* Header Section */
.section-header {
    background:linear-gradient(135deg, #2a4d6f 0%, #305594 100%);
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.section-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

/* Content Grid */
.content-grid {
    display: flex;
}

/* Left Side - Features */
.features-side {
    padding: 20px 0px;
    background: #f8fbff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-container {
    display: flex;
    gap: 15px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 60, 150, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-left: 5px solid #1a73e8;
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a73e8, #34a853);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #294d6c, #325798);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0px 10px;
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.3);
}
.feature-title {
    font-size: 22px;
    color: #1a3c6e;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #5f6368;
    line-height: 1.6;
    font-size: 16px;
}

/* Right Side - Visuals */
.visuals-side {
    padding: 60px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(26, 115, 232, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, #e6f0ff 0%, #d4e4ff 100%);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #5f6368;
    font-size: 15px;
    font-weight: 600;
}

/* Achievement Badge */
.achievement-badge {
    background: linear-gradient(135deg, #fbbc05 0%, #f57c00 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(251, 188, 5, 0.2);
}

.achievement-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.achievement-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.achievement-content p {
    opacity: 0.9;
    font-size: 14px;
}

/* Certification Badge */
.certification-badge {
    background: linear-gradient(135deg, #34a853 0%, #0d652d 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(52, 168, 83, 0.2);
}

.cert-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.cert-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cert-content p {
    opacity: 0.9;
    font-size: 14px;
}

/* Testimonial */
.testimonial {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 20px;
    border-left: 5px solid #ea4335;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 40px;
    font-size: 120px;
    color: #ea4335;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 18px;
    color: #1a3c6e;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.author-info h4 {
    color: #1a3c6e;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    color: #5f6368;
    font-size: 14px;
}

/* CTA Button */
.cta-container {
    padding: 40px 60px;
    text-align: center;
}

.section-title_why {
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primaryheader);
    color: white;
    padding: 16px 50px;
    border-radius: 29px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(26, 115, 232, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        padding: 60px 40px 40px;
    }

    .section-title {
        font-size: 38px;
    }

    .features-side,
    .visuals-side {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-title {
        font-size: 20px;
    }

    .cta-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: 40px 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-side,
    .visuals-side {
        padding: 30px 25px;
    }

    .achievement-badge,
    .certification-badge {
        flex-direction: column;
        text-align: center;
    }

    .testimonial {
        padding: 25px;
    }
}

/* why choose us  */
/* course  */
.subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


.section-title {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 30px;
}

.section-title i {
    color: var(--primaryheader);
    font-size: 1.8rem;
    margin-right: 15px;
}

.section-title h2 {
    color: #2c3e50;
    font-size: 1.8rem;
}

/* Country card styles */


.country-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px 15px;
    margin: 0 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    height: 180px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primaryheader);
}

.country-flag {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.country-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Slick slider customizations */
.country-slider .slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    top: -20px;
}

.country-slider .slick-prev:hover,
.slick-next:hover {
    background-color: #2980b9 !important;
}

.country-slider .slick-prev:before,
.slick-next:before {
    color: white;
    font-size: 20px;
}

.country-slider .slick-prev {
    right: -45px;
    left: auto;
}

.country-slider .slick-next {
    right: 15px;
    top: -20px;
    width: 40px;
    height: 40px;
}

.country-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--primaryheader);
}

.country-slider .slick-dots li.country-slider .slick-active button:before {
    color: var(--primaryheader);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .country-slider .slick-prev {
        left: -20px;
    }

    .country-slider .slick-next {
        right: -20px;
    }

    .country-card {
        height: 160px;
        padding: 15px 10px;
    }

    .country-flag {
        width: 70px;
        height: 45px;
    }
}

@media (max-width: 480px) {


    .countries-section {
        padding: 30px 15px;
    }

    .country-card {
        height: 150px;
    }

    .country-slider .slick-prev,
    .country-slider .slick-next {
        display: none !important;
    }
}

.instructions {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primaryheader);
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
}

.instructions h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.instructions p {
    color: #555;
    line-height: 1.5;
}

/* course  */
/* popular university */
/* University Section - Compact Styling */
.edu-university-section {
    background: #f8fafc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.edu-university-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.edu-university-filters {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.edu-filter-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.edu-filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}

.edu-filter-group .form-select,
.edu-filter-group .form-control {
    border-radius: 999px;
    border-color: #e2e8f0;
    padding-inline: 14px;
    font-size: 14px;
}

.edu-filter-group .form-select:focus,
.edu-filter-group .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.edu-filter-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.edu-filter-actions .btn-primary {
    border-radius: 999px;
    padding-inline: 18px;
    background: var(--primaryheader);
    border-color: var(--primaryheader);
    color: #fff;
}
.edu-filter-actions .btn-primary:hover {
    background: #2d4a6f;
    border-color: #2d4a6f;
    color: #fff;
}

.edu-filter-actions .btn-outline-secondary {
    border-radius: 999px;
    padding-inline: 14px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .edu-university-filters {
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
    }

    .edu-filter-actions {
        justify-content: flex-end;
    }
}

.edu-view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--primaryheader);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.edu-view-more-btn:hover {
    background: #2d4a6f;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Section Header */
.edu-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.edu-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* University Grid - More compact */
.edu-university-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* University Card - Smaller and compact */
.edu-university-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.edu-university-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Card Header - Compact */
.edu-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.edu-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
    /* background: var(--primaryheader); */
}

/* Card header colors */
/* .edu-university-card:nth-child(1) .edu-card-icon {
    background: var(--primaryheader);
} */

/* USA */
/* .edu-university-card:nth-child(2) .edu-card-icon {
    background: #dc2626;
} */

/* UK */
/* .edu-university-card:nth-child(3) .edu-card-icon {
    background: #ef4444;
} */

/* Canada */
/* .edu-university-card:nth-child(4) .edu-card-icon {
    background: #0284c7;
} */

/* Australia */
/* .edu-university-card:nth-child(5) .edu-card-icon {
    background: #f97316;
} */

/* Germany */
/* .edu-university-card:nth-child(6) .edu-card-icon {
    background: #22c55e;
} */

/* Europe */

.edu-card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Card Body - Compact */
.edu-card-body {
    margin-bottom: 20px;
    flex-grow: 1;
}

.edu-top-institutions {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}

.edu-top-institutions strong {
    color: var(--primaryheader);
    font-weight: 600;
}

.edu-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.edu-location-tags span {
    background: #eff6ff;
    color: var(--primaryheader);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #dbeafe;
}

/* Card Footer - Compact */
.edu-card-footer {
    margin-top: auto;
}

.edu-explore-btn {
    display: block;
    text-align: center;
    background: var(--primaryheader);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--primaryheader);
}

.edu-explore-btn:hover {
    background: var(--primaryheader);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .edu-university-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .edu-university-section {
        padding: 30px 12px;
    }

    .edu-title {
        font-size: 1.5rem;
    }

    .edu-university-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .edu-university-card {
        padding: 18px;
    }

    .edu-card-header {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .edu-card-icon {
   max-width: 60px;
        max-height: 74px;
        font-size: 16px;
        margin-right: 12px;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 9px;
    }
   
}

@media (max-width: 480px) {
    .edu-university-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .edu-title {
        font-size: 1.3rem;
    }

    .edu-card-header h3 {
        font-size: 1.2rem;
    }
}

/* popular university */

/* get rready */
.sec-title {
    font-size: 42px;
    font-weight: 400;
    text-transform: capitalize;
}

.highlighter {
    font-weight: 600;
    position: relative;
}

.btm-bnr-buttons a {
    text-decoration: none;
}

.highlighter::after {
    content: "";
    background: url(https://www.edwiseinternational.com/img/hero-elem-2.png) no-repeat;
    background-size: 90% 100%;
    display: block;
    width: 100%;
    height: 15.5px;
    position: absolute;
    bottom: -10px;
    left: 10px;
}

.btm-bnr-content p {
    margin: 20px 0 40px;
    font-weight: 300;
    color: #c6d3e3;
}

.btm-bnr-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 30px;
    color: #1d438d;
}

.button.white {
    background: #fff;
    border: 1px solid #fff;
    color: #231f20;
}

.button {
    font-family: var(--button-font);
    background: var(--button-fill);
    border: none;
    outline: none;
    border: 1px solid transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    line-height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.btm-bnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 150px;
    padding: 0 88px;
}

.btm-bnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 150px;
    padding: 0 88px;
}
.blue-bg {
    position: relative;
    background: url('../images/all_new.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    padding: 90px 0;
}

/* Gradient Overlay */
.blue-bg::before {
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(50 87 151), rgb(42 78 108));
    z-index: -1;
        border-radius: 30px;
}
.blue-bg {
    position: relative;
    overflow: hidden;
}

.blue-bg::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -7%;
    width: 54%;
    height: 236%;
    background: rgb(0 0 0 / 53%);
    transform: rotate(325deg);
    z-index: 1;
    border: 5px solid #cfc3c3;
}

/* Content upar dikhe */
.btm-bnr-content,
.btm-bnr-img {
    position: relative;
    z-index: 2;
}
/* Content above overlay */
.blue-bg * {
    position: relative;
    z-index: 2;
}
.btm-bnr-content {
    padding: 66px 0;
    max-width: 415px;
    width: 100%;
    color: #fff;
}

.btm-white-bg {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.btm-logos:last-child {
    padding-right: 5px;
}

.btm-logos:first-child {
    padding-left: 5px;
}

.btm-white-bg img {
    max-height: 35px;
    max-width: 35px;
}

.btm-logos {
    padding: 2px;
    object-fit: contain;
}

.phone {
    display: none;
}

.btm-bnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 150px;
    padding: 0 88px;
}

.btm-bnr-img {
    width: 400px;
    height: 400px;
    margin-top: 0px;
}

.btm-bnr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* get rready */
/* textpreparatin */

/* Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primaryheader) 0%, #2a5298 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    border-bottom: 5px solid var(--primaryheader);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Tabs Navigation */
.tabs-container {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tabs {
    display: flex;
    overflow-x: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    scrollbar-width: thin;
}

.tab-btn {
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #2a5298;
    background-color: #f8f9fa;
}

.tab-btn.active {
    color: #2a5298;
    border-bottom-color: var(--primaryheader);
    background-color: #f8f9fa;
}

/* Content Area */
.content-container {
    padding: 40px 0;
    background-color: white;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    margin-bottom: 40px;
}

.section h2 {
    color: var(--primaryheader);
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.section h2 i {
    margin-right: 10px;
    color: var(--primaryheader);
}

.section h3 {
    color: #2a5298;
    font-size: 16px;
    margin: 25px 0 15px;
}

.section p {
    margin-bottom: 15px;
    font-size: 14px;
}

.section ul,
.section ol {
    margin-bottom: 20px;
}

.section li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.highlight {
    background-color: #fff9e6;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

table th {
 background-color: #e3e3e3;
    text-align: left;
    padding: 7px;
    font-size: 16px;
    font-weight: 600;
    color: #5b5b5b;
}

table td {
    color: #1d1e1e;
    font-weight: 500;
    font-size: 14px;
    padding: 5px;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f0f7ff;
}

table a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}

table a:hover {
    text-decoration: underline;
}
.feature-item{
    display: flex;
}
.feature-item span{
        font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #5b5b5b;
}

/* FAQ Styles */
.faq-container {
    background-color: #f8f9fa;
    border-radius: 8px;

}

.faq-title {
    color: var(--primaryheader);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: white;
    padding: 18px 20px;
    font-weight: 600;
    color: #2a5298;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f0f7ff;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    background-color: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Disclaimer */
.disclaimer {
    background-color: #fff3e0;
    padding: 20px;
    margin-top: 40px;
    border-radius: 4px;
}

.disclaimer strong {
    color: var(--primaryheader);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .tab-btn {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .content-container {
        padding: 25px 0;
    }

    .tab-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .tab-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }
}

.ielts-button {
    border: 1px solid #0487f3 !important;
    border-radius: 6px;
    background: transparent;
    color: #0487f3;
    font-size: 14px;
    padding: 9px 12px;
    cursor: pointer;
}

.ielts-logo-section {
    padding: 50px;
}

.ielts-exam-title {
    font-size: 32px;
    height: 118px;
    display: flex;
    font-weight: 600;
    align-items: center;
    margin-bottom: 0;
}

/* textpreparatin */



/* course psection  */
.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Styling - Minimal */

/* Title Section - Simplified */
.sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.sec-title h2 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 8px;
    font-weight: 600;
}

.sec-title p {
    color: #6b7280;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Course Card Styles - Lightweight */
.moec-sc-uni-course-four {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
    border: 3px solid #e5e7eb;
    height: 100%;
}

.moec-sc-uni-course-four:hover {
    transform: translateY(-2px);
}

.sc-uni-cour-one {
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sc-uni-cour-one p{
    font-size: 11px;
}
.testimonial-content h3 {
    font-size: 12px;
    margin-bottom: 4px;
    margin-top: 7px;
}
.testimonial-content span {
    color: #718096;
    font-size: 10px;
}
.heading_page_all span {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    position: relative;
    display: inline-block;
}

.uni-cour-one-content {
      display: flex;
    align-items: center;
    height: 70px;
    padding-bottom: 7px;
    border-bottom: 1px solid #f3f4f6;

}

.uni-cour-one-logo {
    background: var(--primaryheader);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 20px;
}

.uni-cour-one-content p {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
        text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/* Course Details - Clean */
.sc-uni-cour-two-content {
    margin-bottom: 20px;
}

.sc-uni-cour-two-content p {
    margin-bottom: 10px;
    color: #4b5563;
    font-size: 14px;
}

.sc-uni-cour-two-content strong {
    color: #1f2937;
    font-weight: 600;
}

.sc-uni-cour-two-content a {
    color: var(--primaryheader);
    text-decoration: none;
    font-weight: 500;
}

.sc-uni-cour-two-content a:hover {
    text-decoration: underline;
}

/* Button - Single Color */
.moec-sc-btn-box {
    text-align: center;
    margin-top: auto;
}

.theme-btn {
    display: block;
    padding: 10px 20px;
    background: var(--primaryheader);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.theme-btn:hover {
    background: var(--primaryheader);
    color: white;
    text-decoration: none;
}

/* Slick Slider - Minimal Customization */
.four-item-carousel {
    position: relative;
}

.four-item-carousel .slick-list {
    overflow: hidden;
    margin: 0 -8px;
}

.four-item-carousel .slick-slide {
    padding: 0 8px;
    height: auto;
}

.four-item-carousel .slick-slide>div {
    height: 100%;
}

/* Navigation - Simple */
.four-item-carousel .slick-prev,
.four-item-carousel .slick-next {
    position: absolute;
    top: -10%;
    width: 36px;
    height: 36px;
    background: white;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 0;
}

.four-item-carousel .slick-prev:hover,
.four-item-carousel .slick-next:hover {
    background: #f9fafb;
}

.four-item-carousel .slick-prev {
    right: 25px;
    left: auto;
}

.four-item-carousel .slick-next {
    right: -18px;
}

.four-item-carousel .slick-prev:before,
.four-item-carousel .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #6b7280;
    opacity: 1;
}

.four-item-carousel .slick-prev:before {
    content: "\f053";
}

.four-item-carousel .slick-next:before {
    content: "\f054";
}

/* Dots - Minimal */
.four-item-carousel .slick-dots {
    bottom: -30px;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 16px 0 0;
}

.four-item-carousel .slick-dots li {
    margin: 0 4px;
}

.four-item-carousel .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    font-size: 0;
    cursor: pointer;
    padding: 0;
}

.four-item-carousel .slick-dots li.slick-active button {
    background: var(--primaryheader);
}



@media (max-width: 768px) {
    .moec-sc-uni-course-section {
        padding: 30px 0;
    }

    .sec-title h2 {
        font-size: 24px;
    }

    .sec-title p {
        font-size: 15px;
    }

    .uni-cour-one-content p {
        font-size: 20px;
    }

    .sc-uni-cour-one {
        padding: 20px;
    }

    .four-item-carousel .slick-prev,
    .four-item-carousel .slick-next {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .sec-title h2 {
        font-size: 22px;
    }

    .uni-cour-one-content {
        flex-direction: column;
        text-align: center;
    }

    .uni-cour-one-logo {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .theme-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* course psection  */

/* course details  */
.course-cards-wrapper {
    margin: 20px 140px;
}


@media (max-width: 768px) {
    .course-cards-wrapper {
        margin-top: 40px;
    }
}

.coursedetails-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.coursedetails-header {
    margin-bottom: 40px;
    padding: 0 15px;
}

.coursedetails-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.coursedetails-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primaryheader), var(--primaryheader));
    border-radius: 2px;
}

.coursedetails-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 800px;
}

.coursedetails-badge {
    display: inline-block;
    background: var(--primaryheader);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

/* Course Cards Styling */
.coursedetails-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* .coursedetails-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primaryheader);
} */

.coursedetails-card-header {
    padding: 20px 20px 15px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.coursedetails-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    padding: 8px;
    background: #ffffff;
}

.coursedetails-university-info {
    flex: 1;
}

.coursedetails-university-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
}

.coursedetails-university-name:hover {
    color: var(--primaryheader);
}

.coursedetails-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4b5563;
    font-size: 0.9rem;
}

.coursedetails-card-body {
    padding: 20px;
    flex: 1;
}

.coursedetails-program-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primaryheader);
    margin-bottom: 20px;
    line-height: 1.4;
}

.coursedetails-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coursedetails-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coursedetails-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primaryheader);
    background-color: #eff6ff;
}

.coursedetails-detail-content {
    flex: 1;
}

.coursedetails-detail-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.coursedetails-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.coursedetails-price {
    color: var(--primaryheader);
    font-weight: 600;
}

.Loadmore {
    background: var(--primaryheader);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.coursedetails-duration {
    color: var(--primaryheader);
    font-weight: 600;
}

.coursedetails-card-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #f8fafc;
}

.coursedetails-actions {
    display: flex;
    gap: 10px;
}

.coursedetails-btn-primary {
    background: var(--primaryheader);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.coursedetails-btn-primary:hover {
    background: linear-gradient(135deg, var(--primaryheader), var(--primaryheader));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.coursedetails-btn-outline {
    background: #ffffff;
    color: var(--primaryheader);
    border: 2px solid var(--primaryheader);
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.coursedetails-btn-outline:hover {
    background: #eff6ff;
    color: var(--primaryheader);
    transform: translateY(-2px);
}

/* Filter and Sort Controls */
.coursedetails-controls {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.coursedetails-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.coursedetails-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coursedetails-filter-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.9rem;
}

.coursedetails-filter-select {
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #1f2937;
    font-size: 0.9rem;
}

.coursedetails-stats {
    background: #eff6ff;
    color: var(--primaryheader);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .coursedetails-container {
        padding: 15px;
    }

    .coursedetails-title {
        font-size: 1.7rem;
    }

    .coursedetails-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .coursedetails-logo {
        width: 60px;
        height: 60px;
    }

    .coursedetails-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .coursedetails-container {
        padding: 10px;
    }

    .coursedetails-title {
        font-size: 1.5rem;
    }

    .coursedetails-controls {
        padding: 15px;
    }

    .coursedetails-filter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .coursedetails-stats {
        margin-left: 0;
    }
}

/* Animation for card hover */
@keyframes coursedetails-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coursedetails-card {
    animation: coursedetails-fadeInUp 0.5s ease forwards;
}


/* Program type indicator */
.coursedetails-program-type {
    position: absolute;
    top: -9px;
    right: 15px;
    background: var(--primaryheader);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* Country flag styling */
.coursedetails-country-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.coursedetails-country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Difficulty rating */
.coursedetails-rating {
    color: #fbbf24;
}

/* Additional course info styles */
.coursedetails-additional-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e5e7eb;
}

.coursedetails-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.coursedetails-tag {
    background: #eff6ff;
    color: var(--primaryheader);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.coursedetails-tag-green {
    background: #d1fae5;
    color: var(--primaryheader);
}

.coursedetails-tag-purple {
    background: #ede9fe;
    color: #8b5cf6;
}

/* course details  */
/* common css   */
/* .content_mainpage {
    padding: 60px 0px 0px
} */

/* common css   */
.container_custum {
    position: relative;
    max-width: 1560px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
}
.headerdesignew.subtitlenew{
        font-size: 18px;
    color: #ffffff;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 0px;
    text-transform: uppercase;
    background: #2c4e89;
    padding: 3px 18px;
    border-radius: 4px;

}
.homesection {
    background: url('../images/hero-frame.svg');
    /* background: linear-gradient(78deg, rgba(241, 188, 25, .1) 12.17%, rgba(44, 192, 158, .1) 114.48%); */
}

.freecounselling {
    position: absolute;
    left: 0;
    object-fit: cover;
}

.freecounselling img {
    height: 490px;
}

/* counte  */

.counter-wrapper {
      text-align: center;
    display: flex;
    justify-content: center;
    gap: 18px;
    background: #e7e7e7;
    padding: 10px;
    border-radius: 5px;
}



.counter {
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -.32px;
    text-transform: capitalize;
    margin: 0;
    color: #2c4e89;

}

.counter-text {
   color: #5e6b71;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -.24px;
    text-transform: capitalize;
    margin: 0;
}

/* counte  */
/* .home page  */
.homepage {

    padding-top: 100px;
    padding-bottom: 100px;
}

.homepagecontent {
      display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: start;
    align-items: start;
}

.homepagecontent p {
    font-size: 18px;
    color: var(--primaryheader);
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.getstart {
    border-radius: 100px;
    background-color: var(--primaryheader);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    height: 3.2rem;
    width: 24.625rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.625rem;
    cursor: pointer;
    padding: 0px 18px;
    -webkit-transition: background-color .4s ease;
    -moz-transition: background-color .4s ease;
    transition: background-color .4s ease;
    text-decoration: none;
    -webkit-box-shadow: 0 2px 12px 0 rgba(30, 59, 91, .25);
    box-shadow: 0 2px 12px 0 rgba(30, 59, 91, .25);
    height: 56px;
    position: relative;
}

.getstart span {
    /* position: absolute; */
    right: 10px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--primaryheader);
}

.mainheading {
    color: #284d5d;
    text-align: start;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: capitalize;
    line-height: 1.2;
    font-size: 50px;
}

.mainheading span {
    z-index: 1;
    display: block;
}

.mainheading span .downline {
        position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-style: italic;
    font-size: 40px;
}

/* .mainheading span .downline:before {
    position: absolute;
    bottom: 0px;
    content: '';
    background: url('../images/down-mark-line.png');
    width: 100%;
    height: 100%;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
} */

.liststyle_home {
    
    padding-left: 0px;
    margin-bottom: 0px;
}

.liststyle_home li {
    color: var(--primaryheader);
    font-size: 14px;
}

p.homepersantage {
    color: #4e585d;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -.14px;
}

/* .bannerpng {
    width: 400px;
    height: 660px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    z-index: 99;
}

.bannerpng img {
    width: 100%;
    object-fit: contain;
} */

/* .home page  */
/* serach bar  */
.search-container {
    width: 520px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper i {}

.seachicon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primaryheader);
    position: absolute;
    left: 10px;
    border-radius: 50px;
    color: #fff;

}

.search-bar {
    width: 100%;
    border-radius: 25px;
    outline: none;
    border: none;
    height: 100%;
    width: 100%;
    background: #fff;
    color: #4e585d;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    padding: 16px 16px 16px 60px;
    border-radius: 100px;
    border: 1px solid var(--primaryheader);
    overflow: hidden;
    background: #fff;
    width: 100%;
}

.search-bar:focus {
    border-color: #0d6efd;
}

/* serach bar  */

/* heading page  */
.heading_page h2 {
    font-size: 16px;
    text-align: center;
    padding-left: 0;
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: uppercase;
}

/* heading page  */

/* marquee slider  */

.marquee-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    background: white;
    padding: 30px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-item img {
    width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-container {
        padding: 20px 0;
    }

    .marquee-item {
        padding: 0 10px;
    }

    .marquee-item img {
        width: 100px;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }

    .marquee-track {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .marquee-item img {
        width: 80px;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 30px;
    }

    .marquee-track {
        animation-duration: 18s;
    }
}

/* marquee slider  */

.p-80 {
    padding: 80px 0px 50px;
}


/* testimonials  */

/* Original Card Design - UNCHANGED */
.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 0 10px;
    /* Added margin for spacing between slides */
    transition: transform 0.3s ease;
    height: 560px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-media {
    position: relative;
    height: 190px;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.play-btn svg {

    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.testimonial-content {
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    margin-bottom: 5px;
}

.testimonial-content p {
   margin: 0;
    color: #31393d;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -.12px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.testimonial-content h3 {
       color: #284d5d;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -.24px;
    text-transform: capitalize;
    margin: 11.2px 3.2px;
}

.testimonial-content span {
       color: #667074;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -.12px;
}

/* Slick Carousel Custom Styling */
.testimonial-slider .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}

.testimonial-slider .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 20px 0 !important;
    /* Add padding for shadows */
}

.testimonial-slider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
}

.testimonial-slider .slick-slide {
    float: none;
    height: auto;
    min-height: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;

    position: relative;
    border-radius: 12px;
    background-color: #fbfbfb;
    border: 1px solid #f2f2f2;
    height: auto;
    padding: 16px 16px 10px;
    width: 100%;
}

/* Navigation Arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    top: -15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: 1px solid #dbdbdb;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.testimonial-slider .slick-prev {
    right: 35px;
    left: auto;
}

.testimonial-slider .slick-next {
    right: -25px;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: #2CC09E;
    border-color: #2CC09E;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-family: 'slick';
    font-size: 24px;
    line-height: 1;
    color: #4a5568;
    opacity: 1;
}

.testimonial-slider .slick-prev:hover:before,
.testimonial-slider .slick-next:hover:before {
    color: white;
}

.testimonial-slider .slick-prev:before {
    content: none;
}

.testimonial-slider .slick-next:before {
    content: none;
}

.play-btn {
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #040000bf;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Dots */
.testimonial-slider .slick-dots {
    position: absolute;
    bottom: -40px;
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.testimonial-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.testimonial-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #cbd5e0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-dots li.testimonial-slider .slick-active button {
    background: #2CC09E;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        height: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-media {
        height: 240px;
    }

    .testimonial-content {
        padding: 25px;
    }

    .testimonial-slider .slick-prev {
        left: 10px;
    }

    .testimonial-slider .slick-next {
        right: 10px;
    }

    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        width: 40px;
        height: 40px;
    }
}




/* testimonials  */

/* faq and contact  */
/* Main Content Layout */
/* .main-content {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    margin-top: 30px;
} */

/* FAQ Section */
.faq-section {
    padding-right: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primaryheader);
    border-radius: 2px;
}

.contact-section-form .faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primaryheader);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}


.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px;
    background: #ffffff;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    font-size: 18px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primaryheader);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 12px 0 12px 20px;
    color: #666;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Contact Form Section */
.contact-section-from {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e5e7eb;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primaryheader);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-text .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-submit {
    background: var(--primaryheader);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Rubik',
        sans-serif;
}

.form-submit:hover {
    background: var(--primaryheader);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.form-submit:active {
    transform: translateY(0);
}

.contact-info {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #666;
    font-size: 15px;
}

.info-item i {
    color: var(--primaryheader);
    font-size: 18px;
}



/* Stats Section */
.stats-section {
    background: #f8fafc;
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 600;
    color: var(--primaryheader);
    margin-bottom: 8px;
}



.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-section {
        padding-right: 0;
    }

    .contact-section {
        padding: 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact-section {
        padding: 24px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-item {
        padding: 16px;
    }
}

/* Success Message */
.success-message {
    display: none;
    background: var(--primaryheader);
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* faq and contact  */

/* course Finder  */


/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 32px;
}

.header h1 {
    color: #1F2937;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header p {
    color: #4B5563;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.header-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.decoration-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8B5CF6;
}

.decoration-dot:nth-child(2) {
    background: var(--primaryheader);
    width: 8px;
    height: 8px;
}

.decoration-dot:nth-child(3) {
    background: #F59E0B;
}

/* Main Form Container */
.form-container {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
    border: 1px solid #E5E7EB;
}

/* Progress Bar */
.progress-container {
    background: #F9FAFB;
    padding: 20px 32px;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.progress-title {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-title i {
    color: var(--primaryheader);
    font-size: 16px;
}

.progress-step {
    font-size: 12px;
    font-weight: 600;
    color: var(--primaryheader);
    background: #F5F3FF;
    padding: 4px 10px;
    border-radius: 16px;
}

.progress-bar {
    height: 6px!important;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: visible!important;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primaryheader) 0%, #8B5CF6 100%);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    padding: 0 8px;
}

.progress-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #6B7280;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--primaryheader);
    border-color: var(--primaryheader);
    color: white;
    transform: scale(1.1);
}

.progress-dot.completed {
    background: var(--primaryheader);
    border-color: var(--primaryheader);
    color: white;
}

/* Form Steps */
.form-step {
    padding: 32px;
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-subtitle {
    color: #4B5563;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.5;
}

.step-title i {
    color: var(--primaryheader);
    background: #F5F3FF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    color: #1F2937;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-label-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: #EF4444;
    font-size: 12px;
}

/* Chip Selection */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 12px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: #4B5563;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chip:hover {
    border-color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.chip.selected {
    background: #F5F3FF;
    border-color: var(--primaryheader);
    color: var(--primaryheader);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.chip i {
    font-size: 11px;
}

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.country-option {
    padding: 16px 12px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.country-option:hover {
    border-color: #8B5CF6;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.country-option.selected {
    background: #F5F3FF;
    border-color: var(--primaryheader);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.country-flag {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-weight: 600;
    color: #1F2937;
    font-size: 14px;
}

.country-desc {
    font-size: 10px;
    color: #6B7280;
    margin-top: 2px;
}

/* Course Dropdown */
.course-dropdown-container {
    position: relative;
    width: 100%;
}

.course-search-container {
    position: relative;
}

.course-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 12px;
    color: #1F2937;
    background: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-search-input:focus {
    outline: none;
    border-color: var(--primaryheader);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.course-search-input::placeholder {
    color: #6B7280;
    font-size: 12px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    font-size: 14px;
}

.course-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-dropdown.active {
    display: block;
}

.course-category {
    padding: 10px 16px;
    background: #F9FAFB;
    font-weight: 600;
    font-size: 10px;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 10;
}

.course-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-option:hover {
    background: #F5F3FF;
}

.course-option.selected {
    background: #F5F3FF;
    color: var(--primaryheader);
}

.course-option:last-child {
    border-bottom: none;
}

.course-name {
    font-size: 12px;
    color: #1F2937;
    font-weight: 500;
}

.course-option.selected .course-name {
    color: var(--primaryheader);
    font-weight: 600;
}

.course-checkmark {
    color: var(--primaryheader);
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.course-option.selected .course-checkmark {
    opacity: 1;
}

/* Quick Course Chips */
.quick-course-title {
    font-size: 11px;
    color: #6B7280;
    margin: 16px 0 10px;
    font-weight: 500;
}

/* Input Groups */
.input-group {
    position: relative;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 12px;
    color: #1F2937;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primaryheader);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input::placeholder {
    color: #6B7280;
    font-size: 12px;
}

/* Grid Layouts */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.exam-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-top: 1px solid #E5E7EB;
    background: #FFFFFF;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn i {
    font-size: 11px;
}

.btn-previous {
    background: #F9FAFB;
    color: #4B5563;
}

.btn-previous:hover {
    background: #E5E7EB;
    transform: translateX(-2px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #2c4e89 0%, #2c4e89 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.btn-next:disabled,
.btn-submit:disabled {
    background: #E5E7EB;
    color: #6B7280;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.btn-next:disabled:hover,
.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 32px;
    background: linear-gradient(135deg, #F5F3FF 0%, #F0F9FF 100%);
    border-radius: 16px;
}

.success-icon {
    font-size: 48px;
    color: var(--primaryheader);
    margin-bottom: 20px;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h2 {
    color: #1F2937;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-message p {
    color: #4B5563;
    font-size: 12px;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.btn-restart {
    background: #1F2937;
    color: white;
    padding: 12px 32px;
    font-size: 12px;
}

.btn-restart:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Summary Section */
.summary-section {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid #E5E7EB;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.summary-title {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title i {
    color: var(--primaryheader);
    font-size: 14px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.summary-item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease;
}



.summary-label {
    font-size: 10px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.summary-value {
    font-size: 12px;
    color: #1F2937;
    font-weight: 600;
}

/* Helper text styles */
.helper-text {
    font-size: 11px;
    color: #6B7280;
    margin-top: 6px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    body {
        padding: 0;
    }

    .header {
        padding: 16px 16px 0;
        margin-bottom: 16px;
    }

    .header h1 {
        font-size: 13px;
    }

    .header p {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .form-container {
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 0;
    }

    .progress-container {
        padding: 16px;
    }

    .progress-title {
        font-size: 13px;
    }

    .progress-step {
        font-size: 11px;
    }

    .form-step {
        padding: 00px;
    }
.chip {
    padding: 8px 10px;
    font-size: 12px;
}
    .step-title {
        font-size: 13px;
    }

    .step-subtitle {
        font-size: 11px;
    }

    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

 .form-footer {
    padding: 16px;
    flex-direction: row;
    gap: 12px;
}

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 12px;
    }

    .success-message {
        padding: 40px 20px;
    }

    .success-message h2 {
        font-size: 13px;
    }

    .success-message p {
        font-size: 11px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
    }

    .exam-section {
        flex-direction: row;
        gap: 32px;
    }

    .vertical-divider {
        width: 1px;
        background: #E5E7EB;
    }
}



/* course Finder  */

/* footer  */
/* Footer Styles */
.footer {
    background: white;
    padding: 60px 0 0px;
    width: 100%;
}



/* Footer Accordion (Mobile) */
.footer-accordion {
    display: none;
    gap: 0;
}

.accordion-item {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-checkbox {
    display: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--primaryheader);
}



.accordion-header i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-checkbox:checked+.accordion-header i {
    transform: rotate(180deg);
    color: var(--primaryheader);
}



.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-checkbox:checked~.accordion-content {
    max-height: 800px;
    transition: max-height 0.5s ease-in;
}

.accordion-link {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.accordion-link:hover {
    color: var(--primaryheader);
    padding-left: 8px;
}



/* Footer Links Grid (Desktop) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    margin-bottom: 0;
}

.section-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--primaryheader);
    transform: translateX(5px);
}



.new-badge {
    background: var(--primaryheader);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: 500;
}

/* Location Section */
.location-section {
    border-radius: 10px;

    font-size: large;
    display: flex;
    gap: 10px;
}

.heading_page_all.mainheading {
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    margin: 0px 0px 30px;
}

.heading_page_all.mainheading span span {
    margin-left: 0px;
}

.location-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.location-item {
    /* background: #f8fafc; */
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    padding: 20px;
}

.location-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.location-icon {
    color: var(--primaryheader);
    font-size: 14px;
}



.location-address {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.location-address a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-address a:hover {
    color: var(--primaryheader);
}



/* Contact Section */
.contact-form-wrapper {
    margin-top: 20px;
    margin-left: 125px;
    margin-right: 125px;
    margin-bottom: 20px;
}

.contact-section {
    display: flex;
    gap: 16px;
    align-items: center;
    border-top: 1px solid #00000026;
    border-bottom: 1px solid #00000026;
    padding: 20px 0px;
}

.contact-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-link:hover {
    color: var(--primaryheader);
}



.contact-icon {
    color: var(--primaryheader);
    font-size: 16px;
}



/* Footer Bottom */
.footerallnew {
    background: url('../images/counterybg.png');
}

.footer-bottom {
     padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
    justify-content: space-between;
}
.footer_new_all{
    padding: 10px 0px;
}
.footerlinks {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
    width: 125px;
}
.footer-logo a img{
   width: 100%;
   height: 100%;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: var(--primaryheader);
}



.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #666;
    text-decoration: none;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primaryheader);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.copyright {
    color: #666;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

.terms-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.terms-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.terms-link:hover {
    color: var(--primaryheader);
}



.terms-link:not(:last-child):after {
    content: "•";
    position: absolute;
    right: -15px;
    color: #d1d5db;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        display: none;
    }

    .footer-accordion {
        display: block;
    }

    .accordion-header {
        font-size: 14px;
        padding: 20px 0;
    }

    .accordion-link {
        font-size: 14px;
        padding: 14px 0 14px 12px;
        font-weight: 400;
    }

    .location-section {
        padding: 24px 20px;
    }

    .location-title {
        font-size: 14px;
    }

    .location-address {
        font-size: 14px;
    }

    .contact-link {
        font-size: 14px;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .terms-links {
        gap: 20px;
    }

    .terms-link {
        font-size: 13px;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-logo-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 30px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .terms-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .terms-link {
        font-size: 13px;
    }

    .terms-link:after {
        display: none;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .copyright {
        font-size: 12px;
        padding: 0 10px;
    }

    .contact-section {
        flex-direction: column;
    }

    .location-section {
        padding: 20px 16px;
        flex-direction: column;
    }

    .container_custum {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
}



/* footer  */

/* 30-0-2026 */
/* *********************************************************************** */
/* Common Grid Layouts */
.quick-facts,
.benefits-grid,
.salary-cards,
.eligibility-criteria,
.skills-grid,
.process-steps,
.facts-grid,
.gmat-keypoints,
.features-grid,
.trainers-grid,
.videos-grid,
.blogs-grid,
.score-cards,
.services-grid,
.countries-grid,
.coaching-grid,
.offerings-grid,
.ielts-sections-grid,
.resources-grid,
.college-cards,
.country-scores,
.comparison-details,
.eeat-grid,
.pte-sections-grid,
.comparison-grid,
.evolution-grid,
.mistakes-grid,
.advantage-grid,
.visa-tabs,
.sidebar-info-box {
    margin: 20px 0;
}
.trainers-grid .trainer-card{
    box-shadow: none;
    margin-bottom: 25px;
}
 .trainers-grid .trainer-card h4{
        font-size: 16px;
    margin: 0;
    font-weight: 500;
    color: #1d1e1e;
    margin: 0px 0px 10px;
    }
 .trainers-grid .trainer-card p{
        font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #5b5b5b;
    }
/* Grid Containers */
.facts-grid,
.salary-cards,
.score-cards,
.country-scores,
.gmat-keypoints {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.benefits-grid,
.skills-grid,
.coaching-grid,
.advantage-grid,
.offerings-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.eligibility-criteria,
.countries-grid,
.eeat-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.features-grid,
.services-grid,
.pte-sections-grid,
.comparison-grid,
.evolution-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.process-steps,
.trainers-grid,
.mistakes-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.videos-grid,
.blogs-grid,
.resources-grid,
.college-cards {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ielts-sections-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

/* Common Cards */
.fact-card,
.benefit-card,
.salary-card,
.criteria-card,
.skill-card,
.keypoint-card,
.score-card,
.service-card,
.country-card,
.coaching-card,
.offering-card,
.eeat-card,
.pte-section-card,
.comparison-card,
.evolution-card,
.mistake-card,
.advantage-card,
.feature-card,
.ielts-section-card,
.resource-card,
.blog-card,
.trainer-card {
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.trainer-card{
    padding: 0px;
}
/* Hover Effects */


/* Card Headings */
.fact-card h4,
.benefit-card h4,
.salary-card h4,
.criteria-card h4,
.skill-card h4,
.keypoint-card h4,
.score-card h4,
.service-card h4,
.country-card h4,
.coaching-card h4,
.offering-card h4,
.eeat-card h4,
.pte-section-card h4,
.comparison-card h4,
.evolution-card h3,
.mistake-card h4,
.advantage-card h4,
.feature-card h3,
.offering-card h3,
.ielts-section-card h4,
.resource-card h4,
.trainer-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Specific Card Styling */
.fact-card {
    text-align: center;
}

.fact-card p {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

.benefit-card {
    text-align: start;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.benefit-card .examimage {
    width: 100%;
    max-width: 80px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}
.benefit-card .examimage img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.benefit-card .contentpage {
    flex: 1;
    min-width: 0;
}
.benefit-card h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.benefit-card h4 a {
    color: var(--primaryheader, #2c4e89);
    text-decoration: none;
}
.benefit-card h4 a:hover {
    text-decoration: underline;
}
.benefit-card p{
    font-size: 15px;
    font-weight: 400;
    color: #5b5b5b;
    margin-bottom: 0;
    line-height: 1.55;
}

.salary-card {
    text-align: center;
}

.salary-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
}

.final-salary-card {
    padding: 25px;
    border-radius: 8px;
    background: #f8f9fa;
    text-align: center;
    border-left: 4px solid#fff;
    margin: 20px 0;
}

.final-salary-amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: #27ae60;
    margin: 10px 0;
}

.criteria-card {
    border-left: 4px solid var(--primaryheader);
}

.criteria-card ul {
    list-style: none;
    padding-left: 0;
}

.criteria-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.criteria-card li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

/* Language Cards */
.language-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.language-card {
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    margin: 30px 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primaryheader);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: var(--primaryheader);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    border-left: 4px solid var(--primaryheader);
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #9b59b6;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #9b59b6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Advantages List */
.advantages-list {
    margin: 20px 0;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 4px solid #27ae60;
}

/* CTA Box */
.cta-box {
    background: var(--primaryheader);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.cta-box h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-box .btn {
    background: white;
    color: var(--primaryheader);
    font-weight: bold;
    padding: 12px 30px;
}

.cta-box .btn:hover {
    background: #f8f9fa;
}

/* Sidebar Info Boxes */
.sidebar-info-box {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    background: #f8f9fa;
    border-left: 4px solid#fff;
}

.sidebar-info-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info,
.dates-list,
.quick-facts,
.contact-details,
.exam-highlights,
.quick-contact,
.timing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item,
.date-item,
.fact-item,
.contact-line,
.highlight-item,
.contact-method,
.timing-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

/* Achievement Stats */
.achievement-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Fee Highlight */
.fee-highlight {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid #27ae60;
}

.fee-highlight p {
    margin-bottom: 0px;
}

.fee-highlight strong {
    color: #fff;
    font-size: 1.1rem;
}

/* Form Styles */
.form-subtitle {
      text-align: center;
    color: #666;
    margin-bottom: 5px;
    font-size: 12px;
}

.subheading {
    color: #2c3e50;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primaryheader);
}

/* PTE Specific */
.score-range {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.comparison-block {
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #9b59b6;
}

.comparison-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Study Abroad Specific */
.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.country-flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cost-note {
    background: #fffde7;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.cta-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.office-info {
    margin: 15px 0;
}

.map-placeholder {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.map-placeholder:hover {
    background: #f0f0f0;
}

.map-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* IELTS Specific */
.mobile-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code {
   height: 38px;
    outline: none;
    border-radius: 8px;
    background-color: #f6f6f6 !important;
    border: 1px solid #eee !important;
    font-size: 14px !important;
}
.form-field select.form-select{
    height: 38px;
    outline: none;
    border-radius: 8px;
    background-color: #f6f6f6 !important;
    border: 1px solid #eee !important;
    font-size: 14px !important;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* GRE Specific */
/* Note: No unique styles beyond common ones */

/* SAT Specific */
.college-card {
    border-left: 4px solid var(--primaryheader);
}

.college-card p {
    line-height: 1.6;
    color: #555;
}

/* TOEFL Specific */
.scoring-explanation {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.scoring-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.scoring-number {
    background: var(--primaryheader);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.scoring-point h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

/* GMAT Specific */
/* Note: No unique styles beyond common ones */

/* IMAT Specific */
.exam-sections {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.section-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primaryheader);
}

.section-number {
    width: 40px;
    height: 40px;
    background: var(--primaryheader);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.section-content h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.cta-message {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-cta {
    background: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.contact-cta p {
    margin: 0;
    font-size: 1.1rem;
}

/* Coaching Page Specific */
.feature-card h3,
.offering-card h3 {
    font-size: 1.2rem;
}

.ielts-section-card {
    text-align: center;
    padding: 15px;
}

.ielts-section-card h4 {
    color: var(--primaryheader);
    margin-bottom: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.resource-card h4 {
    color: #2c4e89;
    margin-bottom: 10px;
    font-size: 16px;
}

.resource-links {
    list-style: none;
    padding: 0;
}

.resource-links li {
    margin-bottom: 8px;
}

.resource-links a {
    color: var(--primaryheader);
    text-decoration: none;
}

.resource-links a:hover {
    text-decoration: underline;
}

.trainer-card p {
    line-height: 1.5;
}

.linkedin-link {
    display: inline-block;
    margin-top: 10px;
    color: #0077b5;
    text-decoration: none;
    border: 1px solid #0077b5;
    padding: 6px 15px;
    background: linear-gradient(107.02deg, #284d5d -16.09%, #2c4e89 50.82%, #375fa5 119.13%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.linkedin-link:hover {
    text-decoration: underline;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.global-recognition {
    background: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.ielts-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primaryheader);
    text-decoration: none;
}

.ielts-link:hover {
    text-decoration: underline;
}

.cta-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #2c3e50 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    font-size: 13px;
}

.cta-banner h3 {
    margin-bottom: 10px;
    font-size: 23px;
}

/* PTE Coaching Specific */
.pte-section-card p {
    color: #7f8c8d;
    font-weight: bold;
    margin-bottom: 15px;
}

.pte-section-card ul {
    list-style: none;
    padding: 0;
}

.pte-section-card li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.pte-section-card li:last-child {
    border-bottom: none;
}

.score-note {
    padding: 15px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid #f1c40f;
    margin: 20px 0;
}

/* Visa Page Specific */
.visaheader-bg {
    color: #fff;
    padding: 60px 0 20px;
    /* background: url('../images/University-of-Hertfordshire.webp'); */
    background-size: cover;
    background-position: center;
    position: relative;
    background: var(--primary-color);
}

.visaheader-bg:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgb(10 43 43 / 64%), rgb(29 30 30 / 92%));
    width: 100%;
    height: 100%;
    z-index: 0;
}

.visacontainer {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.visabreadcrumb {
      font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.visabreadcrumb span{
    font-size:25px;
}
.visabreadcrumb a {
        font-weight: 500;
    color: #fff;
    white-space: noWrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    text-decoration: none;
}

.visabreadcrumb .active {
        font-weight: 500;
    color: #fff;
    white-space: noWrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}

.visaheader-content {
       display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    /* margin-top: 25px; */
     margin-top: 25px;
      margin-bottom: 25px;
    text-align: center;
}

.visalogo img {
    width: 70px;
}
h1.visatitle{
      font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: #1d1e1e;
        border-bottom: 0px;
    margin: 0px 0px 10px;
}

.visatitle {
    font-size: 28px;
    margin: 0;
    font-weight: 500;
    color: #1d1e1e;
    margin: 0px 0px 10px;
        color: #2c3e50;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primaryheader);
}
.homepage_heading{
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}
.visadescription {
      font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #5b5b5b;
}

.sectionpadding {
    margin: 28px 0 0;
    padding-top: 8px;
}
.sectionpadding:first-of-type {
    margin-top: 0;
}

.visalocation {
    color: #fff;
    margin-top: 5px;
}

.visalogo {
    height: 100px;
    width: 100px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visaapply-btn {
    display: block;
    cursor: pointer;
    border-radius: .5rem;
    background: #2c4e89;
    color: #fff;
    font-size: 1rem;
    padding: 10px 33px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    opacity: 1;
}

/* Visa Tabs */
.visa-tabs {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0 0 0 4px;
    margin: 0 0 24px 0;
    overflow-x: auto;
    border-bottom: 2px solid #e3e8f0;
    overflow-y: hidden;
    position: sticky;
    top: 60px;
    background: #fff;
    z-index: 10;
}

.visa-tab {
    white-space: nowrap;
}

.visa-tab-link {
    padding: 14px 0;
    display: inline-block;
        font-size: 16px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    position: relative;
}

.visa-tab-active .visa-tab-link {
  color: var(--primaryheader, #2c4e89);
    font-weight: 600;
    font-size: 15px;
}

.visa-tab-active .visa-tab-link::after {
  content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: var(--primaryheader, #2c4e89);
    border-radius: 4px;
}

.rank-badge {
    background: #2a5298;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

/* Coaching Classes Section - Circular diagram + Image grid (Vaishali Nagar) */
.coaching-classes-ui {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}
.coaching-circle-wrap {
    position: relative;
    width: 440px;
    height: 440px;
    flex-shrink: 0;
}
.coaching-circle-outer {
    position: absolute;
    inset: 0;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    background: #f9fafb;
}
.coaching-circle-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.coaching-circle-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.coaching-circle-center p {
    font-size: 12px;
    line-height: 1.5;
    color: #374151;
    text-align: center;
}
.coaching-node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #93c5fd;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    padding: 8px;
    line-height: 1.2;
    transition: background 0.2s, transform 0.2s;
}
.coaching-node:hover {
    background: var(--primaryheader, #2c4e89);
    color: #fff;
    transform: scale(1.05);
}
.coaching-node-1 { left: 50%; top: 8%;  transform: translate(-50%, 0); }
.coaching-node-2 { right: 8%;  top: 28%; }
.coaching-node-3 { right: 8%;  bottom: 28%; }
.coaching-node-4 { left: 50%; bottom: 8%; transform: translate(-50%, 0); }
.coaching-node-5 { left: 8%;  bottom: 28%; }
.coaching-node-6 { left: 8%;  top: 28%; }

.coaching-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}
.coaching-img-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    aspect-ratio: 1;
}
.coaching-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .coaching-classes-ui {
        flex-direction: column;
    }
    .coaching-circle-wrap {
        width: 340px;
        height: 340px;
    }
    .coaching-circle-center {
        width: 150px;
        height: 150px;
        padding: 14px;
    }
    .coaching-circle-center p { font-size: 10px; }
    .coaching-node {
        width: 64px;
        height: 64px;
        font-size: 9px;
    }
    .coaching-images-grid {
        max-width: 100%;
    }
}

.location {
    color: #555;
    font-size: 14px;
}

/* UK Guide */
.uk-guide__title,
.uk-reasons__title {
    font-size: 18px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.uk-guide__description,
.uk-reasons__description {
    text-align: center;
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.uk-guide__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-card .visatitle {
    margin: 0px;
}

.step-card__number {
    font-size: 24px;
    font-weight: bold;
    color: #0a3d62;
    margin-right: 20px;
    flex-shrink: 0;
    display: none;
}

.step-card__content h3 {
    font-size: 15px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.step-card__content p,
.step-card__list {
    font-size: 16px;
    line-height: 1.6;
}

.step-card__list {
    padding-left: 20px;
}

.step-card__list li {
    margin-bottom: 8px;
}

/* Why Study in UK */
.uk-reasons__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uk-reasons__list li {
    background-color: #fff;
    border-left: 5px solid #0a3d62;
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.uk-reasons__list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.uk-reasons__item-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #0a3d62;
    margin-bottom: 10px;
}

.uk-reasons__item-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Form Styles */
.side-form-container {
    position: sticky;
    top: 120px;
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primaryheader, #2c4e89);
}

.form-title {
    font-size: 20px !important;
    font-weight: 500;
    color: #1d1e1e;
    margin-bottom: 10px;
}

.form-pointers ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.form-pointers li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.form-pointers li svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 14px;
}

.field-label {
 font-weight: 500;
    margin-bottom: 0px;
    color: #1d1e1e;
    font-size: 14px;
}
select,
.country-code{
    font-size: 14px;
    border: 1px solid #eee;
    background-color: #f6f6f6;
}
.form-input {
 font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
    height: 35px;
    border: 1px solid #eee;
    background-color: #f6f6f6;
    padding: 12px;
    border-radius: 8px;
}

.form-input:focus {
    border-color: #e39d3d;
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.dropdown-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease;
    z-index: 10;
}

.form-actions {
    margin-top: 15px;
}

.dropdown-trigger label input {
    height: 48px;
    outline: none;
    border-radius: .5rem;
    background-color: #f6f6f6 !important;
    border: 1px solid #eee !important;
    font-size: 14px !important;
}

.submit-button button {
       display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    background: linear-gradient(107.02deg, #284d5d -16.09%, #2c4e89 50.82%, #375fa5 119.13%);
    color: #fff;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: opacity 0.3s ease;

}

.submit-button button:hover {
    opacity: 0.9;
}

.submit-button svg {
    width: 10px;
    height: 10px;
}

.terms {
   font-size: 10px;
    margin-top: 9px;
    color: #777;
    margin-bottom: 0px;
    text-align: center;
}

.terms a {
    color: var(--primary-color);
    text-decoration: underline;
}

.visadetails .visatitle {
    color: #fff;
}

.listingvisa ul {
    padding-left: 0px;
    list-style: none;
}

/* Responsive Design */
@media (max-width: 768px) {

    .facts-grid,
    .benefits-grid,
    .salary-cards,
    .eligibility-criteria,
    .skills-grid,
    .language-levels,
    .gmat-keypoints,
    .features-grid,
    .videos-grid,
    .blogs-grid,
    .score-cards,
    .services-grid,
    .countries-grid,
    .coaching-grid,
    .pte-sections-grid,
    .comparison-grid,
    .evolution-grid,
    .advantage-grid,
    .offerings-grid,
    .ielts-sections-grid,
    .resources-grid,
    .college-cards,
    .country-scores,
    .eeat-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        flex-direction: column;
        gap: 15px;
    }

    .timeline:before {
        left: 25px;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .salary-amount,
    .final-salary-amount {
        font-size: 1.5rem;
    }

    .score-range {
        font-size: 1.5rem;
    }

    .university-table {
        font-size: 0.9rem;
    }

    .university-table th,
    .university-table td {
        padding: 8px;
    }

    .process-step,
    .section-card {
        flex-direction: column;
        text-align: center;
    }

    .step-number,
    .section-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .mistake-card {
        flex-direction: column;
    }

    .mistake-number {
        align-self: flex-start;
    }

    .scoring-point {
        flex-direction: column;
        align-items: flex-start;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }
   

    .visatitle {
        font-size: 15px;
        margin: 0;
        font-weight: 500;
        color: #000;
        margin: 0px 0px 10px;
    }

    .visalogo {
        height: 64px;
        width: 64px;
    }

    .university-table th,
    .university-table td {
        padding: 10px;
        text-align: left;
    }
}


@media(max-width:1024px){
    .bannerpng {
     width: 230px;
     height: 618px;
    }
    .freecounselling img {
     height: 310px;
    }

.reecounselling {
    bottom: 0px;
}
    .homepage {
    padding-top: 50px;
    padding-bottom: 50px;
}
.homepagecontent {
    gap: 10px;
}
.mainheading{
    font-size: 30px;
}
#searchForm{
        display: flex;
    flex-direction: column;
    gap: 20px;
}
.getstart {
    width: 360px;
    font-size: 16px;
    padding: 0px 18px;
    height: 45px;
}
.p-50 {
    padding: 48px 0px 0px;
}
.feature-card{
    width: 49%;
}
.features-container {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
    .features-side, .visuals-side {
        padding: 40px 0px;
    }
    .btm-bnr-img{
        display: none;
    }
    .btm-bnr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    padding: 0 8px;
}
.btm-bnr-content {
    padding: 20px 0;
    max-width: 415px;
}
.sec-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}
.btm-bnr-content p {
    margin: 10px 0px;
    font-weight: 300;
    color: #c6d3e3;
    text-align: center;
}
.submenu-desktop .has-submenu a{
    padding: 12px 9px;
}
.submenu-desktop li a {
    padding: 12px 9px;
}
.submenu-desktop li a,
.menu-desktop  li.has-submenu ul li a:hover, .menu-desktop .menu-desktop  li.has-submenu ul li{
    padding: 12px 9px;
}
.sidebar-header {
    padding: 0px;
}
.sidebar-close .fas{
    color: #000;
}
}
.contact_page{
    width: 100%;
    height: 100%;
}
.contact_page img{
    width: 100%;
    height: 100%;
}
@media(max-width:991px){
    .mainheading span .downline {
    font-size: 20px;
}
.heading_page_all span {
    font-size: 15px;
            line-height: 30px;
}
.blue-bg::after {
    opacity: 0.09;
}
    .course-cards-wrapper {
    margin: 20px 0px;
}
.form-field select.form-select{
    font-size: 12px !important;
}

.d-flex.gap-2.sectionpadding{
    flex-direction: column;
}
.counselling-close{
    font-size:24px;
    cursor:pointer;
}
.counselling-modal h3 {
            margin-bottom: 0px;
    text-align: left;
    font-size: 18px;
}
.counselling-field input, .counselling-field select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
    font-size: 12px;
}
.counselling-submit {
    padding: 9px;
}
.counsellingform{
    padding: 15px;
}
.counselling-header{
            background: #152639;
        padding: 10px;
        color: #fff;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
}
.news-block .image-box {
    position: relative;
    height: auto;
    overflow: hidden;
}
.inner-box{
    margin-bottom: 10px;
}
.country-flag {
    width: 46px;
    height: 46px;
}
    .form-container {
        margin: 0px;
    display: flex;
    flex-direction: column;
    padding: 0px;
}
.exam-section {
    gap: 0px;
}
.summary-section {
    padding: 10px;

}
.summary-value {
    font-size: 12px;
    color: #1F2937;
    font-weight: 600;
}
    .visaheader-bg{
        padding: 15px;
    }
    .visabreadcrumb{
        display: none;
    }
    .visa-tab-link {
    font-size: 14px;
}
.sectionpadding h2,
.sectionpadding h3,
.sectionpadding h4,
.sectionpadding h5,
.sectionpadding h6{
    font-size: 14px!important;
    color: #000;
}
ul.visadescription{
    padding-left: 0px;
}
ol.visadescription li,
ul.visadescription li{
    font-size:12px;
    margin-bottom: 10px;
}
    .visabreadcrumb .active {
    font-size: 11px;
}
.visabreadcrumb .active {
    font-weight: 500;
    color: #fff;
    white-space: unset;
    overflow: hidden;
    text-overflow: unset;
}
.visadetails .visatitle {
    color: #fff;
    font-size: 19px;
}

.homepage_heading {
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

    .trainer-container {
    flex-direction: column;
}
.trainer-image {
    width: 100%;
    flex: 0 0 250px;
    height: 100%;
    background: linear-gradient(45deg, #315696, #2a4e72);
    border-radius: 20px;
    overflow: hidden;
}
    .trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.faq-question {
    padding: 10px;
    font-size: 15px;
}
.faq-item {
    border-radius: 12px;
}
.location-section {
    padding: 0px;

}
.contact-section {
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.footer_new_all{
    flex-direction: column;
}
.location-item {
    padding: 10px;
}
.footer-bottom {
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
    justify-content: space-between;
    flex-direction: column;
}
   .bannerpng {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.freecounselling img {
    height: 310px;
}
.reecounselling {
    bottom: 0px;
}
    .homepage {
    padding-top: 50px;
    padding-bottom: 50px;
}
.homepagecontent {
    gap: 10px;
}
.mainheading{
    font-size: 30px;
}
#searchForm{
        display: flex;
    flex-direction: column;
    gap: 20px;
}
.getstart {
    max-width: 360px;
    font-size: 14px;
    padding: 0px 18px;
    height: 45px;
    width: 100%;
}
.section-header {
    padding: 15px;
}
.section-title_why {
    font-size: 14px;

}
.section-subtitle {
    font-size: 12px;
}
.p-50 {
    padding: 48px 0px 0px;
}
.feature-card{
    width: 49%;
}
.features-container {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
    .features-side, .visuals-side {
        padding: 40px 0px;
    }
    .btm-bnr-img{
        display: none;
    }
    .btm-bnr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    padding: 0 8px;
}
.btm-bnr-content {
    padding: 20px 0;
    max-width: 415px;
}
.sec-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}
.btm-bnr-content p {
    margin: 10px 0px;
    font-weight: 300;
    color: #c6d3e3;
    text-align: center;
}
.submenu-desktop .has-submenu a{
    padding: 12px 9px;
}
.submenu-desktop li a {
    padding: 12px 9px;
}
.submenu-desktop li a,
.menu-desktop  li.has-submenu ul li a:hover, .menu-desktop .menu-desktop  li.has-submenu ul li{
    padding: 12px 9px;
}
}

@media(max-width:768px){
    .headerdesignew.subtitlenew {
                line-height: 25px;
    font-size: 13px; 
    padding: 3px 8px;
    border-radius: 4px;
}
p.homepersantage {
    color: #4e585d;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    /* line-height: 150%; */
    /* letter-spacing: -.14px; */
}
    .faq-answer.show ul,
    .faq-answer.show ul li,
    .faq-answer.show p{
        font-size: 12px!important;
        padding-left: 0px!important;
    }
    .freecounselling{
        display: none;
    }
    .benefit-card h4 {
    font-size: 14px;
}
.subheading{
    font-size: 15px;
}
.feature-item span {
    font-size: 14px;
    margin-bottom: 0px;
}
.benefit-card p,
    p.visadescription{
        font-size: 12px;
    }
.feature-card {
    width: 100%;
}
.contentabout h3 {
    font-size: 20px;
}
.contentabout p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0px;
}
.contentabout ul li {
    color: #fff;
    list-style: none;
    font-weight: 400;
    font-size: 11px;
    line-height: 25px;
    display: flex;
    gap: 10px;
}
.aboutbg {
    padding: 40px 20px;
}
.p-80 {
    padding: 20px 0px;
}
.btm-bnr-buttons{
    flex-direction: column;
    gap: 10px;
}
 .testimonial-content {
        padding: 10px;
    }
    .cta-button {
    padding: 9px 15px;
    font-size: 16px;
}
.course-cards-wrapper {
    margin: 20px 0px;
}
.mainheading {
           font-size: 18px;
        text-align: center;
        line-height: 40px;
}
.liststyle_home {
    margin-bottom: 0px;
    padding-left: 0px;
}
.liststyle_home li {
    font-size: 10px;
            line-height: 30px;
}
.mainheading span .downline {
    display: block;
}
.heading_page_all.mainheading {
    margin: 0px 0px 15px;

}
.section-badge {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}
h3.feature-title{
        color: #284d5d;
    text-align: start;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -.48px;
}
p.feature-description{
        margin: 0;
    color: #31393d;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -.12px;

}
.why-choose-section .cta-container{
    padding: 0px;
}
.form-submit {
    padding: 10px 32px;
    font-size: 13px;
}
.faq-question {
    padding: 9px;
    font-size: 13px;
}
table th {
    background-color: #e3e3e3;
    text-align: left;
    padding: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #5b5b5b;
}

table td {
    color: #1d1e1e;
    font-weight: 500;
    font-size: 10px;
    padding: 5px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 12px 12px;
    font-size: 11px;
}
.faq-answer p {
    color: #666;
    font-size: 12px;
    line-height: 1.7;
    padding: 0px;
}
 .homepagecontent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.edu-university-section-header {
    flex-wrap: nowrap;
}
.edu-view-more-btn {
    padding: 6px 11px;
    font-size: 14px;
    border-radius: 3px;
}
}

