/** @format */

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.wrapper {
  width: 90%;
  max-width: 1950px;
  margin: 0 auto;

}
button:hover {
  cursor: pointer;
}
img {
  width: 100%;
}
@font-face {
  font-family:  "Poppins", serif;
  font-style: normal;
  font-weight: normal;
  src: local("Pacifico Regular"), url("Pacifico.woff") format("woff");
}
@font-face {
  font-family: "Poppins Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Poppins Regular"), url("Poppins-Regular.woff") format("woff");
}

@font-face {
  font-family: "Poppins SemiBold";
  font-style: normal;
  font-weight: normal;
  src: local("Poppins SemiBold"), url("Poppins-SemiBold.woff") format("woff");
}
body {
  background-color: #eef0f1;
  
}
header {
  width: 100%;

  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 10px 10px; /* Bottom-left and bottom-right corners rounded */
  position: relative;
}


.logo {
cursor: pointer;
}

.logo_md{
  display: none;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links ul li {
  display: inline;
}

.nav-links ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #7c7c7c;
  transition: color 0.3s;
}

/* .nav-links a.active {
  font-weight: bold;
  color: #063781;
} */

.nav-links ul li a:hover {
  color: #063781; /* Highlight color */
}

/* Hamburger Menu */
.hamburger {
  display: none;
 

}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

.nav-links.show .close-btn {
  display: block;
}

/* Fullscreen Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    
  
    
  }
.navbar{
  padding: 12px 20px;
}



  .hamburger span {
    display: block;
    width: 11px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

.nav-links {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 61vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: top 0.5s ease-in-out;
  z-index: 1000;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 0px 2px black;

}

  .nav-links.show {
    top: 0;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .nav-links ul li {
    display: block;
  }

  .nav-links ul li a {
    font-size: 16px;
    color: rgb(9, 0, 0);
    
    font-family:  "Poppins", serif;
  }

  .nav-links ul li a:hover {
    color: #02429c;
  }
  /* .nav-links a.active {
    font-weight: bold;
    color: black;
  } */

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 27px;
    font-size: 136%;
    color: #063781;
    cursor: pointer;
    display: none;
}

  .nav-links.show .close-btn {
    display: block;
  }

  .logo_md {
    display: block;
  }
  .logo {
    display: none;
  }
}
#spotlight {
  background: #fff;
  padding-top: 50px; /* Adjust padding for smaller screens */
  text-align: center;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  background-image: url("../image/bglines.png");
  background-position: bottom ; /* Aligns the top part of the image */
  background-size:contain; /* Ensures the background covers the entire container */
  background-repeat: no-repeat; /* Prevents repeating */
}

#spotlight .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1px;

  
}

#spotlight h1 {
  font-size: 76px;
  font-weight: 600;
  color: #063781;
  margin-bottom: 7px;
  line-height: 120%;
}

#spotlight p {
  font-size: 24px;
  color: #0a0a0a;
  margin-bottom: 41px;
  width: 55%;
}

/* Button */
#spotlight .download-btn {
  background: black;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s;
}

#spotlight .download-btn:hover {
  background: #333;
}

/* Image Container */
#spotlight .image-containers {
  padding-top: 20px;
  display: flex;
  justify-content: center;

}




#spotlight .image-containers .image {
  width: 63%;
}

#spotlight .image-containers img {
  width: 100%;
  display: block;
}

/* ✅ Responsive Styles */
@media (max-width: 1024px) {
  #spotlight h1 {
    font-size: 56px; /* Reduce heading size */
  }

  #spotlight p {
    font-size: 20px;
    width: 60%;
  }

  #spotlight .image-containers .image {
    width: 70%; /* Adjust image width */
  }
}

@media (max-width: 768px) {
  #spotlight h1 {
    font-size: 46px;
  }

  #spotlight p {
    font-size: 18px;
    width: 75%;
    margin-bottom: 32px;
  }

  #spotlight .image-containers {
    flex-direction: column;
    align-items: center;
  }

  #spotlight .image-containers .image {
    width: 80%;
  }
}

