@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 .2s linear;
  transition: all .2s linear;
}

/* Global rule to remove all navigation link decorations */
nav a,
.navbar a,
.links a,
header a {
  text-decoration: none !important;
}

nav a:hover,
.navbar a:hover,
.links a:hover,
header a:hover,
nav a:focus,
.navbar a:focus,
.links a:focus,
header a:focus,
nav a:active,
.navbar a:active,
.links a:active,
header a:active {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #b30ce6;
  border-radius: 5rem;
}

section {
  padding: 5rem 10%;
}

section {
  padding: 5rem 10%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 4rem;
  text-transform: capitalize;
  color: #334;
}

.heading span {
  color: #b30ce6;
}

.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;
}

.btn:hover {
  background: #b30ce6;
  border-color: #b30ce6;
  color: #fff;
}

.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: #b30ce6;
}

.header .contact-info p {
  font-size: 1.5rem;
  color: #fff;
}

.header .contact-info p i {
  padding-right: .5rem;
  color: yellow;
}

.header .navbar {
  padding: 2rem 0;
  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: #fff;
  border-bottom: 0.2rem solid #334;
  position: relative;
  z-index: 1000;
  height: 70px;
}

.header .navbar.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .navbar .logo {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.header .navbar .logo img {
  width: 180px; /* Slightly smaller for corner positioning */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer; /* Changes cursor to pointer on hover */
}

.header .navbar .links {
  margin-left: auto;
  margin-right: 2rem;
}

.header .navbar .links a {
  margin-left: 2rem;
  font-size: 2rem;
  text-transform: capitalize;
  color: #334;
  position: relative;
  transition: all 0.3s ease;
}

.header .navbar .links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #b30ce6, #a855f7, #9333ea);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(179, 12, 230, 0.6), 0 0 20px rgba(179, 12, 230, 0.4);
}

.header .navbar .links a:hover::after {
  width: 100%;
}

.header .navbar .links a:hover {
  color: #b30ce6;
  text-shadow: 0 0 8px rgba(179, 12, 230, 0.3);
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

.header .navbar .links a:focus,
.header .navbar .links a:active,
.header .navbar .links a:visited {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

.header #menu-btn {
  font-size: 3rem;
  cursor: pointer;
  color: #334;
  display: none;
}









.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.home .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.home .image img {
  width: 100%;
}

.home .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.home .content h3 {
  font-size: 4.5rem;
  text-transform: capitalize;
  color: #334;
}

.home .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
  padding: 1rem 0;
}

.fun-fact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  background: #f5f5f5;
  gap: 3.5rem;
}

.fun-fact .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.fun-fact .box img {
  height: 10rem;
}

.fun-fact .box h3 {
  font-size: 4rem;
  text-transform: capitalize;
  color: #334;
}

.fun-fact .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
  padding-top: .5rem;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  gap: 3rem;
}

.about .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.about .image img {
  width: 100%;
}

.about .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.about .content h3 {
  font-size: 3rem;
  text-transform: capitalize;
  color: #334;
  padding-bottom: .5rem;
}

.about .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
  padding: 1rem 0;
}

.services {
  background: #f5f5f5;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(3, minmax(25rem, 1fr));
  gap: 2rem;
}

@media (max-width: 1200px) {
  .services .box-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services .box-container {
      grid-template-columns: 1fr;
  }
}

.services .box-container .box {
  text-align: center;
  background: #fff;
  border: 0.2rem solid #334;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
}

.services .box-container .box:hover {
  background: #334;
}

.services .box-container .box:hover h3 {
  color: #fff;
}

.services .box-container .box:hover p {
  color: #fff;
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
}

.services .box-container .box h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #334;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
}

.gallery .gallery-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.gallery .gallery-container .box {
  height: 25rem;
  overflow: hidden;
}

.gallery .gallery-container .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery .gallery-container .box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facilities {
  background: #f5f5f5;
}

