@charset "UTF-8";
/****** Utils ******/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");

* {
  outline: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --white: #fff;
  --dark: #000;
  --black: #000;
  --light: #F8F8F8;
  --gray-100: #E7E7E7;
  --gray-200: #D1D1D1;
  --gray-300: #B0B0B0;
  --gray-400: #888888;
  --gray-500: #6D6D6D;
  --gray-600: #5D5D5D;
  --gray-700: #4F4F4F;
  --gray-800: #3D3D3D;
  --gray-900: #191919;
  --light-100: #FEFEFE;
  --light-200: #FCFCFD;
  --light-300: #FBFBFD;
  --light-400: #F9FAFC;
  --light-500: #F8FAFB;
  --light-600: #F7F9FB;
  --light-700: #F6F8FA;
  --light-800: #F5F7FA;
  --light-900: #F4F6F9;
  --primary-color: #0077FF;
  --secondary-color:#FECA0D;
  --heading-color:#1D1E20;
  --para-color:#585858;
  
  --widget-bg: rgba(255,255,255,0.95);
  --widget-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
header {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* html { overflow-y: scroll!important; } */

html,body{
  overflow-y: auto;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--white);
  /* overflow-y: auto; */
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
}
::selection {
  background: #392C7D;
  color: var(--white);
  text-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
button:focus {
  box-shadow: none !important;
}
p {
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.5!important;
  font-size: 16px;
}
p:last-child {
  margin-bottom: 0;
}

b{
    font-size: 700;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: var(--heading-color);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

h1{
  font-size: 38px;
}
h2{
  font-size: 36px;
}
h3{
  font-size: 32px;
}
ol, ul {
  list-style: none;
  margin-block-end: 0;
  padding: 0;
}

ul {
  list-style: none;
}
ul.list-disc {
  list-style: disc;
  padding-left: 15px;
}
ul.list-disc ul {
  list-style-type: circle;
}
ul.list-decimal {
  list-style: decimal;
  padding-left: 15px;
}
ul.list-decimal ul {
  list-style-type: decimal;
}
ul.list-icon {
  list-style: none;
  padding-left: 0;
}
ul.list-icon > li {
  padding-left: 1.875rem;
  counter-increment: li;
}
ul.list-icon > li i{
  display: inline-block;
  height: 20px;
  width: 20px;
  text-align: center;
  margin-left: -1.25rem;
  position: relative;
  left: -10px;
  padding: 1px;
  top: -1px;
}
ul.list-icon > li i {
  font-size: 20px;
  top: 5px;
}
ul .btn-primary:not(:disabled):not(.disabled):active:focus, ul .btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: none;
}

.main-wrapper {
  /* Layout base */
  width: 100%;
  min-height: 100vh;   /* full screen height */
  display: flex;
  flex-direction: column;  /* header, content, footer in vertical order */

  /* Background */
  background-color: #fff;   /* white base, easy to change */
  /* or */
  /* background: #f9fafb;  subtle light gray */

  /* Text defaults */
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2937;  /* dark gray text */

  /* Smoothing */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Overflow control */
  overflow-x: hidden;   /* avoid horizontal scrollbars */
overflow-y: auto;
  /* Optional alignment */
  margin: 0 auto;   /* centers if max-width used */
}

/* header top */
.header-topbar-sec {
  padding: 8px 0 0;
  position: relative;
  background: var(--primary-color);
}
.header-topbar-sec p a {
  color: var(--white);
  text-decoration: none;
}
.header-topbar-sec p i {
  color: var(--secondary-color);
}
.header-topbar-sec p:hover a{
  color: var(--secondary-color);
}
@media (max-width: 400px) {
  .header-topbar-sec {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
}

/* main header */

/* Header Styles *//* ========================
   Main Header
======================== */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Logo */
.navbar-brand img {
  width: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
  display: inline-block;
  font-weight: 500;
  color: var(--heading-color);
  padding: 8px 15px;
  position: relative;
  transition: color 0.3s;
}

/* Hover underline */
.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-item:hover > .nav-link::after {
  width: 100%;
}

/* Active + Hover colors */
.navbar-nav .nav-link:hover {
  font-weight: 600;
  color: var(--primary-color);
}
.active-nav-item {
  color: var(--primary-color) !important;
}

/* ========================
   Hamburger Button
======================== */
.navbar-toggler {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar-toggler:hover i {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

/* ========================
   Social Icons
======================== */
.navbar-social a,
.offcanvas-social a {
   font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}
.navbar-social a:hover,
.offcanvas-social a:hover {
    background: var(--secondary-color);
  color: var(--primary-color);
}
.offcanvas-social {
  padding-bottom: 20px;
}

/* ========================
   Offcanvas
======================== */
.offcanvas {
  background-color: rgba(255, 255, 255, 0.95);
  width: 270px !important;
}
.offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}
.offcanvas-header img {
  max-height: 100px;
}
.offcanvas-close-btn {
  background: white;
  border: none;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  padding: 0;
}
.offcanvas-close-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}
.offcanvas .nav-link {
  color: var(--heading-color);
  font-weight: 500;
  padding: 10px 0;
}
.offcanvas .nav-link:hover {
  color: var(--primary-color);
}

/* --------------------------------------------------- */

/* Hero Section with linear gradient */.hero-blue-section {
  background: linear-gradient(135deg, #0077FF 0%, #0B59D7 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* Left content breathing room */
.banner-content {
  max-width: 580px;
  margin-right: auto;
}

.banner-content h1 {
  color: #fff;
  line-height: 1.4;
  word-wrap: break-word;
  font-size: 48px;
}
.banner-content h1 span {
  color: #FFC107;
}
.banner-content p {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.8rem;
  max-width: 500px;
}

/* Hero button */
.btn-hero {
  padding: 12px 35px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background-color: #ffffff;
  color: #0077FF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Images container */
.hero-images-container {
  display: flex;
  align-items: stretch;    /* 🔑 make children same height */
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  height: 100%;            /* ensure equal height scaling */
}

.main-img {
  width: 50%;          /* responsive scaling */
  max-width: 290px;
  height: auto;
  aspect-ratio: 3 / 4; /* keeps proportion */
  object-fit: cover;
}

.side-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;           /* take half space beside main */
  max-width: 250px;
}

.side-img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;  /* keep ratio */
  object-fit: cover;
}

/* ✅ Responsive scaling only, keep same layout */
@media (max-width: 991px) {
  .hero-images-container {
    flex-direction: row;  
    align-items: flex-start;
  }
  .main-img {
    width: 50%;
    max-width: 100%;
  }
  .side-images {
    width: 39%;
    max-width: 100%;
  }
}

/* Play button */
.video-button {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
  color: #fff;
  border: 2px solid white;
  font-size: 24px;
}

.video-button span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid white;
  animation: ripple-outline 2s linear infinite;
}
.video-button span:nth-child(1) { animation-delay: 0s; }
.video-button span:nth-child(2) { animation-delay: 0.6s; }
.video-button span:nth-child(3) { animation-delay: 1.2s; }

@keyframes ripple-outline {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(2.5); opacity: 0; }
}

/*  */
.intro-sec {
  padding: 60px 20px 0px;
}
.intro-sec h2 span{
  color: var(--primary-color);
}
.intro-sec .breadcrumb-home h2{
  color: black;
}
.intro-sec .breadcrumb-home p{
  font-size: 16px!important;
  color: var(--para-color);
}
  @media (max-width: 576px) { /* Mobile devices */
    .intro-sec{
      padding: 20px 10px;
    }
    .breadcrumb-home h2 {
      font-size: 24px !important;
    }

    .breadcrumb-home p {
      font-size: 14px;
    }
  }
    .breadcrumb-home h2 {
    font-size: 35px;
    text-align: center;
  }

  .breadcrumb-home p {
    font-size: 16px;
  }

  @media (max-width: 767px) {
    .intro-sec{
      padding: 25px 10px;
    }
   .breadcrumb-home p {
      font-size: 14px;
      line-height: 1.7;
    }
  }
  @media (max-width: 991px) {
    .intro-sec{
      padding: 25px 10px;
    }}


/* ------------- why choose us section */
.why-choose-us-sec {
  padding: 40px 0px; 
}

.why-choose-title h2 {
  color: var(--primary-color); /* blue accent */
  font-size: 38px;
  margin-bottom: 15px;
}
.why-choose-img-con img {
  max-width: 100%;
}

/* our services */
.our-services-sec{
background: linear-gradient(to right, #fff3cc, #e6f2ff);
  padding: 60px 0px;
}
.our-services-sec .service-head h2{
  font-size: 38px;
  color: var(--primary-color);
}

@media(max-width:576px){
  .our-services-sec .service-head h2{
    font-size: 24px;
  }
}
.our-services-sec .service-head p{
  text-align: center;
  color: var(--para-color);
  font-size: 16px;
  max-width: 1000px;
}


/* Service Card */
.our-services-sec .service-card{
  background-color: #fff;
  border-radius: 15px;
 box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  
}
.service-card-img{
    display: inline-block;
    padding: 10px;
    border-radius: 16px;
    color: white;
    background: var(--primary-color);
}
.service-card-img img{
  width: 32px;
  filter: brightness(0) invert(1);
}

.ser-card-title{
  font-size: 1.2rem;
  font-weight: 600;

}
.ser-card-desc {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
.service-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  color: white!important;
  background-color: var(--primary-color)!important;
}
.service-card:hover .ser-card-title{
  color: white;
}
.service-card:hover .service-card-img{
  background-color: var(--secondary-color);
}


/* cilent logos  */

.client-logos-sec {
  padding: 40px 20px;
  /* background-color: var(--secondary-color); */
}

.clients-title h2 {
  color: black;
  font-weight: 700;
  font-size: 36px;
}

/* Swiper slide */
.client-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  height: 160px; /* fixed height */
}

/* Images: same size, fit in container */
.client-slide img {
  margin-inline: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Optional: adjust spacing for small screens */
@media (max-width: 576px) {
  .clients-title h2 {
    font-size: 24px;
  }
  .client-slide {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 768px) {
  .client-slide {
    height: 140px;
  }
}


/* footer */

.footer-section {
  background: var(--primary-color);
  color: white;
  padding: 60px 20px 10px;
  font-family: Arial, sans-serif;
}
/* Logo + desc */
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Headings with underline */
.footer-heading {
  font-weight: 600;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

/* Links */
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--secondary-color);
}

/* Contact info */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-contact i {
  margin-right: 10px;
  font-size: 16px;
  color: var(--secondary-color);
}
.footer-contact a {
  color: white;
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--secondary-color);
}

/* Social Icons */
.footer-social a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-bottom span{
  color: var(--secondary-color);
}
.footer-policy a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 10px;
}
.footer-policy a:hover {
  color: white;
  font-size: 15px;
  font-weight: 500;
}

/* contact section  */
/* ========================
   Contact Section Styling
======================== */
.contact-section {
  background-color: var(--secondary-color);
  padding: 60px 20px;
}


/* Contact Form Card */
.contact-form-wrapper {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  font-size: 2rem;
}

/* Submit Button */
.contact-form-wrapper button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form-wrapper button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* ========================
   Floating Inputs
======================== */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.boxed-input {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 16px 14px;
  font-size: 1rem;
  background: #f9f9f9;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.boxed-input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.3);
  outline: none;
  border: 2px solid var(--primary-color);
}

.floating-label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #777;
  pointer-events: none;
  transition: all 0.3s ease;
}

