
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {


  /**
   * colors---Footer
   */

   --light-steel-blue: hsl(218, 33%, 77%);
   --royal-blue-light: #059246;
   --flickr-blue_30: hsla(225, 68%, 53%, 0.3);
   --carolina-blue: #0a99e6;
   --oxford-blue-1: hsl(218, 70%, 18%);
   --oxford-blue-2: hsl(217, 100%, 12%);
   --oxford-blue-3: hsl(218, 71%, 11%);
   --gainsboro_50: hsla(0, 0%, 85%, 0.5);
   --lavender-web: hsl(225, 67%, 91%);
   --sonic-silver: hsl(0, 0%, 47%);
   --light-gray: hsl(0, 0%, 84%);
   --cultured: hsl(0, 0%, 97%);
   --black_10: hsla(0, 0%, 0%, 0.1);
   --black_8: hsla(0, 0%, 0%, 0.08);
   --white: hsl(0, 0%, 100%);
   --black: hsl(0, 0%, 0%);
   --jet: hsl(0, 0%, 20%);
   
 
   /**
    * gradient color---footer
    */
 
   --gradient: linear-gradient( 90deg, var(--jet) 0%, var(--royal-blue-light) 100%);
 
   /**
    * typography---footer
    */
 
   --ff-roboto: "Roboto", sans-serif;
   --ff-poppins: "Poppins", sans-serif;
 
   --fs-1: 4rem;
   --fs-2: 3.2rem;
   --fs-3: 3.2rem;
   --fs-4: 2.4rem;
   --fs-5: 2.2rem;
   --fs-6: 1.8rem;
   --fs-7: 1.6rem;
 
   --fw-800: 800;
   --fw-700: 700;
   --fw-600: 600;
   --fw-500: 500;
 
   /**
    * spacing---footer
    */
 
   --section-padding: 120px;
 
   /**
    * shadow---footer
    */
 
   --shadow-1: 4px 4px 15px var(--black_10);
   --shadow-2: 0 10px 15px var(--black_10);
   --shadow-3: 0px 20px 60px var(--black_8);
   --shadow-4: 0px 10px 30px var(--flickr-blue_30);
   --shadow-5: 0px 2px 60px 0px var(--black_10);
 
   /**
    * border radius---footer
    */
 
   --radius-6: 6px;
   --radius-4: 4px;
 
   /**
    * transition---footer
    */
 
   --transition: 0.25s ease;
   --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
 
 

  /**
   * COLORS --- ALL PAGES
   */

  --gold-crayola: hsl(0, 0%, 100%);
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top,hsla(0, 0%, 0%, 0.9),hsla(0, 0%, 0%, 0.7),transparent);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'DM Sans', sans-serif;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0.15em;
  --letterSpacing-2: 0.4em;
  --letterSpacing-3: 0.2em;
  --letterSpacing-4: 0.3em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;

  /**
   * SHADOW
   */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
   * BORDER RADIUS
   */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}




/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

address { font-style: normal; }

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  height: 100vh;
}

body.loaded { overflow: overlay; }

body.nav-active { overflow: hidden; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color:#ffffff; }

::-webkit-scrollbar-thumb { background-color: #bbd6b8; }





/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/


.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  color: #e4000b;
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 { font-size: var(--fontSize-headline-1); }

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 { font-size: var(--fontSize-title-1); }

.title-2 { font-size: var(--fontSize-title-2); }

.title-3 { font-size: var(--fontSize-title-3); }

.title-4 { font-size: var(--fontSize-title-4); }

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 { font-size: var(--fontSize-body-3); }

.body-4 { font-size: var(--fontSize-body-4); }

.label-1 { font-size: var(--fontSize-label-1); }

.label-2 { font-size: var(--fontSize-label-2); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid #059246;
  transform: rotate(45deg);
}

.contact-label { font-weight: var(--weight-bold); }

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--royal-blue-light);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after { bottom: -5px; }

.text-center { text-align: center; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}



.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  background-color: #e4000b;
  border: 2px solid #e4000b;
  border-radius: 5px;
  padding: 12px 25px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text { transition: var(--transition-1); }

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: #e4000b;
}

