
    :root {
      --turquoise: #009ca6;
      --bright-turquoise: #00bfb2;
      /*--bright-turquoise: #00CFFF;*/
      
      --green-shade: #018f89;
      --blue-shade: #0288a7;
      --white: #ffffff;
      --dark-turquoise: #058593;
      /*--dark-turquoise: #009EBF;*/
      --golden-yellow: #f4b400;
      --text-color: #000000;
      --bg-light: whitesmoke;
     
    }

    html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Adjust based on your header height */
}

    body {
      margin: 0;
	  
      font-family: 'Nunito', sans-serif;
      background-color: var(--bg-light);
      color: var(--text-color);
	  line-height: 1.6;
    }

    .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}
  
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      color: var(--bright-turquoise);
    }

	 h2
	{
	text-align:left; }


    h3{
      font-family: 'Montserrat', sans-serif;
      color: var(--dark-turquoise);
    }
    

/* header related styling */
/* header related styling */
    .site-header {
      position: sticky;
      top: 0;
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      z-index: 1000;
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 40px;
      flex-wrap: wrap;
    }
    .header-logo {
      display: flex;
      align-items: center;
      gap: 0px;
      padding-right: 0px;
	  
    }
    .logo {
      height: 120px;
      width: 120px;
    }
    




      .header-company {
      margin: 0;
      font-size: 22px;
      color:var(--blue-shade);
      /*font-weight: bold;*/
font-size: 22px;
       font-family: 'Exo 2', sans-serif;
  font-weight: 600; /* Regular weight */
   font-weight: bold;
      
    }



    .header-tagline {
      margin: 0;
      font-size: 16px;
      
      font-style:italic;
      color: var(--golden-yellow);
      align-items: left;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
      margin: 0;
      padding: 0;
      font-weight: bold;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-color);
      transition: color 0.3s ease;
    }
    .nav-links a:hover {
      color: var(--blue-shade);
    }
    .nav-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
    }

    
    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
	  
	  
	  
      .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 10px;
      }
      .nav-links.active {
        display: flex;
      }
      .nav-toggle {
        display: block;
        align-self: flex-end;
        color: var(--bright-turquoise);
      }
    }
    
    
 /* Header related styling ends here */     
      


 /*--------------------------------------------------*/




/* HERO SECTION */

.hero {
 
  width: 100%;
  max-height: 400px; /* Optional: Limit height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items:center;
  background-color: #000;
  
}

.hero img {

  width: 100%;
  height: auto;
  max-width: 1920px; /* Prevent upscaling beyond actual size */
  display: block;
}




/* Hero section styling ends here */





    .section {
      padding: 20px 30px;
    }

    .section.turquoise-bg {
      background-color: var(--bright-turquoise);
      color: white;
      text-align: center;
    }


.section-title {
  color: var(--bright-turquoise);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  text-align: left;
  position: relative;
  display: block; /* This is key */
  margin-bottom: 3.5rem; /* Enough space after the yellow line */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  /*left: 50%;
  transform: translateX(-50%);*/
   left: 0.2%;
  transform: translateX(-5%);
  width: 60px;
  height: 4px;
  background: var(--golden-yellow);
  border-radius: 2px;
  text-align: left;

  
 
}





    .bullet-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin: 60px auto;
      max-width: 1100px;
      padding: 0 20px;
    }

    .bullet-col {
      flex: 1 1 45%;
    }

    .bullet-col h3 {
      color: var(--blue-shade);
    }

    .gold-bullets ul {
      list-style: none;
      padding-left: 0;
    }

    .gold-bullets li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 12px;
    }

    .gold-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 14px;
      height: 14px;
      background-color: var(--golden-yellow);
      border-radius: 50%;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    @media (max-width: 900px) {
      .bullet-section {
        flex-direction: column;
      }

      .gallery {
        grid-template-columns: 1fr;
      }
    }




.back-to-services-button {
  display: inline-block;
  background-color: var(--golden-yellow);
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-items:left;
  /*text-transform: uppercase;*/
}

.button{
text-align:left;
padding: 20px 30px;
}

.back-to-services-button:hover {
  background-color: var(--dark-turquoise); /* dark turquoise */
  color: var(--golden-yellow);
}




/* Contact Split Section */
.split-section {
  display: flex;
  flex-wrap: wrap;
  
   background-color:var(--white);
    max-width: 100%;  /* already correct */
  padding: 0;       /* ensure no inner padding */
  margin: 0;        /* remove spacing */
  
   
}

.split-left {

  

  background-color:linear-gradient(rgba(0, 156, 166, 0.6), rgba(0, 156, 166, 0.6));
  flex: 0 0 500px; /* or 40% depending on what you want */
  /*padding: 2rem;*/
  background-color: white; /* or a light shade if needed */
  box-sizing: border-box;
}

.split-content {
  max-width: 450px;
  margin: auto;
  
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}



.split-right {
 /* flex: 0.8;
 background-image: linear-gradient(rgba(0, 156, 166, 0.6), rgba(0, 156, 166, 0.6)), url('images/happy.webp');*/
background-image: url('images/happy.webp');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  max-width: 100%;
  
  
  flex: 1;  /* take up all remaining width */

  
  
  
  
  
  
  
}



/* Footer Section */
.footer-style-section {
  background-color: #00bfb2;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}
.footer-heading
{
  color:var(--white);
}

.footer-style-section h3 {
  margin-bottom: 10px;
}

.footer-style-section ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-style-section ul li a:hover {
  text-decoration: underline;
}

.footer-social-icons {
  margin-top: 15px;
}

.footer-social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: white;
  color: #00bfb2;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  margin: 0 5px;
  transition: all 0.3s ease;
 
}

.footer-social-icons a:hover {
  background-color: #007c8a;
  color: white;
}

/* Final Footer Bar */
.footer-bottom {
  background-color: #007c8a;
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 0.9rem;
}




