@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
 --orange: #000;
}

* {
 font-family: 'Nunito', sans-serif;
 margin: 0; padding: 0;
 box-sizing: border-box;
 text-transform: capitalize;
 outline: none; border: none;
 text-decoration: none;
 transition: all .2s linear;
}

*::selection {
 background: var(--orange);
 color: #fff;
}

html {
 font-size: 62.5%;
 overflow-x: hidden;
 scroll-padding-top: 6rem;
 scroll-behavior: smooth;
}

section {
 padding: 2rem 9%;
}

.heading {
 text-align: center;
 padding: 2.5rem 0;

}

.heading span {
 font-size: 3.5rem;
 background: rgba(230, 73, 25, 0.9);
 color: #fff;
 border-radius: .5rem;
 padding: .2rem 1rem;
}

.heading span.space {
 background: none;
}

.btn {
 display: inline-block;
 margin-top: 1rem;
 background: var(--orange);
 color: #fff;
 padding: .8rem 3rem;
 border: .2rem solid var(--orange);
 cursor: pointer;
 font-size: 1.7rem;
}

.btn:hover {
 background: rgba(255, 165, 0, .2);
 color: var(--orange);
}

/* Define custom colors */
:root {
  --orange: #ff5722; /* Vibrant orange */
  --white: #fff;     /* White */
  --black: #000;     /* Black */
  --overlay-dark: rgba(0, 0, 0, 0.5); /* Dark overlay */
  --overlay-light: rgba(0, 0, 0, 0.2); /* Light overlay */
}

/* Header styles */
/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

/* Logo styles */
header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
  text-transform: uppercase;
}

header .logo span {
  color: var(--orange);
}

/* Navbar link styles */
header .navbar a {
  color: var(--black);
  font-size: 1.8rem; /* Slightly smaller font size for better readability */
  margin: 0 1.5rem; /* Adjust spacing between links */
  text-transform: uppercase;
  transition: color 0.3s ease; /* Smooth color transition */
}

header .navbar a:hover {
  color: var(--orange); /* Use the vibrant orange color on hover */
}

/* Menu icon styles */
header #menu-bar {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  display: none; /* Hide by default for larger screens */
}

header #menu-bar:hover {
  color: var(--orange); /* Use the vibrant orange color on hover */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 5%; /* Reduce padding for smaller screens */
  }

  header #menu-bar {
    display: block; /* Show menu icon for smaller screens */
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white); /* Match header background color */
    display: none; /* Hide navbar by default on smaller screens */
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
  }

  header .navbar.active {
    display: flex; /* Show navbar when active */
  }

  header .navbar a {
    margin: 1rem 0; /* Adjust spacing for vertical layout */
    font-size: 1.6rem; /* Reduce font size for smaller screens */
    color: var(--black); /* Ensure text color is visible */
  }

  header .navbar a:hover {
    color: var(--orange); /* Hover color remains the same */
  }
}
/* About section styles */
.about {
  padding: 8rem 2rem;
  background: linear-gradient(to right, #f9f9f9, #e0e0e0); /* Gradient background */
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about .about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about .about-text {
  flex: 1;
}

.about .about-text h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
}

.about .about-text h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  background: var(--orange);
}

.about .about-text .intro {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about .features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about .features .feature-item {
  flex: 1;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .features .feature-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.about .features .feature-item i {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.about .features .feature-item h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.about .features .feature-item p {
  font-size: 1.6rem;
  color: #777;
}

.about .about-text .btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  color: #fff;
  background: var(--orange);
  border-radius: 5rem;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about .about-text .btn:hover {
  background: #e64a19; /* Darker shade of orange */
  transform: translateY(-0.2rem);
}

.about .about-image {
  flex: 1;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.about .about-image img {
  width: 100%;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.about .about-image:hover img {
  transform: scale(1.05);
}

.about .about-image .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 0 0 1rem 1rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .about .about-content {
      flex-direction: column;
      text-align: center;
  }

  .about .about-text h2 {
      font-size: 3rem;
  }

  .about .about-text .intro {
      font-size: 1.6rem;
  }

  .about .features {
      flex-direction: column;
  }

  .about .about-image img {
      max-width: 100%;
  }
}

.login-form-container {
 position: fixed;
 top: -120%; left: 0;
 z-index: 10000;
 min-height: 100vh;
 width: 100%;
 background: rgba(0,0,0,.7);
 display: flex;
 align-items: center;
 justify-content: center;
}

.login-form-container.active {
 top: 0; 
}

.login-form-container form {
 margin: 2rem;
 padding: 1.5rem;
 border-radius: .5rem;
 background: #fff;
 width: 50rem;
}

.login-form-container form h3 {
 font-size: 3rem;
 color: #000;
 text-transform: uppercase;
 text-align: center;
 padding: 1rem 0;
}

.login-form-container form .box {
 width: 100%;
 padding: 1rem;
 font-size: 1.7rem;
 color: #000;
 margin: .6rem 0;
 border: .1rem solid rgba(0,0,0,.3);
 text-transform: none;
}

.login-form-container form .box:focus {
 border-color: var(--orange);
}

.login-form-container form #remember {
 margin: 2rem 0;
}

.login-form-container form label {
 font-size: 1.5rem;
}

.login-form-container form .btn {
 display: block;
 width: 100%;
}

.login-form-container form p {
 padding: .5rem 0;
 font-size: 1.5rem;
 color: #666;
}

.login-form-container form p a {
 color: var(--orange);
}

.login-form-container form p a:hover {
 color: #000;
 text-decoration: underline;
}

.login-form-container #form-close {
 position: absolute;
 top: 2rem; right: 3rem;
 font-size: 5rem;
 color: #fff;
 cursor: pointer;
}

#menu-bar {
 color: #fff;
 border: .1rem solid #fff;
 border-radius: .5rem;
 font-size: 3rem;
 padding: .5rem 1.2rem;
 cursor: pointer;
 display: none;
}


/* Home Section */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
}

