/* General Styles */
/* *{
 overflow-x: hidden;
} */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    overflow-x  : hidden;
  
  }
  
/* Responsive Styles */

  
   header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  
  }
  
  .top-bar {
    background-color: #000;
    color: #fff;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   position: fixed;

   
  }
  
  .top-left {
    font-size: 14px;
  }
  
  .apply-btn {
    background-color: gold;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    background-color: #fff;
    overflow: hidden;
    z-index: 999;
    min-width: 98%;
    max-width: 100%;
    position: fixed;
  
  }
  
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color:  #0066b2;
  }
  
  .logo span {
    color: #000;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
  }
  
  .header-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
   .live-counselling {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s;
  }
  
  .live-counselling ::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: linear-gradient(90deg, #00ccff, #00ff11); 
    background: linear-gradient(30deg, #f9d751, #ffad53, #f7875f, #e5686b, #cc5075, #ae3f7a, #8e3479, #6c2d72);  
     z-index: -1; 
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
    transform-origin: left; 
   } 
   
   .live-counselling:hover::before {
    transform: scaleX(1);
  }
  
  .live-counselling:hover {
    color: #fff;
  }
  
  .live-counselling::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
     background: linear-gradient(45deg, #ff8c00, #ff0080, #00ffcc, #ff0048); 
     background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    z-index: -2;
    animation: border-animation 1.5s linear infinite; 
   } 
   .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: white;
    width: 40%;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.modal-content input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.modal-content button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
}
    .nav-menu {
    display: flex;
} 

 .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
} 
     
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@keyframes border-animation {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
  
  
 
  
  .apply-online{
    background-color:  #0066b2;
    color: #fff;
  
  }
  .header-buttons .btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .hero {
    text-align: center;
    background-image: url(image/friend-2727307.jpg);
    background-size: cover;
    margin-top: 60px;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 50px 20px;
    
  }
  .hero h1{
    color: #fff;
    text-align: center;
    /* margin-top: -100px; */
    margin-left: 30px;
  }
 
  
  
    /* .search-bar {
     backdrop-filter: blur(5px);  
    margin: 20px 0;
    display: flex;
    justify-content: center;
    
    
  }  */
 
  
  /* .search-bar input {
    padding: 15px;
    width: 500px;
    border: none;
    border-radius: 20px;
  }
  .search-bar input:focus{
    outline: none;
  } */
  /* .search-bar .search-btn {
    padding: 12px;
    background-color: red;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: -50px;
    border-radius: 35px;
    width: 52px;
  } * */
  /* .search-container {
    margin: 50px auto;
    background: #202124;
    color: #FFF;
    border-radius: 25px;
    position: relative;
    width: 600px;
    

  }
  
  #searchInput {
    width: 100%;
    border: none;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 25px;
    padding: 0px 40px 0px 25px;
    font-size: 18px;
  }
  
  #searchInput:focus {
    outline: none;
  }
  
  .search-icon {
    position: absolute;
    background: none;
    top: 13px;
    right: 5px;
  }
  
  .search-icon i {
    color: red;
    font-size: 22px;
  }
   */
   .search-container {
    margin: 50px auto;
    background: #fff;
    color: #202124;
    margin-top:-10px;
    border-radius: 20px;
    position: relative;
    width: 50%;
  }
  
  #searchInput {
    width: 100%;
    border: none;
    height: 50px;
    background: #fff;
    color: #202124;
    border-radius: 20px;
    padding: 0px 40px 0px 25px;
    font-size: 18px;
  }
  
  #searchInput:focus {
    outline: none;
  }
  
  .search-icon {
    position: absolute;
    background: none;
    top: 13px;
    right: 20px;
  }
  
  .search-icon i {
    position: absolute;
    /* top: 50%;
    right: 15px; */
    /* transform: translateY(-50%); */
    font-size: 25px;
    color: red;
    cursor: pointer;

  }
  
  .suggestion-wrap {
    display: none; /* Initially hidden */
    position: absolute;
    width: 107%;
    background: gray; /* Dark background */
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: -5px;
    margin-left: 3px;
    /* margin-left: 10px; */
    left: 0; /* Align to input field */
    overflow: hidden;
}

.suggestion-wrap.show {
    display: block; /* Show suggestions */
}

.suggestion-wrap .suggestions {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.suggestion-wrap .suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    color: #202124;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.suggestion-wrap .suggestions li:hover {
    background: #007bff;
    color: white;
}
  /* .suggestions-wrap {
    display: none; /* Hide initially */
    /* position: absolute; 
    margin-top: 50px;
     width: 20%;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; */
    
 /* }  */ 

