/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Roboto:wght@400;500&display=swap');

/* --- Custom Variables --- */
:root {
    --primary-dark: #162F3B;
    --primary-green: #C1E462;
    --hero-bg-1: #cb997e;
    --hero-bg-2: #6b705c;
    --text-dark: #212529;
    --text-light: #fff;
    --text-muted: #6c757d;
}

/* --- Base Styles --- */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
section {
    padding: 80px 0;
    overflow: hidden;
}

/* --- Header & Navigation --- */
.top-bar {
    background-color: #162F3B;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.top-bar .contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.top-bar .contact-info a:hover { color: var(--primary-green); }
.top-bar .contact-info i { color: var(--primary-green); margin-right: 5px; }

.navbar {
    background-color: transparent !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 0.5rem 1rem;
}
.navbar-brand img { max-height: 50px; }
.navbar-nav .nav-link { color: #555; font-weight: 500; padding: 1rem; }
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover { color: var(--primary-green); }

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background: var(--primary-dark);
    z-index: 1;
}

.hero-image-card {
    background: white; padding: 1.5rem; border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); transform: rotate(-5deg);
}
.hero-content h1 {
    font-size: 3.5rem; font-weight: 900; color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-content p { color: #f0f0f0; font-size: 1.1rem; margin: 1.5rem 0; }
.btn-get-started {
    background-color: var(--primary-green); color: var(--primary-dark); font-weight: bold;
    padding: 12px 30px; border-radius: 50px; transition: all 0.3s ease; border: none;
}
.btn-get-started:hover { background-color: #97bf34; transform: translateY(-2px); }
.background-text {
    position: absolute; bottom: 20px; right: 50px; font-size: 10rem; font-weight: 900;
    color: transparent; -webkit-text-stroke: 2px var(--primary-green);
    opacity: 0.4; z-index: -1; user-select: none;
}

/* --- Stats Section --- */
.stats-section { background-color: var(--primary-dark); color: var(--text-light); padding: 50px 0; }
.stat-circle {
    width: 120px; height: 120px; border: 5px solid var(--primary-green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.stat-circle .percentage { font-size: 2rem; font-weight: bold; }
.trusted-by p { font-size: 1.2rem; font-weight: 500; }

/* --- Section Title (Shared Style) --- */
.section-title { position: relative; margin-bottom: 2rem; }
.section-title .title-bg {
    font-size: 5rem; color: var(--primary-green); opacity: 1;
    font-weight: 900; line-height: 1; user-select: none;
}
.section-title .title-bg.light { opacity: 0.2; }
.section-title .title-fg {
     bottom: -35px; left: 0; font-size: 2.75rem;
    color: var(--primary-dark); font-weight: 800;
}

/* --- Service Section --- */
.service-list ul { list-style: none; padding-left: 0; }
.service-list li { margin-bottom: 1rem; font-size: 1.1rem; }
.service-list li i { color: var(--primary-green); margin-right: 10px; font-weight: bold; }
.service-image-container img { border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- Why Us Section --- */
.why-us-section { background-color: var(--primary-dark); }
.why-us-image-card { background: white; padding: 1rem; border-radius: 10px; }
.why-us-list { list-style: none; padding-left: 0; margin-top: 2rem; }
.why-us-list li { display: flex; align-items: flex-start; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.why-us-list li:last-child { border-bottom: none; }
.why-us-list .icon-box {
    font-size: 1.8rem; color: var(--primary-green); margin-right: 20px;
    width: 60px; height: 60px; display: grid; place-items: center;
}
.why-us-list .text-box h4 { color: var(--text-light); font-size: 1.3rem; margin-bottom: 0.3rem; }
.why-us-list .text-box p { color: #ccc; margin-bottom: 0; font-size: 0.9rem; font-family: 'Roboto', sans-serif; font-weight: 400; }

/* --- Categories Section --- */
.categories-section { background-color: #fff; }
.section-heading { color: var(--primary-dark); font-weight: 900; margin-bottom: 50px; }
.category-card {
    background: #f8f9fa; border-radius: 10px; padding: 15px; text-align: center;
    border: 1px solid #eee; transition: all 0.3s ease;
}
.category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.category-card img { max-width: 100%; height: 180px; object-fit: contain; margin-bottom: 15px; }
.category-card p { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0; color: var(--primary-dark); }
.swiper-button-next, .swiper-button-prev {
    background-color: var(--primary-dark); color: var(--text-light) !important;
    width: 44px; height: 44px; border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px !important; font-weight: bold; }

/* --- Footer --- */
.footer-section { background-color: var(--primary-dark); color: var(--text-light); padding-top: 80px; }
.footer-logo { max-height: 50px; }
.footer-section h4 { color: var(--text-light); }
.footer-section h5 { color: var(--text-light); margin-bottom: 1.5rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #adb5bd; text-decoration: none; transition: all 0.3s; }
.footer-links a:hover { color: var(--primary-green); padding-left: 5px; }
.contact-details i { color: var(--primary-green); margin-right: 15px; width: 20px; text-align: center; }
.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255,255,255,0.1);
    color: var(--text-light); text-decoration: none; margin-right: 10px; transition: all 0.3s;
}
.social-icons a:hover { background-color: var(--primary-green); color: var(--primary-dark); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #adb5bd;
}

.parallax {
  position: relative;
  height: 30vh;
  background-image: url('images/parallax.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay h1 {
  font-size: 3rem !important;
  margin:0;
}



/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .hero-content { margin-top: 4rem; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-image-card { transform: rotate(0); margin: 0 auto 2rem; max-width: 300px; }
    .background-text { font-size: 6rem; bottom: 10px; right: 10px; }
    .section-title .title-bg { font-size: 4rem; }
    .section-title .title-fg { font-size: 2.2rem; bottom: 10px; }
    .why-us-image-card, .service-image-container { margin-bottom: 3rem; }
    .trusted-by { text-align: center; margin-top: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 767.98px) {
    .overlay h1 {
  font-size: 1.2rem !important;
  margin:0;
}
    section { padding: 60px 0; }
    .hero-content h1 { font-size: 1.8rem; margin-top:-20px; }
    .stat-circle { margin-bottom: 2rem; }
    .hero-image-card { display:none; }
    .section-title .title-fg { font-size: 1.8rem; position: relative; bottom: auto; left: auto; display: block; }
    .section-title .title-bg { display: block; font-size: 40px;}
    .hero-section::before, .hero-section::after { display: none; }
    .hero-section { background: var(--primary-dark); }
    .swiper-button-next, .swiper-button-prev { display: none; }
     .stats-section { background-color: var(--primary-dark); color: var(--text-light); padding: 50px 0; }
.stat-circle {
    width: 100px; height: 100px; border: 5px solid var(--primary-green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.stat-circle .percentage { font-size: 1.5rem; font-weight: bold; }
}
.background-text1 {
   font-size: 7rem; font-weight: 900;
    color: transparent; -webkit-text-stroke: 2px var(--primary-green);
    opacity: 0.4; z-index: -1; user-select: none;
    text-align: center;
}


}