
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{


window.addEventListener("unload", function() {
  // Perform cleanup tasks, e.g., send analytics, save state, etc.
  console.log("Page is unloading");
});


/* Reset + Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  background: 
    url("../images/bg-pattern.png"),
    linear-gradient(to right, #d9b8f5 0%, /* lavender */
      #f28cc8 65%, /* pink */
      #2CA6A4 120% /* turtle green */
		
    );

  background-blend-mode: multiply; /* Blend the pattern and gradient */
  color:  #f28cc8; /* pink text to match logo */
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  padding: 1em 0;
  margin: 0 auto;
  background: #fafafa;
}

.logo-track {
  display: flex;
  width: max-content; /* automatically stretches for contents */
  animation: scroll-logos 22s linear infinite; /* faster for mobile */
  align-items: center;
  gap: 1.2em; /* less gap for mobile */
}

/* Logos: clean sizing and touch targets */
.logo-track img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 0.7em;
  filter: grayscale(0.14);
  opacity: 0.95;
  transition: filter 0.12s, opacity 0.3s;
}

/* Accessibility: logo slightly grows and sharpens on tap */
.logo-track img:active,
.logo-track img:hover {
  filter: grayscale(0) drop-shadow(0 2px 10px rgba(0,0,0,0.13));
  opacity: 1;
  transform: scale(1.07);
}

/* Pause animation when finger is held/tap occurs */
.logo-track:hover,
.logo-track:focus-within {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Mobile tweaks */
@media (max-width: 650px) {
  .logo-marquee {
    padding: 0.6em 0;
  }
  .logo-track img {
    height: 34px;
    margin: 0 0.35em;
  }
  .logo-track {
    gap: 0.7em;
    animation-duration: 15s; /* even faster for smaller screens */
  }
}


h1 {
  font-size: 2.30em;      /* Adjust text size */
  font-weight: 700;      /* Lighter font weight */
  font-family: Arial, sans-serif;  /* Custom font */
  margin: 12px 0;        /* Custom spacing */
  letter-spacing: 0.2px; /* Subtle spacing */
  text-transform: none;  /* Normal case */
}



  header h2 {
        margin: 0;
        font-size: 2.0em;
	color: #2CA6A4;
    }


.banner h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3d3c;
  margin: 0 0 1rem;
}


.banner {
  border-radius: 12px;
  box-shadow: 0 7px 8px rgba(44,62,80,0.12);
  border-bottom: 5px solid #4caf50;
  }


   .banner img {
    width: 100px;
    height: auto;
  }





.card {
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(57,31,67,0.08);
}

 


.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.contact .info-box i {
  font-size: 32px;
  color: #ff5821;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffded4;
  float:right;
}


  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;



