
:root {

  --rich-black-fogra-29: hsl(222, 44%, 8%);
  --middle-blue-green_40: hsla(174, 64%, 71%, 0.4);
  --midnight-green: hsl(186, 100%, 19%);
  --midnight-green_a25: hsla(186, 100%, 19%, 0.25);
  --independece: hsl(236, 14%, 39%);
  --verdigris: hsl(182, 100%, 35%);
  --ming: hsl(186, 72%, 24%);
  --space-cadet: hsla(226, 45%, 24%);
  --eerie-black: hsl(0, 0%, 13%);
  --alice-blue: hsl(187, 25%, 94%);
  --gray-web: hsl(0, 0%, 50%);
  --gainsboro: hsl(0, 0%, 87%);
  --white: hsl(0, 0%, 100%);
  --white_a20: hsla(0, 0%, 100%, 0.2);
  --white_a10: hsla(0, 0%, 100%, 0.1);
  --black: hsl(0, 0%, 0%);
  --green:#16a085;
  --black:#444;
  --light-color:#777;
  --box-shadow:.5rem .5rem 0 rgba(22, 160, 133, .2);
  --text-shadow:.4rem .4rem 0 rgba(0, 0, 0, .2);
  --border:.2rem solid var(--green);
  --dark-cyan: hsl(158, 36%, 37%);
  --cream: hsl(30, 38%, 92%);
  --very-dark-blue: hsl(157, 30%, 24%);
  --dark-grayish-blue: hsl(228, 12%, 48%);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;
  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
 
  box-sizing: border-box;
  scroll-behavior: smooth;
}

li { list-style: none; }

a,
img,
span,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; width: 500px; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--midnight-green);
  font-weight: var(--fw-500);
  line-height: 1.2;
  text-shadow: var(--text-shadow);
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
  text-shadow: var(--text-shadow);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald);     text-shadow: var(--text-shadow);}


.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { 
  width: 90%;
margin-left: 40px;
margin-bottom: 85px;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
  margin-top: -50px;
    
}

@media (max-width:768px) {
  .grid-list{
      margin-top: -510px;
  }
  
}
.text-center { text-align: center; }

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }

[data-reveal="right"] { transform: translateX(50px); }

[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
  height: 100px;
}

.header.active {
  position: fixed;
  background-color: var(--white);
  animation: headerActive 0.5s ease forwards;
}


@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-open-btn {
  color: var(--black);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color:#1a949f;
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);

}

@media (max-width:1200px) {
  .navbar{
      height: 612px;
  }
  
}
.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--black);
}

.navbar-item { border-block-start: 1px solid var(--white_a10); }

.navbar-link {
  color: var(--black);
  text-transform: uppercase;
  padding: 10px 24px;
      font-weight: 500;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

/* Dropdown Container */
.navbar-item.dropdown {
  position: relative;
}

/* Dropdown Menu Hidden by Default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* show below parent */
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
}

/* Dropdown Items */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

/* Hover effect on items */
.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.navbar-item.dropdown:hover .dropdown-menu {
  display: block;
}



/* Hero slider */

.hero-slider {
  position: relative;
  width: 100vw;      /* Full width */
  height: 85vh;     /* Full height */
  overflow: hidden;
  margin-top: 100px;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the space */
}
.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Ensure it sits above the overlay */
  color: #ffffff; /* Fresh white */
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.slide-caption h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}

.slide-caption p {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1; /* Below the text */
}

/* button */
.slider-btn {
  position: relative;
  display: inline-block;
  padding: 1em 1.3em;
  margin-top: 2em;
  color: #fff;
  background: #157b88;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.5rem;
  outline: none;
  transition: color 0.4s;
}

.slider-btn::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #157b88, #79d2fc);
  transition: left 0.4s;
  z-index: 0;
}

.slider-btn:hover::before {
  left: 0;
}

.slider-btn span {
  position: relative;
  z-index: 1;
}



