
.country-page{
  margin-top: 80px;
  
  /* background-color: #f4f4f4; */
}
/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background: url(../image/country/country-banner1.png) no-repeat;
  background-size: cover;
  background-position: center;
}

/* Small screens */
@media (max-width: 900px) {
  .hero-section {
    height: 400px;
    min-height: 400px; /* ensures it does not collapse */
  }
}



/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 0; 
}

.hero-content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}
@media (max-width: 768px) {
.hero-section {
    background-attachment: scroll;
    min-height: auto;
  }
  .hero-content h1 {
    font-size: 28px !important;
  }

  .hero-content p {
    font-size: 14px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px !important;
    margin-bottom: 10px;
  }
}


/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
  padding-top: 40px;
}

.breadcrumb a {
  color: #646b79;
  text-decoration: none;
}

.breadcrumb .active {
  color: #374151;
}
.left-content{
  margin-top: 20px;
}
/* HEADER */
.header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;   
  padding-top: 20px;         /* ✅ REQUIRED for responsiveness */
}

/* LEFT PART */
.country-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.country-info h2 {
  margin-bottom: 5px !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTON */
.primary-btn {
  padding: 12px clamp(16px, 10vw, 64px);
  border-radius: 4px;
  background: linear-gradient(90deg, #0088FF, #603CFF) !important;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;       
}

/* MOBILE */
@media (max-width: 768px) {
  .header-row {
    gap: 10px;
  }

  .primary-btn {
    margin-top: 6px;
  }
}


/* STATS PILL */
.stats-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f4f6;
  border-radius: 26px;
  padding: 0 20px;
}

.pill-item {
  flex: 1;
  text-align: center;
}

.pill-item img {
  width: 26px;
  margin-bottom: 6px;
}

.pill-item p {
  font-size: 14px;
    color: #374151;
  margin: 2px 0 0;
}

.pill-divider {
  width: 2px;
  height: 111px;
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .start-date {
    display: none !important;
  }

}
@media (min-width: 900px) {
  .start-date1 {
    display: none !important;
  }

}
@media (max-width: 768px) {
  
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .stats-pill {
    flex-direction: row;
    gap: 16px;
    padding: 20px 10px;
  }

  .pill-divider {
    display: none;
  }
}

/* GRID */
.country-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

/* LEFT */
.content-block {
  background: #fff;
  padding-top: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.content-block h3{
  font-weight:600
}
.link {
  color: #2563eb;
  font-size: 14px;
}

/* UNIVERSITY */
.university-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin: 14px 0;
}
.uni-card {
}
.uni-card span {
  color: #6b7280;
}

/* TAGS */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list span {
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
  .country-stats {
    grid-template-columns: 1fr;
  }
  .university-grid {
    grid-template-columns: 1fr;
  }
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

/* ================= FAQ ================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* SUMMARY BASE */
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  color: #1F2937;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 18px 14px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ================= ARTICLES ================= */

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.articles-header h2{
    color: #1F2937;
    font-size: 20px;
    font-weight: 600;
}
.show-all {
  color: #5A41FF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.article-card {
  display: flex;
  gap: 12px;
  background: #FFFFFF;
  box-shadow: 0px 10px 15px -3px #4B55630D;
  box-shadow: 0px 4px 6px -2px #4B55630D;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.article-card img {
  width: 80px;
  height: 95px;
  object-fit: cover;
  border-radius: 8px;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.article-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #4B5563;
  margin-bottom: 6px;
}

.article-content .author {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    flex-direction: row;
  }
}

.section-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* ================= FUN FACTS ================= */

.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fact-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #4B5563;
}

/* ================= CITIES ================= */

.cities-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.section-subtitle{
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.city-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.city-card span {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .fun-facts-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    gap: 20px;
  }

  .city-card img {
    width: 90px;
    height: 90px;
  }
}

.section-title {
  font-size: 18px;
  font-weight: 600;
}

.section-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4B5563;
  margin: 20px 0 20px;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    margin-top:50px !important;
}

.show-all {
}

/* ================= UNIVERSITIES ================= */

.universities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.uni-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0px 2px 2px 0px #4B556314, 0px 1px 2px 0px #4B55631A;
}
.uni-card img {
  margin-top: 15px;
}
.uni-icon {
  font-size: 18px;
}

.uni-card h4 {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 10px;
}

.uni-card span {
  font-size: 16px;
  font-weight: 500;
  color: #6B7280;
}

/* ================= PROGRAMS ================= */

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
}


.program-tags span {
  padding: 8px 14px;
  box-shadow: 0px 2px 2px 0px #4B556314, 0px 1px 2px 0px #4B55631A;
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
  cursor: default;
}