/* Banner wrapper */
    .banner{
      max-width:var(--maxw);
      margin-inline:auto;
      padding:28px 16px 18px;
      text-align:center;
    }




  * { box-sizing: border-box; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
      color:var(--ink);
     
      line-height:1.35;
    }
   



    /* Small screen tweaks */
    @media (max-width: 520px){
      nav{ gap:12px; }
      summary{ padding:10px 12px; }
      .menu{ left:0; transform:none; }
    }

    /* Optional subtle separator under banner */
    .divider{
      height:1px;
      background:linear-gradient(90deg, transparent,  #2CA6A4;, transparent);
      margin:14px 0 0;
    }
		
   /* Nav bar */
    nav{
      display:flex;
      justify-content:center;
      gap:26px;
      flex-wrap:wrap;
    }

    /* Dropdowns using <details> */
    details.dropdown{
      position:relative;
      list-style:none;
    }
    summary{
      list-style:none;
      cursor:pointer;
      font-weight:600;
      padding:6px 14px;
      border-radius:5px;
      border:1px solid #2CA6A4;
      transition:transform .08s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    summary::-webkit-details-marker{ display:none; }
    details[open] > summary{
      background:#f8fafc;
      border-color: #2CA6A4;
    }

    /* Dropdown menu panel */
    .menu{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      margin-top:10px;
      min-width:220px;
      background: #2CA6A4;
      border:1px solid #e5e7eb;
      border-radius:12px;
      box-shadow:0 8px 24px rgba(2,8,23,.12);
      padding:8px;
      text-align:left;
      z-index:10;
    }

    .menu a{
      display:block;
      padding:10px 12px;
      border-radius:8px;
      text-decoration:none;
      color:var(--ink);
      font-weight:500;
    }
    .menu a small{
      display:block;
      color:var(--ink-soft);
      font-weight:400;
      margin-top:2px;
      font-size:.85em;
    }
    .menu a:hover,
    .menu a:focus{
      outline:0;
      background:#f1f5f9;
    }

    /* Close dropdown when clicking elsewhere (focus trap alternative) */
    details.dropdown > summary:focus-visible{ outline:2px solid #94a3b8; }

    /* Hover open on large screens (still clickable on mobile) */
    @media (pointer:fine){
      details.dropdown:hover > .menu{ display:block; }
      details.dropdown:hover[open] > .menu{ display:block; }
    }

    /* Make sure panel hides when closed */
    details.dropdown:not([open]) .menu{ display:none; }

    /* Small screen tweaks */
    @media (max-width: 520px){
      nav{ gap:12px; }
      summary{ padding:10px 12px; }
      .menu{ left:0; transform:none; }
    }

    /* Optional subtle separator under banner */
    .divider{
      height:1px;
      background:linear-gradient(90deg, transparent,  #2CA6A4, transparent);
      margin:14px 0 0;
    }


p {
  margin: 10px 0;
  padding: 9px;
  border: 0px solid #999;
  font-size: 1.09rem;
	color: #ffffff;
	
}

.hero_next_section-margin {
  margin-top: 100px;
}




/*header section*/
.hero_area {
  position: relative;
  background-color:#ffffff;
  height: 100vh;
}

.sub_page .hero_area {
  height: auto;
}

.hero_area.sub_pages {
  height: auto;
}
   




/* Base styles for desktop and larger screens */
body {
    font-size: 19px;
    padding: 20px;
}

/* Media query for devices with a screen width of 600px or less (small devices) */
@media screen and (max-width: 600px) {
    body {
        font-size: 16px; /* Adjust font size for mobile */
        padding: 0px;   /* Reduce padding for smaller screens */
    }
    
    /* Example: Adjust layout */
    .container {
        width: 100%;
        margin: 0;
    }

    .header {
        font-size: 18px;
    }
}
/* Use this: */
.container {
    width: 100%; /* Full width of the parent element */
}
img {
    max-width: 100%; /* Makes sure images scale down on small screens */
    height: auto;    /* Maintains aspect ratio */
}
/* Apply box-sizing: border-box globally */
* {
    box-sizing: border-box;
}


	


/*end header section*/
/* slider section */

/* Slider Section */
.slider_section {
  position: relative;
  background: url("../images/slider-bg.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 90vh; /* fills most of screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.slider_section .detail-box {
  max-width: 700px;
  margin: auto;
}

.slider_section .detail-box h2 {
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
}

.slider_section .detail-box span {
  display: block;
  color: #fefdfc;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 10px;
}

.slider_section .detail-box p {
  color: #fefdfc;
  margin-top: 20px;
  font-size: 1rem;
}


/* Carousel Indicators */
.slider_section ol.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider_section .btn-box {
  margin-top: 30px;
}

.slider_section .btn-box .btn-1,
.slider_section .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider_section .btn-box .btn-1 {
  background-color: #DA70D6;
  color: #050505;
}

.slider_section .btn-box .btn-1:hover {
  background-color: #e6e600;
}

.slider_section .btn-box .btn-2 {
  background-color: #ffffff;
  color: #2CA6A4;
}

.slider_section .btn-box .btn-2:hover {
  background-color: #DA70D6;
  color: #fff;
}

.slider_section ol.carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider_section ol.carousel-indicators li.active {
  background-color: transparent;
  border: 2px solid #ffffff;
}

/* Slider Titles */
.slide-title {
  font-size: 2rem;
  color: #000;
  font-weight: 600;
}

.slide-subtitle {
  font-size: 1.25rem;
  color: #003366;
  margin-top: 10px;
  font-weight: 500;
}

.slide-text {
  color: #333;
  margin: 20px auto;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
}

/* Buttons */
.btn-box .btn-1,
.btn-box .btn-2 {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}
/* Responsive */
@media (max-width: 768px) {
  .slider_section .detail-box h2 {
    font-size: 1.2rem;
  }
  .slider_section .detail-box span {
    font-size: 2rem;
  }
}


.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

.p2 {
  font-family: Arial, Helvetica, sans-serif;
}


/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: color: #ffffff;
  color: var(--default-color);
  padding: 20px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 03;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 20px;
  font-weight: 700;
	
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}







.about_section {
  background-color: #f7f7f7;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .row .col-md-6 {
  padding: 0;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box {
  padding: 45px 0;
}

.about_section .detail-box p {
  margin-top: 20px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 12px 45px;
  background-color: #ffff00;
  color: #050505;
  border-radius: 0;
  text-transform: uppercase;
  margin-top: 25px;
}

.about_section .detail-box a:hover {
  background-color: #e6e600;
}

.client_section {
  font-family: "Lato", sans-serif;
}

.client_section h2 {
  text-align: center;
}

.client_section .client_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.client_section .client_container .img-box {
  width: 250px;
  border: 5px solid #7f7f31;
  border-radius: 100%;
}

.client_section .client_container .img-box img {
  width: 100%;
}

.client_section .client_container .detail-box {
  margin-top: 25px;
}

.client_section .client_container .detail-box h4 {
  text-transform: uppercase;
  color: #1d1b28;
  font-weight: normal;
}

.client_section .client_container .detail-box h6 {
  text-transform: uppercase;
  color: #7f7f31;
}

.client_section .client_container .detail-box p {
  color: #1d1b28;
  margin: 20px;
}

.client_section .client_container .detail-box img {
  width: 60px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #2CA6A4;
  opacity: 1;
  top: 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: ;
}

.client_section .carousel-control-prev {
  background-image: url(../images/prev.png);
}

.client_section .carousel-control-next {
  background-image: url(../images/next.png);
}

.contact_section {
  position: relative;
  background-color:#d486c4 ;
  font-family: "Poppins", sans-serif;
}

.contact_section h2 {
  text-align: center;
  margin-bottom: 65px;
}

.contact_section h2 span {
  color: #fefdfc;
}

.contact_section form {
  padding-right: 35px;
}

.contact_section input {
  width: 100%;
  border: 0;
  height: 50px;
  border-radius: 25px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #fefdfc;
  outline: none;
  color: #101010;
}

.contact_section input::-webkit-input-placeholder {
  color: #131313;
}

.contact_section input:-ms-input-placeholder {
  color: #131313;
}

.contact_section input::-ms-input-placeholder {
  color: #131313;
}

.contact_section input::placeholder {
  color: #131313;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  padding: 15px 55px;
  outline: none;
  border: none;
  border-radius: 30px;
  border: 1px solid #fa0909;
  color: #fff;
  font-weight: bold;
  background-color: #e7e7e7;
}

.contact_section .map_section {
  width: 100%;
  height: 450px;
}

.info_section {
  background-color: #252525;
  color: #fefdfc;
  font-family: "Lato", sans-serif;
}

.info_section h5 {
  margin: 20px 0 25px 0;
  font-weight: 400;
  text-transform: uppercase;
}

.info_section .form_heading {
  font-weight: normal;
  text-transform: uppercase;
}

.info_section .info_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 25px;
}

.info_section .info_logo a span {
  font-size: 24px;
  font-weight: 700;
  color: #fefdfc;
  margin-left: 10px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_form form input {
  min-width: 100%;
  height: 45px;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 0 15px;
}

.info_section .info_form form button {
  padding: 0 45px;
  height: 40px;
  outline: none;
  border: none;
  border-radius: 30px;
  color: #050505;
  text-transform: uppercase;
  background-color: #ffff00;
  -webkit-transform: translate(-102%);
          transform: translate(-102%);
  margin-top: 2.5px;
}

/* footer section*/
.footer_section {
  background-color: #d486c4;
  padding: 20px;
  background-color: #d486c4;
}

.footer_section p {
  margin: 0;
  text-align: center;
  color: #fefdfc;
}

.footer_section a {
  color: #d486c4;
}

/* Container for responsive layout */
.container {

  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.info-box {
  flex: 1 1 calc(33% - 40px);
  padding: 25px;
  background-color: #ffffff;
  border: 2px solid #d486c4;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.info-box:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.info-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Heading Styling with Capitalization */
.info-box h2 {
  font-family: 'Poppins', sans-serif;
  color: #007bff;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Paragraph Styling with Enhanced Typography */
.info-box p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

/* Responsive Layout Adjustments */
@media (max-width: 768px) {
  .info-box {
    flex: 1 1 100%;
  }
/*# sourceMappingURL=style.css.map */