.boxed-input:focus + .floating-label,
.boxed-input:not(:placeholder-shown) + .floating-label {
  top: -8px;
  left: 10px;
  font-size: 0.85rem;
  color: var(--primary-color);
  background: #fff;
  padding: 0 6px;
  border-radius: 4px;
}

/* ========================
   Responsive Fixes
======================== */
@media (max-width: 992px) {
  .contact-section {
    padding: 40px 15px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .contact-form-wrapper h2 {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 30px 10px;
  }
  .contact-form-wrapper {
    padding: 20px 15px;
  }
  .contact-form-wrapper h2 {
    font-size: 1.4rem;
  }
  .boxed-input {
    padding: 14px 12px;
    font-size: 0.95rem;
  }
  .contact-form-wrapper button {
    font-size: 1rem;
    padding: 12px;
  }
}

/* testimonials */

/* Section background + spacing */
.testimonials-sec {
  /* background: var(--primary-color); dark background */
  background-image: url('../imgs/clienttest-bg.avif') center/center no-repeat;
  padding: 80px 0;
  color: #fff;
}

/* Section Heading with Lines */
.section-header h2 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color);
}


/* Testimonial Card */

.testimonials-sec {
   background: url('../imgs/clienttest-bg.avif') center no-repeat;
  padding: 60px 20px;
}
.testimonials-sec .section-header h2{
  color: var(--primary-color);
  font-size: 38px;
}
.owl-carousel .owl-stage-outer {
  padding-block-start: 40px;
}
.card-testi {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px 20px;
  margin: 40px 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--secondary-color);
   border-bottom: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
  min-height: 330px;
}
.card-testi:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Profile / Company Logo in Testimonials */
.img-testi {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px; /* Slightly bigger holder */
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border-top: 4px solid var(--secondary-color);
 
  overflow: hidden; /* Ensures logo stays inside circle */
}