@media (max-width: 480px) {
  #spotlight h1 {
    font-size: 28px;
  }

  #spotlight p {
    font-size: 14px;
    width: 90%;
  }

  #spotlight .download-btn {
    border-radius: 10px;
    font-family: "Poppins", serif;
  }

  #spotlight .download-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  #spotlight .image-containers .image {
    width: 100%;
  }
  #spotlight {
    padding-right: 20px; 
    padding-left: 20px; 
  }
}

#about {
  margin-top: 70px;
  width: 100%;
  padding-bottom: 35px;
}
#about .main {
}
#about .containery {
  background: #fff;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#about .containery .left {
  width: 60%;
  padding-top: 40px;
  padding-bottom: 40px;

}

#about .containery .left h2 {
  font-size: 84px;
  color: #063781;
  font-weight: 500;
}

#about .containery .left p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #0a0a0a80;
}

#about .containery .right {
  width: 30%;
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
  padding-bottom: 40px;
}

#about .containery .right .hostel h2,
#about .containery .right .month h2 {
  color: #0a0a0a;
  font-size: 64px;
  font-weight: 500;
}

#about .containery .right .hostel p,
#about .containery .right .month p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 400;
  color: #0a0a0a80;
}

#about hr {
  border: 1px solid var(--Line, #0a0a0a1a);
}

/* ✅ Responsive Styles */
@media (max-width: 1024px) {
  #about .containery {
    flex-direction: column;
    text-align: center;
  }

  #about .containery .left {
    width: 100%;
    margin-left: 0px;
  }

  #about .containery .left h2 {
    font-size: 64px; /* Reduce heading size */
  }

  #about .containery .left p {
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
  }

  #about .containery .right {
    width: 100%;
    justify-content: space-around;
    margin-top: 20px;
  }

  #about .containery .right .hostel h2,
  #about .containery .right .month h2 {
    font-size: 48px; /* Adjust number size */
  }

  #about .containery .right .hostel p,
  #about .containery .right .month p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #about .containery .left h2 {
    font-size: 48px;
  }

  #about .containery .left p {
    font-size: 16px;
    width: 100%;
  }

  #about .containery .right {
    
    justify-content:space-around ;
    margin-top: 0px;
    gap: 15px;
  }

  #about .containery .right .hostel,
  #about .containery .right .month {
    margin-bottom: 20px;
  }

  #about .containery .right .hostel h2,
  #about .containery .right .month h2 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  #about {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  #about .containery .left h2 {
    font-size: 36px;
  }

  #about .containery .left p {
    font-size: 14px;
    width: 100%;
  }

  #about .containery .right .hostel h2,
  #about .containery .right .month h2 {
    font-size: 32px;
  }

  #about .containery .right .hostel p,
  #about .containery .right .month p {
    font-size: 14px;
  }

  #about .containery{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #about .containery .left {
   
    padding-top: 32px;
    padding-bottom: 32px;
}

#about .containery .right {
  
  padding-top: 32px;
  padding-bottom: 32px;
}
}

#about {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}










#why-choose-us {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

#why-choose-us h3 {
  font-size: 40px;
  font-weight: 500;

  margin-bottom: 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 70px;
  max-width: 1100px;
  margin: 0 auto;
}
#why-choose-us .grid-container h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
#why-choose-us .card {
  padding: 30px;
  border-radius: 15px;
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
  text-align: center;
  overflow: hidden;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  cursor: pointer;
}