.btn:is(:hover, :focus-visible)::before { bottom: -50%; }

.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: #e4000b;
}

.btn-secondary::before { background-color: #e4000b; }

.btn-secondary .text-2 { color: var(--white); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 { background-color: var(--smoky-black-2); }

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) { color: var(--white); }


.w-100 { width: 100%; }

.move-anim { animation: move 5s linear infinite; }

@keyframes move {
  0%,
  100% { transform: translateY(0); }

  50% { transform: translateY(30px); }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder { color: inherit; }

.input-field:focus { border-color: var(--gold-crayola); }

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child { left: 15px; }

.icon-wrapper ion-icon:last-child { right: 10px; }

.card-banner {
  border-radius: 8px;
}




/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gold-crayola);
  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload > * { transition: var(--transition-1); }

.preload.loaded > * { opacity: 0; }

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}

.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}

.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% { background-position: 100%; }
  100% { background-position: 0%; }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding-block: 20px;
  z-index: 4;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
}

.header.active {
  padding-block: 20px;
  background-color: #ffffff;
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: #059246;
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.5); }
}

.nav-open-btn .line-2 { animation-delay: 150ms; }

.nav-open-btn .line-3 { animation-delay: 300ms; }

.navbar {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 2;
  transition: var(--transition-2);
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .close-btn {
  color: #059246;
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 30px 20px;
}

.navbar .close-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar .close-btn:is(:hover, :focus-visible) { color: #ac1313; }

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}

.navbar-list {
  border-block-end: 1px solid var(--white-alpha-20);
  margin-block-end: 100px;
}

.navbar-item { border-block-start: 1px solid #059246; }

.navbar-link {
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
  color: #059246;
}

.navbar-link::after { display: none; }

.navbar-link .span { transition: var(--transition-1); }

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: #059246;
  transform: translateX(20px);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator { opacity: 1; }

.navbar-title { margin-block-end: 15px; }

.navbar-text { margin-block: 10px; }

.navbar .body-4 { color: var(--quick-silver); }

.sidebar-link { transition: var(--transition-1); }

.sidebar-link:is(:hover, :focus-visible) { color: var(--gold-crayola); }

.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label { margin-block-end: 10px; }

.navbar::-webkit-scrollbar-thumb { background-color: var(--white-alpha-10); }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black-alpha-80);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}



.navbar-link {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}





/* Align "About Us" and Icon */
.navbar-link {
display: flex; /* Use Flexbox for alignment */
align-items: center; /* Vertically center items */
gap: 8px; /* Space between text and icon */
}

/* Dropdown Icon */
.dropdown-icon {
font-size: 14px; /* Adjust icon size */
transition: transform 0.3s ease; /* Smooth rotation */
}

/* Rotate Icon on Hover */
.navbar-item.dropdown:hover .dropdown-icon {
transform: rotate(180deg); /* Rotate icon when dropdown is open */
}

/* Align "About Us" and Icon */
.navbar-link {
display: flex; /* Use Flexbox for alignment */
align-items: center; /* Vertically center items */
gap: 8px; /* Space between text and icon */
}

/* Dropdown Icon */
.dropdown-icon {
font-size: 14px; /* Adjust icon size */
transition: transform 0.3s ease; /* Smooth rotation */
}

/* Rotate Icon on Hover */
.navbar-item.dropdown:hover .dropdown-icon {
transform: rotate(180deg); /* Rotate icon when dropdown is open */
}


.navbar-item.dropdown {
  position: relative; /* Ensures the dropdown is positioned relative to this container */
}


.dropdown-menu {
position: absolute;
top: 160%; /* Position below the parent */
left: 0; /* Center horizontally */
transform: translateX(-20%); /* Adjust for centering */
background-color: #ffffff;
border: 1px solid var(--black-alpha-15);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: var(--transition-1);
z-index: 5;
padding: 10px 0;
min-width: 200px;
}

/* Add lines below dropdown items */
.dropdown-item {
display: block;
width: 100%;
padding: 0;
border-bottom: 1px solid var(--black-alpha-15); /* Add a line below each item */
}