/* Company logo inside testimonial */
.img-testi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;         /* Keeps image ratio */
  height: auto;        /* Prevents stretch */
  object-fit: contain; /* Keeps full logo visible */
  border-radius: 50%;  /* Softens corners if needed */
  transform: scale(1.3);
  transition: transform 0.3s ease;
}



/* Text inside card */
.card-testi h3 {
  margin-top: 40px; /* Space below circular image */
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
}
.card-testi p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 15px;
  color: var(--para-color);
  text-align: justify;
  padding: 0 8px;
}

/* Quote icons */
.quote-icon {
  color: var(--primary-color);
  font-size: 1rem;
  margin: 0 5px;
  vertical-align: middle;
}


.owl-dots button{
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
}

/* Owl carousel adjustments */
.owl-carousel .owl-stage-outer {
  padding-block-start: 30px;
}
.owl-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  outline: none;
  border: none;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.owl-dots .owl-dot.active span {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Navigation arrows */
.owl-prev, .owl-next {
  width: 50px;
  height: 50px;
  font-size: 20px;
}
.owl-prev i, .owl-next i {
  font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .card-testi { margin: 30px 8px; }
  .img-testi img { width: 70px; height: 70px; }
  .owl-prev, .owl-next { width: 45px; height: 45px; }
}
@media (max-width: 992px) {
  .section-header h2 { font-size: 1.6rem; }
  .card-testi { padding: 25px 15px; margin: 25px 6px; }
  .img-testi { top: -55px; }
}
@media (max-width: 768px) {
  .section-header h2 { font-size: 1.4rem; }
  .card-testi { padding: 20px 12px; margin: 20px 4px; }
  .img-testi img { width: 60px; height: 60px; }
  .owl-prev, .owl-next { width: 40px; height: 40px; font-size: 18px; }
}
@media (max-width: 576px) {
  .testimonials-sec .section-header h2{font-size: 24px;}
  .section-header h2 { font-size: 1.2rem; }
  .line-left, .line-right { width: 30px; margin: 0 5px; }
  .card-testi { padding: 18px 10px; margin: 15px 3px; }
  .img-testi { top: -50px; }
  .img-testi img { width: 50px; height: 50px; }
  .owl-prev, .owl-next { width: 35px; height: 35px; font-size: 16px; }
  .owl-prev i, .owl-next i {font-size: 16px;}
  .card-testi h3 { margin-top: 45px; font-size: 1rem; }
  .card-testi h3 span { font-size: 0.8rem; }
  .card-testi p { font-size: 0.85rem; }
}

@media (max-width:769px){
  .line-left,
 .line-right{
  display: none!important;
 }
}

/* top progress bar */
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f077"; /* Font Awesome chevron-up */
    font-family: "Font Awesome 6 Free";
    text-align: center;
    line-height: 46px;
    font-size: 15px;
    color: #0c5adb;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: bolder;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
  position: absolute;
  content: "\f077"; /* Font Awesome chevron-up */
  font-family: "Font Awesome 6 Free"; 
  text-align: center;
  line-height: 46px;
  font-size: 15px;
  font-weight: bolder;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}