#why-choose-us .card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.white-bg1 {
  background: #fff;

  align-items: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.white-bg2 p {
  color: #0a0a0a80;
  font-size: 14px;
}
.white-bg1 p {
  color: #0a0a0a80;
  font-size: 14px;
}
.white-bg1 .image {
  width: 50%;
}
.white-bg2 {
  background: #fff;
  color: black;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.white-bg2 .image {
  width: 50%;
}
.blue-bg1 {
  background: rgba(6, 55, 129, 1);
  background-image: url("../image/Noise.png");
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.blue-bg1 .image {
  width: 50%;
}
.blue-bg2 {
  background: rgba(6, 55, 129, 1);
  background-image: url("../image/Noise.png");
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.blue-bg2 .image {
  width: 50%;
}
.grid-container .white-bg1 .image img {
  position: relative;
  right: -174px;
  bottom: -40px;
}

.grid-container .white-bg2 .image img {
  position: relative;
  bottom: 33px;
  right: 175px;
}
.grid-container .blue-bg1 .image img {
  position: relative;
  right: 174px;
  bottom: -68px;
}

.grid-container .blue-bg2 .image img {
  position: relative;
  top: -35px;
  left: 174px;
}

.card:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

#why-choose-us .card h3 {
}

#why-choose-us .card p {

  width: 100%;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  #why-choose-us .card p {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
  }
  .white-bg1 .image {
    display: none;
  }
  #why-choose-us h3{
    font-size: 28px;
  }
  .blue-bg1 .image {
    display: none;
  }
  .white-bg2 .image {
    display: none;
  }
  .blue-bg2 .image {
    display: none;
  }
  .grid-container {
    padding-bottom: 30px;
  }
}

#offer {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

#offer .main {
  background: #fff;

  border-radius: 20px;
  width: 100%;
  text-align: left;
}

/* Heading */
#offer .main h2 {
  width: 50%;
  color: #063781;
  font-size: 70px;
  line-height: 1.2;
  padding-top: 40px;
  padding-bottom: 10px;
  margin-left: 40px;
  font-weight: 500;
}

/* Paragraph */
#offer .main p {
  width: 50%;
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a80;
  padding-bottom: 40px;
  margin-left: 40px;
}

/* ✅ Responsive Styles */
@media (max-width: 1024px) {
  #offer .main {
    text-align: center;
  }

  #offer .main h2 {
    width: 100%;
    font-size: 64px; /* Adjust heading size */
    margin: 0;
  }

  #offer .main p {
    width: 80%;
    font-size: 18px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {


  #offer .main h2 {
    font-size: 30px;
  }

  #offer .main p {
    width: 90%;
    font-size: 11px;
  }
}

@media (max-width: 480px) {


  #offer .main h2 {
    font-size: 30px;
    width: 100%;
  }

  #offer .main p {
    width: 95%;
    font-size: 14px;
   padding: 14px;
   
  }
  #offer .main{
    
  }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#offer {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}







#testimonials {
  margin-top: 40px;
  width: 100%;
  padding-bottom: 70px;
}

#testimonials .container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Testimonial Box */
.offer-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-box h2 {
  font-size: 36px;
  font-weight: 500;
  color: #063781;
  margin-bottom: 20px;
  text-align: center;
}

.image-container {
  width: 60%;
  margin-bottom: 20px;
}

.image-container img {
  width: 100%;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
  height: 350px;
  font-size: 14px;
  
}



.feature {
  background: #eaf0f7;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
  padding-left: 24px;
}

.feature strong {
  display: block;
  color: #063781;
  font-size: 18px;
  font-weight: 500;
}

/* Download Section */
.download-section {
  margin-top: 20px;
}

.download-section p {
  font-size: 22px;
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.download-section .images {
  display: flex;
  justify-content: center;
  gap: 10px;

  width: 100%;
}

.download-section .image {
  width: 40%;
  cursor: pointer;
}

.download-section img {
  width: 100%;
  margin: 5px;
}

/* ✅ Responsive Design */

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  #testimonials .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .offer-box {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: unset;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    width: 90%;
  }
  .offer-box h2 {
    font-size: 32px;
  }

  .feature strong {
    font-size: 18px;
  }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
  .offer-box {
    width: 100%;
  }

  .offer-box h2 {
    font-size: 28px;
  }

  .feature {
    padding: 12px;
  }

  .feature strong {
    font-size: 16px;
  }

  .download-section p {
    font-size: 18px;
  }

  .download-section .image {
    width: 60%;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .offer-box {
  }

  .offer-box h2 {
    font-size: 24px;
  }

  .feature {
    padding: 10px;
    font-size: 14px;
  }

  .feature strong {
    font-size: 16px;
  }

  .download-section .image {
    width: 40%;
  }
}

/* ==================================================================================================== */