/* .suggestions-wrap.show {
    display: block; /* Show when class is added */
/* } */ 

/* .suggestions-wrap .suggestions {
    margin: 0;
    padding: 0;
    list-style: none;
}

.suggestions-wrap .suggestions li {
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.suggestions-wrap .suggestions li:hover {
    background: #303134;
    color: white;
} */

  /* .suggestion-wrap .suggestions {
    margin: 0; 
    padding: 0; 
}
.suggestion-wrap .suggestions li{
  list-style: none;
  border-radius: 3px;
  padding: 8px 25px;
  transition: all .5s linear;
}

.suggestion-wrap {
    display: none;
}

.suggestion-wrap .show {
  display: block;
}

.suggestion-wrap .suggestions li:hover {
  background: #303134;
} */
  .counselor-btn {
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .country-browse {
    padding: 20px;
    text-align: center;
  }
  
  .country-browse .countries {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .country {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
  }
.flag{
    width: 30px;
    height: 30px;

}
.country:hover{
background-color: #ddd;
}
.course{
  text-align: center;
  font-size: 25px;
}
  
.container {
  padding: 20px;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

h1 span {
  color: red;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
}

.title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.button {
  margin-top: 20px;
}

.view-all {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.view-all:hover {
  background-color: red;
}

.banner {
  background-color: #d50000;
  color: white;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.banner h1 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.banner p {
  font-size: 18px;
  color: #fff;
  margin: 10px 0 20px;
}

.banner .cta-button {
  background-color: white;
  color: #d50000;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner .cta-button:hover {
  background-color: #ffe0e0;
}

.banner .img-banner {
  position: absolute;
  right: 20px;
  width: 300px;
  height: auto;
  border-radius: 8px;
   /* background-color: #007aff;  */
}
.img-banner img{
  width: 260px;
  margin-top: -294px;
}
.container1{
  max-width: 1300px;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

/* .grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
} */
/* .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
} */
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
}

.location {
  color: #ff9800;
  font-size: 14px;
  margin-bottom: 15px;
}

.details {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  justify-content: space-between;
}

.buttons .btn {
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
}

.btn-details {
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff;
  transition: background-color 0.3s;
}

.btn-details:hover {
  background-color: #007bff;
  color: white;
}

.btn-apply {
  background-color: #d50000;
  color: white;
  border: 1px solid #d50000;
  transition: background-color 0.3s;
}

.btn-apply:hover {
  background-color: #ff4d4d;
}

.rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.card-header {
  position: relative;
}
.button1{
  margin-top: 20px;
}
.view-all1{
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 45%;
  transition: background-color 0.3s;
}
.view-all1:hover {
  background-color:#007bff;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.wrapper {
  max-width: 1500px;
  padding: 0 15px;
  width: 100%;
  margin-top: 20px;
  background-color: 	#DCDCDC;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  /* max-width: 1300px; */
  

  /* margin-left: 50px; */
}

.service {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service img {
  max-width: 64px;
  margin-bottom: 15px;
}

.service h2 {
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
}
.wrapper1 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: 	#DCDCDC;
}
.wrapper1 span{
  margin-left: 20px;
  color: #0066b2;
}
.text-content {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}
.text-content h1{
  margin-left: -460px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  flex: 1;
  min-width: 300px;
}
.stats-card {
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}
.stats-card p:first-child {
  color: #dc2626;
  font-size: 24px;
  font-weight: bold;
}
.section-title{
  font-size: 2rem;
}

.layout-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
h2 {
  color: #1f2937;
  font-size: 32px;
  font-weight: bold;
}
p {
  color: #4b5563;
  font-weight: 600;
  margin-top: 10px;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.facility-card {
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: center;
}
.facility-card img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.callback-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.callback-box:hover {
  transform: scale(1.1);
}
.footer {
  background: #0c1b4d;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer .column {
  max-width: 250px;
}
.footer h3 {
  color: yellow;
}
.footer a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px 0;
  transition: transform 0.3s;
}
.footer a:hover {
  transform: translateX(5px);
  color: lightgray;
}
.header1, .sidebar {
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  .header,.header-content{
    display: none;
  }
  .header1 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      color: white;
  }

  .logo {
      font-size: 20px;
      font-weight: bold;
  }

  .menu-toggle {
      background-color: #0066b2;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
  }

  /* Sidebar Menu */
  .sidebar {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 300px;
      height: 100%;
      background: white;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      transform: translateX(-100%);
      transition: 0.3s ease-in-out;
      padding: 20px;
      z-index: 1000;
  }

  .sidebar.open {
      transform: translateX(0);
  }

  .sidebar .close-btn {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      float: right;
  }

  .sidebar ul {
      list-style: none;
      padding: 0;
  }

  .sidebar ul li {
      padding: 10px 0;
      font-size: 18px;
      border-bottom: 1px solid #ddd;
  }

  .sidebar ul li a {
      text-decoration: none;
      color: #333;
      display: block;
  }
  .sidebar ul li:hover{
    background-color: orange;
    border-radius: 10px;
  }
.sidebar ul li a:hover{
  
  color: #fff;
  /* background-color: orange; */
}
  /* Buttons */
  .apply-btn {
      background: red;
      color: white;
      padding: 12px;
      text-align: center;
      display: block;
      font-size: 18px;
      border-radius: 5px;
      margin-bottom: 15px;
  }

  .live-counselling {
      border: 2px solid red;
      color: #fff;
      padding: 12px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border-radius: 5px;
      margin-bottom: 15px;
  }

  .live-counselling img {
      margin-right: 10px;
  }

  .call-btn {
     
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border-radius: 5px;
  }
.btn-contact{
  border: 2px solid #0066b2;
  color: #0066b2;
  padding: 12px;
  /* padding: 10px; */
  width: 100%;
  font-size: 20px;
  border-radius: 5px;
}
  /* .call-btn img {
      margin-right: 10px;
  } */
}


@media (max-width:768px) {
  html,body{
    overflow-x: hidden;
    overflow-y: auto;
  }
  /* body{
    overflow-x: hidden;
  } */
  /* .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004b87;
    padding: 15px;
    color: white;
} */

  /* .header-content {
      flex-direction: column;
      align-items: center;
      height: 30px;
  }  */

  /* Hide Desktop Menu */
   /* .nav-menu {
       display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 200px;
      left: 0;
      width: 100%;
      text-align: center;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }  */


  /* .nav-menu ul {
      flex-direction: column;
      width: 100%;
      gap: 10px;
      padding: 15px 0;
  } */

  /* Show Hamburger */
  /* .hamburger {
      display: block;
      float: left;
  
}
  .nav-menu.active {
      display: flex;
  } */

  /* Keep buttons visible */
   .header-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      
      /* margin-top: 10px; */
  } 

  /* .btn {
      width: 100%;
      text-align: center;
  }  */
 .hero h1{
  text-align: center;
  display: inline-block;
  font-size: 25px;
 }
 .header-buttons{
  display: none;
 }
 

.grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.countries {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
} 
.hero{
background-image: url(image/friend-2727307.jpg);
}
.logo {
  font-size: 20px;
  font-weight: bold;
}
.logo h1{
  font-size: 20px;
}
section .grid{
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
section .grid1{
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.text-content h1{
  text-align: center;
  font-size: 25px;
  
}
.text-content span{
  text-align: center;
  margin-left: 60%;
  font-size: 25px;
  color: #3f5260;
  

}
section h2{
  text-align: center;
  font-size: 20px;
}
.button1{
  justify-content: center;
  margin-left: -10%;
}
.layout-wrapper h2{
  text-align: center;
  font-size: 30px;
}
.layout-wrapper p{
  text-align: center;
  justify-content: center;
}

.search-container {
  position: relative; /* Keeps search bar inside its container */
  width: 100%;
  max-width: 300px; /* Adjust width as needed */
  margin: 10px auto;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 5px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Ensures it stays on top */
}

.search-bar {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 25px;
}

.search-icon {
  cursor: pointer;
  font-size: 18px;
  color: #333;
  margin-right: 20px;
  padding: 5px;
}

.suggestion-wrap {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 5px;
  display: none; /* Hide by default */
  z-index: 1000; /* Ensures it stays above other elements */
}

/* Fix overlap when sidebar is open */
.sidebar.open + .search-container {
  z-index: 0; /* Send search bar behind the sidebar */
}

.suggestion-wrap .suggestions li {
  font-size: 16px;
  padding: 14px;
}
.footer {
  background-color: #1a2b4c;
  color: white;
  padding: 20px;
}
.footer .column {
  background-color: #2c3e60;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.column h3{
  text-align: center;
  justify-content: center;
}

.footer h3 {
  flex-direction: column;
  text-align: center;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 /* .column i{
  margin-left: 120%;
  /* margin-top: -10%; */
  /* text-align: center; */
/* }  */
.footer .links {
  text-align: center;
  display: flex;
  display: none;
  flex-direction: column;
  padding-top: 10px;
}
.links a{
  display: flex;
  text-align: center;
  margin-top: 10px;
  margin-left: -100px;
}
.footer a {
  color: white;
  text-decoration: none;
  padding: 5px 0;
  display: block;
}
.footer-bottom {
  text-align: center;
  padding: 10px;
  background-color: #152238;
  color: white;
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.footer-icons i {
  font-size: 20px;
  color: white;
}
.chat-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
}

@media (max-width: 768px) {
 
  .banner img {
    display: none;
  }
}
   /* Responsive Styles  */
    @media (max-width: 1064px) {
    .header-content {
      flex-direction: column;
      text-align: center;
    }
  
    nav ul {
      justify-content: center;
      gap: 10px;
    }
  
    .header-buttons {
      justify-content: center;
    }
  
    .search-bar input {
      width: 250px;
    }
    .chat-button{
      display: flex;
      width: 100px;
      height: 20px;
      font-size: 12px;
      text-align: center;
      text-decoration: line-through;

    }
    .footer1{
      background: #0c1b4d;
      color: white;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-wrap: wrap; 
    }
    .column{
      /* background-color: #00ff11;
      display: flex;
      flex-direction: column;
      max-width: max-content;
      width: 100%;
      margin-left: 25%; */
      /* display: none; */
      white-space: nowrap;  /* Keeps the text in a single line */
      overflow: hidden;  /* Prevents overflow */
      text-overflow: ellipsis;  /* Adds '...' if text is too long */
      width: 90%;  /* Increases width */
      max-width: 600px; /* Ensures it's not too wide */
      margin: 0 auto; /* Centers the div */
      padding: 10px; /* Adds spacing */
      
    }
    .footer1 .column h3{
      font-size: 20px;
      text-align: center;
      
    }
    .footer1 p{
      font-size: 10px;
      text-transform: uppercase;
    }

    .column img{
      display: none;
    }
   #column1 h3{
    display: none;
   }
   #column2 h3{
    display: none;
   }
   .social-media {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #03114a; /* Dark blue background */
    padding: 10px;
    border-radius: 8px;
}
.social-media a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom{
  width: 100%;
  size-adjust: 10px;
  font-size: 10px;
}

    }
  .callback-box1{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.callback-box:hover {
    transform: scale(1.1);
}
    
.footer1 {
    background: #0c1b4d;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer1 .column {
    max-width: 250px;
}
.footer1 h3 {
    color: yellow;
 } 
.footer1 a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 0;
    transition: transform 0.3s;
}
.footer1 a:hover {
    transform: translateX(5px);
    color: lightgray;
}
.footer-bottom {
    background: #001233;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
.social-media {
    display: flex;
    flex-direction: column;
}
.social-media a {
    color: white;
    margin: 5px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.social-media i {
    margin-right: 10px;
}
.chat-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #007aff;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.chat-button i {
    margin-right: 5px;
}
#payment1{
  width: 200px;
  margin-left: -50px;
  border-radius: 10px;
}
#Guarantee{
  width: 200px;
  margin-left: -45px;
  margin-top: -20px;
} 
.chat-button1 {
  position: fixed;
  right: 0; /* Align to the right edge */
  top: 60%; /* Center vertically */
  transform: translateY(-50%) rotate(90deg); /* Rotate to vertical */
  background: red;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  /* font-weight: bold; */
  /* writing-mode: vertical-rl; Ensures text is rotated */
  /* text-orientation: upright; */
  z-index: 1000; /* Keep it on top */
  margin-right: -60px;
  font-size: 20px;


}

    
  @media (max-width: 768px) {
    .hero {
      background-position: center;
      padding: 30px 20px;
    }
  
    .search-bar input {
      width: 200px;
    }
  
    nav ul {
      flex-direction: column;
    }
  
    nav ul li {
      margin: 5px 0;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      font-size: 20px;
    }
  
    .header-buttons .btn {
      padding: 5px;
      font-size: 14px;
    }
  
    .search-bar input {
      width: 150px;
    }
  
    .counselor-btn {
      padding: 8px 15px;
      font-size: 14px;
    }
  
    .country {
      padding: 8px 10px;
      font-size: 14px;
    }
    .chat-button1{
      display: none;
    }
  } 
   