.dropdown-link.active {
  background-color: #059246; /* Green background for active item */
  color: white; /* White text for active item */
}


/* Remove the line from the last item */
.dropdown-item:last-child {
border-bottom: none; /* No line below the last item */
}

.dropdown-link {
color: #059246;
display: block;
padding: 8px 20px;
width: 100%;
font-size: var(--fontSize-label-2);
text-transform: uppercase;
transition: background-color 0.3s ease, color 0.3s ease;
}


.dropdown-link:hover {
  background-color: #059246;
  color: #ffffff;
}




/* Show Dropdown on Hover (Large Screens) */
@media (min-width: 992px) {
.navbar-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
}

/* Show Dropdown on Click (Small Screens) */
@media (max-width: 991px) {
.dropdown-menu {
  display: none; /* Hide dropdown by default on small screens */
}

.navbar-link {
  display: flex; /* Use Flexbox for alignment */
  align-items: center; /* Vertically center items */
  gap: 29px; /* Space between text and icon */
}

.dropdown-menu.active {
  display: block; /* Show dropdown when active */
  position: static; /* Reset positioning */
  transform: none; /* Reset transform */
  opacity: 1;
  visibility: visible;
  box-shadow: none; /* Remove shadow for small screens */
  border: none; /* Remove border for small screens */
}
}

/* Adjust Separator for Dropdown Links */
.dropdown-link .separator {
display: none; /* Hide separator for dropdown links */
}



@media (min-width: 992px) {
.navbar-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
}

@media (max-width: 991px) {
.dropdown-menu {
  display: none; /* Hide dropdown by default on small screens */
}

.dropdown-menu.active {
  display: block; /* Show dropdown when active */
  position: static; /* Reset positioning */
  transform: none; /* Reset transform */
  opacity: 1;
  visibility: visible;
  box-shadow: none; /* Remove shadow for small screens */
  border: none; /* Remove border for small screens */
}
}





/*-----------------------------------*\
  #PRODUCTS..........PRODUCTS PAGE
\*-----------------------------------*/

.service .section-title { margin-block-end: 16px; }

.service .section-text { margin-block-end: 40px; }

.service-card { overflow: hidden; }



.service-card .has-before {
  padding-block: 30px;
  margin-block-end: 26px;
  z-index: 1;
}


.service .container {
  color: #222;
}



.product-subtitle {
  font-size: 3rem; /* Default size for large screens */
  margin-bottom: 1rem; /* Adjust the space between subtitle and next line */
}


@media screen and (max-width: 1024px) { 
  .product-subtitle {
    font-size: 1.3rem; /* Medium screens (Tablets) */
  }
}

@media screen and (max-width: 768px) { 
  .product-subtitle {
    font-size: 1.1rem; /* Smaller tablets and large phones */
  }
}

@media screen and (max-width: 480px) { 
  .product-subtitle {
    font-size: 1.5rem; /* Mobile screens */
  }
}








/*-----------------------------------*\
  #ABOUT.........ABOUT PAGE
\*-----------------------------------*/


.about{
  margin-top: 70px;
}


.about-content .label-2 {color: var(--smoky-black-1); }
.about-content .headline-1 {color: var(--smoky-black-1); }
.about-content .section-text {color: var(--smoky-black-1); }
.about-content .contact-label {color: var(--smoky-black-1); }
.about-content .text {color: var(--smoky-black-1); }
.about-content .body-1 {color: var(--smoky-black-1); }


.about .section-text { margin-block: 15px 30px; }

.about .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.about .container {
  display: grid;
  gap: 120px;
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner > .w-100 { padding-inline-start: 50px; }

.about .abs-img { position: absolute; }

.about .abs-img::before { z-index: -1; }

.about .abs-img-1 {
  bottom: -120px;
  left: 0;
  width: 150px;
  padding-block: 50px;
}

.about .abs-img-2 {
  top: -65px;
  right: 0;
  overflow: hidden;
}

.about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
  background-image: url('../images/badge-2-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
}

/* styling on the contact*/
:root {
  --primary-green: #059246;
  --dark-text: #222;
  --transition-speed: 0.3s ease-in-out;
}

.contact-number {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-text);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 5px; /* Space for the underline effect */
  transition: color var(--transition-speed);
}