.prgoress_indicator:hover::after {
  color: #0c5adb;
}
.prgoress_indicator:hover::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:#0c5adb;
  stroke-width: 4;
  box-sizing: border-box;
  stroke-dasharray: 307.919;   /* total path length */
  stroke-dashoffset: 307.919;  /* start empty */
  transition: stroke-dashoffset 0.2s linear;
}

/* whatspp */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  color: #fff;
}

/* Floating Text */
.whatsapp-text {
  position: absolute;
  bottom: 70px; /* distance above button */
  left: 50%;
  transform: translateX(-50%);
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  animation: floatText 2s infinite ease-in-out;
}

/* Simple floating animation */
@keyframes floatText {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* contact us */

/* Section styling */
.hero-breadcrumbs {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 250px; /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.hero-breadcrumbs .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8); /* semi-transparent dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered content */
.hero-breadcrumbs .content-wrapper {
  text-align: center;
  color: #fff;
}

/* H1 styling */
.hero-breadcrumbs h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  color: white;
}

/* Breadcrumbs styling */
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-list li + li::before {
  content: "›"; /* right arrow */
  margin: 0 6px;
  color: var(--primary-color);
}

.breadcrumb-list a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-list a:hover {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .hero-breadcrumbs h1 {
    font-size: 24px;
  }
  .breadcrumb-list li + li::before {
    margin: 0 4px;
  }
}