/*services overview*/
.services-section {
  padding: 80px 20px;
  background: #f4f7fc;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #00adb3;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: #00adb3;
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  flex-direction: column;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.tab-buttons .tab {
  padding: 12px 20px;
  margin: 8px;
  background: #fff;
  border: 2px solid #00adb3;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  color: #333;
}

.tab-buttons .tab.active {
  background: #00adb3;
  color: #fff;
}

.tab-content {
  display: none;
  gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  align-items: center;
  transition: all 0.4s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: flex;
  margin-left: 240px;
  width: 600px;
}





.tab-content1 {
  text-align: left;        
  max-width: 600px;       
  margin-left: -250px !important;         
  margin-right: auto;    
  padding-left: 1rem;      
}

.tab-content1 .tab-text {
  display: none;           
}

.tab-content1 .tab-text.active {
  display: block;           
}

@media (max-width:768px) {
  .tab-content.active {
    width:300px;
    margin-left: 265px;
  }
  
}
.tab-content img {
  width: 40%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.tab-content h3 {
  font-size: 2rem;
  color: #00adb3;
  margin-bottom: 15px;
}

.tab-content p {
  font-size: 1.7rem;
  color: #444;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tab-content {
    flex-direction: column;
  }

  .tab-content img {
    width: 100%;
  }

  .tab-buttons .tab {
    font-size: 0.9rem;
  }

  .tab-content h3 {
    font-size: 1.4rem;
  }

  .tab-content p {
    font-size: 1rem;
  }
}




.custom-services-section {
  background: #f5faff;
  padding: 80px 20px;
}

.custom-container {
  max-width: 1100px;
  margin: auto;
}

.custom-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.custom-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 40px;
}

.custom-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.custom-tab {
  padding: 10px 20px;
  border: 2px solid #00adb3;
  border-radius: 30px;
  background: transparent;
  color: #00adb3;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-tab.active,
.custom-tab:hover {
  background: #00adb3;
  color: #fff;
}

.custom-tab-content {
  display: none;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 21px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.custom-tab-content.active {
  display: flex;
}

.custom-tab-content img {
  width: 400px;
  height: auto;
  border-radius: 10px;
}

.custom-tab-content h3 {
  font-size: 2.4rem;
  color: #007c85;
  margin-bottom: 100px;
}

.custom-tab-content p {
  font-size: 1.7rem;
  color: #444;
  line-height: 1.6;
  margin-top: -88px;
}



@media (max-width: 768px) {
  .custom-tab-content {
    flex-direction: column;
    text-align: center;
  }

  .custom-tab-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .custom-tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .custom-tab-content p {
    font-size: 1.1rem;
    margin-top: 0;
  }
}


/*faq*/

.faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: -20px;
}

.faq-title {
  text-align: center;
  color: #00adb3;
  font-size: 2.9rem;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  animation: slideIn 1s ease-out forwards;
}

.faq-item {
  border: 2px solid #00adb3;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 15px rgba(0, 173, 179, 0.3);
}

.faq-question { 
  color:#00adb3;
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #01969d;
  color: #f9f9f9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.4s ease-in-out, padding 0.4s;
  padding: 0 25px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 1.5rem;
  color: #333;
}

/* Animation */
@keyframes slideIn {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}




/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  padding-block: 60px 30px;
  padding-inline: 25px;
  display: grid;
  gap: 30px;
  border-radius: var(--radius-12);
  margin-block-start: -60px;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  margin-top: 43px;
}

.service-card { text-align: center; }

.service-card .card-icon,
.btn-circle {
  max-width: max-content;
  margin-inline: auto;
}

.service-card .card-icon { margin-block-end: 25px; }

.service-card .card-text { margin-block: 20px 15px; }

.service-card .btn-circle {
  color: var(--verdigris);
  font-size: 2rem;
  padding: 18px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
}

.service-card .btn-circle:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
  color: var(--white);
}




.checkup-steps {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  margin-top: -123px;
}

.section-title {
  font-size: 3.3rem;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 60px;
}

.step-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.step-block.reverse {
  flex-direction: row-reverse;
}

.step-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-text {
  max-width: 600px;
}

.step-text h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #055b5e;
}

.step-text p {
  font-size: 1.9rem;
  color: #444;
  line-height: 1.6;
}

