@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  /* overflow: hidden; */
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  width: 100%;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

html::-webkit-scrollbar-thumb {
  background: black;
  /* background: #2597f4; */
  border-radius: 5rem;
}

section {
  padding: 5rem 10%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 4rem;
  text-transform: capitalize;
  color: #334;
}

.heading span {
  color: black;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  cursor: pointer;
  background: #fff;
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #334;
  border: 0.2rem solid #334;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #2597f4;
  border-color: #2597f4;
  color: #fff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.header .contact-info {
  padding: 2rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
}

.header .contact-info p {
  font-size: 1.5rem;
  color: #fff;
}

.header .contact-info p i {
  padding-right: 0.5rem;
  color: orange;
}

/* Navbar Styling */
.fixed-top {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  font-size: 2rem;
}
nav a:hover{
  background-color: #f0f0f0;
  color: #2597f4;
}
nav li:first-child{
  margin-right: auto;
}

/* X button styling */
.sidebar li:first-child a i {
  font-size: 1.5rem;
  color: black;
  padding: 20px;
}

.siderbar li a i {
  font-size: 1.5rem;
  color: black;
  padding: 20px;
}

/* Menu button (hamburger) icon styling */
.menu-button a i {
  font-size: 1.5rem;
  color: black;
  transition: transform 0.3s ease-in-out;
  margin-right: 40%;
}

/* Rotate the menu button icon when active */
.menu-button.active a i {
  transform: rotate(90deg);
}

.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
}

.header .navbar .links a {
  margin-left: 2rem;
  font-size: 2rem;
  text-transform: capitalize;
  color: #334;
}

.header .navbar .links a:hover {
  text-decoration: underline;
  color: #2597f4;
}

.header #menu-btn {
  font-size: 3rem;
  cursor: pointer;
  color: #334;
  display: none;
}

.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  border-radius: 20px;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.home .image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-in-out;
}

.home .image img {
  width: 100%;
  max-width: 400px;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.home .image img:hover {
  transform: scale(1.1);
}

.home .content {
  flex: 1 1 45%;
  padding: 2rem;
  background: #ffffff;
  border-radius: 15px;
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); */
  animation: slideIn 1.2s ease-in-out;
}

.home .content h3 {
  font-size: 3.5rem;
  color: #334;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.home .content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.home .content a.btn {
  display: inline-block;
  padding: 1rem 2rem;
  /* background: linear-gradient(90deg, #2597f4, #6dd5ed); */
  color: #334;
  font-size: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.home .content a.btn:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home {
    flex-direction: column;
    text-align: center;
  }

  .home .image,
  .home .content {
    flex: 1 1 100%;
  }

  .home .content h3 {
    font-size: 3rem;
  }

  .home .content p {
    font-size: 1.4rem;
  }
}

/* Updated background with gradient and wave */
.home {
  position: relative;
  overflow: hidden;
}

/* Add a wave effect at the bottom of the section */
.home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('wave.svg') no-repeat bottom center;
  background-size: cover;
  z-index: 1;
}

