@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;
}
body {
  overflow-x: hidden;
}
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: #2597f4;
  border-radius: 5rem;
}

section {
  padding: 5rem 10%;
}

  
/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    transition: background 0.3s;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(122, 121, 121, 0.8); /* Dark background when scrolling */
}

.navbar .logo img {
    height: 60px;
    width: 60px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-right: 100px;
}

.navbar .nav-links li {
    display: inline-block;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    transition: color 0.3s;
}

.navbar .nav-links li a:hover {
    color: #ffcc00;
}

.navbar #menu-btn {
  font-size: 3rem;
  cursor: pointer;
  color: #a79f9f;
  display: none;
}

/* Homepage Section */
.homepage {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5f5f5;
    background-image: url('images/home.jpg');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.homepage h2{
    position: relative;
    z-index: 2;
    font-size: 5rem;
    padding-bottom: 20px;
    margin: 0px 200px;
    margin-top: 40px;
}
.homepage p {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    margin: 0px 150px;
}
.call-btn{
    background-color: blue;
    display: inline-block;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    padding: 20px 30px;
    font-weight: bold;
    font-size: 2.5rem;
    margin-top: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 2;
}
.call-btn:hover{
    background-color: #026ee2;
    color: white;
}

/* Services Section */
.services {
  padding: 50px 10%;
  text-align: center;
  background-color: white;
}

.services h1 {
 
  font-size: 4rem;
  color: #333;
}

.services .subheadline {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.service-box h3 {
  font-size: 3rem;
  margin: 15px 0;
  color: #333;
}

.service-box p {
  font-size: 2rem;
  color: #333;
}

.service-button {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  padding: 12px 20px;
  font-size: 2rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 30px;
}

.service-button:hover {
  background: #026ee2;
}


#why-choose-us {
  padding: 80px 10%;
  background: #f9f9f9;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.why-text {
  max-width: 50%;
}

.why-text h3 {
  color: #1a9d5d;
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-text p {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature i {
  font-size: 28px;
  color: #1a9d5d;
  background: #e8f5e9;
  padding: 15px;
  border-radius: 50%;
}

.feature h4 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature p {
  font-size: 1.5;
  color: #333;
  margin: 0;
}

.why-image {
  display: block;
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.why-image img {
  width: 100%;
  border-radius: 10px;
}

.storage-info {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1a9d5d;
  color: #fff;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .why-image {
    display: none;
  }

  .why-container {
    flex-direction: column;
    text-align: left;
  }

  .why-text {
    max-width: 100%;
  }

  .why-features {
    grid-template-columns: 1fr; 
  }

  .feature {
    text-align: left;
  }
}


.footer {
  background:  #041525;
 ;
}

.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.5rem;
  text-transform: capitalize;
  color: #f5f5f5;
  padding: 1rem 0;
}

.footer .box-container .box .link {
  display: block;
  padding: .5rem 0;
  font-size: 1.8rem;
  line-height: 2;
  color: #f5f5f5;
}

.footer .box-container .box .link i {
  padding-right: .5rem;
  color: #2597f4;
}

.footer .box-container .box .link:hover {
  color: #2597f4;
}

.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: #777;
}

.footer .box-container .box p span {
  color: #2597f4;
}

.footer .box-container .box .email {
  width: 100%;
  border: 0.2rem solid #334;
  padding: 1.6rem 1.4rem;
  font-size: 1.6rem;
  color: #777;
  margin: 1rem 0;
}

.footer .box-container .box .share {
  margin-top: 2rem;
}

.footer .box-container .box .share a {
  height: 5rem;
  width: 5rem;
  line-height: 4.5rem;
  font-size: 3rem;
  background: none;
  color: #e0b0b0;
  margin-right: .3rem;
  text-align: center;
}



.footer .credit {
  font-size: 2rem;
  text-transform: capitalize;
  color: #334;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.2rem solid #334;
  text-align: center;
}

.footer .credit span {
  color: #2597f4;
}



@media (max-width: 1200px) {
  .header .contact-info {
    padding: 2rem 5%;
  }
  .navbar {
    padding: 2rem 5%;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header .contact-info {
    padding: 2rem;
  }
  .navbar {
    padding: 2rem;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .header .contact-info {
    display: none;
  }
  .navbar #menu-btn {
    display: inline-block;
  }
  .navbar #menu-btn.fa-times {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .navbar .nav-links {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #111;
    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);
    display: flex; 
    flex-direction: row; 
    justify-content: flex-start;
  }
  .navbar .nav-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%);
    flex-direction: column; 
  }
  .navbar .nav-links a {
    display: block;
    margin: 1rem 1rem;
    padding: 0rem;
    font-size: 2rem;
  }
  .fun-fact {
    padding: 1rem 1rem;
  }
  .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%;
    }
    .homepage  h2 {
      font-size: 4rem;
      margin: 0px;
      margin-top: 120px;
    }
    .homepage  p {
        font-size: 2.5rem;
        margin: 0px;
      }
      .call-btn{
        font-size: 2.5rem;
        margin-top: 20px;
        padding: 10px 15px;
      }
    .contact .row form .inputBox input {
      width: 100%;
    }
    .heading {
      font-size: 3rem;
    }
  }







  /* About Us Section */
  body{
    background-color: #e5ecf5;

  }
#about-us {
  padding: 50px 10%;
  background-color: white;
  text-align: center;
}

.about-us-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-us-image {
  flex: 1;
  max-width: 500px;
}

.about-us-image img {
  width: 100%;
  
  border-radius: 10px;
}

.about-us-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.about-us-content h2 {
  font-size: 4rem;
  color: #111;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 2rem;
  color: #111;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
}

.service-button:hover {
  background-color: #026ee2;
}

/* Statistics Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  background: #d2e1f0;
  padding: 80px 10%;
  text-align: center;
  flex-wrap: wrap;
  margin: 100px 0px;
}

.stat-box {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.stat-box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #007bff;
}

.stat-box p {
  font-size: 2rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us-container,
  .stats {
      flex-direction: column;
      text-align: center;
  }

  .about-us-image {
      max-width: 100%;
  }

  .stat-box {
      max-width: 100%;
  }
}


/* Contact Section */
.contact {
  padding: 50px 0;
  text-align: center;
  background: white;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.container h1{
  font-size: 3rem;
}
.container p{
  font-size: 1.5rem;
  color: #222;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.contact-form, .contact-info {
  flex: 1;
  padding: 20px;
}

.contact-form h3, .map-container h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.input-box {
  margin-bottom: 15px;
}

.input-box input, .input-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-btn {
  background: #007bff;
  color: white;
  font-size: 1.5rem;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.submit-btn:hover {
  background: #026ee2;
}

/* Map Section */
.map-container {
  margin-top: 30px;
}

.map-container h3 {
  margin-bottom: 10px;
}