.contact-number:hover {
  color: var(--primary-green);
}

.contact-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-green);
  transform: scaleX(0);
  transition: transform var(--transition-speed);
}

.contact-number:hover::after {
  transform: scaleX(1);
}




/*-----------------------------------*\
  #IMPACT.....ABOUT PAGE
\*-----------------------------------*/



.section .impact {
  margin-top: 3rem;
  
}

.impact-left img {
  width: 100%; /* Make image responsive */
  max-width: 500px; /* Limit image size */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: Add rounded corners */
}

.impact-right {
  color: #222;
}

.impact .impacts-container {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 5rem;
  margin-left: 20px;
}

.impact .impact-right > p {
  margin: 1.6rem 0 2.5rem;
}

.impacts-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.impact-card {
  background-color: #ffffff; /* White background */
  padding: 20px;
  border-radius: 10px; /* Soft rounded edges */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
  text-align: center; /* Centers text */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.impact-card:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15); /* More depth on hover */
}

.impact-icon {
  font-size: 40px; /* Larger icon */
  color: #059246; /* Matches theme */
  display: block;
  margin-bottom: 10px;
}

.impact-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000; /* Dark text for contrast */
}

.impact-card p {
  font-size: 16px;
  color: #555; /* Slightly gray text for readability */
}




.impact-card p {
  margin-top: 1rem;
}


/*-----------------------------------*\
  #OUR TEAM.............OUR TEAM PAGE
\*-----------------------------------*/



.wrapper {
  padding-top: 70px;
}

.wrapper h1 {
  font-size: 52px;
  margin-bottom: 60px;
  text-align: center;
}

.team {
  display: flex;
  justify-content: center;
  gap: 40px; /* Increased gap between cards */
  width: auto;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member {
  background: #fff;
  margin: 5px;
  margin-bottom: 80px; /* Increased bottom margin for more spacing */
  width: 550px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  border-radius: 12px;
}

.team .team_member h3 {
  color: #059246;
  font-size: 26px;
  margin-top: 50px;
}

.team .team_member p.role {
  color: #181818;
  margin: 12px 0;
  font-size: 15px;
  font-weight: var(--fw-700);
  text-align: center;
}

.team .team_member p {
  color: #181818;
  margin: 12px 0;
  font-size: 16px;
  text-align: left;
}

.team .team_member .team_img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Circular shape */
  overflow: hidden; /* Ensures the image stays within the circular boundary */
  background: #fff;
  border: 3px solid #059246; /* Optional: Add a green border */
}

.team .team_member .team_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the circular area */
}




/* Media query for screens between 960px and 1150px */
@media (min-width: 960px) and (max-width: 1150px) {
  .team {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 40px; /* Space between cards */
    max-width: 1100px; /* Limit the width for better alignment */
    margin: 0 auto; /* Center the grid */
    padding: 0 20px; /* Add padding to prevent touching edges */
  }

  .team .team_member {
    width: auto; /* Allow cards to take up equal space */
    margin-bottom: 40px; /* Reduce bottom margin for better alignment */
  }
}



/*-----------------------------------*\
  #OUR TEAM/IMPACT........MEDIA QUERIES
\*-----------------------------------*/


@media screen and (max-width: 400px) {
.impacts-cards {
  display: flex;
  flex-direction: column; /* Stack cards vertically */
  gap: 1.5rem; /* Space between cards */
  width: 100%; /* Full width */
  max-width: 400px; /* Limit maximum width for better readability */
  margin: 0 auto; /* Center the cards */
}
}


@media screen and (max-width: 1024px) {
  .section .impact {
    margin-top: 2rem;
  }

  .section .impacts-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .section .impact-left {
    width: 80%;
    margin: 0 auto;
  }

}




@media screen and (max-width: 600px) {
  .impacts__cards {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Keeps two columns */
    gap: 0.7rem;
  }

  
}


/* Base styles for our-impact section */
.our-impact {
  display: flex;
  flex-direction: column; /* Stack elements vertically on smaller screens */
  align-items: center; /* Center content horizontally */
  gap: 20px; /* Space between image and content */
  padding: 20px; /* Add padding for spacing */
}