/* Subscription Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:  "Poppins", serif;
}

body {
  background-color: #f5f5f5;
}

#subscription {
  text-align: center;
  background-color: white;
  background-image: url("../image/Subscription.png");
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  background-position:center; /* Aligns the top part of the image */
  background-size:cover; /* Ensures the background covers the entire container */
  background-repeat: no-repeat; /* Prevents repeating */
}


#subscription .wrapper {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#subscription .main {
  padding: 60px 0 120px;
}

#subscription .top h2 {
  font-size: 84px;
  color: #063781;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.1;
}

#subscription .top p {
  color: rgba(10, 10, 10, 0.5);
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

 


/* Dorm Tabs */
.dorm ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 4px;
  background: #dbdbdb;
  border-radius: 16px;
  width: fit-content;
  max-width: 90%;
  margin: 65px auto 60px;
  font-weight: 500;
}

.dorm ul a {
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0; /* Allows flex items to shrink below content size */
}

.dorm ul a li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 15px;
  border-radius: 10px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.dorm ul a li h4 {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dorm ul a.active-tab li {
  background: #ffffff;
  color: #063781;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
  .dorm ul {
    gap: 4px;
    padding: 8px;
  }
  
  .dorm ul a li {
    padding: 8px 10px;
  }
  
  .dorm ul a li h4 {
    font-size: 14px;
  }
}

/* Plans Grid */
.plans {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.plans.active {
  display: grid;
}

.active-tab {
 
}

.plans_2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  display: none;
}

.planwrap {
  width: 100%;
}

.planwrap a {
  text-decoration: none;
  color: inherit;
}

/* Subscription Cards */
.plans .card {
  color: #000;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
 
}

.plans .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.plans .card .top {
  display: flex;
  align-items: center;
  gap: 16px;
  
}

.plans .card .top .svg {
  flex-shrink: 0;
  margin-bottom: 0px;
 
}

.plans .card .top h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #063781;
}

.plans .card .top p {
  font-size: 16px;
  color: #666;
 
}

.plans .card .center {
  margin: 0 0 30px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.plans .card .center p {
  text-decoration: line-through;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  margin-bottom: 6px;
}

.plans .card .center h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.plans .card .bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;

}

/* Checkmarks */
.details,
.details2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(10, 10, 10, 0.7);
}

.details .symbol,
.details2 .symbol {
  flex-shrink: 0;
}

.details .text p,
.details2 .text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

/* Large Desktop Screens (2560+) */
@media screen and (min-width: 2000px) {
  #subscription .top h2 {
    font-size: 96px;
  }
  
  #subscription .top p {
    font-size: 24px;
    margin-bottom: 0px;
  }
  
 
  
 
  
  .plans {
    max-width: 1800px;
    gap: 40px;
  }
  
  .plans .card {
    padding: 40px;
    min-height: 360px;
  }
  
  .plans .card .top h3 {
    font-size: 28px;
  }
  
  .plans .card .center h2 {
    font-size: 42px;
  }
  
  .details .text p, 
  .details2 .text p {
    font-size: 18px;
  }
}

/* Desktop */


/* Smaller Desktop & Tablets */
@media screen and (max-width: 1500px) {
  #subscription .top h2 {
    font-size: 60px;
  }
  
  .plans {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 20px;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {
  #subscription .main {
    padding: 40px 0 80px;
  }
  
  #subscription .top h2 {
    font-size: 48px;
  }
  
  #subscription .top p {
    font-size: 16px;
    margin-bottom: 0px;
  }
  
  .plans .card .top .svg {
   
    
}
  
  .plans .card .top h3 {
    font-size: 20px;
  }
  
  .plans .card .center h2 {
    font-size: 32px;
  }
}

