:root {
    --primary-color: #2C3E50; /* Deep blue */
    --secondary-color: #E74C3C; /* Bright red */
    --accent-color: #3498DB; /* Light blue */
    --background-color: #f6fdff; /* Light gray */
    --text-color: #2C3E50; /* Dark blue for readability */
    --heading-color: #34495E; /* Slightly darker for headings */
    --button-color: #2980B9; /* Button background */
    --button-text-color: #211f1f; /* Button text */
    --text-golden-color:#fff36c; /* golden color for text */
  }

  @import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  
  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    a{
      text-decoration: none;
    } 
  }
  
  /* ------------- hover button animation --------------------- */

  .glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/*------------------  (notice-bar) ------------------------*/
.notice-bar {
    width: 100%;
    height: 2rem;
    background-color: var(--primary-color); /* Deep blue background */
    overflow: hidden; /* Hide overflow for continuous scrolling effect */
    display: flex;
    align-items: center;
  }
  
  .notice-content {
    text-decoration: none;
    display: inline-block;
    white-space: nowrap; /* Keep the text in a single line */
    animation: scrollText 35s linear infinite; /* Continuous scrolling animation */
    color: var(--text-golden-color); /* White text color */
    font-size: 1rem; /* Adjust font size */
  }
  
  @keyframes scrollText {
    0% {
      transform: translateX(100%); /* Start from right */
    }
    100% {
      transform: translateX(-100%); /* Move to left */
    }
  }


/* ------------- contact -------------------- */  

#contact{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;  
  z-index: 1000;
  background-color: #ffffff;
  border-radius: 100%;
  /* border: 1px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#contact i{
  font-size: 40px;
  color: rgb(43, 161, 98)
}

#contact:hover{
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

#contact i:hover {
  color: rgb(2, 119, 35);
  cursor: pointer; 
}

/* --------------contact -details-card ----------------- */

.contact-details-card{
  width: 250px;
  height: 120px;
  position: fixed;
  background-color: #2387ce;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  right: 40px;
  bottom: 75px; 
  z-index: 500;
  color: white;
  border-bottom-right-radius: 0px;
  display: none;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
}
.contact-details-card h3{
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0.3rem;

}

.contact-details-card h3 span{
  margin: 0rem 0.5rem;
}