/* Content container */
.impact-right {
  text-align: center; /* Center text on smaller screens */
}

/* Styles for larger screens (min-width: 768px) */
@media (min-width: 768px) {
  .our-impact {
    flex-direction: row; /* Side-by-side layout on larger screens */
    align-items: flex-start; /* Align items to the top */
    gap: 40px; /* Increase space between image and content */
  }

  .impact-left {
    flex: 1; /* Take up 50% of the available space */
    max-width: 500px; /* Limit image width */
    position: relative; /* Enable positioning */
    top: 40px; /* Move the image down by 40px */
  }

  .impact-right {
    flex: 2; /* Take up more space for content */
    text-align: left; /* Align text to the left */
  }
}






/*-----------------------------------*\
  #PRODUCTS/TEAM.CONTACT PAGE HERO
\*-----------------------------------*/

#slim-hero {
  background-image: url("../images/hero1.jpg");
  background-color: #059246;
  

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  display: flex;
  justify-content: center; /* Centers vertically */
  align-items: center; /* Centers horizontally */
  text-align: center;

  width: 100%;
  height: 250px;
  padding: 0; /* Remove unnecessary padding */
  z-index: 10;
}

#slim-hero h2 {
  color: #ffffff;
  font-size: var(--fontSize-headline-2);
  letter-spacing: 1px;
  padding-top: 70px;
}






/*-----------------------------------*\
  #WHY CHOOSE US/ OUR STRENGTH
\*-----------------------------------*/


.features .section-title { margin-block-end: 40px; }

.feature-card { padding: 30px 20px 40px;
border-radius: 8px; }

.feature-item .feature-card { 
  background-color: #f9f9f9; /* Soft off-white */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0; /* Light border for distinction */
}


.feature-card .card-icon {
  width: 60px; /* Increase size for a bigger circle */
  height: 60px; /* Increase size for a bigger circle */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #059246; /* Green background */
  border-radius: 50%; /* Perfectly round shape */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
  margin-inline: auto; /* Center horizontally */
}

.feature-card .card-icon ion-icon {
  font-size: 38px; /* Increase icon size */
  color: #fff; /* White icon color */
  font-weight: bold;
}


.feature-card .card-title { margin-block: 20px; }

.feature-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}





/*-----------------------------------*\
  #WHY CHOOSE US/ OUR STRENGTH
\*-----------------------------------*/


.mission-list {
  display: flex;
  justify-content: center;
  gap: 40px; /* Adds space between the cards */
  flex-wrap: wrap; /* Ensures cards wrap on smaller screens */
  padding: 0;
  list-style: none;
}

.mission-item {
  flex: 1 1 300px; /* Allows cards to grow and shrink, with a base width of 300px */

}


.mission .section-title { margin-block-end: 40px; }

.mission-card { padding: 30px 20px 40px;
border-radius: 8px; }

.mission-item .mission-card { 
  background-color: #f9f9f9; /* Soft off-white */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0; /* Light border for distinction */
}


.mission-card .card-icon {
  width: 60px; /* Increase size for a bigger circle */
  height: 60px; /* Increase size for a bigger circle */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #059246; /* Green background */
  border-radius: 50%; /* Perfectly round shape */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
  margin-inline: auto; /* Center horizontally */
}

.mission-card .card-icon ion-icon {
  font-size: 38px; /* Increase icon size */
  color: #fff; /* White icon color */
  font-weight: bold;
}




.mission-card .card-title { margin-block: 20px; }

.mission-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}








/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/

/*-----------------------------------*\
  #CONTACT SECTION
\*-----------------------------------*/

.contact {
  padding-top: 70px ;
  background-color: #ffffff;
  padding-block: 20px;
}

.contact-info {
  color: #063410;
  margin-left: 20px;

}

.map-container {
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;

}


/* Style the form container */
.contact-form {
  max-width: 500px; /* Limit form width */
  margin: 0 auto; /* Center the form */
  padding: 1rem;
}

/* Style the form heading */
.contact-form h3 {
  margin-bottom: 1rem;
  color: #063410; /* Dark text color */
}