/* Mobile */
/* Modify the media query for mobile screens */
@media screen and (max-width: 576px) {
  #subscription .main {
    padding: 30px 0 60px;
  }
  
  #subscription .top h2 {
    font-size: 36px;
  }
  
  #subscription .top p {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  /* Change the dorm section to maintain horizontal layout */

 
  
  .plans {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .plans .card {
    padding: 20px;
    min-height: auto;
  }
  
  .plans .card .top {
    margin-bottom: 15px;
  }
  
  .plans .card .center {
    margin-bottom: 20px;
  }
  
  .plans .card .center h2 {
    font-size: 28px;
  }
  
  .details .text p, 
  .details2 .text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .dorm ul {
    gap: 4px;
    padding: 8px;
  }
  
  .dorm ul a li {
    padding: 8px 10px;
  }
  
  .dorm ul a li h4 {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .dorm ul {
    gap: 3px;
    padding: 6px;
    border-radius: 15px;
  }
  
  .dorm ul a li {
    padding: 6px 8px;
    border-radius: 8px;
  }
  
  .dorm ul a li h4 {
    font-size: 12px;
  }
}

/* For extremely small screens */
@media screen and (max-width: 400px) {
  .dorm ul {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
  }
  
  .dorm ul a {
    min-width: calc(50% - 4px);
    flex: 0 0 auto;
  }
  
  .dorm ul a li {
    width: 100%;
    padding: 6px 5px;
  }
}

/* Add another breakpoint for very small screens if needed */
@media screen and (max-width: 400px) {

}
/* ------------------- */

/*.contact */
.contact-section {
  margin-top: 70px;
  margin-bottom: 70px;
}


.form-group {
  margin-bottom: 20px;
  position: relative;
}

.input-container {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 24px 16px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  font-size: 14px;
  color: #111111;
  background-color: white;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 10px;
  font-size: 12px;
  color: #777;
  pointer-events: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 32px;
}

::placeholder {
  color: #BBBBBB;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 16px;
}

.submit-btn:hover {
  background-color: #333;
}

  .contact-form {
      width: 100%;
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 30px;
    }

.contact-left-top {
}
.contact-left-top h2 {
  font-size: 84px;
  font-weight: 500;
  color: #063781;
}

.contact-left-top p {
  font-size: 18px;
  color: #0a0a0a80;
  margin-bottom: 50px;
  width: 39%;
}

.contact-container {
  display: flex;
  justify-content: space-between;   
  align-items: center;
  width: 100%;
  gap: 20px;
     
}

.contact-form {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  
}
.contact-form .pad{
    padding: 20px;
    padding-bottom: 40px;
    padding-top: 40px;
}
.contact-form h4 {
  color: #0a0a0a80;
  font-weight: 400;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
 
 
  border-radius: 10px;
  font-size: 14px;
  color: #0a0a0a33;
  font-weight: 400;
  border: 1px solid #b0b6b826;
}

.contact-form textarea {
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #000;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 10px;
}

.contact-info {
  margin-top: 20px;
}

/* .contact-info p {
    font-size: 14px;
} */
.contact-info .social-media {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  margin-bottom: 25px;
  gap: 9px;
}
.contact-info .social-media .email {
  display: flex;
  
  
}

.svgmail{
  margin-right: 10px;
}

.contact-info .social-media .email p{
    color: #000;
}
.contact-info .social-media .phone {
  display: flex;
  
}
.contact-info .social-media .phone p{
    color: #000;
}
.social-icons {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 20px;
}

.svgmail_mob{
  display: none;
 }

.contact-right {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-bottom: 104px;
  height: 105px;
}

.contact-right img {
  width: 100%;
  height: 498px;
  border-radius: 20px;
  object-fit: cover;
}
/* responsive */
@media screen and (max-width: 1024px) {
  .contact-container {
    /* flex-direction: column;
        align-items: center; */
  }

  .contact-left-top h2 {
    font-size: 50px;
  }

  .contact-form {
    width: 100%;
  
  }
}

/* For mobile devices (max-width: 768px) */
@media screen and (max-width: 1024px) {
  .contact-left-top h2 {
    font-size: 40px;
  }

  .contact-container{

    display: flex;
    justify-content: center;

  }

  .contact-right{

    display: none;

  }
  .contact-left-top p {
    font-size: 12px;
    width: unset;
  }
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-left, .contact-right {
    width: 100%;
    margin-top: 20px;
}

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 12px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 10px;
  }

  .social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icons a {
    margin-bottom: 5px;
  }

  .contact-right img {
    max-width: 100%;
  }
}

.contact-left {

  flex: 1;
  
 }


