/* 
   Premium-Themed CSS
   - Dark background for sophistication (#10192d)
   - Gold (#CDA968) for accent
   - Light text (#f8f9fa) for contrast
*/

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

/* Global Resets and Typography */
* {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

body {
  background-color: #10192d; 
  color: #f8f9fa;            
}

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

/* Scrollbar */
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #2a2f3a;
}
html::-webkit-scrollbar-thumb {
  background: #CDA968; 
  border-radius: 5rem;
}

/* Section spacing */
section {
  padding: 5rem 10%;
}

/* Headings */
.heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.6rem; 
  text-transform: capitalize;
  color: #f8f9fa;
}
.heading span {
  color: #CDA968; 
}

/* Reusable Button */
.btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 1rem 3rem;
  cursor: pointer;
  background: #CDA968;      
  font-size: 1.6rem; 
  text-transform: capitalize;
  color: #10192d;
  border: 0.2rem solid #CDA968;
}
.btn:hover {
  background: #f8f9fa;     
  color: #CDA968;          
  border-color: #f8f9fa;
}

/* Header - Optional Contact Info */
.header .contact-info {
  padding: 2rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #CDA968;
}
.header .contact-info p {
  font-size: 1.5rem;
  color: #10192d;
}
.header .contact-info p i {
  padding-right: .5rem;
  color: #ffeb3b;
}

/* Header - Navbar */
.header .navbar {
  padding: 2rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a2236;
  border-bottom: 0.2rem solid #CDA968;
  position: relative;
  z-index: 1000;
}
.header .navbar .logo {
  font-size: 2.4rem;
  text-transform: capitalize;
  color: #CDA968;
  font-weight: 600;
}
.header .navbar .links a {
  margin-left: 2rem;
  font-size: 1.9rem;
  color: #f8f9fa;
}
.header .navbar .links a:hover {
  text-decoration: underline;
  color: #CDA968;
}
.header #menu-btn {
  font-size: 2.6rem;
  cursor: pointer;
  color: #f8f9fa;
  display: none; 
}
.header .navbar .links.active {
  display: block !important;
}

/* Home Section */
.home {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.home .image {
  flex: 1 1 42rem;
}
.home .image img {
  width: 100%;
}
.home .content {
  flex: 1 1 42rem;
}
.home .content h3 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.home .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #d3d3d3;
  padding: 1rem 0;
}

/* Fun Fact Section */
.fun-fact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  background: #141a2f;
  padding: 5rem 10%;
}
.fun-fact .box {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.fun-fact .box img {
  height: 8rem;
}
.fun-fact .box h3 {
  font-size: 3rem;
  margin-bottom: 0.3rem;
}
.fun-fact .box p {
  font-size: 1.4rem;
  line-height: 2;
  color: #ccc;
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 3rem;
}
.about .image {
  flex: 1 1 42rem;
}
.about .image img {
  width: 100%;
}
.about .content {
  flex: 1 1 42rem;
}
.about .content h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.about .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #ccc;
  padding-bottom: 1rem;
}

/* Services */
.services .box-container a.box {
  display: block;
  color: inherit;       /* Inherit text color */
  text-decoration: none; /* Remove underline from links */
}

.services {
  background: #10192d;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2.5rem;
}
.services .box-container .box {
  background: #1a2236;
  border: 0.2rem solid #CDA968;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  padding: 3rem 2rem;
  text-align: left; 
}
.services .box-container .box img {
  display: block;
  margin: 0 auto 1rem auto;
  height: 16rem; 
}
.services .box-container .box h3 {
  font-size: 2rem;
  color: #CDA968;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.services .box-container .box p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #d3d3d3;
  margin-bottom: 1.5rem;
}

/* Hover effect for each service box */
.services .box-container .box:hover {
  background: #CDA968;
  transform: translateY(-2px);
}
.services .box-container .box:hover h3 {
  color: #10192d;
}
.services .box-container .box:hover p,
.services .box-container .box:hover li {
  color: #10192d;
}