/* Style the form elements */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Space between form elements */
}

/* Style labels */
.contact-form label {
 
  color: #063410; /* Medium gray text color */
}

/* Style inputs and textarea */
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 2px solid #059246; /* Green border */
  border-radius: 5px; /* Rounded corners */
  font-size: 1.6rem;
  outline: none; /* Remove default browser outline */
  transition: border-color 0.3s ease; /* Smooth transition */
}

/* Add focus effect to inputs and textarea */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #dc3545; /* Red border on focus */
}

/* Style the submit button */
.contact-form button {
  padding: 0.75rem;
  background-color: #059246; /* Green background */
  color: #fff; /* White text */
  border: 2px solid #059246; /* Green border */
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Add hover effect to the button */
.contact-form button:hover {
  background-color: #e4000b; /* Red background on hover */
  border-color: #e4000b; /* Red border on hover */
}








/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  color: #ffffff;
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.footer-brand {
  text-align: center; /* Centers text and inline elements */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers child elements horizontally */
  justify-content: center; /* Centers child elements vertically */
}




.footer-text {
  line-height: 1.6;
  margin-block: 15px;
  text-align: justify;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-icon,
.footer-item .item-icon {
  background-image: var(--gradient);
  color: #ffffff;
  font-size: 18px;
  padding: 11px;
  border-radius: 50%;
}

.schedule .span,
.footer-item .item-text { line-height: 1.6; }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-block: 10px;
  transition: var(--transition);
}

.footer-link ion-icon {
  color: var(--royal-blue-light);
  --ionicon-stroke-width: 50px;
}

.footer-link:is(:hover, :focus) { color: var(--white); }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item:not(:first-child) { margin-block-start: 20px; }

.footer-bottom {
  background-color: var(--oxford-blue-3);
  padding-block: 50px;
  text-align: center;
}

.copyright {
  color: var(--white);
  line-height: 1.6;
  margin-block-end: 25px;
}

.footer .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer .social-link {
  padding: 11px;
  background-color: hsla(0, 0%, 100%, 0.2);
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
}

.footer .social-link:is(:hover, :focus) { background-image: var(--gradient); }

.copyright {
  text-align: center; /* Center-align the text */
  font-size: 1.5rem; /* Adjust text size as needed */
  color: var(--white); /* Subtle text color */
  margin: 1rem 0; /* Add spacing above and below */
  white-space: nowrap; /* Prevent line breaks */
}

.copyright a {
  color: var(--royal-blue-light); /* Link color */
  text-decoration: none; /* Remove underline */
}




/* Default: Show dropdown content on larger screens */
.dropdown-content {
  display: flex;  /* Keeps links always visible on larger screens */
  flex-direction: column;
  gap: 5px;
}

/* Hide dropdown on mobile by default */
@media screen and (max-width: 768px) {
  .dropdown-content {
    display: none; /* Hide content on mobile */
  }

  .dropdown-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Show dropdown when active */
  .dropdown-content.active {
    display: flex;
  }
}

/* Hide chevron icon on larger screens */
.chevron-icon {
  display: none;
}

/* Show chevron on mobile screens only */
@media screen and (max-width: 768px) {
  .chevron-icon {
    display: inline-block;
  }
}


/* Hide chevron icon on larger screens */
@media screen and (min-width: 575px) {
  .dropdown-toggle ion-icon {
    display: none;
  }
}


@media (max-width: 385px) {
  .copyright {
    font-size: 18px; /* Reduce font size for smaller screens */
    white-space: normal; /* Allow text to wrap */
    line-height: 1.5; /* Add line height for better readability */
  }
}

@media (min-width: 1200px) {
  .footer-brand {
    margin-right: 40px;
  }
  }








/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: #059246;
  color: #ffffff;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number { --fontSize-body-1: 3rem; }







  /**
   * HEADER
   */

  .header.active { top: 0; }

  .header .btn {
    display: block;
    margin-inline-start: auto;
  }



  /**
   * HERO
   */

  .hero-btn { transform: scale(0.7); }



  /**
   * SERVICE
   */

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container { gap: 80px; }

  .about-banner > .w-100 { padding-inline-start: 90px; }

  .about .abs-img-1 { width: 285px; }

  .about .contact-number { --fontSize-body-1: 2.4rem; }



  

  /**
   * EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }



 /**
   * FOOTER
   */

   .footer-top .container { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.service, .event) .container { max-width: 820px; }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .navbar-list { margin-inline: 30px; }



  /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon { transform: rotate(-45deg); }

  .hero .slider-btn.prev { left: 30px; }

  .hero .slider-btn.next { right: 30px; }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }


  /**
   * CONTACTS
*/


