:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --bg-color: #0a1f33 ;
    --second-bg-color: #ffffff;
    --third-bg-color: #0b253d;
    --border-color: #666b71;
    --text-color: #fff;
    --main-color: #234061;
    --hover-color: red;
--bg: #f4f7fb;
--card: #ffffff;
--accent-1: #e9f5ff; /* light blue */
--accent-2: #f0fff4; /* light green */
--text: #14213d;
--muted: #5b6b82;
--accent-border: rgba(20,33,61,0.06);
}
@font-face {
  font-family: poppins;
  src: url(../font/poppins.ttf);
}

/* short about section start  */
/* ===== Study Section ===== */
.study-section {
  padding: 80px 20px; /* smaller padding for smaller screens */
  background-color: #f1faffa3;
}

.study-container {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.study-image {
  max-width: 500px;
  width: 100%;
  perspective: 1000px;
  margin: auto;
}

.study-image img {
  width: 100%;
  transition: transform 0.1s cubic-bezier(0.25, 1.25, 0.5, 1);
  transform-style: preserve-3d;
  cursor: pointer;
  border-radius: 8px;
}

/* Text area */
.study-text {
  flex: 1 1 400px; /* responsive width */
  min-width: 300px;
}

.study-text h2 {
    font-family: poppins;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 48px;
    word-spacing: 2px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    color: var(--main-color);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 4px solid red;
}

.company_name {
    color: var(--main-color);
}

.s_ab_text_bt_link {
    color: var(--main-color);
    transition: all .4s ease-in-out;
    font-weight: 600;
}

.s_ab_text_bt_link:hover {
    color: red;
}

.study-text p {
  font-size: 17px;
  line-height: 28px;
  color: #444;
  text-align: justify;
  font-weight: 100;
}
.company_name{
    font-weight: 600;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 80px;
}

.stats .item {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
}

.stats .item span {
  font-size: 40px;
  color: red;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.stats .item p {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

  .study-container {
    gap: 20px;
    flex-wrap: wrap-reverse;
  }

  .study-text h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {

  .study-container {
    /* flex-direction: column;  */
    flex-wrap: wrap-reverse;
    align-items: center;
    text-align: center;
  }

  .study-text {
    width: 100%;
  }

  .study-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .study-text h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .stats {
    gap: 20px;
  }

  .stats .item span {
    font-size: 32px;
  }

  .stats .item p {
    font-size: 16px;
  }

}

@media (max-width: 480px) {
  .study-section {
    padding: 50px 15px;
  }

  .study-text h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .study-text p {
    font-size: 15px;
    line-height: 22px;
  }

  .stats {
    gap: 15px;
  }

  .stats .item span {
    font-size: 28px;
  }

  .stats .item p {
    font-size: 14px;
  }
}
/* short about section end  */
/* service section start  */
.service{
  padding: 80px 20px;
}
.service_contaienr{
  max-width: 1300px;
  margin: 0 auto;
}
#title{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--main-color);
    position: relative;
    width: 220px;
    margin: 0 auto;
    font-family: poppins;

}
#title::after{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    left: -62px;
}
#title::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    right: -60px;
}
.service_row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 30px;
  padding: 30px 20px;
  font-family: poppins;
}
.service_col .service_card{
  max-width: 400px;
  display:inline-block;
  text-decoration: none;
  padding: 2em 1.5em;
  background: linear-gradient(#fff 50%, red 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
}
.service_card::after{
    position: absolute;
    content: "";
    background: url(../images/pattern.png);
    width: 100px;
    top: 6%;
    left: 34%;
    height: 100px;
    animation: s_rotate linear infinite 20s;
}
@keyframes s_rotate{
  0%{
    rotate: 0deg;
  }
  100%{
    rotate: 360deg;
  }
}
.service_col:hover .service_card{
  background-position: 0 100%;
}
.service_card .icon{
    background-color: var(--main-color);
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: var(--text-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
}
.service_col:hover .service_card .icon{
    background-color: white;
    color: var(--main-color);
}
.service_card .title{
  color: var(--main-color);
  font-family: poppins;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.service_card .des{
  text-align: center;
  font-family: poppins;
  font-weight: 100;
  color:#2C2C2C;
}
.service_col:hover .service_card .title{
    color: white;
}
.service_col:hover .service_card .des{
    color: white;
}
@media(max-width: 600px){
  .service{
    zoom: 77%;
  }
}
/* service section end  */
/* why chose us section start  */
/* faq section start  */
.faq{
    background-color: #f1faffa3;
    position: relative;
    font-family: poppins;
    padding: 80px 20px;
}
#title_problem{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--main-color);
    position: relative;
    width: 384px;
    margin: 0 auto;

}
#title_problem::after{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    left: -62px;
}
#title_problem::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    right: -60px;
}
.faq .faq_row{ 
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
}
.faq_images{
  position: relative;
}
.faq_col img{
  max-width: 400px;
  position: relative;
}
.accordion{

    margin: 0 15px;
}
.accordion .accordion-content{
    margin: 10px 0;
    border-radius: 4px;
    background: #FFF7F0;
    border: 1px solid #FFD6B3;
    overflow: hidden;
}
.accordion-content:nth-child(2){
    background-color: #f1faffa3;
    border-color: #CCEEFF;
}
.accordion-content:nth-child(3){
    background-color: #FFF0F3;
    border-color: #FFCCD6;
}
.accordion-content:nth-child(4){
    background-color: #F0F0FF;
    border-color: #CCCCFF;
}
.accordion-content:nth-child(5){
    background-color: #FFF7F0;
    border-color: #FFD6B3;
}
.accordion-content:nth-child(6){
    background-color: #f1faffa3;
    border-color: #CCEEFF;
}
.accordion-content:nth-child(7){
    background-color: #FFF0F3;
    border-color: #FFCCD6;
}
.accordion-content:nth-child(8){
    background-color: #F0F0FF;
    border-color: #CCCCFF;
}
.accordion-content:nth-child(9){
    background-color: #FFF7F0;
    border-color: #FFD6B3;
}
.accordion-content:nth-child(10){
    background-color: #f1faffa3;
    border-color: #CCEEFF;
}
.accordion-content.open{
    padding-bottom: 10px;
}
.accordion-content header{
    display: flex;
    min-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s linear;
}
.accordion-content.open header{
    min-height: 35px;
}
.accordion-content header .title{
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.accordion-content header i{
    font-size: 15px;
    color: #333;
}
.accordion-content .description{
    height: 0;
    font-size: 15px;
    color: #333;
    font-weight: 400;
    padding: 0 15px;
    transition: all 0.2s linear;
}
@media(max-width: 1050px){
  .faq .faq_row{ 
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
  padding: 30px 20px;
}
.faq_col img{
  margin: 0 auto;
}
}
@media(max-width: 600px){
  .faq{
    zoom: 73%;
  }
}
/* faq section end  */
/* why chose us section end  */
/* institute section start  */
.institute_section{
    padding: 80px 20px;
}
.institute_container{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}
.institute_card{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.institute_item{
    width: 400px;
    height: auto;
    background-color: #f1faffa3;
    padding: 20px 15px;
    border-radius: 14px;
    transition: all .4s ease-in-out;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}
.item_title{
    transition: all .4s ease-in-out;
    color:var(--main-color);
}
.item_title a{
    text-decoration: none;
    color: var(--main-color);
    font-size: 30px;
    font-family: poppins;
    font-weight: bolder;
    margin-bottom: 24px;
    transition: all .4s ease-in-out;
    display: inline-block;
}
.item_title a span{
    transition: all .4s ease-in-out;
    border-bottom: 4px solid red;
}
.institute_item ul{
    color: #2C2C2C;
    font-family: poppins;
    font-size: 15px;
    font-weight: 200;
    line-height: 35px;
}
.institute_item ul li {
    border-bottom: 1px solid #2c2c2c8e;
    transition: all .4s ease-in-out;
}
.institute_item ul li a{
    text-decoration: none;
    transition: all .4s ease-in-out;
    color: black;
}
.institute_card .institute_item:hover{
    background-color: red;

}
.institute_card .institute_item:hover .item_title a{
    color: white;
}
.institute_card .institute_item:hover .item_title a span{
    border-color: white;
}
.institute_card .institute_item:hover ul li a{
    color: white;
}
.institute_card .institute_item:hover ul li{
    border-color: white;
}
@media(max-width: 600px){
  .institute_section{
    zoom: 77%;
  }
}
/* institute section end  */
/* destination section sttart  */
#title_problem_two{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--main-color);
    position: relative;
    width: 310px;
    margin: 0 auto;
    margin-bottom: 40px;
}
#title_problem_two::after{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    left: -62px;
}
#title_problem_two::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    right: -60px;
}
.destination_section{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.destination_section .destination_container{
  max-width: 1300px;
  margin: 0 auto;
}
.destination_row{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.destination_col .country_row{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.destination_col img{
  transition: all .4s ease-in-out;
  max-width: 500px;
  width: 500px;
}
.destination_col:hover img{
  transform: scale(1.1);
}
.country_col:hover{
  transform: scale(1.1);
}
.destination_col .country_row .country_col{
  width: 180px;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  transition: all .4s ease-in-out;
}
.country_col img{
  position: absolute;
  width: 180px;
  height: 180px;
  z-index: 1;
  border-radius: 5px;
}
.country_col .overlay_text{
    position: absolute;
    z-index: 100 !important;
    display: inline;
    font-size: 18px;
    font-weight: 700;
    font-family: poppins;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    width: 180px;
    text-align: center;
    color: red;
}
@media (max-width: 1168px){
   .destination_row{
    flex-wrap: wrap;
    justify-content: center;
   }
   .destination_col img{
    max-width: 500px;
    width: 100%;
   }
}
@media(max-width: 600px){
  .destination_section{
    zoom: 77%;
  }
}
/* destination section end  */
/* success section start  */
/* MAIN SECTION BACKGROUND */
.success_section {
    padding: 80px 20px;
    background-color: #f1faffa3;
}

/* FIXED PAGE WIDTH LIKE SCREENSHOT */
.success_container {
    max-width: 1300px;      /* EXACT FAITH OVERSEAS SIZE */
    margin: 0 auto;
    padding: 0 20px;
}

/* TITLE */
#title_problem_one{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--main-color);
    position: relative;
    width: 354px;
    margin: 0 auto;
    margin-bottom: 40px;
}
#title_problem_one::after{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    left: -62px;
}
#title_problem_one::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    right: -60px;
}
/* GRID EXACT LIKE SCREENSHOT */
.stories_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* CARD STYLE */
.story_card {
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px #00000015;
    transition: .3s ease;
    padding: 10px;
}