/* Offer-List Styling for All Service Boxes */
.services .box-container .box ul.offer-list {
  margin-left: 1.5rem;
  background: #242f47;
  border-radius: 0.5rem;
  padding: 2rem;
  list-style: none;
}
.services .box-container .box ul.offer-list > li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: #f8f9fa;
  font-weight: 500;
  line-height: 1.6;
}
.services .box-container .box ul.offer-list > li::before {
  content: "\f054"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #CDA968;
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 1.2rem;
}
.services .box-container .box ul.offer-list ul {
  margin-top: 0.8rem;
  margin-left: 1.5rem;
}
.services .box-container .box ul.offer-list ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e1e1e1;
}
.services .box-container .box ul.offer-list ul li::before {
  content: "\f105"; /* Font Awesome angle-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #CDA968;
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.1rem;
}
.services .box-container .box ul.offer-list li strong {
  color: #CDA968;
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* Contact */
.contact .heading {
  margin-bottom: 4rem;
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row .map {
  flex: 1 1 42rem;
  width: 100%;
  border: 0.2rem solid #CDA968;
}
.contact .row form {
  flex: 1 1 42rem;
  padding: 2rem;
  border: 0.2rem solid #CDA968;
  background: #1a2236;
}
.contact .row form h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact .row form .inputBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact .row form .inputBox input {
  width: 48%;
}
.contact .row form .inputBox input,
.contact .row form textarea {
  padding: 1.2rem 1.4rem;
  font-size: 1.5rem;
  color: #ccc;
  margin: 0.7rem 0;
  border: 0.2rem solid #CDA968;
  background: #10192d;
}
.contact .row form .inputBox input:focus,
.contact .row form textarea:focus {
  background: #CDA968;
  color: #10192d;
}
.contact .row form .inputBox input:focus::placeholder,
.contact .row form textarea:focus::placeholder {
  color: #10192d;
}
.contact .row form textarea {
  width: 100%;
  height: 14rem;
  resize: none;
}

/* Footer */
.footer {
  background: #141a2f;
}
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.footer .box-container .box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.footer .box-container .box .link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #ccc;
}
.footer .box-container .box .link i {
  padding-right: 0.5rem;
  color: #CDA968;
}
.footer .box-container .box .link:hover {
  color: #f8f9fa;
}
.footer .box-container .box .link:hover i {
  padding-right: 2rem;
}
.footer .box-container .box p {
  padding: 0.5rem 0;
  font-size: 1.4rem;
  line-height: 2;
  color: #ccc;
}
.footer .box-container .box .email {
  width: 100%;
  border: 0.2rem solid #CDA968;
  padding: 1.4rem;
  font-size: 1.4rem;
  color: #ccc;
  background: #10192d;
  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: #CDA968;
  color: #10192d;
  margin-right: 0.3rem;
  text-align: center;
}
.footer .box-container .box .share a:hover {
  background: #10192d;
  color: #CDA968;
}
.footer .credit {
  font-size: 1.6rem;
  color: #f8f9fa;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.2rem solid #CDA968;
  text-align: center;
}
.footer .credit span {
  color: #CDA968;
}

/* Media Queries */
@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 {
    transform: rotate(180deg);
  }
  .header .navbar .links {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2236;
    border-top: 0.2rem solid #CDA968;
    border-bottom: 0.2rem solid #CDA968;
    padding: 2rem;
  }
  .header .navbar .links a {
    display: block;
    margin: 1.5rem 0;
    font-size: 2rem;
    text-align: center;
  }
  .fun-fact .box {
    flex-flow: column;
    text-align: center;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .home .content h3 {
    font-size: 2.8rem;
  }
  .contact .row form .inputBox input {
    width: 100%;
  }
  .heading {
    font-size: 3rem;
  }
}
/* Make each service box clickable */
.services .box-container a.box {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #1a2236;
  border: 0.2rem solid #CDA968;
  padding: 3rem 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  transition: all 0.2s linear;
}

/* Hover effect for boxes */
.services .box-container a.box:hover {
  background: #CDA968;
  transform: translateY(-2px);
}
.services .box-container a.box:hover h3,
.services .box-container a.box:hover p,
.services .box-container a.box:hover .contact-label {
  color: #10192d;
}

/* Style for the Contact Us label replacing price */
.contact-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #CDA968;
  margin-bottom: 1rem;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
}