/* Contact Section */
.section.contact {
  padding: 4rem 1rem; /* Add padding */
  background-color: #f8f8f8; /* Light background */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns for contact info and form */
  gap: 2rem; /* Space between columns */
  margin: 0 auto; /* Center the container */
  padding-bottom: 2rem; /* Space before the map */
}

/* Contact Information */
.contact-info {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.contact-info p {
  margin: 0.75rem 0;
  color: #063410; /* Dark text color */
}

.contact-info p strong {
  color: #059246; /* Green for emphasis */
}

/* Contact Form */
.contact-form {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 550px;
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: #063410; /* Dark text color */
}

.contact-form label {
  color: #063410; /* Medium gray text color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #059246; /* Green border */
  border-radius: 5px; /* Rounded corners */
  font-size: 1.6rem;
  outline: none; /* Remove default browser outline */
  transition: border-color 0.3s ease; /* Smooth transition */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e4000b; /* Red border on focus */
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #059246; /* Green background */
  color: #fff; /* White text */
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e4000b; /* Red background on hover */
}

.contact-form .button {
  font-size: 2rem;
}

/* Google Map */
.map-container {
  grid-column: 1 / -1; /* Span across all columns */
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.map-container iframe {
  width: 100%;
  height: 300px; /* Fixed height for the map */
  border-radius: 5px; /* Rounded corners */
}




 /**
   * FOOTER
   */

   .footer-bottom { padding-block: 30px; }

   .footer-bottom .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
 
   .copyright { margin-block-end: 0; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-space: 100px;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container { max-width: unset; }

  :is(.service, .event) .grid-list { grid-template-columns: repeat(3, 1fr); }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }







  /**
   * SERVICE
   */

  .service .shape { display: block; }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }



  






  /**
   * CONTACTS
*/


/* Contact Section */
.section.contact {
  padding: 4rem 1rem; /* Add padding */
  background-color: #f8f8f8; /* Light background */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns for contact info and form */
  gap: 2rem; /* Space between columns */
  max-width: 1200px; /* Limit container width */
  margin: 0 auto; /* Center the container */
  padding-bottom: 2rem; /* Space before the map */
}

/* Contact Information */
.contact-info {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.contact-info p {
  margin: 0.75rem 0;
  color: #063410; /* Dark text color */
}

.contact-info p strong {
  color: #059246; /* Green for emphasis */
}

/* Contact Form */
.contact-form {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 550px;
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: #063410; /* Dark text color */
}

.contact-form label {
  color: #063410; /* Medium gray text color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #059246; /* Green border */
  border-radius: 5px; /* Rounded corners */
  font-size: 1.6rem;
  outline: none; /* Remove default browser outline */
  transition: border-color 0.3s ease; /* Smooth transition */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e4000b; /* Red border on focus */
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #059246; /* Green background */
  color: #fff; /* White text */
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e4000b; /* Red background on hover */
}

.contact-form .button {
  font-size: 2rem;
}

/* Google Map */
.map-container {
  grid-column: 1 / -1; /* Span across all columns */
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.map-container iframe {
  width: 100%;
  height: 300px; /* Fixed height for the map */
  border-radius: 5px; /* Rounded corners */
}


  /**
   * FOOTER
   */

   .footer-top .container { grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr; }


}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }



 



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar > *:not(.navbar-list),
  .header .overlay { display: none; }

  .header .container { max-width: unset; }

  .navbar,
  .navbar.active,
  .navbar-list { all: unset; }

  .navbar,
  .navbar.active { margin-inline: auto 20px; }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-item { border-block-start: none; }

  .navbar .separator { display: none; }

  .navbar-link:is(:hover, :focus-visible, .active) .span {
    transform: unset;
  }

  .navbar-link {
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-1);
  }

  .navbar-link::after { display: block; }

  .navbar-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .header .btn { margin-inline-start: 0; }



  


  /**
   * SERVICE
   */

  .service .grid-list { gap: 150px; }

  .service .grid-list li:nth-child(2n+1) { transform: translateY(-160px); }

  .service .section-text { margin-block-end: 75px; }



  /**
   * ABOUT
   */

  .about { padding-block: 170px 100px; }










  /**
   * FEATURES
   */

  .features .grid-list { grid-template-columns: repeat(4, 1fr); }