/* Enhanced button */
.home .content a.btn {
  background: (#2597f4);
  color: black;
}

.home .content a.btn:hover {
  background: linear-gradient(90deg, #2597f4);
  transform: scale(1.1);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: #334;
  }
}

/* Image hover enhancement */
.home .image img:hover {
  transform: scale(1.15) rotate(3deg);
}

.fun-fact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2.5rem;
  background: #f7f7f7;
  padding: 4rem 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.fun-fact:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.fun-fact .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fun-fact .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.fun-fact .box img {
  height: 6rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.fun-fact .box h3 {
  font-size: 3rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.fun-fact .box p {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.fun-fact .box:hover h3 {
  color: #2597f4;
}

.fun-fact .box:hover p {
  color: #777;
}

@media (max-width: 768px) {
  .fun-fact {
    padding: 3rem;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; /* Add gap for smaller screens */
    display: grid; /* Ensure it remains a grid layout */
  }

  .fun-fact .box {
    padding: 1.5rem;
  }

  .fun-fact .box .info {
    gap: 50px;
  }

  .fun-fact .box h3 {
    font-size: 2.5rem;
  }

  .fun-fact .box p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .fun-fact {
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
  }

  .fun-fact .box h3 {
    font-size: 2rem;
  }

  .fun-fact .box p {
    font-size: 1.3rem;
  }
}


.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about .content {
  flex: 1 1 50%;
  opacity: 0;
  animation: fadeInLeft 1s ease-out 0.2s forwards;
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  border-radius: 10px;
}

.about .content h3 {
  font-size: 4rem;
  text-transform: capitalize;
  color: #334;
  font-weight: bold;
  padding-bottom: 1rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.about .content p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  padding: 1.5rem 0;
}

.about .image img:hover {
  transform: scale(1.1);
}

.about .image {
  flex: 1 1 50%;
  opacity: 0;
  animation: fadeInRight 1s ease-out 0.5s forwards;
}

.about .image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about .btn {
  background: (#2597f4);
  color: black;
}

.about a.btn:hover {
  background: linear-gradient(90deg, #2597f4);
  transform: scale(1.1);
  color: white;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about .content {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .about .content h3 {
    font-size: 2.8rem;
  }

  .about .content p {
    font-size: 1.4rem;
  }

  .about .content a.btn {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
  }

  .about .image {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 2.5rem;
  }

  .about .content p {
    font-size: 1.3rem;
  }

  .about .content a.btn {
    padding: 0.7rem 1.8rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .about .content h3 {
    font-size: 2rem;
  }

  .about .content p {
    font-size: 1.2rem;
  }

  .about .content a.btn {
    padding: 0.6rem 1.6rem;
    font-size: 1.2rem;
  }
}

.services {
  background: linear-gradient(135deg, #eef2f3, #8e9eab);
  padding: 4rem 2rem;
  text-align: center;
}

.services .heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #222;
}

.services span {
  color: #2597f4;
  font-weight: bold;
}

.services .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.services .box {
  position: relative;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.services .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2597f4, #6dd5ed);
  z-index: 1;
}

.services .box img {
  width: 70px;
  height: 70px;
  margin: 2rem auto 1rem;
  display: block;
}

.services .box h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 1rem 0;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.services .box p {
  font-size: 1.4rem;
  color: #666;
  padding: 0 1rem 2rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.services .box:hover h3 {
  color: #2597f4;
}

@media (max-width: 1200px) {
  .services .heading {
    font-size: 2.8rem;
  }

  .services .box-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }

  .services .box h3 {
    font-size: 1.6rem;
  }

  .services .box p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .services .heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .services .box-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services .box {
    padding: 1.5rem;
  }

  .services .box h3 {
    font-size: 1.5rem;
  }

  .services .box p {
    font-size: 1.2rem;
  }

  .services .box img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .services .heading {
    font-size: 2rem;
  }

  .services .box h3 {
    font-size: 1.4rem;
  }

  .services .box p {
    font-size: 1.1rem;
  }

  .services .box img {
    width: 50px;
    height: 50px;
  }
}
.gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Overall gallery styling */
.gallery {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  text-align: center;
}

.gallery .heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #222;
  text-transform: uppercase;
}

.gallery .heading span {
  color: #007bff;
  font-style: italic;
}

/* Grid layout */
.gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Gallery items */
.gallery .box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%; 
  aspect-ratio: 3 / 3; 
}

.gallery .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover effects */
.gallery .box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery .box:hover img {
  transform: scale(1.2) rotate(2deg);
}

/* Overlay for hover effect */
.gallery .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .box:hover::after {
  opacity: 1;
}

/* Caption (optional) */
.gallery .box:hover::before {
  content: 'View Image';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery .box:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 992px) {
  .gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery .box {
    height: 250px;
  }
}

/* Adjustments for mobile */
@media (max-width: 576px) {
  .gallery .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery .box {
    height: 200px;
  }
}


.facilities {
  background: lightgray; /* A warm gradient background */
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}

.facilities .heading {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.facilities .heading span {
  color: #2597f4;
}

.facilities .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  justify-items: center;
  padding-bottom: 40px;
}

.facilities .box-container .box {
  background: #fff;
  padding: 3rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.facilities .box-container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.facilities .box-container .box img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.facilities .box-container .box:hover img {
  transform: scale(1.1);
}

.facilities .box-container .box h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.facilities .box-container .box p {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.facilities .box-container .box:hover h3 {
  color: #2597f4; /* Change color on hover */
}

.facilities .box-container .box .btn {
  display: inline-block;
  background-color: #feb47b;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.facilities .box-container .box:hover .btn {
  background-color: #ff7e5f;
}

@media (max-width: 768px) {
  .facilities .heading {
    font-size: 2.5rem;
  }

  .facilities .box-container .box {
    padding: 2rem;
  }

  .facilities .box-container .box h3 {
    font-size: 1.8rem;
  }

  .facilities .box-container .box p {
    font-size: 1rem;
  }

  .facilities .box-container .box .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
  }
}
.team {
  padding: 3rem 10%;
  text-align: center;
}

.team .heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #334;
}

.team .heading span {
  color: #2597f4;
}

.team .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 150%;
}

.team .box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
}

.team .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.team .box img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #2597f4;
}

.team .content {
  padding: 1.5rem;
}

.team .content h3 {
  font-size: 1.8rem;
  color: #334;
  margin-bottom: 0.5rem;
}

.team .content p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 1rem;
}

.team .share {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team .share a {
  font-size: 1.5rem;
  color: #334;
  background: #f7f7f7;
  padding: 0.9rem;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.team .share a:hover {
  background: #2597f4;
  color: #fff;
}

.fa-x-twitter::before {
  content: "X";
  font-family: Arial, sans-serif;
  font-weight: bold;
  /* font-size: 10px; */
}

/* Responsive Design */
@media (max-width: 768px) {
  .team .heading {
    font-size: 2.5rem;
  }

  .team .content h3 {
    font-size: 1.6rem;
  }

  .team .content p {
    font-size: 1.3rem;
  }

  .team .share a {
    font-size: 1.3rem;
    padding: 0.5rem;
  }
  .team .box-container{
    display: flex;
  }
  .team .box-container {
    width: 100%;
    height: 100%;
  }
}

.reviews-slider {
  background: #f5f5f5;
  padding: 5rem 2rem;
  position: relative;
}

.reviews-slider h1 {
  text-align: center;
  font-size: 3rem;
  color: #333;
}

.reviews-slider h1 span {
  color: #2597f4;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  /* Removed the border */
}

.star {
  margin-bottom: 1rem;
}

.star i {
  color: #2597f4;
  font-size: 1.7rem;
}

.text {
  position: relative;
  padding: 1.5rem 0;
}

.text i {
  font-size: 6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: #2597f4;
  opacity: 0.2;
}

.text p {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
  position: relative;
  padding: 1rem 0;
}

.text p::before {
  content: "“"; /* Opening quotation mark */
  font-size: 3rem;
  position: absolute;
  margin-left: -1rem;
  top: -0.5rem;
  color: #2597f4;
}

.text p::after {
  content: "”"; /* Closing quotation mark */
  font-size: 3rem;
  position: absolute;
  right: -rem;
  bottom: -0.5rem;
  color: #2597f4;
}

.user {
  margin-top: 1.5rem;
}

.user img {
  object-fit: cover;
  height: 15rem;
  width: 13.5rem;
  border-radius: 50%;
  /* border: 4px solid #ff6600; */
  /* box-shadow: 0 0 10px rgba(255, 102, 0, 0.5); */
  transition: transform 0.3s ease-in-out;
}

.user img:hover {
  transform: scale(1.05);
}

.user h3 {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
}

/* Navigation Arrows */
/* Navigation Arrows */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2597f4;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Hover and Active States */
.prev:hover,
.next:hover {
  background-color: #1a75d8;
  transform: scale(1.1);
}

.prev:active,
.next:active {
  background-color: #126ab0;
  transform: scale(1);
}

.prev:focus,
.next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 151, 244, 0.5);
}

.prev i,
.next i {
  font-size: 1.6rem;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prev,
  .next {
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
  }
}

/* General Contact Section Styles */
.contact {
  padding: 8rem 4rem;
  background: #f4f4f4;
  color: #333;
  text-align: center;
}

.contact span {
  color: #2597f4;
}

.contact .heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.contact .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact .map {
  flex: 1 1 50%;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.contact form {
  flex: 1 1 50%;
  background: #fff;
  height: 450px;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact form h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

/* Input and Textarea Styles */
.contact form .inputBox {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact form .inputBox input,
.contact form textarea {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.2rem;
  color: #555;
  outline: none;
  transition: all 0.3s ease;
}

.contact form .inputBox input:focus,
.contact form textarea:focus {
  border-color: #2597f4;
  box-shadow: 0 0 5px #2597f4;
}

.contact form textarea {
  width: 100%;
  resize: none;
  height: 200px;
}

/* Align Send Message Button to Start */
.contact .btn {
  align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact .row {
    flex-direction: column;
    gap: 3rem;
  }

  .contact .map,
  .contact form {
    width: 100%;
  }
}

.footer {
  background: #111;
  color: #eee;
  padding: 6rem;
  font-family: "Poppins", sans-serif;
  animation: fadeIn 1.5s ease-in-out;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 5.5rem;
}

.footer .box h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #00bcd4;
  position: relative;
}

.footer .box h3::after {
  content: "";
  width: 3rem;
  height: 0.3rem;
  background: #00bcd4;
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  border-radius: 5px;
  animation: slideIn 1s ease;
}

.footer .box .link {
  display: block;
  font-size: 1.4rem;
  color: #ddd;
  margin: 0.5rem 0;
  transition: all 0.3s;
}

.footer .box .link:hover {
  color: #00bcd4;
  padding-left: 1.5rem;
}

.footer .box p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.footer .box p span {
  color: #00bcd4;
  font-weight: bold;
}

.footer .box .email {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid #444;
  border-radius: 5px;
  font-size: 1.4rem;
  margin: 1rem 0;
  background: #222;
  color: #eee;
}

.footer .box .btn {
  background: #00bcd4;
  color: #111;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.footer .box .btn:hover {
  background: #00a2c0;
  transform: scale(1.05);
}

.footer .box .share a {
  display: inline-block;
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  font-size: 2rem;
  text-align: center;
  margin: 0.5rem;
  border-radius: 50%;
  background: #222;
  color: #eee;
  transition: all 0.3s;
}

.footer .box .share a:hover {
  background: #00bcd4;
  color: #111;
}

.footer .credit {
  text-align: center;
  font-size: 1.6rem;
  color: #aaa;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #444;
}

.footer .credit a {
  color: #00bcd4;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 3rem;
  }
}

@media (max-width: 768px) {
  .footer .box-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .header .contact-info {
    padding: 2rem 5%;
  }

  .header .navbar {
    padding: 2rem 5%;
  }

  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header .contact-info {
    padding: 2rem;
  }

  .header .navbar {
    padding: 2rem;
  }

  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .header .contact-info {
    display: none;
  }

  .header #menu-btn {
    display: inline-block;
  }

  .header #menu-btn.fa-times {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .header .navbar .links {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 0.2rem solid #334;
    border-bottom: 0.2rem solid #334;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header .navbar .links.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar .links a {
    display: block;
    margin: 2.5rem 2rem;
    font-size: 2.5rem;
  }

  .fun-fact {
    padding: 5rem 2rem;
  }

  .fun-fact .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .content h3 {
    font-size: 3rem;
  }

  .contact .row form .inputBox input {
    width: 100%;
  }

  .heading {
    font-size: 3rem;
  }
}