.facilities .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.facilities .box-container .box {
  background: #fff;
  padding: 3rem;
  text-align: center;
  border: 0.2rem solid #334;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.facilities .box-container .box:hover {
  background: #334;
}

.facilities .box-container .box:hover h3 {
  color: #fff;
}

.facilities .box-container .box:hover p {
  color: #fff;
}

.facilities .box-container .box img {
  height: 10rem;
  margin-bottom: .5rem;
}

.facilities .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  text-transform: capitalize;
  color: #334;
}

.facilities .box-container .box p {
  font-size: 1.4rem;
  line-height: 2;
  color: #777;
}

.team .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.team .box-container .box {
  overflow: hidden;
  text-align: center;
}

.team .box-container .box:hover .content {
  margin-bottom: 0;
}

.team .box-container .box img {
  width: 100%;
}

.team .box-container .box .content {
  padding: 2rem;
  margin-bottom: -7rem;
}

.team .box-container .box .content h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #334;
}

.team .box-container .box .content p {
  font-size: 1.4rem;
  line-height: 2;
  color: #777;
  padding: .5rem 0;
}

.team .box-container .box .content .share {
  margin-top: 1.5rem;
}

.team .box-container .box .content .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  margin: 0 .3rem;
  background: #334;
  color: #fff;
}

.team .box-container .box .content .share a:hover {
  background: #b30ce6;
}

.reviews {
  background: #f5f5f5;
  padding: 5rem 10%;
}

.reviews .reviews-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews .reviews-slider {
  overflow: hidden;
  position: relative;
}

.reviews .reviews-slide {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.reviews .reviews-slide.active {
  display: block;
  opacity: 1;
}

.reviews .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.reviews .box-container .box {
  text-align: center;
  padding: 3rem;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border: 0.2rem solid #334;
  transition: transform 0.3s ease, background 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reviews .box-container .box:hover {
  background: #334;
  transform: translateY(-10px);
}

.reviews .box-container .box:hover .text p {
  color: #fff;
}

.reviews .box-container .box:hover .user h3 {
  color: #fff;
}

.reviews .box-container .box .star i {
  color: #b30ce6;
  font-size: 1.7rem;
}

.reviews .box-container .box .text {
  position: relative;
  z-index: 0;
  padding: 1.5rem 0;
  flex-grow: 1;
}

.reviews .box-container .box .text i {
  font-size: 7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: .3;
  color: #b30ce6;
}

.reviews .box-container .box .text p {
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
}

.reviews .box-container .box .user {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.reviews .box-container .box .user .user-icon {
  font-size: 3.5rem;
  color: #b30ce6;
  margin-right: 1rem;
}

.reviews .box-container .box .user h3 {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #334;
}

/* Navigation Dots */
.reviews-nav {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.reviews-nav .dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #ccc;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reviews-nav .dot.active {
  background: #b30ce6;
}

@media (max-width: 768px) {
  .reviews .box-container {
    grid-template-columns: 1fr;
  }
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  width: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding: 2rem;
  border: 0.2rem solid #334;
}

.contact .row form h3 {
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #334;
  padding-bottom: 1rem;
}

.contact .row form .inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact .row form .inputBox input {
  width: 49%;
}

.contact .row form .inputBox input, .contact .row form textarea {
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #777;
  margin: .7rem 0;
  border: 0.2rem solid #334;
}

.contact .row form .inputBox input:focus, .contact .row form textarea:focus {
  background: #334;
  color: #fff;
}

.contact .row form .inputBox input:focus::-webkit-input-placeholder, .contact .row form textarea:focus::-webkit-input-placeholder {
  color: #fff;
}

.contact .row form .inputBox input:focus:-ms-input-placeholder, .contact .row form textarea:focus:-ms-input-placeholder {
  color: #fff;
}

.contact .row form .inputBox input:focus::-ms-input-placeholder, .contact .row form textarea:focus::-ms-input-placeholder {
  color: #fff;
}

.contact .row form .inputBox input:focus::placeholder, .contact .row form textarea:focus::placeholder {
  color: #fff;
}

.contact .row form textarea {
  width: 100%;
  height: 15rem;
  resize: none;
}

.footer {
  background: #000000;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: #ffffff;
  padding: 1rem 0;
}

.footer .box-container .box .link {
  display: block;
  padding: .5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #cccccc;
}

.footer .box-container .box .link i {
  padding-right: .5rem;
  color: #b30ce6;
}

.footer .box-container .box .link:hover {
  color: #ffffff;
}

.footer .box-container .box .link:hover i {
  padding-right: 2rem;
}

.footer .box-container .box p {
  padding: .5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #cccccc;
}

.footer .box-container .box p span {
  color: #ffffff;
}

.footer .box-container .box .email {
  width: 100%;
  border: 0.2rem solid #ffffff;
  padding: 1.6rem 1.4rem;
  font-size: 1.6rem;
  color: #ffffff;
  background: #333333;
  margin: 1rem 0;
}

.footer .box-container .box .share {
  margin-top: 2rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  background: #ffffff;
  color: #000000;
  margin-right: .3rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background: #b30ce6;
}

.footer .credit {
  font-size: 2rem;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.2rem solid #ffffff;
  text-align: center;
}

.footer .credit span {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .header .contact-info {
    padding: 2rem 5%;
  }
  .header .navbar .logo {
    left: 1.5rem;
  }
  .header .navbar .links {
    margin-right: 1.5rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header .contact-info {
    padding: 2rem;
  }
  .header .navbar .logo {
    left: 1rem;
  }
  .header .navbar .logo img {
    width: 160px;
  }
  .header .navbar .links {
    margin-right: 1rem;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .header .contact-info {
    display: none;
  }
  .header #menu-btn {
    display: inline-block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
  .header #menu-btn.fa-times {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  .header .navbar .logo {
    left: 1rem;
  }
  .header .navbar .logo img {
    width: 140px;
  }
  .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);
    margin: 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;
    position: relative;
  }
  
  .header .navbar .links a::after {
    bottom: -4px;
    left: 0;
    transform: none;
    height: 2px;
    box-shadow: 0 0 8px rgba(179, 12, 230, 0.6);
  }
  
  .header .navbar .links a:hover,
  .header .navbar .links a:focus,
  .header .navbar .links a:active,
  .header .navbar .links a:visited {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
  }
  .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;
  }
}
/*# sourceMappingURL=style.css.map */


/* HERO SECTION STYLES */
.hero-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  border: 5px solid #000;
  overflow: hidden;
}