.contact-details{
  background-color: #ffffff;
  padding: 5px 16px;
  font-size: 1.2rem;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.contact-details span{
  margin-left: 0.5rem;
  border-radius: 50%; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.contact-details span:hover{
  color: rgb(116, 2, 2);
}

/* ----------------Navigation Bar (navbar) -------------------------*/

.navbar {
    width: 100%;
    height: 4.75rem; /* Larger height */
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #ffffff; /* Solid white background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    
  }
  .navbar-content {
    max-width: 1200px; /* Content will stay centered */
    margin: 0 auto;
    height: 4.75rem; /* Larger height */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;    
    
  }
  
  /* Logo */
  .navbar-content img {
    width: 80px;
  }

/* Base styles for desktop (larger screens) */

/* Hamburger icon hidden by default (for larger screens) */
.close-icon{
  display: none;
}
.hamburger-icon {
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  display: none; /* Hidden on larger screens */
}

/* Menu items displayed as a horizontal list on larger screens */
.menu-item {
  list-style: none;
  display: flex;  /* Flex for horizontal layout */
  gap: 2rem;      /* Space between menu items */
  margin: 0;
  padding: 0;
}
  
  .menu-item a {
    text-decoration: none;
    font-size: 1rem; /* Normal size */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition */
    cursor: pointer; /* Changes cursor on hover */
    background-color: transparent; /* Ensures no background color is applied */
    outline: none; /* Removes the outline/border added on focus */

  }
  
  .menu-item a:hover {
    transform: scale(1.7); /* Increases the size of the hovered element */
    color: var(--button-text-color); /* Changes the color to golden */
  }
  
  .menu-item a.active {
    color: var(--button-text-color); /* Changes the color to golden */
    transform: scale(1.2);
    font-weight: 700;
  }
  



/* --------------- home section --------------------- */
/* Add margin to the top of the section */
#home {
  margin-top: 0.1rem;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Slides */
.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: 10px;
}

/* Fading animation for slides */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

/* On hover, add a background color to the buttons */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dot indicators */
.dot-container {
  position: absolute;
  bottom: 15px; /* Adjust the distance from the bottom */
  left: 50%;
  transform: translateX(-50%); /* Center the dots */
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot:hover, .active {
  background-color: #717171;
}

/*--------------- Hero section ---------- */
.hero {
  background-image: url('./assets-folder/hero-section-img/hero-section-background-img\ -1.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 4rem 0;
  position: relative;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width:1440px;
  width: 90%;
  margin: 0 auto;
  padding: 1rem;
}

.text-box {
  max-width: 500px;
}

.text-box h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #333;
}

.text-box .highlight {
  color: #6d28d9; /* Choose a strong color for emphasis */
}

.text-box p {
  font-size: 1rem;
  color: #555;
  margin: 1rem 0;
}

.hero-section-button-class{
  display: flex; justify-content: left;align-items: center; gap: 2rem;
}

@media (width<=640px) {
  .hero-section-button-class{
    flex-direction:column;
    gap:1rem;
  }
}

.cta-btn {
  background-color:rgb(249, 249, 250); /* Button color */
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.for-enquiry-button {
  width: 220px;
  height: 50px;
  color:#111;
  background:#fff;
  border:1px solid black;
  border-radius:10px;

  


}

.for-enquiry-button:hover {
  color:white;
  border:none;


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

.cta-btn:hover {
  background-color: #4f46e5; /* Darker shade for hover */
}

.image-box {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.image-box img{
  width: 90%;
}

/* ----------- animated text div -1 ---------------- */
.display-container {  
  width:100%;  
  display:flex;
  justify-content: center;
  align-items: center; 
  text-align: center;  
  flex-wrap: wrap; 
  margin: 1rem auto; 
  padding-block: 1rem ;
  font-size: 1.5rem;
  font-weight: 700;


}

.animate-div-one{
  background-color: rgb(217, 2, 2);
  color:white;  
}
 
/* ---------- animated div two ---------- */

.animate-div-two{
  background-color: #0551c1;
  color: white;
}

/* ---------- animated div two ---------- */

.animate-div-three{
  min-height: 50px;
  background-color: #0b0a0a;
  color: white;
  font-weight: 900;
}

/* ------------- Faculty ------------------ */

.faculty {
  width: 99%;
  margin: 0px auto;
  background-color: #fff; 
  display: flex;
  flex-direction: column;
}


.faculty-heading{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 900;

}

.faculty .container{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.faculty .text-box {
  max-width: 100%;
  width: 500px; 
}

.faculty .text-box h1 {
  margin: 1rem;
  text-align: left;
  line-height: 1.2;
  color: #333; 
  position: relative;
  padding: 2rem 0rem; 
  font-family: "Hind", sans-serif;
}


.faculty .text-box h1 .ri-double-quotes-l{
  font-size: 3.5rem;
  color: rgb(185, 184, 184);
  position: absolute;
  top: 0px;
  left: 10px;

}
.faculty .text-box h1 .ri-double-quotes-r{
  font-size: 3.5rem;
  color: rgb(185, 184, 184);
  position: absolute;
  bottom: 0px;
  right: 10px;
}
.faculty .text-box span {
  display:block;
  color:rgb(31, 4, 141);
  padding-left: 80px;
}

/* -------------------- What we offer ---------------- */


.offer-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.offer h1{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 900;
}
.offer-card {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: box-shadow 0.3s ease;

}

.offer-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.offer-card-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.offer-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.card-link {
  text-decoration: none;
  font-weight: bold;
  color: #e53935; /* Red color */
  font-size: 1rem;
  display: inline-block;
  margin-top: 10px;
}

.card-link span {
  font-size: 1.2rem;
  margin-left: 5px;
}

.card-link:hover {
  color: #c62828;
}

.offer-card i{
  font-size: 7rem;
  color: rgb(43, 155, 230);
}

/* ------------------ why choose us --------------------------- */

.why-choose-us{
  width: 100%;
  height: auto; 
  display: flex;
  flex-direction: column;   
  justify-content: center;
  align-items: center;
}



.why-choose-container{
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  display: flex; 
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.why-choose-us h1{
  text-align: center;
  padding: 1rem;
  border-bottom: 2px solid black;
}

.choose-container-card {
  margin: 2rem auto;
  width: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; 
  text-align: center;
}

.choose-container-card i{
  font-size: 2.5rem;
  color: rgb(17, 93, 206);
}

.choose-container-card-content h1{
  color: rgb(19, 18, 18);
}

.choose-container-card-content p{
  color: rgb(19, 18, 18);
  font-weight: 500;
}


/* ----------- Testimonial -section -------------- */
.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.testimonial-section h1{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 900;
}
.testimonial-section h1 span{
 color: rgb(0, 151, 211);
}

.testimonial-container {
  display: flex;
  justify-content: center;
  /* overflow-x: auto; */
  scroll-behavior: smooth;
  gap: 20px;
}

.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
}

.profile-pic {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.stars {
  color: #f39c12;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #666;
}

/* Horizontal Scroll Styling */
.testimonial-container {
  flex-direction: row;
}


/* ----------------- download container ----------------- */

.download-box-container {
  max-width: 1280px;
  width: 100%;
  margin: 1.5rem auto;  
  border-radius: 10px; 
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(231,220,255);
  background: linear-gradient(264deg, rgba(231,220,255,1) 51%, rgba(249,249,249,1) 95%);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; 
}

.download-content { 
  display: flex;
  max-width: 90%;
  flex-wrap: wrap;
  flex-direction: column;
  padding-left: 5rem;

}

.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #232323;
}

.list-item i {
  color: #3182fb;
  font-size: 1.5rem;
}

.download-content h2 {
  font-size: 2.2rem;
  color: #232323;
}

.download-image-container {
  margin-top: 1rem;
}

.download-image-container img {
  border-radius: 10px;
  width: 200px;
  height: auto;
}

.download-app {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-app img {
  max-width: 100%;
  border-radius: 10px;
}

/* -------------- Social media ----------------- */
.social-media-container {
  width: 100%;
  margin: 0 auto; 
  box-sizing: border-box; 
  /* background-color: rgb(227, 252, 243); */
}

.social-media-box {    
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
}

.social-media-card {
  display: flex;
  flex-direction: column;
  width: 80%;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffffd0; 
  border-radius: 15px;
  /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 20px; 
  /* border: 2px solid; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  /* background-color: rgb(184, 3, 3); */

}

.social-media-image-container { 
  width: 60px;
  height: 60px;
  border-radius: 100%;
  padding: 10px;
  background-color: #fff;
  position: relative; 
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  
}

.social-media-image-container img {
  width: 100%;
  border-radius: 50%;
  
}

.social-media-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;  
  background-color: white; 
  border-radius: 15px;
  margin-top: 1rem; 
  padding: 0.5rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
   
}

.social-media-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
  /* Circular buttons */
.social-previous, .social-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f4f7f9;
  color: #0b0b0b;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: background-color 0.3s;
}

 


.social-previous:hover, .social-next:hover {
  background-color: #053365;
  box-shadow: rgba(6, 6, 6, 0.4) 5px 5px, rgba(15, 13, 15, 0.3) 10px 10px, rgba(100, 100, 100, 0.2) 15px 15px, rgba(171, 171, 171, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
  color: #fffafa;
}

.social-next:hover{
  box-shadow:rgba(6, 6, 6, 0.4) -5px 5px, rgba(15, 13, 15, 0.3) -10px 10px, rgba(100, 100, 100, 0.2) -15px 15px, rgba(171, 171, 171, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
}

/* Adjust button position */
.social-previous {
  position: absolute;
  left: 60px;
}

.social-next {
  position: absolute;
  right: 60px;
}

/* CSS */
.button-87 {
margin: 10px;
padding: 15px 30px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
border-radius: 10px;
display: block;
border: 0px;
font-weight: 700;
box-shadow: 0px 0px 14px -7px #c12700;
background-image: linear-gradient(45deg, #600000 0%, #ff0404  51%, #a60202  100%);
cursor: pointer;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}


.button-87:hover {
background-position: right center;
/* change the direction of the change here */
color: #fff;
text-decoration: none;
}

.button-87:active {
transform: scale(0.95);
}


.social-joining-telegram{
  background-image: linear-gradient(45deg, #002360 0%, #0426ff  51%, #020aa6  100%);
}


/*---------------- Footer section ------------------ */
.footer{
  width: 100%;
  background-color: #0F254E;
  
}

.footer-content{
  max-width: 1200px;
  width: 100%;
  margin: 1rem auto;
  display: flex;
  gap: 1rem; 
  justify-content: center;
}

.footer-left-container{
  display: flex;
  line-height: 0.2rem;
  align-items: center;
  color: rgb(245, 245, 245);
}

.footer-left-content h3{
  font-size: 1.5rem;
  margin-bottom: 2rem;  
}

.footer-left-content h4{
  margin-block: 1rem ;
  font-size: 1.2rem;
  color: rgb(255, 243, 73);
}

.download-section{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;

  a{
    text-decoration: none;
  }
}
.download-section img{
  border-radius: 5px;
}

.download-section .website-link{
  display: flex; 
  align-items: center;
  gap: 1rem;
  color: white;
}
.download-section .website-link:hover{
  color: rgb(246, 253, 167);
  font-size: 1.1rem;
}

.footer-left-content .address-content{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 0rem;
}

.footer-contact-details{
  display: flex;
  flex-direction: column; 
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(118, 168, 255);
}

.footer-content-map{
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: center;
}

.footer-content-map h3{
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  align-items: center;
  /* text-decoration: underline; */
  color: #ecff72;
}

.footer-contact-details i{
  color: rgb(59, 176, 110); 
  background-color: #fff;
}

.footer-content-map iframe:hover {
  box-shadow: rgb(236, 255, 110) 0px 0px 0px 3px; 
  border-radius: 15px;
}

.footer-info{
  max-width: 1280%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1f1f;
  padding: 1rem;
  color: white;
}


  /* -----------------Media Queries --------------------------*/
  
  /* Large screens (1440px and above) */
  @media (max-width: 1440px) {
    body {
      font-size: 18px; /* Slightly larger for bigger screens */
    }
  }
  
  /* Medium screens (1080px and below) */
  @media (max-width: 1080px) {
    body {
      font-size: 16px; /* Default size */
      a{
        text-decoration: none;
      }
    }

    
    /* +++++++++++ hero section ++++++++++++++++++ */
     
    .text-box {
      max-width: 450px;
    }
    
    .text-box h1 {
      font-size: 2.15rem;
      line-height: 1;
    }
    
    
    .text-box p {
      font-size: 0.90rem;
      margin: 0.8 rem 0;
    }
    .image-box img{
      width: 100%;
    }

   /* ----------------- download container ----------------- */
.download-box-container{ 
      padding-bottom: 1.5rem;
}

.download-content {  
  padding-left: 3rem;

}

.list-item { 
  font-size: 1.0rem; 
}

.list-item i { 
  font-size: 1rem;
}

.download-content h2 {
  font-size: 1.35rem; 
}

.download-image-container img {
  border-radius: 10px;
  width: 200px;
  height: auto;
}
.download-app img {
  max-width: 80%;
  border-radius: 10px;
}

.faculty .text-box {
  max-width: 100%;
  width: 400px; 
}

.faculty .text-box h1 .ri-double-quotes-l{
  font-size: 2rem;   

}
.faculty .text-box h1 .ri-double-quotes-r{
  font-size: 2rem;
  
}
.faculty .text-box span {
  display:block;
  color:rgb(31, 4, 141);
  padding-left: 50px;
}



    /* ------------ footer section ---------------- */
    .footer-content{
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .website-link{
      justify-content: center;
    }
  }
  
  /* Small screens (760px and below) */
  @media (max-width: 760px) {
    body {
      font-size: 15px; /* Slightly smaller for smaller screens */
    }
    .notice-content {
        font-size: 0.875rem; /* Slightly smaller text on smaller screens */
      }

      /* -------------- menu-content-navbar------------------ */
      .close-icon{
        display: block;
      }
      /* Hamburger icon visible */
  .hamburger-icon {
    display: block;
  }

  /* Side menu container (initially hidden, will slide from right) */
  .side-menu-container {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen initially */
    width: 250px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.5);
    z-index: 999; /* Bring it to the front */
    transition: right 0.3s ease-in-out; /* Smooth slide-in effect */
  }

  /* Side menu when open (sliding in) */
  .side-menu-container.open {
    right: 0; /* Slide in from the right */
  }

  /* Menu items stacked vertically inside the side menu */
  .menu-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Space between vertically stacked items */
    margin: 0;
    padding: 2rem 1rem; /* Padding around items */
  }

  /* Close icon at the top of the side menu */
  .close-icon {
    text-align: right;
    padding: 1rem;
    font-size: 2rem;
    cursor: pointer;
  }
    
    
      /* ------------ Slider -container ------------ */
      .prev, .next {
        font-size: 14px;
        padding: 10px;
      }


      /* +++++++++++ hero section ++++++++++++++++++ */
     .hero{
      padding: 2rem 0;

     }
      .text-box {
        max-width: 380px;
      }
      
      .text-box h1 {
        font-size: 1.75rem;
        line-height: 1;
      }
      
      
      .text-box p {
        font-size: 0.7rem;
        margin: 1 rem 0;
      }

       
      /* -------- faculty ----------- */

      .faculty{
        margin: 5rem 0;
        margin-bottom: 7rem;
      }

      .faculty .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;       
      }
      
      .faculty .text-box h1 {
        text-align: center;
        font-size: 1.75rem;
        line-height: 1;
      }

      /* Testimonial -section */
      .testimonial-section h1{
        padding-inline: 0.5rem;
      }
      .testimonial-container {
        flex-direction: column;
        overflow-y: auto; 
      }
    
      .testimonial-card {
        margin: 0 auto;
      }
      
       /* ----------------- download container ----------------- */
      .download-box-container{ 
         flex-direction: column-reverse;
      }

      /*------------- footer -privacy policy------------ */
      .footer-info{
        flex-direction: column;
        text-align: center;
      }
     

      /* ------------- social - media ------------- */
      
      /* Adjust button position */
.social-previous {
  position: absolute;
  left: 15px;
}

.social-next {
  position: absolute;
  right: 15px;
}

.social-previous, .social-next {
  width: 40px;
  height: 40px;
   
}
      
  }

  
  /* Mobile version */
  @media (max-width: 480px) {
    body {
      font-size: 14px;
    }

    /* =========== hero section ============== */
    .hero{
      padding-top: 1rem  ;
      padding-bottom: 2rem  ;
    }
    .container {
      flex-direction: column;
      align-items: center;
      justify-content: center; 
    }
    .text-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; 
    }

    .text-box h1 {
      font-size: 1.5rem;
      line-height: 1;
      text-align: center;
    }

    .text-box p {
      font-size: 0.8rem;
      margin: 1 rem 0;
      text-align:center ;
    }

    /* -------------- faculty -------------- */
  .faculty .text-box{
    display: none;
  }

    /* --------------- download section -------------------- */
    .download-box-container{
      flex-direction: row-reverse;

    }

    /*------------------- social media -------------------- */
   
    /* adjust heading */
    .social-media-content h3 {
      font-size: 1rem;
      margin-bottom: 10px;
    }
    /* Adjust button position */
.social-previous {
position: absolute;
left: 5px;
}

.social-next {
position: absolute;
right: 5px;
}

    /* ----------------- download container ----------------- */
    .download-box-container{ 
      flex-direction: column-reverse;
   }

    /* Footer map icon */

    .footer-content-map iframe {
      width: 300px;
      height: 280px;
    }
    
  }
  
  /* all form styling below  */

/* Base styles for error messages (hidden by default, show with JavaScript) */
.form-error-message {
    color: #ef4444; /* Tailwind red-500 */
    font-size: 0.875rem; /* Tailwind text-sm */
    margin-top: 0.25rem; /* Tailwind mt-1 */
    display: none;
}

/* Styles for the main popup overlay */
.form-query-container {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0e0e0eb1; /* Original background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
    /* display: none; will be controlled by JavaScript */
}

/* Styles for the inner query form card */
.form-query-card {
    background: white;
    height: 80%;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 30px;
    border-radius: 10px; 
    width: 30%; 
}

/* Media query for medium screens and above (md:w-[50%]) */
@media (max-width: 640px) {
    .form-query-card {
        width: 70%;
        margin-auto;
    }
}

/* Styles for the cross button */
.form-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
}

/* Styles for the heading and paragraph container */
.form-heading-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: .5rem; /* Tailwind mb-8 */
}

/* Styles for the main heading */
.form-main-heading {
    font-size: 1.25rem; /* Tailwind text-xl */
    font-weight: 800; /* Tailwind font-extrabold */
    color: #1f2937; /* Tailwind text-gray-900 */
    text-align: center;
    color: #2563eb; /* Tailwind text-blue-700 */
}

/* Media query for small screens and above (sm:2xl) */
@media (max-width: 640px) {
    .form-main-heading {
        font-size: 1rem; /* Tailwind text-2xl */
    }
}

/* Styles for the form itself */
.form-main {
    padding: .5rem; /* Tailwind p-10 */
    border-width: 2px; /* Tailwind border-2 */
    border-radius: 0.5rem; /* Tailwind rounded-lg */
    border-color: #22c55e; /* Tailwind border-green-500 */
}
/* Simulate Tailwind's space-y-6 by adding bottom margin to direct child divs */
.form-main > div {
    margin-bottom: 1.5rem;
}
.form-main > div:last-child {
    margin-bottom: 0;
}


/* Styles for labels */
.form-label {
    display: block;
    font-size: 0.875rem; /* Tailwind text-sm */
    font-weight: 500; /* Tailwind font-medium */
    color: #4b5563; /* Tailwind text-gray-700 */
    margin-bottom: 0.25rem; /* Tailwind mb-1 */
}
.form-label.mb-2 { /* For gender/class type labels with more bottom margin */
    margin-bottom: 0.5rem;
}

/* Styles for input and select fields */
.form-input{
   margin-top: 0.25rem; /* Tailwind mt-1 */
    display: block;
    width: 87%;
    padding: 0.5rem 1rem; /* Tailwind px-4 py-2 */
    border: 1px solid #d1d5db; /* Tailwind border border-gray-300 */
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* Tailwind shadow-sm */
    font-size: 0.875rem; /* Tailwind sm:text-sm */
    line-height: 1.25rem;
    transition: all 0.2s ease-in-out;
}


.form-select {
    margin-top: 0.25rem; /* Tailwind mt-1 */
    display: block;
    width: 100%;
    padding: 0.5rem 1rem; /* Tailwind px-4 py-2 */
    border: 1px solid #d1d5db; /* Tailwind border border-gray-300 */
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* Tailwind shadow-sm */
    font-size: 0.875rem; /* Tailwind sm:text-sm */
    line-height: 1.25rem;
    transition: all 0.2s ease-in-out; /* Tailwind transition duration-200 ease-in-out */
}
.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6; /* Tailwind focus:border-blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Simplified Tailwind focus:ring-blue-500 */
}
/* Specific style for disabled select */
.form-select.disabled {
    background-color: #f9fafb; /* Tailwind bg-gray-50 */
    cursor: not-allowed;
}

/* Styles for radio button group container */
.form-radio-group-container {
    padding-top: 0.5rem; /* Tailwind pt-2 */
}
.form-radio-options {
    margin-top: 0.25rem; /* Tailwind mt-1 */
    display: flex;
    gap: 1rem; /* Tailwind space-x-4 (modern way) */
    /* Fallback for older browsers if gap is not supported:
       & > div + div { margin-left: 1rem; } */
}
.form-radio-option {
    display: flex;
    align-items: center;
}
.form-radio-input {
    height: 1rem; /* Tailwind h-4 */
    width: 1rem; /* Tailwind w-4 */
    color: #2563eb; /* Tailwind text-blue-600 */
    border-color: #d1d5db; /* Tailwind border-gray-300 */
    /* focus styles handled by general input focus */
}
.form-radio-label {
    margin-left: 0.5rem; /* Tailwind ml-2 */
    display: block;
    font-size: 0.875rem; /* Tailwind text-sm */
    color: #1f2937; /* Tailwind text-gray-900 */
}

/* Styles for the submit button */
.form-submit-button {
    width: 80%;
    margin:auto;
    display: flex;
    align-items:center;
    justify-content: center;
    padding: 0.75rem 1rem; /* Tailwind py-3 px-4 */
    border: 1px solid transparent; /* Tailwind border border-transparent */
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* Tailwind shadow-sm */
    font-size: 1.125rem; /* Tailwind text-lg */
    line-height: 1.75rem;
    font-weight: 600; /* Tailwind font-semibold */
    color: white;
    background-color: #2563eb; /* Tailwind bg-blue-600 */
    transition: all 0.2s ease-in-out;
    transform: scale(1);
}
.form-submit-button:hover {
    background-color: #1d4ed8; /* Tailwind hover:bg-blue-700 */
    transform: scale(1.05); /* Tailwind hover:scale-105 */
}
.form-submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, /* Tailwind focus:ring-offset-2 */
                0 0 0 4px #3b82f6; /* Tailwind focus:ring-blue-500 */
}

/* Success Message Modal Styles */
.form-success-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; /* Tailwind inset-0 */
    background-color: rgba(75, 85, 99, 0.5); /* Tailwind bg-gray-600 bg-opacity-50 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* hidden class will be applied by JS */
}

.form-success-modal-content {
    background-color: white;
    padding: 2rem; /* Tailwind p-8 */
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04); /* Tailwind shadow-xl */
    text-align: center;
    max-width: 24rem; /* Tailwind max-w-sm */
    margin-left: auto;
    margin-right: auto; /* Tailwind mx-auto */
}

.form-modal-icon {
    margin-left: auto;
    margin-right: auto;
    height: 4rem; /* Tailwind h-16 */
    width: 4rem; /* Tailwind w-16 */
    color: #22c55e; /* Tailwind text-green-500 */
}

.form-modal-title {
    margin-top: 1rem; /* Tailwind mt-4 */
    font-size: 1.5rem; /* Tailwind text-2xl */
    font-weight: 600; /* Tailwind font-semibold */
    color: #1f2937; /* Tailwind text-gray-900 */
}

.form-modal-description {
    margin-top: 0.5rem; /* Tailwind mt-2 */
    color: #4b5563; /* Tailwind text-gray-600 */
}

.form-modal-close-button {
    margin-top: 1.5rem; /* Tailwind mt-6 */
    background-color: #2563eb; /* Tailwind bg-blue-600 */
    color: white;
    font-weight: 700; /* Tailwind font-bold */
    padding: 0.5rem 1rem; /* Tailwind py-2 px-4 */
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}
.form-modal-close-button:hover {
    background-color: #1d4ed8; /* Tailwind hover:bg-blue-700 */
}

/* Utility to hide/show (for JavaScript control) */
.form-hidden {
    display: none !important; /* Use !important to override inline styles */
}