.story_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px #00000025;
}

.story_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stories_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 600px){
  .success_section{
    zoom: 77%;
  }
}
@media (max-width: 576px) {
    .stories_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .story_card {
        height: 400px;
    }
}

/* success section end  */
/* gallery section start  */
/* Gallery Section */
.gallery_section { padding: 80px 20px;
/* background-color: #f1faffa3; */
 }

.gallery_container {
display: flex;
  flex-wrap: wrap;      /* Allow items to go to next row */
  gap: 15px;            /* Space between items */
  justify-content: center;  /* Center the items horizontally */
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.gallery_item {
  position: relative;
  margin-bottom: 15px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .4s ease;
  flex: 1 1 calc(33.333% - 10px); /* 3 columns with gap adjustment */
  box-sizing: border-box;
}

.gallery_item img {
  width: 425px;
  height: 280px;
  display: block;
  border-radius: 15px;
  transition: transform .4s ease, filter .4s ease;
}

/* Hover Animation */
.gallery_item:hover {
  transform: rotateY(8deg) rotateX(8deg) scale(1.02);
}

.gallery_item:hover img {
  transform: scale(1.15);
  filter: brightness(.6) blur(2px);
}

/* Caption */
.gallery_caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(40px);
  transition: .4s ease;
}

.gallery_item:hover .gallery_caption {
  opacity: 1;
  transform: translateY(0);
}