/* FULL WIDTH VIDEO SECTION */
.hero-video {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-video .hero-text {
  position: relative;
  color: white;
  text-align: center;
  padding: 20px;
  background: rgba(222, 61, 243, 0.5);
  border-radius: 10px;
  z-index: 1;
}

.hero-video .hero-text h1 {
  font-size: 3rem;
  margin: 0;
}

.hero-video .hero-text p {
  font-size: 1.2rem;
}

/* FULL WIDTH TEXT SECTION WITH TYPEWRITER */
.hero-content {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: rgb(176, 0, 240);
  text-align: center;
  border-top: 5px solid #000;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Typewriter Effect - Enhanced */
.typewriter h2 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #b30ce6; /* Cursor effect - slightly thicker */
  width: 0;
  font-size: 3.5rem; /* Bigger text */
  position: relative;
  background: transparent;
  max-width: 100%; /* Ensure it doesn't overflow container */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
  margin: 0 auto;
}

/* Animation container to handle the loop */
.typewriter {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

/* Improved Typing Animation - slower and more natural */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Erasing Animation - with natural speed */
@keyframes erasing {
  from { width: 100%; }
  to { width: 0; }
}

/* Cursor Blinking Animation - more realistic */
@keyframes blinkCursor {
  from, to { border-color: #b30ce6; }
  50% { border-color: transparent; }
}

/* Cursor Blinking Effect */
@keyframes blink {
  50% { border-color: transparent; }
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }

  .hero-video {
    height: 50vh;
  }

  .hero-content {
    height: auto;
    padding: 40px 20px;
  }

  .hero-video .hero-text {
    font-size: 1.6rem;
    padding: 10px;
  }

  .typewriter h2 {
    font-size: 2rem;
    white-space: normal; /* Allow wrapping on medium screens */
    width: 100%;
    border-right: none;
    text-align: center;
    animation: none;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .hero-video {
    height: 40vh;
  }

  .hero-video .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-video .hero-text p {
    font-size: 1rem;
  }

  .typewriter h2 {
    font-size: 1.8rem;
    white-space: normal;
    width: 100%;
    padding: 0 5px;
    border-right: none;
    text-align: center;
  }
}

/* About Us Section Styles */
.about-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.2rem;
  color: #555;
}

/* Booking Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  animation: modalOpen 0.5s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes modalOpen {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-modal {
  color: #777;
  float: right;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #b30ce6;
}

.modal h3 {
  font-size: 2.5rem;
  color: #334;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #eee;
}

.modal .inputBox select,
.modal input[type="date"],
.modal input[type="time"] {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #777;
  margin: .7rem 0;
  border: 0.2rem solid #334;
}

.modal .inputBox select:focus,
.modal input[type="date"]:focus,
.modal input[type="time"]:focus {
  background: #334;
  color: #fff;
}

/* Floating Button Styles */
.floating-button {
  position: fixed;
  bottom: 40px;
  left: 40px; /* Changed from right: 40px to left: 40px */
  z-index: 99;
}

.floating-button .btn {
  background: #b30ce6;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(179, 12, 230, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(179, 12, 230, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(179, 12, 230, 0);
  }
}

/* Responsive styles for modal and floating button */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }

  .floating-button {
    bottom: 20px;
    left: 20px; /* Changed from right: 20px to left: 20px */
  }

  .floating-button .btn {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  .modal h3 {
    font-size: 2rem;
  }

  .floating-button .btn {
    padding: 1rem 1.8rem;
    font-size: 1.4rem;
  }
}