/* contact page */
/* Base styles */
.contact-info-box .info-row i {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-info-box .info-row h6 {
  font-size: 22px;
  color: white;
}

.con-desc p {
  font-size: 21px !important;
}

/* Responsive adjustments */

/* Tablets */
@media (max-width: 991px) {
  .contact-info-box {
    padding: 2rem;
  }

  .contact-info-box .info-row i {
    font-size: 28px;
  }

  .contact-info-box .info-row h6 {
    font-size: 20px;
  }

  .con-desc p {
    font-size: 18px !important;
  }
}

/* Mobiles */
@media (max-width: 767px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-form-wrapper {
    margin-bottom: 2rem;
  }

  .contact-info-box {
    padding: 1.5rem;
  }

  .contact-info-box .info-row {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .contact-info-box .info-row i {
    font-size: 24px;
    margin-bottom: 0.5rem;
  }

  .contact-info-box .info-row h6 {
    font-size: 18px;
  }

  .con-desc p {
    font-size: 16px !important;
  }

  .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .boxed-input,
  textarea.boxed-input {
    font-size: 14px;
    padding: 10px 12px;
  }

  button[type="submit"] {
    font-size: 14px;
    padding: 10px;
  }
}

.map-section .map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 767px) {
  .map-section .map-wrapper iframe {
    height: 300px;
  }
}

/* About Sanopix Section */
.about-sanopix {
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-sanopix .section-title {
  font-weight: 700;
  color: #222;
}

.about-sanopix .section-title span {
  color: var(--primary-color);
}

.about-sanopix .lead {
  font-size: 1.1rem;
  color: #444;
}

/* Image styling */
.about-sanopix .image-frame img {
  transition: transform 0.4s ease;
}

.about-sanopix .image-frame:hover img {
  transform: scale(1.03);
}

/* Decorative Shape */
.decor-circle {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  opacity: 0.07;
  border-radius: 50%;
  z-index: 0;
}

/* Cards */
.about-sanopix .about-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-sanopix .about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.about-sanopix .about-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-sanopix .about-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Icons */
.icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .about-sanopix .image-frame {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .about-sanopix .section-title {
    font-size: 1.8rem;
  }
  .about-sanopix .lead {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .about-sanopix .image-frame {
    display: flex;
    justify-content: center;
  }

  .about-sanopix .image-frame img {
    max-width: 85%;
  }
}


/* Why Choose Sanopix Section */
.why-choose-sanopix {
  position: relative;
  background: linear-gradient(to right, #fdfcf8, #f6faff);
  overflow: hidden;
  z-index: 1;
}

.why-choose-sanopix .section-title {
  font-weight: 700;
  font-size: 2rem;
  
}

.why-choose-sanopix .section-title span {
  color: var(--primary-color);
}

.why-choose-sanopix .lead {
  font-size: 1rem;
  color: #222;
}

.choose-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: #222;
  margin-bottom: 1rem;
}

.choose-list i {
  color: #22c55e;
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
}
.decor-shape { position: absolute; width: 300px; height: 300px; background: linear-gradient(135deg, rgba(255, 76, 96, 0.2), rgba(0, 180, 255, 0.2)); clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 20% 100%, 0% 35%); z-index: 0; } 
.decor-shape.top-right { top: -80px; right: -60px; }
 .decor-shape.bottom-left { bottom: -80px; left: -60px; transform: rotate(180deg); }

/* MISSION, VISION & VALUES SECTION */
.mission-vision {
  /* background: linear-gradient(to right, #fff3cc, #e6f2ff); */
  overflow: hidden;
  position: relative;
}

.mission-vision .section-title {
  font-size: 2rem;
  color: #111;
}

.mission-vision .card {
  border-radius: 16px;
  transition: all 0.4s ease;
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.mission-vision .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 119, 255, 0.3) !important;
}



/* Icon Box */
.mission-vision .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, #0077FF, #FECA0D);
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}