/* Animation */
.step-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .step-block,
  .step-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .step-text h3 {
    font-size: 1.6rem;
  }

  .step-text p {
    font-size: 1rem;
  }
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about { padding-block-end: 0;  overflow-x: hidden;}

.about .container {
  display: grid;
  gap: 20px;
}

.about .section-text { margin-block: 20px 35px; }

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.tab-btn {
  background-color: var(--alice-blue);
  color: var(--midnight-green);
  padding: 7px 30px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-700);
}

.tab-btn.active {
  background-color: var(--verdigris);
  color: var(--white);
}

.tab-text {
  color: var(--midnight-green);
  margin-block: 35px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 10px;
}

.about-item ion-icon {
  color: var(--verdigris);
  font-size: 2rem;
  flex-shrink: 0;
}










/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--midnight-green);
  color: var(--white);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 16px;
  border-radius: var(--radius-6);
}

.footer .logo { margin-block-end: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon { font-size: 4rem; }

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text { opacity: 0.7; }

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder { color: inherit; }

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) { background-color: var(--verdigris); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: var(--eerie-black); }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 768px screen
 */

 @media (min-width: 768px) {


  :root {

    /**
     * typography
     */

    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }



  /**
   * HERO
   */

  .hero-title { line-height: 1.125; }

  .hero .wrapper {
    display: flex;
    gap: 16px;
  }

  .hero-card .input-wrapper { flex-grow: 1; }

  .hero-card .input-field { height: 100%; }

  .hero-card .btn {
    width: max-content;
    margin-block-start: 0;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: 1fr 1fr; }



  /**
   * ABOUT
   */

  .about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * LISTING
   */

  .listing .grid-list { grid-template-columns: 1fr 1fr; }

  .listing .grid-list > li:first-child { grid-column: 1 / 3; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list { margin-block-start: 0; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 940px; }



  /**
   * HERO
   */

  .hero-banner {
    display: block;
    max-width: max-content;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: repeat(4, 1fr); }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-end;
  }

  .about-content { padding-block-end: var(--section-padding); }

  .about-banner { margin-inline-end: -80px; }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  .header { padding-block: 24px; }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list { display: none; }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar { margin-inline-start: auto; }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item { border-block-start: none; }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
  }



  /**
   * LISTING
   */

  .listing .grid-list { grid-template-columns: repeat(4, 1fr); }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FOOTER
   */

  .footer { background-size: auto; }

  .footer-top { grid-template-columns: repeat(4, 1fr); }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo { margin-block-end: 0; }

  .contact-list { justify-content: space-between; }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item { margin-block-start: 0; }

}

/*-----------------------------------*\
  #about hero
\*-----------------------------------*/
.container .about-head{
  font-size: 30px;
  color: white;
}
.container .about-head span{
  color: var(--eerie-black);
  font-size: 70px;
}