/* For small mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .contact-section {
        margin-top: 36px;
    }
  .contact-left-top h2 {
    font-size: 30px;
    text-align: center;
  }

  .contact-left-top p {
    font-size: 12px;
    text-align: center;

  }
  .svgmail_mob{
    display: block;
    margin-right: 10px;
  }
  .svgmail{
    display: none;
   }
  .contact-info .social-media .email p{
   font-size: 14px;
}

  .contact-form input,
  .contact-form textarea {
    font-size: 12px;
  }

  .contact-form button {
    font-size: 14px;
  }

  .contact-info .social-media {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .social-icons {
    gap: 5px;
    margin-top: 18px;
  }



  .contact-right img {
    max-width: 100%;
  }
  .contact-form{
    padding: 20px;
  }
  .contact-info .social-media .phone p{
   font-size: 14px;
}
}
/*.contact end */
/* testmonial */

#testimonial {
  margin-bottom: 70px;
}
#testimonial .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  
}

#testimonial .main .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
}

#testimonial .main p {
  color: #0a0a0a80;
  font-size: 16px;
}

#testimonial .main h2 {
  font-size: 84px;
  color: #063781;
  font-weight: 500;
  margin-bottom: 30px;
}

#testimonial .main .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90%;
}

#testimonial .main .bottom .card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
#testimonial .main .bottom .card:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}
#testimonial .main .bottom .card .svg {
}

#testimonial .main .bottom .card p {
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  margin-top: 20px;
}
#testimonial .main .bottom .card hr {
  border: 1px solid var(--Line, #0a0a0a1a);
  margin-top: 20px;
  margin-bottom: 40px;
}
#testimonial .main .bottom .card .author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
#testimonial .main .bottom .card .author .image {
  width: 12%;
}

#testimonial .main .bottom .card .author .image img {
  width: 100%;
}

#testimonial .main .bottom .card .author h5 {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}

/* responsive */
/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
  #testimonial .main .bottom {
    grid-template-columns: 1fr; /* Single column layout */
    width: 100%;
  }

  #testimonial .main h2 {
    font-size: 36px;
  }

  #testimonial .main .bottom .card {
    padding: 15px;
   
}

  #testimonial .main .bottom .card .author .image {
    width: 12%; /* Adjust image size for smaller screens */
  }
}

/* Further adjustments for mobile screens */
@media screen and (max-width: 480px) {
    #testimonial .main {
        display: flex ;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        
    }

  #testimonial .main h2 {
    font-size: 28px;
  }

  #testimonial .main p {
    font-size: 14px;
  }
  #testimonial .main .bottom .card p {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    margin-top: 14px;
}

  #testimonial .main .bottom .card {
    padding: 20px;
  }
  #testimonial .main .bottom .card hr {
    border: 1px solid var(--Line, #0a0a0a1a);
    margin-top: 20px;
    margin-bottom: 26px;
}
  #testimonial .main .bottom .card .author {
    margin-top: 1px;
  }

  #testimonial .main .bottom .card .author .image {
    width: 15%;
  }
}

/* testmonial end */

/* footer */

.footer {
  background-color: #ffffff;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer .main {
 margin-top: 40px;
 margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer .main .svg {
}

footer .main .lists {
}

footer .main .lists ul {
  display: flex;
  gap: 20px;
}
footer .main hr {
}
footer .main .lists ul li {
}

footer .main .lists ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 100;
}
 .app {
  display: flex;
  justify-content: center;
  background-color: white;
  padding-bottom: 20px;

}

footer .main .app .icon {
}

footer .main .app .icon .text {
}

.footertext {
  font-size: 14px;
  color:rgb(127, 130, 130);
  font-weight: 300;
  text-align: center;
}

@media (max-width: 768px) {
  footer .lists ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }

  footer .svg {
    max-width: 80px;
  }

  footer .main {
    padding: unset;
   
  }
}

.footertext {
  font-size: 12px;
  color:rgb(127, 130, 130);
  font-weight: 300;
  text-align: center;
}

/* footer end */


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .fade-up {
      opacity: 1 !important;
      transform: none !important;
    }
  }