/* POPUP FIXED */
.gallery_popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
}

.gallery_popup_box {
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoom .4s ease;
}

@keyframes zoom {
  from { transform: scale(.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gallery_popup_img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 15px;
}

.gallery_popup_caption {
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

/* Close */
.gallery_close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 45px;
  cursor: pointer;
  color: #fff;
}

/* Navigation */
.gallery_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.gallery_nav_prev { left: 25px; }
.gallery_nav_next { right: 25px; }

/* Hover */
.gallery_nav:hover { color: #ddd; }
.gallery_close:hover { color: #ddd; }

/* FULL RESPONSIVE */
@media (max-width: 992px) {
}

@media (max-width: 576px) {

  .gallery_popup_img {
    max-height: 60vh;
  }

  .gallery_nav {
    font-size: 40px;
  }

  .gallery_close {
    font-size: 35px;
    right: 20px;
  }
}
/* Medium screens (tablet) */
@media (max-width: 992px) {
  .gallery_item {
    flex: 1 1 calc(50% - 10px);   /* 2 columns */
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  .gallery_item {
    flex: 1 1 100%;               /* 1 column */
  }
  .gallery_section{
    zoom: 77%;
  }
}
/* gallery section end  */
/* contact section start  */
#title_problem_three{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--main-color);
    position: relative;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 40px;
}
#title_problem_three::after{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    left: -62px;
}
#title_problem_three::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 5px;
    background-color: red;
    top: 28px;
    right: -60px;
}

.contact{
  padding: 80px 20px;
}
.contact_container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 20px;
}
.boxes{
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  align-items: center;
}
.box_col{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 5px;
}
.box_col #c_icon{
  font-size: 22px;
  padding: 15px;
  background-color: var(--text-color);
  color: var(--main-color);
  border: 1px solid rgba(0, 0, 0, 0.192);
}
.box_col p{
  color: var(--text-colo-gray);
}
.map_form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.map_form_col iframe{
    border: 1px solid rgba(13, 97, 166, 0.89) !important;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    height: 450px;
}
form{
  padding: 20px 0px;
}
.input_group .input_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}
input{
    display: block;
    width: 100%;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    background-color: var(--text-color);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 2px;
}
input:focus{
    color: #666565;
    background-color: #fff;
    border-color: #538bb9c0;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 97, 176, 0.25);
}
textarea{
      display: block;
    width: 100%;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 2px;  
}
textarea:focus{
      color: #666565;
    background-color: #fff;
    border-color: #538bb9c0;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 97, 176, 0.25);
}
.input{
  padding-bottom: 20px;
}
@media(max-width: 1050px){
  .map_form{
  display: flex;
  justify-content: center;
  row-gap: 50px;
  flex-wrap: wrap;
}
.map_form_col{
  width: 100%;
}
.map_form_col iframe {
    width: 100%;
    max-width: 100%;
}
.boxes{
  justify-content: center;
  flex-wrap: wrap;
}
}
@media(max-width: 600px){
  .contact{
    zoom: 75%;
  }
}
/* contact section end  */
/* footer section start  */
.footer_section {
  padding: 60px 20px;
  background-color: #1f344f;
  color: white;
  font-family: poppins;
}

.footer_container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Logo */
.logo img {
  width: 200px;
}

/* Info */
.infos {
  margin-top: 25px;
  display: grid;
  gap: 12px;
  font-size: 18px;
}

.info_c i {
  color: #ff4d4d;
  margin-right: 10px;
}

/* Social Icons */
.icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.icon_box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: 0.4s;
  transform: scale(1);
}

