@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('newstyle.css');
: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;
        }
        .country-link{
            text-decoration: none;
            margin: 10px;
        }
/* 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 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 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: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.phone-input input {
  flex: 1;
}

.terms-checkbox {
  margin: 20px 0;
  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: -38px;
}
.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-top: 40px;
    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);
}

/* Featured Image */
.featured-image-container {
    position: relative;
    border-radius: 8px;
    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-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 {
    margin-bottom: 25px;
    font-size: 17px;
    color: #1f2937;
    line-height: 1.8;
}

.blog-content__paragraph:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background-color: #eff6ff;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box__title {
    font-size: 19px;
    color: var(--primaryheader);
    margin-bottom: 10px;
    font-weight: 600;
}

/* 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 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;
}
.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;
            }
            
            .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;
            }
            
            .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: 18px 16px;
            }
            
            .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, #1a73e8 0%, #0d47a1 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, #1a73e8, #0d47a1);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    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: #3498db;
    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: #3498db;
}

.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: #3498db;
}

.country-slider .slick-dots li.country-slider .slick-active button:before {
    color: #3498db;
}

/* 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 #3498db;
    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;
}



/* 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); */
}

/* 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 {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 12px;
    }
}

@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 {
    background: #1d438d;
    border-radius: 40px;
    padding: 90px 0;
}

.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: 531px;
    height: 536px;
    margin-top: -120px;
}

.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: var(--primaryheader);
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
}

table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
}

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;
}

/* 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%;
}



.sc-uni-cour-one {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.uni-cour-one-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    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;
}

/* 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: #10b981;
}

.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%;
}

.homesection {
    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;
}



.counter {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -.32px;
    text-transform: capitalize;
    margin: 0;
    color: #fc7012;

}

.counter-text {
    color: #5e6b71;
    font-size: 12px;
    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;

}

.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: center;
    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;
}

/* .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 {
    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 {
    max-width: 500px;
    max-height: 660px;
    display: flex;
    justify-content: center;
    align-items: end;
    z-index: 99;
    margin: auto;
}

.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 {
    color: #4a5568;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 0px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.testimonial-content h3 {
    color: #2d3748;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 15px;
}

.testimonial-content span {
    color: #718096;
    font-size: 14px;
}

/* 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;
    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;
    font-family: 'Rubik', sans-serif;
    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: #10b981;
    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: #10B981;
    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: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
    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: #10B981;
    border-color: #10B981;
    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;
}
.input-with-icon input,
.course-search-container input{
    padding-left: 35px!important;
}
.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: #10B981;
    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-item:hover {
    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);
}

.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: 20px;
    }

    .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: column;
        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%;
    font-family: 'Rubik', sans-serif;
}



/* 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: #10b981;
    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: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 25px;
    justify-content: space-between;
}

.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;
}

.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: 14px;
    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: 14px;
    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,
.university-table {
    margin: 20px 0;
}

/* 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: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.features-grid,
.services-grid,
.pte-sections-grid,
.comparison-grid,
.evolution-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.process-steps,
.trainers-grid,
.mistakes-grid {
    display: grid;
    gap: 20px;
    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: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.benefit-card:hover,
.score-card:hover,
.feature-card:hover,
.offering-card:hover {
    transform: translateY(-5px);
}

/* 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;
    border-top: 4px solid #3498db;
}

.fact-card p {
    font-weight: bold;
    color:#fff;
    font-size: 1.1rem;
}

.benefit-card {
    text-align: center;
    border-top: 4px solid #345a9d;
}

.salary-card {
    text-align: center;
    border-top: 4px solid #345a9d;
}

.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 #3498db;
}

.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: #3498db;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: #3498db;
    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 #3498db;
}

.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 #345a9d;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #345a9d;
    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 #345a9d;
}

/* CTA Box */
.cta-box {
    background: #3498db;
    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: #3498db;
    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 #345a9d;
}
.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: 20px;
}

.subheading {
    color: #2c3e50;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* 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 #345a9d;
}

.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 {
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 60px;
    text-align: center;
}

.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 #3498db;
}

.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: #3498db;
    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 #3498db;
}

.section-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    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: #3498db;
    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: #3498db;
    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;
}

.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: #3498db;
    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: 30px 0 0px;
    background: url('../images/University-of-Hertfordshire.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.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;
}

.visabreadcrumb a {
    color: #fff;
    text-decoration: none;
}

.visabreadcrumb .active {
    font-weight: 600;
    color: #fff;
}

.visaheader-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-top: 25px;
}

.visalogo img {
    width: 70px;
}

.visatitle {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: #1d1e1e;
    margin: 0px 0px 10px;
}

.visadescription {
    font-size: 16px;
    margin-bottom: 0px;
}

.sectionpadding {
    margin: 15px 0px 0px;
}

.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;
    margin: 0;
    overflow-x: auto;
    border-bottom: 2px solid #e3e8f0;
    overflow-y: hidden;
}

.visa-tab {
    white-space: nowrap;
}

.visa-tab-link {
    padding: 14px 0;
    display: inline-block;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    position: relative;
}

.visa-tab-active .visa-tab-link {
    color: #0a58ca;
    font-weight: 600;
}

.visa-tab-active .visa-tab-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #0a58ca;
    border-radius: 4px;
}

.rank-badge {
    background: #2a5298;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.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 {
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 3.97867px 7.95733px 29.84px 0 rgba(0, 0, 0, .1);
    position: sticky;
    top: 60px;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.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: 5px;
    color: #555;
}

.form-input {
    padding: 10px 12px;
    font-size: 14px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.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;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-button button:hover {
    opacity: 0.9;
}

.submit-button svg {
    width: 10px;
    height: 10px;
}

.terms {
    font-size: 12px;
    margin-top: 10px;
    color: #777;
}

.terms a {
    color: #e39d3d;
    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;
    }
}
