@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --main-color: #007B4A;        /* Changed from #004D5E to green */
  --black: #111;
  --white: #f9f9f9;
  --light-black: #555;
  --light-white: rgba(249, 249, 249, 0.85);
  --dark-bg: rgba(0, 0, 0, 0.85);
  --light-bg: #f1f1f1;
  --border: 0.3rem solid var(--main-color);
  --box-shadow: 0 1rem 2rem rgba(0, 123, 74, 0.3); /* shadow in green tone */
  --text-shadow: 0 0.3rem 0.8rem rgba(0, 123, 74, 0.3);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  height: 100%;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background-color: var(--main-color);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8faf8; /* light greenish white */
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: hidden;
}

/* Section styling */
section {
  padding: 5rem 10%;
  background: var(--light-bg);
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

/* Heading section */
.heading {
  background-size: cover !important;
  background-position: center !important;
  height: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--main-color);
  color: var(--white);
  text-shadow: var(--text-shadow);
  border-radius: 1rem;
}

.heading h1 {
  font-size: 9rem;
  text-transform: uppercase;
  color: #000000;
  text-shadow: var(--text-shadow);
}

.heading h3 {
  font-size: 5.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--main-color);
  margin-top: 1rem;
  color: var(--white);
  font-size: 1.7rem;
  padding: 1.2rem 3rem;
  cursor: pointer;
  border-radius: 0.8rem;
  box-shadow: 0 0.6rem 1rem rgba(0, 123, 74, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700;
}

.btn:hover {
  background-color: #00582b; /* darker green */
  box-shadow: 0 0.8rem 1.2rem rgba(0, 88, 43, 0.5);
}

/* Heading title */
.heading-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: var(--main-color);
  letter-spacing: 0.2rem;
}

/* Header styling */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  display: flex;
  padding: 2rem 4rem;
  box-shadow: var(--box-shadow);
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.2rem solid var(--main-color);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--main-color);
  font-weight: 900;
  letter-spacing: 0.2rem;
}

.header .logo-img {
  height: 70px;
  vertical-align: middle;
  margin-right: 10px;
}


.header .navbar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  overflow-x: auto;              /* Enable horizontal scroll */
  white-space: nowrap;           /* Prevent wrapping */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none;         /* Hide scrollbar for Firefox */
}

.header .navbar::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.header .navbar a,
.header .navbar .dropbtn {
  font-size: 2rem;
  color: var(--black);
  font-weight: 600;
  transition: color 0.3s ease;
  background: none;
  cursor: pointer;
  border: none;
  flex-shrink: 0; /* Prevent items from shrinking */
}

.header .navbar a:hover,
.header .navbar .dropbtn:hover {
  color: var(--main-color);
}

.header .navbar .dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Prevent shrinking in scroll */
}

.header .navbar .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 18rem;
  background-color: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 123, 74, 0.2);
  border-radius: 0.5rem;
  z-index: 1001;
}

.header .navbar .dropdown:hover .dropdown-content {
  display: block;
}

.header .navbar .dropdown-content a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  color: var(--black);
  background-color: var(--white);
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header .navbar .dropdown-content a:hover {
  background-color: var(--main-color);
  color: var(--white);
}

/* === Swiper Section Fixes === */

.home {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
}

.home-slider {
  height: 100%;
}

.swiper-wrapper {
  height: 100%;
}

.home .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.home .slide .content {
  width: 90%;
  max-width: 85rem;
  display: none;
  color: var(--black);
}

.home .swiper-slide-active .content {
  display: inline-block;
}

.home .slide .content span {
  display: block;
  font-size: 2.2rem;
  color: #d1f7d1;  /* soft green text */
  padding-bottom: 1rem;
  font-weight: 700;
  animation: fadeIn 0.3s linear backwards 0.2s;
}

.home .slide .content h3 {
  font-size: 3vw;
  color: #FFFFFF; /* soft green */
  text-transform: uppercase;
  line-height: 1;
  padding: 1rem 0;
  animation: fadeIn 0.3s linear backwards 0.4s;
  font-weight: 900;
}

.home .slide .content .btn {
  animation: fadeIn 0.3s linear backwards 0.6s;
}

/* Swiper buttons */
.home .swiper-button-next,
.home .swiper-button-prev {
  bottom: 0;
  right: 0;
  height: 7rem;
  width: 7rem;
  background: var(--main-color);
  color: var(--white);
  box-shadow: var(--box-shadow);
  transition: background-color 0.3s ease;
}