@media (max-width: 768px) {
  .universities-grid {
    grid-template-columns: 1fr;
  }

  .program-tags {
    gap: 10px;
  }
}


.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* TABS */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  padding: 6px 14px;
  background: #F3F4F6;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px #0000000D;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.tab.active {
  background: linear-gradient(90deg, #D0E8FF 0%, #FFFFFF 100%);
  box-shadow: 0px 1px 2px 0px #0000000D;
}

/* GRID */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ITEM */
.req-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #F3F4F6;
  border-radius: 10px;
  background: #ffffff;
}

.req-item span {
  font-size: 16px;
  font-weight: 400;
  color: #1F2937;
}

.req-item img {
  width: 24px;
  height: 24px;
}


/* RESPONSIVE */
@media (max-width: 640px) {
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

.uk-section .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 30px;
}

.uk-section p {
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  background: #FFFFFF;
  color: #4b5563;
  line-height: 1.6;
  padding: 12px;
}

.student-life-section {
padding-top: clamp(0px, 5vw, 20px);
}
.live-cost h3{
margin: 0 !important;
font-size: 16px;
color:#4B5563 !important
}
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
}

.student-desc {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* INFO CARDS */
.info-card {
  border-width: 1px, 1px, 0px, 1px;
  border-style: solid;
  border-color: #F3F4F6;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  background: #ffffff;
}

/* SIMPLE ROW */
.info-row {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.info-row img {
  width: 18px;
  height: 18px;
}

.info-row:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.info-row h3 {
  font-size: 15px !important;
  font-weight: 600;
  color: #4B5563;
  margin: 0;
}

.info-row p {
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
  margin-top: 6px !important;
}

/* HEADERS */
.info-header {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  
}
.info-header h2 {
  font-size: 16px;
  font-weight: 600;
color: #4B5563;
}
.info-header img {
  width:18px ;
  height:18px ;
  margin-top: 13px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

/* BULLETS */
.bullet-list {
  padding-left: clamp(10px, 5vw, 45px);
  margin-bottom: 20px;
}

.bullet-list strong {
  font-size: 16px;
  font-weight: 600;
}

.bullet-list li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 10px;
}

/* SUB TITLE */
.sub-title {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 6px;
}

/* SOURCE */
.source {
  font-size: 16px;
  color: #6b7280;
  font-weight: 400;
      font-style: italic;
}

.source a {
  color: #5A41FF;
}
.info-card strong{
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}
/* LINK */
.learn-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #5A41FF;
  text-decoration:underline !important;
}

/* VISA */
.visa-title {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

/* SOURCE */
.source {
  font-size: 12px;
  color: #6b7280;
}

.source a {
  color: #2563eb;
  text-decoration: none;
}

/* LINK */
.learn-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .student-desc {
    max-width: 100%;
  }
}

.right-content {
  width: 100%;
  /* max-width: 360px; */
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
  position: sticky;
  top: 90px;
  padding-top: 20px;
}

/* CARD */
.info-card {
  border: 1px solid #F3F4F6;
  border-radius: 14px;
  padding: 12px;
}

/* TITLES */
.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;

  margin-bottom: 12px;
  margin-top: 0;
}
.card-title.temp-title{
  font-weight: 600;
  font-size: 20px;
}
/* START DATE */
.pill-group {
  display: flex;
  gap: 8px;
}

.pill {
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  border: 1px solid #E5E7EB;
}

/* .pill.active {
  background: #111827;
  color: #fff;
} */

/* TEMP */
.card-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 14px;
  margin-bottom: 0;
}

.temp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  text-align: center;
}

.temp-grid p {
  font-size: 13px;
  display: block;
  margin: 0 !important;
  color: #4B5563;
}

.temp-grid span {
  font-size: 12px;
  color: #6b7280;
  padding: 0 !important;
}

/* SEASONS */
.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}

.season img {
  width: 28px;
  margin-bottom: 4px;
}

.season p {
  font-size: 12px;
  margin: 0 !important;
  font-weight: 500;
  color: #4B5563;
}

.season span {
  font-size: 11px;
  color: #6b7280;
}

/* INSIGHTS */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.insight-item > div{
  display: flex;
  gap: 10px;
  align-items: center;
}
.insight-item {


  padding: 10px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
}
.insight-item  p{
  font-size: 14px !important;
  color: #4B5563;
  margin: 10px 0 0 !important;
}
.insight-item small {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

.insight-item strong {
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .right-content {
    max-width: 100%;
  }
}