/* Pricing Section Styles */
.pricing {
  background: #f5f5f5;
  padding: 5rem 10%;
}

.pricing .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.pricing .price-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing .price-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing .price-box.featured {
  border: 3px solid #b30ce6;
  transform: scale(1.05);
}

.pricing .price-box.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing .price-box .banner {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background: #b30ce6;
  color: white;
  padding: 5px 40px;
  font-size: 1.5rem;
  font-weight: bold;
}

.pricing .price-box h3 {
  font-size: 2.5rem;
  color: #334;
  margin-bottom: 1rem;
}

.pricing .price-box .price {
  font-size: 3.5rem;
  color: #b30ce6;
  font-weight: bold;
  margin-bottom: 2rem;
}

.pricing .price-box .price span {
  font-size: 1.5rem;
  color: #777;
  font-weight: normal;
}

.pricing .price-box img {
  height: 9rem;
  margin-bottom: 2rem;
}

.pricing .price-box ul {
  list-style: none;
  margin: 2rem 0;
}

.pricing .price-box ul li {
  font-size: 1.6rem;
  color: #777;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.pricing .price-box ul li:last-child {
  border-bottom: none;
}

.pricing .price-box ul li i {
  color: #b30ce6;
  margin-right: 1rem;
}

.pricing .price-box .btn {
  width: 80%;
  padding: 1.2rem;
  border-radius: 50px;
  background: #334;
  color: white;
  font-weight: bold;
  border: 2px solid #334;
  transition: all 0.3s ease;
}

.pricing .price-box .btn:hover {
  background: #b30ce6;
  border-color: #b30ce6;
}

.pricing .price-box.featured .btn {
  background: #b30ce6;
  border-color: #b30ce6;
}

.pricing .price-box.featured .btn:hover {
  background: white;
  color: #b30ce6;
}

@media (max-width: 768px) {
  .pricing .box-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing .price-box {
    width: 100%;
    max-width: 400px;
  }
  
  .pricing .price-box.featured {
    order: -1;
  }
}