/*-----------------------------------*\
  contact Details
\*-----------------------------------*/

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem; 
  line-height: 4rem;
  }
  
  #contact-details .details {
  width: 48%;
  }
  
  #contact-details .details span {
  font-size: 1.6rem;
  color:  var(--black);
  margin-left: 290px;
  }

  @media (max-width:786px) {
    #contact-details .details span {
          margin-left: 106px;
    }
    
  }
  
  #contact-details .details h2 {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 4.5rem;
  padding: 4rem 1rem;
  color: var(--verdigris);
  margin-left: 70px;
  
  }
  
  #contact-details .details div {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  margin-left: 77px;
  }
  
  #contact-details .details i {
  font-size: 2rem;
  margin-right: .6rem;
  color: var(--green); 
  cursor: pointer;
  transition: .3s ease;
  margin-top: 11px;
  }
  #contact-details .details i:hover {
   color: #0c7e82;
  }
  
  #contact-details .details p {
  font-size: 1.5rem;
  margin: 0;
  color: var(--black);
  }
  
  #contact-details .map {
  width: 48%;
  }
  
  #contact-details .map iframe {
  width: 100%;
  height: 50rem; 
  border: .1rem solid #ddd; 
  }
 /*-----------------------------------*\
  contact  form Details
\*-----------------------------------*/
  #contact-form {
  display: flex;
  justify-content: space-between;
  margin: 2rem;
  margin-left: 2rem;
  
  }
  
  .contact-form {
  flex-basis: 48%;
  padding: 2rem;
  border: 0.1rem solid  var(--green);
  background-color: #f5f5f5;
  border-radius: 10px;
  box-sizing: border-box;
  }
  
  .contact-form span {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.4rem;
  }
  
  .contact-form h3 {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  }
  
  .contact-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  }
  
  .contact-form form input,
  .contact-form form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 0.1rem solid #666;
  background-color: #fff;
  color: var(--black);
  outline: none;
  border-radius: 5px;
  }
  @media(max-width:768px) {
     .contact-form form input,
  .contact-form form textarea{
    width:204%;
    margin-left: -69px  }
 
  }

  #submit-button {
  background-color: #00adb3;
  color: white;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  }
  
  #submit-button:hover {
  background-color: var(--midnight-green_a25);
  }
  
  #submit-button:disabled {
  background-color: var(--middle-blue-green_40);
  cursor: not-allowed;
  }
  

  @media (max-width:1200px) {
   .contact-form{
display: flex;
flex-direction: column;
padding: 10rem;
} 
#contact-details {
  flex-direction: column; 
         
}
#contact-details .details,
#contact-details .map {
  width: 100%; 
 
}
#contact-details .details h2 {
  font-size: 1.8rem; 
  line-height: 2rem;
     margin-left: 47px;
  
}
#contact-details .details i {
  font-size: 1.2rem; 
  margin-left: -14px;
}
#contact-details .details p,
#contact-form span,
.contact-form h3,
.contact-form form input,
.contact-form form textarea {
  font-size: 1.3rem; 
            width: 665px;
                }
    #contact-details .details span {
        margin-left: 46px;
    }
  
#contact-details .map iframe {
  height: 15rem;
}
.contact-form,
.people-container {
  flex-basis: 100%; 
        width: 740px;
}
#contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding:0rem;
  margin: 1rem;
}
#contact-details {
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
}
#form-details span,
#form-details h3,
.people-container h1
{
  text-align:center;
   margin-left: -60px;
}
#submit-button {
  margin: 1rem;
  margin-left: 224px;
}

#contact-form {
  margin: 0; 
}

#contact-form form input,
#contact-form form textarea {
  margin-bottom: 1rem; 
}

    
  }
  
  @media (max-width: 468px) {
.contact-form{
display: flex;
flex-direction: column;
padding: 10rem;
} 
#contact-details {
  flex-direction: column; 
         
}
#contact-details .details,
#contact-details .map {
  width: 100%; 
 
}
#contact-details .details h2 {
  font-size: 1.8rem; 
  line-height: 2rem;
  
}
#contact-details .details i {
  font-size: 1.2rem; 
  margin-left: -14px;
}
#contact-details .details p,
#contact-form span,
.contact-form h3,
.contact-form form input,
.contact-form form textarea {
  font-size: 1.3rem; 
          width: 291px;
       
}
#contact-details .map iframe {
  height: 15rem;
}
.contact-form,
.people-container {
  flex-basis: 100%; 
 width: 355px;
}
#contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding:0rem;
  margin: 1rem;
}
#contact-details {
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
}
#form-details span,
#form-details h3,
.people-container h1
{
  text-align:center;
}
#submit-button {
  margin: 1rem;
}

#contact-form {
  margin: 0; 
}

#contact-form form input,
#contact-form form textarea {
  margin-bottom: 1rem; 
}

}
@media (max-width: 480px) {
/* contact */
#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
}
#contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding:0rem;
  margin: 1rem;
}
#contact-details {
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
}
#form-details span,
#form-details h3,
.people-container h1
{
  text-align:center;
  margin-top: -62px;
  font-size: 14px;
   margin-left: -59px;
}
#submit-button {
  margin: 2rem; 
   padding: 0rem 3rem;
}