/* Video container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Image styles */
.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0; /* Ensure images are below content */
}

/* Active slide */
.video-container .active {
  opacity: 1;
  z-index: 1; /* Bring the active image on top */
}

/* Content styles */
.content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.home .content h3 {
  font-size: 5rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

.home .content p {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.3);
}

/* Button */
.home .content .btn {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  font-size: 1.8rem;
  color: white;
  background:  #e64a19;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home .content .btn:hover {
  background: #e64a19;
  transform: translateY(-0.2rem);
}
/* Animations */
@keyframes fadeInDown {
  0% {
      opacity: 0;
      transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .home .content h3 {
      font-size: 3.5rem; /* Smaller font size for smaller screens */
  }

  .home .content p {
      font-size: 2rem; /* Smaller font size for smaller screens */
  }

  .home .content .btn {
      padding: 1rem 2.5rem; /* Smaller button for smaller screens */
      font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .home .content h3 {
      font-size: 2.8rem; /* Even smaller font size for very small screens */
  }

  .home .content p {
      font-size: 1.8rem; /* Even smaller font size for very small screens */
  }

  .home .content .btn {
      padding: 0.8rem 2rem; /* Smaller button for very small screens */
      font-size: 1.4rem;
  }
}
/* Packages section styles */
.packages {
  padding: 4rem 2rem;
  background: #f9f9f9;
}



.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 0 2rem;
}

.package-item {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: 0.3s;
}

.package-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.package-item img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.content {
  padding: 1.5rem;
}

.details {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1rem;
}

.details small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.details i {
  color: #ff5722;
}

.package-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  text-align: left;
}

.description {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff5722;
}

.price span {
  font-size: 1.4rem;
  color: #777;
  margin-left: 0.5rem;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  background: #ff5722;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  color: #fff;
  background: #e64a19;
  transform: scale(1.05);
}

.btn-details {
  background: #333;
}

.btn-details:hover {
  background: #555;
}

/* Responsive design */
@media (max-width: 768px) {
  .box-container {
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); /* Adjust for smaller screens */
      padding: 0 1rem;
  }

  .package-item {
      max-width: 100%; /* Ensure items take full width on small screens */
  }

  .pricing {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
  }

  .buttons {
      flex-direction: column;
      width: 100%;
  }

  .btn {
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .heading {
      font-size: 2.5rem; /* Reduce heading size for very small screens */
  }

  .box-container {
      grid-template-columns: 1fr; /* Single column layout for very small screens */
  }

  .package-item img {
      height: 18rem; /* Reduce image height for very small screens */
  }

  .package-title {
      font-size: 1.8rem; /* Reduce title size for very small screens */
  }

  .description {
      font-size: 1.2rem; /* Reduce description size for very small screens */
  }

  .price {
      font-size: 1.6rem; /* Reduce price size for very small screens */
  }
}

/* Contact Information Styling */
.book {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.book .heading {
    font-size: 3rem;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Book Now Section Container */
.book-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information Styling */
.contact-info {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--orange);
    flex: 1;
    min-width: 300px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 2rem;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange);
}

.contact-info p {
    font-size: 1.6rem; /* Increased font size */
    color: #555;
    margin: 1.5rem 0; /* Increased margin */
    display: flex;
    align-items: flex-start; /* Align items to the top */
}

.contact-info i {
    color: var(--orange);
    margin-right: 15px; /* Increased spacing */
    font-size: 2rem; /* Increased icon size */
    width: 30px; /* Increased width */
    text-align: center;
    flex-shrink: 0; /* Prevent icons from shrinking */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        text-align: left;
    }

    .contact-info h3::after {
        left: 10%;
        transform: translateX(-50%);
        margin-top: 20px !important;
    } 

    .contact-info p {
        justify-content: flex-start; /* Align text to the left */
        text-align: left; /* Align text to the left */
        margin-left: 2rem; /* Add margin to align with icons */
    }
}
/* Form Container */
.form-container {
    flex: 2;
    min-width: 400px;
    padding: 3rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Input Fields */
.inputBox {
    margin-bottom: 2rem;
    text-align: left;
}

.inputBox h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--black);
    font-weight: 600;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.4rem;
    color: var(--black);
    outline: none;
    background: #f8f8f8;
    transition: border 0.3s, box-shadow 0.3s;
}