/* Gradient Backgrounds */
.fb { background: linear-gradient(135deg, #1877F2, #4267B2); }
.ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.yt { background: linear-gradient(135deg, #ff0000, #cc0000, #990000); }
.tk { background: black; }

.icon_box:hover {
  transform: scale(1.18) translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
}

/* Titles */
.title_head {
  font-size: 32px;
  margin-bottom: 25px;
  border-left: 4px solid red;
  padding-left: 10px;
}

/* Lists */
.ul_group {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}

.list li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
}

.list li a {
  color: white;
  transition: 0.3s;
}

.list li a:hover {
  color: red;
  padding-left: 1px;
}

/* Bottom line */
.bottom_line {
  background: black;
  color: #ccc;
  text-align: center;
  padding: 18px 10px;
  font-size: 15px;
}

.bottom_line a {
  color: red;
  font-weight: bold;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer_row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .footer_row {
    grid-template-columns: 1fr;
  }

  .footer_section {
    text-align: center;
  }

  .ul_group {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info_c {
    justify-content: center;
  }

  .icons {
    justify-content: center;
  }
  .logo img {
  width: 270px;
  margin: 0 auto;
  }
}

/* footer section end  */
/* other page start  */
/* about us page  start  */
.ot_page_header .about-banner {
  position: relative;
  background: url('../images/about_page_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}
.ot_page_header .about-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}
.ot_page_header .about-banner .overlay .content {
  color: var(--main-color);
}
.ot_page_header .about-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.ot_page_header .about-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}
.ot_page_header .about-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .about-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}
@media (max-width: 768px) {
  .ot_page_header .about-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .about-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .about-banner .overlay {
    padding-left: 3%;
  }
}
/* who we are section start  */
.who_we_are{
  /* background-color: #f1faffa3; */
  padding: 80px 20px;
}
.who_we_are_row{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.who_we_are_col img{
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.who_we_are_col .title_head{
  color: var(--main-color);
  font-family: poppins;
  font-size: 40px;
  font-weight: bolder;
}
.who_we_are_col .details{
  font-family: poppins;
  color: #00000096;
  font-size: 16px;
  font-weight: lighter;
  max-width: 670px;
  width: 100%;
  line-height: 30px;
  text-align: justify;
}
.who_we_are_col .details a{
  text-decoration: underline;
  color: red;
  font-weight: bolder;
}
@media(max-width: 978px){
  .who_we_are_row{
    flex-wrap: wrap;
    justify-content: center;
  }
  .who_we_are_col .details{
  max-width: 100%;
  } 
}
/* who we are section end  */
/* extablished start  */
.extablished{
  background-color: #f1faffa3;
  padding: 80px 20px;
}
.extablished_row{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.extablished_col img{
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid black;
}
.extablished_col .title_head{
  color: var(--main-color);
  font-family: poppins;
  font-size: 40px;
  font-weight: bolder;
}
.extablished_col .details{
  font-family: poppins;
  color: #00000096;
  font-size: 16px;
  font-weight: lighter;
  max-width: 670px;
  width: 100%;
  line-height: 30px;
  text-align: justify;
}
@media(max-width: 978px){
  .extablished_row{
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
  .extablished_col .details{
  max-width: 100%;
  } 
}
/* extablished end  */
/* company overview start  */
.company_overview{
  /* background-color: #f1faffa3; */
  padding: 80px 20px;
}
.company_overview_row{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.company_overview_col img{
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 5px;
  /* border: 1px solid black; */
}
.company_overview_col .title_head{
  color: var(--main-color);
  font-family: poppins;
  font-size: 40px;
  font-weight: bolder;
}
.company_overview_col .details{
  font-family: poppins;
  color: #00000096;
  font-size: 16px;
  font-weight: lighter;
  max-width: 670px;
  width: 100%;
  line-height: 30px;
  text-align: justify;
}
@media(max-width: 978px){
  .company_overview_row{
    flex-wrap: wrap;
    justify-content: center;
  }
  .company_overview_col .details{
  max-width: 100%;
  } 
}
/* company overview end  */
/* managing directro massage start  */
.managing_director{
  background-color: #f1faffa3;
  padding: 80px 20px;
}
.managing_director_row{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.managing_director_col img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  /* border: 1px solid black; */
}
.managing_director .title_head{
  color: var(--main-color);
  font-family: poppins;
  font-size: 40px;
  font-weight: bolder;
  /* text-align: center; */
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.managing_director_col .details{
  font-family: poppins;
  color: #00000096;
  font-size: 16px;
  font-weight: lighter;
  width: 100%;
  line-height: 30px;
  text-align: justify;
}
.managing_director_col .details a{
  text-decoration: underline;
  color: red;
  font-weight: bolder;
}
@media(max-width: 978px){
  .managing_director_row{
    flex-wrap: wrap;
    justify-content: center;
  }
  .managing_director_col .details{
  max-width: 100%;
  } 
}
/* managing directro massage end  */
/* about us page  end  */
/* services page start  */
.ot_page_header .service-banner {
  position: relative;
  background: url('../images/service_page_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .service-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}
.ot_page_header .service-banner .overlay .content {
  color: var(--main-color);
}
.ot_page_header .service-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.ot_page_header .service-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .service-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .service-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .service-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .service-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .service-banner .overlay {
    padding-left: 3%;
  }
}
/* services page end  */
/* meet our team page start  */
.ot_page_header .meet_our_team-banner {
  position: relative;
  background: url('../images/meet_our_team_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .meet_our_team-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .meet_our_team-banner .overlay .content {
  color: var(--main-color);
}

.ot_page_header .meet_our_team-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .meet_our_team-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .meet_our_team-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .meet_our_team-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .meet_our_team-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .meet_our_team-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .meet_our_team-banner .overlay {
    padding-left: 3%;
  }
}
.founder_profile_section{
      padding: 80px 20px;
      background-color: #f1faffa3;
}
    .founders-section {
      max-width: 1300px;
      margin: 0 auto;

    }

    .founders-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .founders-title h1 {
      font-size: 36px;
      font-weight: 700;
      color: var(--main-color);
      margin-bottom: 10px;
    }

    .founders-title p {
      font-size: 16px;
      color: #555;
    }

    .founders-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }

    .founder-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 25px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 30px;
      cursor: pointer;
    }

    .founder-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .founder-image {
      width: 400px;
      height: 400px;
      margin: 0 auto;
      object-fit: cover;
    }

    .founder-info {
      padding: 20px;
    }

    .founder-info h2 {
      font-size: 24px;
      color: red;
      margin-bottom: 8px;
    }

    .founder-info h4 {
      font-size: 16px;
      color: var(--main-color);
      margin-bottom: 12px;
    }

    .founder-info p {
      font-size: 14px;
      color: #444;
      line-height: 1.7;
    }

    /* ===== Modal (Popup) ===== */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: #fff;
      border-radius: 15px;
      max-width: 600px;
      width: 90%;
      padding: 30px;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    .modal-content h2 {
      color: red;
      margin-bottom: 10px;
    }

    .modal-content h4 {
      color: var(--main-color);
      margin-bottom: 15px;
    }

    .modal-content p {
      font-size: 15px;
      color: #333;
      line-height: 1.8;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 22px;
      font-weight: bold;
      color: var(--main-color);
      cursor: pointer;
    }

    .close-btn:hover {
      color: red;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-20px);}
      to {opacity: 1; transform: translateY(0);}
    }
/* meet our team page end  */
/* our certificates start  */
.ot_page_header .our_certificate-banner {
  position: relative;
  background: url('../images/certificate_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .our_certificate-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .our_certificate-banner .overlay .content {
  color: var(--main-color);
}

.ot_page_header .our_certificate-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .our_certificate-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .our_certificate-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .our_certificate-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .our_certificate-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .our_certificate-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .our_certificate-banner .overlay {
    padding-left: 3%;
  }
}
.our_certificate_section{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.our_certificate_container{
  max-width: 1300px;
  margin: 0 auto;
}
.our_certificate_container .our_certificate_row{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}
.our_certificate_row .our_certificate_col{
  width: 400px;
  /* width: 100%; */
  height: 550px;
  border-radius: 8px;
  /* border: 1px solid #11407ea1; */
  transition: all .4s ease-in-out;
}
.our_certificate_row .our_certificate_col:hover{
  transform: scale(1.1);
}
.our_certificate_col img{
  width: 400px;
  height: 550px;
  border-radius: 8px;
}
/* our certificates end  */
/* success stories start  */
.ot_page_header .success_stories-banner {
  position: relative;
  background: url('../images/success_stories_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .success_stories-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .success_stories-banner .overlay .content {
  color: var(--main-color);
}

.ot_page_header .success_stories-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .success_stories-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .success_stories-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .success_stories-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .success_stories-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .success_stories-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .success_stories-banner .overlay {
    padding-left: 3%;
  }
}
    .success_stories_section{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.success_stories_container{
  max-width: 1300px;
  margin: 0 auto;
}
.success_stories_container .success_stories_row{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}
.success_stories_row .success_stories_col{
  width: 400px;
  /* width: 100%; */
  height: 400px;
  border-radius: 8px;
  border: 1px solid #1f1e1ea1;
  transition: all .4s ease-in-out;
}
.success_stories_row .success_stories_col:hover{
  transform: scale(1.1);
}
.success_stories_col iframe{
  width: 400px;
  height: 400px;
  border-radius: 8px;
}
.success_stories_col img{
  width: 400px;
  height: 400px;
  border-radius: 8px;
}
/* success stories emd  */
/* contact page start  */
.ot_page_header .contact_page-banner {
  position: relative;
  background: url('../images/contact_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .contact_page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .contact_page-banner .overlay .content {
  color: var(--main-color);
}

.ot_page_header .contact_page-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .contact_page-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .contact_page-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .contact_page-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .contact_page-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .contact_page-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .contact_page-banner .overlay {
    padding-left: 3%;
  }
}
/* contact page end  */
/* uk page start  */
.ot_page_header .uk-banner {
  position: relative;
  background: url('../images/country_head_img.webp') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .uk-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .uk-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .uk-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .uk-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .uk-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .uk-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .uk-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .uk-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .uk-banner .overlay {
    padding-left: 3%;
  }
}
/* country_overview section start  */
.country_overview_table {
  background-color: #f1faffa3;
  padding: 80px 20px;
}

.country_overview_container {
  max-width: 1300px;
  margin: 0 auto;
}

.country_overview_title {
  color: var(--main-color);
  font-family: poppins;
  font-size: 40px;
  border-left: 4px solid red;
  padding-left: 20px;
  font-weight: bolder;
}

/* table wrapper */
.overview_table {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background-color: #ebebeb96;
  margin-top: 40px;
  overflow-x: auto; /* tiny screens safe */
}

/* ALWAYS TWO COLUMNS */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;       /* fixes column overflow */
  word-wrap: break-word;     /* prevents overflow */
  font-size: 16px;
  border-radius: 8px;
}

/* header */
thead td {
  font-weight: 900 !important;
  font-family: poppins;
  padding: 14px 12px;
  background: linear-gradient(180deg, #fbfdff, #f6fbff);
  border-bottom: 1px solid rgba(20, 33, 61, 0.06);
  color: var(--text);
  border: 1px solid rgb(187 187 187);

}

/* body cell */
tbody td  {
  font-family: poppins;
  font-weight: 100 !important;
  padding: 12px;
  border: 1px solid rgb(187 187 187);
}

/* zebra rows */
tbody tr:nth-child(odd) { background: #f1f9ff; }
tbody tr:nth-child(even) { background: #f9fdf6; }

/* left column */
td:first-child {
  font-weight: 600;
  width: 45%;       /* adjust for better balance */
}

/* ---------- RESPONSIVE FIXES ---------- */

/* Tablets - slightly reduce font */
@media (max-width: 992px) {
  table { font-size: 15px; }
}

/* Small phones 480px–560px */
@media (max-width: 560px) {
  table { 
    font-size: 14px;
    table-layout: fixed;  
  }

  td {
    padding: 10px;
  }

  td:first-child {
    width: 50%;
  }
}

/* Very small 320–400px screens */
@media (max-width: 400px) {
  table {
    font-size: 13px;
  }

  td {
    padding: 8px;
  }

  td:first-child {
    width: 50%;
  }
}
/* country_overview section end  */
/* about uk start  */
.about_uk{
  padding: 80px 20px;
  /* background-color: #f1faffa3; */

}
.about_uk_why{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.about_uk_row{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.about_uk_col{
  transition: all .4s ease-in-out;
}
.about_uk_row .about_uk_col img{
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  transition: all .4s ease-in-out;
}
.about_uk_col:hover img{
  transform: scale(1.1);
}
.about_uk_col .about_uk_title{
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid red;
  font-family: poppins;
  font-size: 40px;
  font-weight: 1000;
  color: var(--main-color);
}
.about_uk_col .about_details{
  max-width: 650px;
  width: 100%;
  text-align: justify;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 100;
  
}

.about_uk_col .about_uk_list{
  list-style: none;
  margin-left: 20px;
   max-width: 650px;
  width: 100%;
}
.about_uk_col .about_uk_list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: poppins;
  font-weight: 200;
  letter-spacing: 1px;

}
.about_uk_col .about_uk_list li img{
  width: 20px;
  height: auto;
}
@media(max-width: 978px){
  .about_uk_row{
    flex-wrap: wrap !important;
    justify-content: center;
  }
  /* .about_uk_row_reverse{
    flex-wrap: wrap-reverse !important;
    justify-content: center !important;
  } */
  .about_uk_col .about_details{
  max-width: 100%;
 }
 .about_uk_row .about_uk_col img{
  max-width: 100%;
  }
  .about_uk_col .about_uk_list{
   max-width: 100%;
}

}
/* about uk end  */
/* requirement start  */
.requirement_section{
  /* background-color: #f1faffa3; */
  padding: 80px 20px;
}
.requirement_container{
  max-width: 1300px;
  margin: 0 auto;
}
.requirement_title{
  font-size: 40px;
  font-family: poppins;
  font-weight: 1000;
  color: var(--main-color);
  border-left: 4px solid red;
  padding-left: 20px;
  margin-bottom: 40px;
}
.requirement_col .requirement_details{
  text-align: justify;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: poppins;
}
.requirement_col .requirement_list{
  list-style: none;
  margin-left: 20px;
  margin-top: 20px;
}
.requirement_col .requirement_list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: poppins;
  font-weight: 100;
  letter-spacing: 1px;

}
.requirement_col .requirement_list li img{
  width: 20px;
  height: auto;
}
/* requirement emd  */
/* r start  */
.r_section{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.r_container{
  max-width: 1300px;
  margin: 0 auto;
}
.r_row{
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 50px;
}
.r_col .r_title{
  font-size: 40px;
  border-left: 4px solid red;
  color: var(--main-color);
  padding-left: 20px;
  font-family: poppins;
  font-weight: 1000;
}
.r_list{
  list-style: none;
  margin-left: 20px;
  margin-top: 20px;
}
.r_list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: poppins;
  font-weight: 100;
  letter-spacing: 1px;
}
.r_list li img{
  width: 20px;
  height: auto;
}
.r_top_margin{
  margin-top: 50px;
}
@media(max-width: 978px){
  .r_row{
  grid-template-columns: 1fr;
}
}
/* r emd  */
/* some details start  */
.some_details{
  padding: 80px 20px;
}
.some_details_row{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.some_details_row .some_details_col .some_detials_title{
  font-size: 40px;
  border-left: 4px solid red;
  color: var(--main-color);
  padding-left: 20px;
  font-family: poppins;
  font-weight: 1000;
  margin-bottom: 30px;
}
.some_details_row .some_details_col .some_details_description{
   text-align: justify;
  gap: 10px;
  margin-bottom: 10px;
  font-family: poppins;
  font-weight: 200;
  letter-spacing: 1px;
}
/* some details emd  */
/* apply section start */
/* ===== Apply Section Styling ===== */
.apply_section {
background: #f1faffa3;
padding: 80px 20px;
display: flex;
justify-content: center;
flex-wrap: wrap !important;
}

.apply_title{
      font-size: 40px;
    color: var(--main-color);
    /* padding-left: 20px; */
    font-family: poppins;
    font-weight: 1000;
    flex: 1 1 100%;
    text-align: center;
    border-bottom: 1px solid gray;
    max-width: 286px;
    margin: 0 auto;
    margin-bottom: 30px;

}

.apply_container {
flex: 1 1 100%;
width: 100%;
max-width: 600px;
background: #ffffffcc;
backdrop-filter: blur(10px);
padding: 35px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}



.apply_container form {
display: flex;
flex-direction: column;
gap: 22px;
}


.input_group {
display: flex;
flex-direction: column;
gap: 6px;
animation: fadeIn 1s ease forwards;
opacity: 0;
}



label {
font-size: 15px;
font-weight: 600;
color: #333;
font-family: poppins, sans-serif;
}


input {
padding: 14px;
border-radius: 10px;
border: 2px solid #d8d8d8;
font-size: 15px;
outline: none;
transition: 0.4s;
background: #fafafa;
}


input:focus {
border-color: var(--main-color);
box-shadow: 0 0 8px rgba(0,123,255,0.4);
background: #ffffff;
transform: scale(1.02);
}


.button {
margin-top: 10px;
padding: 14px;
background: linear-gradient(135deg, var(--main-color), var(--main-color));
color: white;
border: none;
}
/* Responsive */
@media (max-width: 480px) {
.apply_container { padding: 25px; }
input { font-size: 14px; }
button { font-size: 16px; }
}
/* apply section end */
/* uk page end */
/* institute page start  */
.ot_page_header .institute-banner {
  position: relative;
  background: url('../images/university_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .institute-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .institute-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .institute-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .institute-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .institute-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .institute-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .institute-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .institute-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .institute-banner .overlay {
    padding-left: 3%;
  }
}
/* study in section start  */
.studyin{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.studyin_container{
  max-width: 1300px;
  margin: 0 auto;
}
.studyin_title{
  font-family: poppins;
  font-size: 40px;
  font-weight: 1000;
  padding-left: 20px;
  border-left: 4px solid red;
  color: var(--main-color);
  margin-bottom: 30px;
}
.studyin_row .studyin_col .studyin_details{
  font-family: poppins;
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 30px;
}
.studyin_list{
  list-style: none;
  margin-left: 20px;
  margin-top: 20px;
}
.studyin_list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: poppins;
  font-weight: 100;
  letter-spacing: 1px;
}
.studyin_list li img{
  width: 20px;
  height: auto;
}
.two_img_institute{
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.two_img_institute img{
width: 100%;
    height: 320px;
    border-radius: 12px;
    transition: all .4s ease-in-out;
}
.two_img_institute img:hover{
  transform: scale(1.1);
}
@media(max-width: 978px){
  .two_img_institute{
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
/* study in section end  */
/* provide section start  */
.provide_section{
  padding: 80px 20px;
}
.provide_container{
  max-width: 1300px;
  margin: 0 auto;
}
.provide_title{
  font-family: poppins;
  font-size: 40px;
  font-weight: 1000;
  color: var(--main-color);
  border-left: 4px solid red;
  padding-left: 20px;
}
.provide_subtitle{
  font-family: poppins;
  font-size: 30px;
  font-weight: 1000;
  color: var(--main-color);
  padding-top: 20px;
}
.provide_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 50px;
  margin-top: 40px;
}
.provide_col .provide_col_title{
  font-family: poppins;
  font-size: 20px;
  font-weight: 1000;
  color: var(--main-color);
  padding-left: 20px;
}
.provide_col .provide_list{
  list-style: none;
  margin-left: 20px;
  margin-top: 10px;
}
.provide_col .provide_list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: poppins;
  font-weight: 100;
  letter-spacing: 1px;  
}
.provide_col .provide_list li img{
  width: 20px;
  height: auto;
}
.provide_bottom_details{
  font-family: poppins;
  font-weight: 100;
  letter-spacing: 1px; 
  margin-left: 20px;
}
.margin_top_provide{
  margin-top: 20px;
}
.one_row_problem{
  grid-template-columns: 1fr !important;
}
#visit_univercity{
  color: red;
  text-decoration: underline;
  font-family: poppins;
  margin-left: 20px;
  margin-top: 30px;
}
@media(max-width: 791px){
  .provide_row{
    grid-template-columns: 1fr;
    width: 100%;
    justify-content: center;
  }
}
.why_study_institute{
  background-color: #f1faffa3 !important;
}
.without_background{
  background-color: transparent !important;
}
/* provide section end  */
/* institute page end  */
/* news page start  */
.ot_page_header .news_page-banner {
  position: relative;
  background: url('../images/news_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .news_page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .news_page-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .news_page-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .news_page-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .news_page-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .news_page-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .news_page-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .news_page-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .news_page-banner .overlay {
    padding-left: 3%;
  }
}
.news_section{
  padding: 80px 20px;
  background-color: #f1faffa3;
}
.news_container{
  max-width: 1300px;
  margin: 0 auto;
}
.news_row{
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.news_col{
  width: 325px;
  height: auto;
  box-shadow: var(--shadow-medium);
  border-radius: 5px;
  background-color: white;
}
.news_col_top{
  padding: 10px;
  position: relative;
}
.news_col_top img{
  width: 305px;
  height: 175px;
  margin: 0 auto;
  border-radius: 5px;
}
.news_col_top_right_title{
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  font-size: 11px;
  background-color: red;
  color: white;
  font-family: poppins;
  font-weight: 1000;
  border-radius: 15px;
}
.news_col_title{
  font-family: poppins;
  font-size: 17px;
  color: var(--main-color);
  font-weight: 1000;
  text-align: justify;
  padding: 10px;
}
.news_col_details{
  font-family: poppins;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1px;
  text-align: justify;
  padding: 0px 10px;
}
.news_col_read_more_btn{
  font-size: 14px;
  font-family: poppins;
  font-weight: 500;
  padding: 10px;
  color: red;
  text-decoration: underline;
}
.news_col_publish_date{
  padding: 5px 10px;
  border-top: 1px solid #1f1e1e8e;
  font-weight: 200;
  font-family: poppins;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 15px;
}
/* news page end  */
/* media page start  */
.ot_page_header .media_page-banner {
  position: relative;
  background: url('../images/event_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .media_page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .media_page-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .media_page-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .media_page-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .media_page-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .media_page-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .media_page-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .media_page-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .media_page-banner .overlay {
    padding-left: 3%;
  }
}
/* media page end  */
/* blog page start  */
.ot_page_header .blog_page-banner {
  position: relative;
  background: url('../images/blog_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .blog_page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .blog_page-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .blog_page-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .blog_page-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .blog_page-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .blog_page-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .blog_page-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .blog_page-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .blog_page-banner .overlay {
    padding-left: 3%;
  }
}
/* blog page emd  */
.ot_page_header .apply_now_page-banner {
  position: relative;
  background: url('../images/apply_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .apply_now_page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .apply_now_page-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .apply_now_page-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .apply_now_page-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .apply_now_page-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .apply_now_page-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .apply_now_page-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .apply_now_page-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .apply_now_page-banner .overlay {
    padding-left: 3%;
  }
}


/* all couhntry page start  */
.ot_page_header .all_country_university-banner {
  position: relative;
  background: url('../images/university_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .all_country_university-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .all_country_university-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .all_country_university-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .all_country_university-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .all_country_university-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .all_country_university-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .all_country_university-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .all_country_university-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .all_country_university-banner .overlay {
    padding-left: 3%;
  }
}
.all_country_university_section{
  padding: 80px 60px;
  background-color: #f1faffa3;
}
.all_country_university_container{
  max-width: 1300px;
  margin: 0 auto;
}
.all_country_university_row{
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  row-gap: 40px;
}
.all_country_university_row .country_block{
  padding: 30px 10px;
  background-color: white;
  box-shadow: var(--shadow-medium);
  border-radius: 10px;
}
.all_country_university_row .country_block .country_block_title{
  text-align: center;
  font-size: 40px;
  color: var(--main-color);
}
.all_country_university_row .country_block .country_lists{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

 .all_country_university_row .country_block .country_lists ul{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 500px;
 }
 @media(max-width: 550px){
   .all_country_university_row .country_block .country_lists ul{
  width: 300px;
 }
 }
.all_country_university_row .country_block .country_lists ul li a{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  gap: 20px;
  transition: all .4s ease-in-out;
}
.all_country_university_row .country_block .country_lists ul li a img{
  width: 20px;
}
.all_country_university_row .country_block .country_lists ul li:hover a{
  color: red;
}
/* all couhntry page end  */

/* all destination section start  */
.ot_page_header .all_destination-banner {
  position: relative;
  background: url('../images/destination_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .all_destination-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .all_destination-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .all_destination-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .all_destination-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .all_destination-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .all_destination-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .all_destination-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .all_destination-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .all_destination-banner .overlay {
    padding-left: 3%;
  }
}
.all_destination_section{
  padding: 80px 20px;
  background: #f1faffa3;
  font-family: poppins;
}
.all_destination_container{
  max-width: 1300px;
  margin: 0 auto;
}
.all_destination_row{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.all_destination_col{
  max-width: 620px;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-medium);
  background-color: white;
  border-radius: 10px;
  padding: 15px;
}
.all_destination_col .all_destination_title{
  font-size: 40px;
  color: var(--main-color);
}
.all_destination_col .all_destination_col_row{
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
  padding: 15px;
}
.all_destination_col_row .all_destination_left #des_img{
  max-width: 150px !important;
  height: 150px !important;
  border-radius: 10px;
}
.all_destination_col_row .all_destination_right a{
  color: var(--main-color);
  text-decoration: underline;
  transition: all .4s ease-in-out;
}
.all_destination_col_row .all_destination_right a:hover{
  color: red;
}
/* all destination section end  */
/* evend section start  */
.event_se_section{
  padding: 80px 20px;
  /* background-color: #f1faffa3; */
}
.event_se_container{
  max-width: 1300px;
  margin: 0 auto;
}
.event_se_row {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.event_se_row.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.event_img img {
    max-width: 300px;
    /* width: 100%; */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: all .4s ease-in-out;
}
.event_img:hover img{
  transform: scale(1.1);
}
.event_content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--main-color);
    text-decoration: underline;
}
.event_content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}
.event_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #222;
}
.event_meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Responsive */
@media (max-width: 768px) {
    .event_se_row {
        flex-direction: column;
        padding: 16px;
    }
    .event_content h2 {
        font-size: 20px;
    }
    .event_meta {
        gap: 10px;
        font-size: 13px;
    }
}
@media(max-width: 500px){
   .event_img img {
    max-width: 400px;
}
}
/* extra page set up  */
.event_filter_wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Filter Buttons */
.event_filter_btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.filter_btn {
    padding: 10px 22px;
    border: none;
    background: #0f1e2c;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}

.filter_btn.active {
    background: #b30000;
}
/* event preview page start  */
.event_per_main_section{
  padding: 60px 20px;
  /* background: #f1faffa3; */
}
.event_per_main_container{
  max-width: 1300px;
  margin: 0 auto;
}


.event_pre_container {
  max-width: 1100px;
  margin: auto;
}

.event_pre_title {
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  color: var(--main-color);
}

.event_pre_meta_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 50px;
  font-size: 15px;
  margin-bottom: 25px;
}

.event_pre_intro,
.event_pre_note {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(44, 44, 44, 0.753);
}

.event_pre_highlight_wrap h3 {
  color:var(--main-color);
  margin-bottom: 15px;
}

.event_pre_highlight_wrap ul {
  padding-left: 0;
  list-style: none;
}

.event_pre_highlight_wrap li {
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(46, 46, 46);
}

.event_pre_contact p {
  font-size: 16px;
  margin: 5px 0;
}

.event_pre_divider {
  height: 1px;
  background: #ddd;
  margin: 30px 0;
}

.event_pre_details h3 {
  margin-bottom: 10px;
}

.event_pre_details p {
  margin-bottom: 8px;
  font-size: 16px;
  color: rgb(46, 46, 46) ;
}
.ot_page_header .event_pre-banner {
  position: relative;
  background: url('../images/event_head_img.png') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.ot_page_header .event_pre-banner .overlay {
  background-color: rgba(0, 0, 0, 0.01);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.ot_page_header .event_pre-banner .overlay .content {
  color: var(--main-color);
}

 .ot_page_header .event_pre-banner .overlay .content h1 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ot_page_header .event_pre-banner .overlay .content h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 8px;
  height: 80%;
  background: red;
}

.ot_page_header .event_pre-banner .overlay .content p {
  margin-top: 10px;
  font-size: 1rem;
}

.ot_page_header .event_pre-banner .overlay .content a {
  color: var(--main-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ot_page_header .event_pre-banner .overlay .content h1 {
    font-size: 2rem;
  }

  .ot_page_header .event_pre-banner .overlay .content p {
    font-size: 0.9rem;
  }

  .ot_page_header .event_pre-banner .overlay {
    padding-left: 3%;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .event_pre_container {
    padding: 25px;
  }

  .event_pre_title {
    font-size: 24px;
  }

  .event_pre_meta_top {
    font-size: 14px;
    gap: 10px;
    justify-content: center;
  }
}
/* evend section end  */
/* member ship section start  */
.partner_section {
    padding: 60px 20px;
    background: #f1faffa3;
}

.partner_container {
    max-width: 1200px;
    margin: auto;
}

.partner_title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.partner_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    row-gap: 30px;
}

.partner_item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
}

.partner_item img {
    width: 100px;
    object-fit: contain;
}

.partner_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Tablet */
@media (max-width: 991px) {
    .partner_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .partner_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner_title {
        font-size: 22px;
    }
}
/* member ship section end  */
@media(max-width: 600px){
  .about_page_body{
    zoom: 77%;
  }
  .meet_our_team_page_body{
    zoom: 77%;
  }
  .certificate_page_body{
    zoom: 77%;
  }
  .success_stories_page_body{
    zoom: 77%;
  }
  .uk_page_body{
    zoom: 77%;
  }
  .institute_page_body{
    zoom: 77%;
  }
  .media_page_body{
    zoom: 77%;
  }
  .event_se_section{
    zoom: 77%;
  }
  .partner_section{
    zoom: 77%;
  }
  #social{
    zoom: 85%;
  }
}
/* other page end  */