/**
   * CONTACTS
*/


/* Contact Section */
.section.contact {
  padding: 4rem 1rem; /* Add padding */
  background-color: #f8f8f8; /* Light background */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns for contact info and form */
  gap: 2rem; /* Space between columns */
  max-width: 1200px; /* Limit container width */
  margin: 0 auto; /* Center the container */
  padding-bottom: 2rem; /* Space before the map */
}

/* Contact Information */
.contact-info {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.contact-info p {
  margin: 0.75rem 0;
  color: #063410; /* Dark text color */
}

.contact-info p strong {
  color: #059246; /* Green for emphasis */
}

/* Contact Form */
.contact-form {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 550px;
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: #063410; /* Dark text color */
}

.contact-form label {
  color: #063410; /* Medium gray text color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #059246; /* Green border */
  border-radius: 5px; /* Rounded corners */
  font-size: 1.6rem;
  outline: none; /* Remove default browser outline */
  transition: border-color 0.3s ease; /* Smooth transition */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e4000b; /* Red border on focus */
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #059246; /* Green background */
  color: #fff; /* White text */
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e4000b; /* Red background on hover */
}

.contact-form .button {
  font-size: 2rem;
}

/* Google Map */
.map-container {
  grid-column: 1 / -1; /* Span across all columns */
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.map-container iframe {
  width: 100%;
  height: 300px; /* Fixed height for the map */
  border-radius: 5px; /* Rounded corners */
}


.back-top-btn {
  bottom: 70px;
}

}




/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HEADER
   */

  .navbar { margin-inline: auto; }

 



  /**
   * ABOUT
   */

  .about-content { padding-inline-end: 90px; }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }




  /**
   * FEATURES
   */

  .features { overflow: visible; }



  /* Contact Section */

/**
   * CONTACTS
*/


/* Style inputs and textarea */
.contact-form input,
.contact-form textarea {

  font-size: 1.6rem;
 
}


/* Contact Section */
.section.contact {
  padding: 4rem 1rem; /* Add padding */
  background-color: #f8f8f8; /* Light background */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns for contact info and form */
  gap: 2rem; /* Space between columns */
  max-width: 1200px; /* Limit container width */
  margin: 0 auto; /* Center the container */
  padding-bottom: 2rem; /* Space before the map */
}

/* Contact Information */
.contact-info {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.contact-info p {
  margin: 0.75rem 0;
  color: #063410; /* Dark text color */
}

.contact-info p strong {
  color: #059246; /* Green for emphasis */
}

/* Contact Form */
.contact-form {
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 550px;
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: #063410; /* Dark text color */
}

.contact-form label {
  color: #063410; /* Medium gray text color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #059246; /* Green border */
  border-radius: 5px; /* Rounded corners */
  font-size: 1rem;
  outline: none; /* Remove default browser outline */
  transition: border-color 0.3s ease; /* Smooth transition */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e4000b; /* Red border on focus */
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #059246; /* Green background */
  color: #fff; /* White text */
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e4000b; /* Red background on hover */
}

.contact-form .button {
  font-size: 2rem;
}

/* Google Map */
.map-container {
  grid-column: 1 / -1; /* Span across all columns */
  background-color: #fff; /* White background */
  padding: 1.5rem;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.map-container iframe {
  width: 100%;
  height: 300px; /* Fixed height for the map */
  border-radius: 5px; /* Rounded corners */
}


.back-top-btn {
  bottom: 70px;
}






}




