#contact-details .details h2 {
    margin-left: 59px;
}

#contact-form {
  margin: 0; 
}

#contact-form form input,
#contact-form form textarea {
  margin-bottom: 1rem; 
}
@media (max-width:768px) {
  .contact-img{
    width: 350px !important;
    height: 350px !important;
}
}

    
}




/*Product*/
.product-section {
  width: 100%;
  padding: 60px 40px;
  background-color: #fff;
}

.product {
  display: flex;
  align-items: center;
  justify-content: center; /* ✅ centers content block */
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-in-out;
}

.product.reverse {
  flex-direction: row-reverse;
}

.product-image,
.product-content {
  flex: 1;
  max-width: 500px; /* ✅ Prevents image/content from overflowing */
}

.product-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-content h2 {
  font-size: 24px;
  color: #00695c;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.product.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Fix */
@media (max-width: 768px) {
  .product,
  .product.reverse {
    flex-direction: column;
    text-align: center;
  }

  .product-image,
  .product-content {
    max-width: 100%;
  }

  .product-image img {
    max-width: 100%;
  }
}


.page-link,
.next-page {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background-color: var(--verdigris);
  color: var(--white);
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-link:hover,
.next-page:hover {
  background-color: var(--green);
}

.next-page {
  font-size: 1.5rem;
  vertical-align: middle;
}
/* Tablet (768px and below) */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .hero-title {
    font-size: 2rem;
  }
}
 
.audioimage{
  width: 600px;
  height:500px;
}

@media (max-width: 768px) {

  .audioimage{
  width: 333px;
  height:300px;
}
}


.aboutimg { 
  width: 90%;
margin-left: 14px;
margin-bottom: 400px;
}
.aboutus { 
  width: 90%;
margin-left: 40px;
margin-bottom: 400px;
}

@media (max-width:786px) {
  .aboutus{
    margin-left: 17px;
  }
  
}


/*blog*/
.blog-container {
  display: flex;
  height: 100vh; 
  overflow: hidden; 
}

.sidebar {
  width: 440px;
  background: linear-gradient(to bottom right, #007c91, #004f60);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Enable scroll inside sidebar */
  margin-top: 100px;
 
}
.sidebar h2 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-left: 130px;
  flex-shrink: 0; /* Prevent from shrinking */
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.sidebar li {
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #005e70;
  transition: background 0.3s;
      margin-left: 9px;
    margin-right: 30px;
}

.sidebar li:hover,
.sidebar li.active {
  background-color: #0097a7;
}

.content {
  flex: 1;
  padding: 30px;
  overflow-y: auto; /* Independent scroll */
  background-color: #ffffff;
  margin-top: 130px;
}
.post img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.post h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #006064;
}

.post p {
  line-height: 1.7;
  font-size: 16px;
  color: #333;
  text-align: justify;
}


.tags {
  margin-top: 15px;
}

.tag {
  display: inline-block;
  background-color: #e0f7fa;
  color: #006064;
  padding: 6px 12px;
  margin: 5px;
  border-radius: 20px;
  font-size: 13px;
}




@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    height: auto;
  }

  .sidebar {
    width: 100%;
    margin-top: 80px;
   max-height:323px;
    overflow-y: auto;
  }

  .sidebar h2 {
    margin-left: 0;
    text-align: center;
  }

  .sidebar li {
    margin: 8px auto;
    width: 90%;
    text-align: center;
  }

  .content {
    margin-top: 0;
    padding: 20px;
  }

  .post-section {
    margin-bottom: 40px;
  }
  
  .section-title {
    margin-top: -234px;
  }
}


  .whatsapp-float {
    position: fixed;
    left: 16px;           /* distance from the left edge */
    bottom: 24px;         /* distance from the bottom */
    width: 56px;
    height: 56px;
    background: #25D366;  /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;      /* icon size */
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.3);
  }

  /* Smaller size on mobile */
  @media (max-width: 767px) {
    .whatsapp-float {
      left: 12px;
      bottom: 16px;
      width: 48px;
      height: 48px;
      font-size: 24px;
    }
  }
  
  
  
 