.mission-vision .icon-box i {
  font-size: 2rem;
  color: #0077FF;
}

.mission-vision .card h5 {
  color: #111;
  font-size: 1.25rem;
}

.mission-vision .card p {
  color: #555;
  font-size: 1rem;
  text-align: center;
}



.cta-section{
  padding: 60px 20px;
  background-color: var(--secondary-color);
}
.cta-section a{
  background-color: var(--primary-color);
  color: white;
}
.cta-section a:hover{
  background-color: white;
  color: var(--primary-color);
  outline: 2px solid var(--primary-color);
}

/* team section */
.team-section{
  background-color: var(--secondary-color);
}
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.team-img {
  object-fit: cover;
}

/* services page */

 .services-zigzag {
  padding: 60px 0;
}

.services-zigzag .section-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.services-zigzag .section-subtitle {
  color: #6c757d;
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}

/* Service Box */
.side-service-box {
  margin-block: 4rem;
}

/* Image Styling */
.service-image img {
  width: 100%;
  height: 320px;
  object-fit: cover; /* ensures image fills container without stretching */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Content Styling */
.service-content h3 {
  font-weight: 600;
  color: black;
  margin-bottom: 15px;
}

.service-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.service-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.service-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .side-service-box {
    flex-direction: column !important;
    text-align: center;
  }

  .service-content {
    margin-top: 20px;
  }
}

ul.bullets {
    line-height: 1.8;
    margin-bottom: 0;
    padding-inline-start: 10px;
    margin-top: 10px;
    list-style: none;
}
ul.bullets li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 19px;
    line-height: 22px;
    color: var(--para-color);
}
ul.bullets li:before {
    content: "\f04d" !important;
    font-family: "FontAwesome";
    font-size: 9px;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 600;
    line-height: 20px;
    top: 2px;
}

.process-section{
  padding: 60px 0px;
}
.process-section .process-header {
  color: black;
    text-align: center;
    margin: 0 auto;

}

.section-header h2{
  color: var(--primary-color);
  font-size: 36px;

}
.section-header p {
  font-size: 1rem;
  max-width: 960px;
  color: var(--para-color);
  margin: 0 auto;
  text-align: center;
}

.process-section .process-card {
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 25px 20px; /* adjust padding to replace p-4 */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%; /* ensures uniform height */
  border-right: 4px solid var(--primary-color);
}

.process-section .process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-section .process-card i {
  background: #f1f5fb;
  height: 80px;
  width: 80px;
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
  color: #007bff;
}

.process-section .process-card h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
  text-align: left;
  word-wrap: break-word; /* ensures long titles stay inside */
}

.process-section .process-card p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  text-align: left;
}
/* ===============================
   RESPONSIVE PROCESS SECTION
================================ */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  .process-section .process-card {
    padding: 22px 18px;
  }

  .process-section .process-card i {
    height: 70px;
    width: 70px;
    padding: 18px;
    font-size: 1.6rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .process-section {
    padding: 50px 0;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .process-section .process-card {
    text-align: center;
  }

  .process-section .process-card h5,
  .process-section .process-card p {
    text-align: center;
    font-size: 16px;
  }

}

/* Small Mobile (≤ 576px) */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 24px;
  }

  .process-section .process-card {
    padding: 20px 16px;
  }

  .process-section .process-card i {
    height: 60px;
    width: 60px;
    padding: 15px;
    font-size: 1.4rem;
  }
}