.inputBox input:focus,
.inputBox textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.3);
}

/* Submit Button */
.book .btn {
    display: block;
    width: 100%;
    padding: 1.4rem;
    background: var(--orange);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.book .btn:hover {
    background: var(--overlay-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-container {
        flex-direction: column;
        align-items: center;
    }

    .form-container, .contact-info {
        width: 100%;
        min-width: unset;
    }

  
}

.services .box-container .box i{
  padding:1rem;
  font-size: 5rem;
  color:#e64a19;
}

.services .box-container .box h3{
  font-size: 2.5rem;
  color:#000;
}

.services .box-container .box p{
  font-size: 1.5rem;
  color:#666;
  padding:1rem 0;
}

.services .box-container .box:hover{
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}

.gallery .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.gallery .box-container .box{
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border:1rem solid #fff;
  border-radius: .5rem;
  flex:1 1 30rem;
  height: 25rem;
  position: relative;
}

.gallery .box-container .box img{
  height: 100%;
  width:100%;
  object-fit: cover;
}

.gallery .box-container .box .content{
  position: absolute;
  top: -100%; left:0;
  height: 100%;
  width:100%;
  text-align: center;
  background:rgba(0,0,0,.7);
  padding:2rem;
  padding-top: 5rem;
}

.gallery .box-container .box:hover .content{
  top:0;
}

.gallery .box-container .box .content h3{
  font-size: 2.5rem;
  color:var(--orange);
}

.gallery .box-container .box .content p{
  font-size: 1.5rem;
  color:#eee;
  padding:.5rem 0;
}


.review .review-slider{
  padding-bottom: 2rem;
}

.review .box{
  padding:2rem;
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border-radius: .5rem;
}

.review .box img{
  height:13rem;
  width:13rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review .box h3{
  color:#000;
  font-size: 2.5rem;
}

.review .box p{
  color:#000;
  font-size: 1.5rem;
  padding:1rem 0;
}

.review .box .stars i{
  color:var(--orange);
  font-size: 1.7rem;
}


.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
  align-items: center;
}

.contact .row .image{
  flex:1 1 35rem;
}

.contact .row .image img{
  width:100%;
}

.contact .row form{
  flex:1 1 50rem;
  padding:2rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border-radius: .5rem;
}

.contact .row form .inputBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input, .contact .row form textarea{
  width:49%;
  margin:1rem 0;
  padding:1rem;
  font-size: 1.7rem;
  color:#fff;
  background:#f7f7f7;
  text-transform: none;
}

.contact .row form textarea{
  height: 15rem;
  resize: none;
  width:100%;
}

.brand-container{
  text-align: center;
}
/* Footer Section */
.footer {
  background: #333;
  padding: 3rem 2rem;
  color: #fff;
  text-align: center;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.footer .box {
  text-align: left;
}

.footer .box h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer .box p {
  font-size: 1.4rem;
  color: #ccc;
  line-height: 1.8;
}

.footer .box a {
  display: block;
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .box a:hover {
  color: #ff5722; /* Vibrant orange */
}

.footer .box .social-links {
  display: flex;
  gap: 1.5rem;
}

.footer .box .social-links a {
  font-size: 2rem;
  color: #ccc;
  transition: color 0.3s;
}

.footer .box .social-links a:hover {
  color: #ff5722; /* Vibrant orange */
}

.footer .credit {
  margin-top: 3rem;
  font-size: 1.6rem;
  color: #ccc;
  border-top: 1px solid #444;
  padding-top: 2rem;
}

.footer .credit span {
  color: #ff5722; /* Vibrant orange */
}

/* media queries */

@media (max-width:1200px) {

 html{
  font-size: 55%;
 }
}

@media (max-width:991px) {
 header{
  padding: 2rem;
 }
 section{
  padding: 2rem;
 }
}

@media (max-width: 768px) {
  #menu-bar {
    display: initial; /* Show the menu icon */
  }

  header .navbar {
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    right: 0;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2); /* Add a subtle border */
    padding: 1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Initially hide the navbar */
    transition: clip-path 0.3s ease; /* Smooth transition for clip-path */
    z-index: 999; /* Ensure navbar is above other content */
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Show the navbar */
  }

  header .navbar a {
    display: block;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #fff; /* Background color for links */
    color: #000; /* Text color for links */
    text-align: center; /* Center-align text */
    transition: background 0.3s ease, color 0.3s ease; /* Smooth transition */
  }

  header .navbar a:hover {
    background: var(--orange); /* Hover background color */
    color: #fff; /* Hover text color */
  }
}

@media (max-width:450px) {

 html{
  font-size: 50%;
 }

 .heading span {
  font-size: 2.5rem;
 }

 .contact .row form .inputBox input {
   width: 100%;
 }
}









/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
}

/* Input Fields */
.modal input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit Button */
.modal button {
    background: orange;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.modal button:hover {
    background: darkorange;
}











































