.home .swiper-button-prev {
  right: 7rem;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: #00582b; /* darker green */
  color: var(--white);
}

.home .swiper-button-next:after,
.home .swiper-button-prev:after {
  font-size: 2rem;
}

/* Services box grid styling */
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: var(--box-shadow);
}

.services .box-container .box {
  background-color: var(--light-bg);
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 123, 74, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--black);
}

.services .box-container .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(0, 123, 74, 0.15);
}

.services .box-container .box img {
  height: 80px;
  margin-bottom: 1rem;
}

.services .box-container .box h3 {
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 700;
}

/* About section */
.home-about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: var(--light-bg);
}

.home-about .image {
  flex: 1 1 41rem;
}

.home-about .image img {
  width: 100%;
}

.home-about .content {
  flex: 1 1 41rem;
  padding: 3rem;
  background: var(--light-bg);
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  color: var(--black);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.home-about h3 {
  font-size: 3rem;
  color: var(--black);
}

.home-about .content p {
  font-size: 1.5rem;
  padding: 1rem 0;
  line-height: 2;
  color: var(--black);
}

/* Home packages */
.home-packages {
  background: var(--light-bg);
}

.home-packages .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.home-packages .box-container .box {
  border: var(--border);
  box-shadow: var(--box-shadow);
  background: var(--white);
}

.home-packages .box-container .box .image {
  height: 25rem;
  overflow: hidden;
}

.home-packages .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 2s linear;
}

.home-packages .box-container .box .content {
  padding: 2rem;
  text-align: center;
}

.home-packages .box-container .box .content h3 {
  font-size: 2.5rem;
  color: var(--black);
}

.home-packages .box-container .box .content p {
  font-size: 1.5rem;
  color: var(--light-black);
  line-height: 2;
  padding: 1rem 0;
}

.home-packages .load-more {
  text-align: center;
  margin-top: 2rem;
}

/* About Section Modern Styling */
.about {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 2rem auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

/* Left Column: Images Vertical Stack */
.image-vertical {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.image-vertical img {
  width: 100%;
  flex-grow: 1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* Right Column: Content */
.about .content {
  flex: 1 1 40rem;
  text-align: left;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  background-color: transparent;
}

.about .content h3 {
  font-size: 3.5rem;
  color: var(--main-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about .content p {
  font-size: 1.8rem;
  color: #222;
  line-height: 2.8rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.about .content h5 {
  font-size: 2rem;
  color: var(--main-color);
  margin-top: 3rem;
  font-weight: 600;
}

.about .btn {
  display: block;
  margin: 2rem 0;
  width: fit-content;
  padding: 0.8rem 2rem;
  font-weight: bold;
  background-color: var(--main-color);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about .btn:hover {
  background-color: #00582b;
}

.about i {
  color: #00582b;
  font-size: 3rem;
  margin-bottom: 1rem;
}


/* Footer */
.footer {
  background-color: var(--main-color);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.footer .box-container .box h3 {
  color: var(--white);
  font-size: 2.5rem;
  padding-bottom: 2rem;
}

.footer .box-container .box a {
  display: flex;
  align-items: center;
  color: #d9f0d9;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}


.credit{ width:100%; background-color:#2c2f33; color:#ffffff; text-align:center; padding:1rem 0; font-size:1.4rem; margin-top:0; }




 /* Responsive styles */ 
 @media (max-width: 768px) { 
 .about { flex-direction: column; gap: 4rem; } 
 .about .content { padding: 1rem; } } /*media queries*/ @media(max-width:1200px){ section{ padding:3rem 5%; } } @media(max-width:991px){ html{ font-size:55%; } section{ padding:3rem 2rem; } .home .slide .content h3{ font-size:6vw; } } @media(max-width:768px){ #menu-btn{ display:inline-block; transition:.2s linear; } #menu-btn.fa-times{ transform:rotate(180deg); } .header .navbar { position:absolute; top:99%; left:0; right:0; background-color:var(--white); border-top:var(--border); padding:2rem; transition:.2s linear; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); } .header .navbar.active{ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); } .header .navbar a{ display:block; margin:2rem; text-align:center; } } @media(max-width:450px){ html{ font-size:50%; } } .heading-title{ font-size:3.5rem; } }