/********** Template CSS **********/
body{
  font-family: "Poppins", sans-serif !important;
	 overflow-x: hidden !important;
  
}

 
:root {
 --primary: #14A800 !important; 
/*   --secondary: #164B5D !important; */
	--secondary: #001760 !important;
  --light: #F8F8F8;
  --dark: #252525;
}
.bg-background {
  background-color: rgba(192, 192, 192, 0.137) !important;
}
.bg-secondary{
  background-color: var(--secondary) !important;
}
.text-secondary{
  color: var(--secondary) !important;
}

.gradient-banner {
  background: linear-gradient(135deg, #000, #001760);
  color: white;   
  border-radius: 0;  
}

.gradient-banner h2 {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}


.custom-banner-bg {
    background-image: url('https://techsinc.io/wp-content/uploads/2025/05/Background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   border-radius: 15px !important;
	 padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .custom-banner-bg {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}



h1,
h2,
.h1,
.h2,
.fw-bold {
font-weight: 600 !important;
	font-family: "Poppins", sans-serif !important;
 
}

h3,
h4,
.h3,
.h4,
.fw-medium {
font-weight: 600 !important;
	font-family: "Poppins", sans-serif !important;
 
}

h5,
h6,
.h5,
.h6,
.fw-normal {
font-weight: 400 !important;
	font-family: "Poppins", sans-serif !important;
 
}

p,
.p{
font-size: 18px !important;
	font-family: "Poppins", sans-serif !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/* ******************************************** */
/*** Spinner ***/
/* ******************************************** */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* ******************************************** */
/*** Button ***/
/* ******************************************** */
.btn {
  font-weight: 500;
  transition: .5s;
  border-radius: 30px ;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #FFFFFF;
}

.btn.btn.btn-primary:hover{
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}
/* ******************************************** */
/*** Navbar ***/
/* ******************************************** */

/* Logo container positioning */
/* ... (keep existing navbar styles) ... */

/* Logo container */
.navbar-brand {
  position: relative;
  display: block;
  min-width: 120px; 
  height: 40px; 
}

/* Logo images */
.navbar-brand img {
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px; /* Desktop size */
  width: auto;
}

/* Default logo (transparent header) */
.logo-scrolled {
  opacity: 0;
  visibility: hidden;
}

/* Scrolled state */
.scrolled-solid .logo-default {
  opacity: 0;
  visibility: hidden;
}

.scrolled-solid .logo-scrolled {
  opacity: 1;
  visibility: visible;
}

/* Mobile Optimization */
@media (max-width: 991.98px) {
  .navbar-brand {
    min-width: 80px; /* Mobile width */
    height: 50px; /* Mobile height */
  }

  .navbar-brand img {
    height: 50px; /* Mobile size */
  }

  /* Show scrolled logo when menu is open */
  .menu-open .logo-default {
    opacity: 0;
    visibility: hidden;
  }
  
  .menu-open .logo-scrolled {
    opacity: 1;
    visibility: visible;
  }

  /* Force scrolled logo color when menu is open */
  nav.start-clear .navbar-nav .nav-link {
    color: var(--dark);
  }
  
  nav.start-clear .navbar-nav .nav-link:hover,
  nav.start-clear .navbar-nav .nav-link.active {
    color: var(--primary);
  }
}

/* Smooth transitions */
.navbar-brand img {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Mobile Toggler Color Control */
@media (max-width: 991.98px) {
  /* When menu is open - force black color */
  nav.menu-open .custom-toggler-icon {
    color: #000 !important;
  }

  /* When closed on transparent header - keep white */
  nav.start-clear:not(.menu-open) .custom-toggler-icon {
    color: #fff;
  }

  /* When closed on scrolled header - keep black */
  nav.scrolled-solid:not(.menu-open) .custom-toggler-icon {
    color: #000;
  }
}


.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 30px 0;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
 
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar .navbar-nav {
      border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      visibility: hidden;
      top: 100%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
      transition: .5s;
      opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
      transform: rotateX(0deg);
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}
/* Mega Dropdown Style - Enhanced */
.mega-dropdown {
  min-width: 650px;
  padding: 0.50rem !important;
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  border-radius: 12px;
  box-shadow:
      0 4px 6px rgba(0, 0, 0, 0.249),
      0 10px 15px rgba(20, 20, 20, 0.248),
      0 20px 40px rgba(11, 136, 67, 0.511); 
  margin-left: -15rem !important;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  
}

/* Show dropdown */
.dropdown:hover .mega-dropdown {
  /* opacity: 1; */
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items */
.mega-dropdown .dropdown-item {
  white-space: normal;
  word-break: break-word;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: transparent;
}

/* Hover Effects */
.mega-dropdown .dropdown-item:hover {
  color: #fff;
  background: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Optional icon hover effect if used */
.mega-dropdown .dropdown-item .icon-mega {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.mega-dropdown .dropdown-item.active img,
.mega-dropdown .dropdown-item:hover img{
filter:brightness(0) invert(1);
}

/* Animation on dropdown entrance */
@keyframes dropdownFade {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
.dropdown:hover .mega-dropdown {
  animation: dropdownFade 0.4s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .mega-dropdown {
      min-width: 100%;
      padding: 1rem;
      margin-left: 0 !important;
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      background: #fff;
      max-height: 300px; 
      overflow-y: auto;
      overflow-x: hidden;
  }
  .mega-dropdown::-webkit-scrollbar {
      width: 6px;
  }
  
  .mega-dropdown::-webkit-scrollbar-track {
      background: #f1f1f1;
  }
  
  .mega-dropdown::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 4px;
  }
}


/* ///////////// */

/* extra style only while the bar is solid */
.navbar.bg-white {
  box-shadow: 0 0.125rem .75rem rgba(0,0,0,.08);
}

nav.start-clear {
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}

nav.scrolled-solid {
  background: #fff;                   
  box-shadow: 0 0.125rem .75rem rgba(0,0,0,.08);
}


/* while the bar is transparent (at top) */
nav.start-clear .navbar-nav .nav-link {
  color: #fff;                
}

/* optional: hovered / active while clear */
nav.start-clear .navbar-nav .nav-link:hover,
nav.start-clear .navbar-nav .nav-link.active {
  color: var(--primary);     
}

/* after scroll: bar is solid white */
nav.scrolled-solid .navbar-nav .nav-link {
  color: var(--dark);        
}

/* hovered / active while solid */
nav.scrolled-solid .navbar-nav .nav-link:hover,
nav.scrolled-solid .navbar-nav .nav-link.active {
  color: var(--primary);
}

/* ------------------- TOGGLER ICON ------------------- */
/* Base toggler icon styling */
.custom-toggler-icon {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

/* White icon on transparent nav */
nav.start-clear .custom-toggler-icon {
  color: #fff;
}

/* Black icon on scrolled nav */
nav.scrolled-solid .custom-toggler-icon {
  color: #000;
}
.custom-toggler-icon.active {
  color: var(--primary) !important;
}

/* ------------------- COLLAPSED MENU PANEL ------------------- */
/* white background for the slide‑down plus dark links */
@media (max-width: 991.98px) {

  nav.start-clear .navbar-collapse {
      background:#ffffff;
  }

  nav.start-clear .navbar-nav .nav-link {
      color: var(--dark);
  }

  nav.start-clear .navbar-nav .nav-link:hover,
  nav.start-clear .navbar-nav .nav-link.active {
      color: var(--primary);
  }
}
/* ******************************************** */
/* Padding for transparent header */
/* ******************************************** */

/* .transparent-padding {         
  padding-top: 10rem !important;
}
 */
/* mobile tweak ( ≤ 767.98 px ) --------*/
@media (max-width: 767.98px) {
  .transparent-padding {
      padding-top: 0rem !important;   
  }
}

/* trasparent margin */
.transparent-margin {
  margin-top: -6rem !important;    
}

@media (max-width: 767.98px) {
  .transparent-margin {
      margin-top: -7rem !important;    
  }
}

/* ******************************************** */
/* ===== Hero Section ===== */
/* ******************************************** */


/* .hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.874), rgba(0, 0, 0, 0.396)),
    url("https://staging.techsinc.io/wp-content/uploads/2025/05/Banner-2.webp") center / cover no-repeat;

  min-height: 120vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-attachment: fixed;
}

@media (max-width: 767.98px) {
  .hero-banner {
    
    background: linear-gradient(rgba(0, 0, 0, 0.874), rgba(0, 0, 0, 0.396)),
      url("https://staging.techsinc.io/wp-content/uploads/2025/05/Banner-2.webp") center / cover no-repeat;

    min-height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
  }

  .hero-banner h1 {
    padding-top: 10rem;
  }
} */
/* ******************************************** */
/* ===== pages Hero Section ===== */
/* ******************************************** */


/* .page-banner {

  background: linear-gradient(
    rgba(0, 0, 0, 0.752),
    rgba(0, 0, 0, 0.005)
            ),
            url("../img/Web-Banner-2.webp") center / cover no-repeat;
 
  min-height: 80vh;
  width: 100%;
  display: flex;                 
  align-items: center;
  overflow: hidden; 
  background-attachment: fixed;             
}
 */
/* @media (max-width: 768px) {
  .page-banner {
      height: 70vh !important;
      min-height: unset;
      background-attachment: scroll;
      background-size: cover;
      background-position: center;
  }
} */
.page-banner {
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.005)
  ),
  url("/wp-content/uploads/2025/10/Web-Banner-2.webp") center / cover no-repeat;
  
  height: 80vh;               /* Use full screen height */
  min-height: 400px;           /* Minimum height for smaller desktops */
  max-height: 900px;           /* Prevent it from becoming too tall */
  width: 100%;
  display: flex;                 
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  background-attachment: fixed;  
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .page-banner {
    height: auto;
    min-height: 400px;
    background-attachment: scroll; /* fixed background causes issues on mobile */
    padding: 2rem 1rem;
    background-position: center center;
	  display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .page-banner {
    height: auto;
    min-height: 500px;
    background-attachment: scroll;
    padding: 3rem 2rem;
    background-position: center center;
  }
}



/* Optional: control the internal spacing */
.page-banner .content-col {
  margin: 4rem 0;             
}

/* @media (max-width: 767.98px) {
  .page-banner .content-col {
      margin: 2rem 0;          
  }
} */
/* ******************************************** */
/* Logo caorusel slider */
/* ******************************************** */


/* .logo-item{
  display:flex;              
  align-items:center;
  justify-content:center;
  padding:10px 20px;          
}

.logo-item img{
  max-width:160px;           
  width:100%;
  height:auto;
  transition:filter .3s ease;
}

.logo-item img:hover{
  filter: none;             
} */

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;      
  padding: 20px;
  background: #fff;
}

.logo-item img {
  max-height: 80px;    
  width: auto;
  height: auto;
  object-fit: contain;
/*   filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}



/* Optional nav/button tweaks */
.logo-carousel .owl-nav button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:transparent;
  border:none;
  font-size:2rem;
}

.logo-carousel .owl-nav .owl-prev{left:-35px;}
.logo-carousel .owl-nav .owl-next{right:-35px;}

.logo-carousel .owl-stage {
  display: flex;
  animation: scroll-left 50s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* .logo-carousel .owl-stage {
  display: flex;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */
/* .logo-carousel-wrapper {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
  border-radius: 20px; 
  background: #fff; 
  margin-top: -8rem;
  position: relative;
  z-index: 999;
} */

.logo-carousel-wrapper {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: #fff;
/*   padding: 2rem 1rem; */
  position: relative;
  z-index: 10;
  overflow: hidden;
	margin-top: -8rem;
}


.logo-carousel-wrapper h5{
  color: #888;
}

@media (max-width: 768px) {
  .logo-carousel-wrapper{
    border-radius: 0;
    margin-top: 0;
  }

  .logo-carousel-wrapper h2{
      font-size: 22px;
  }

  .logo-carousel-wrapper h5{
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .logo-item {
    height: 90px;
    padding: 15px;
  }

  .logo-item img {
    max-height: 60px;
  }
}


/* ******************************************** */
/* Home About section border radius  */
/* ******************************************** */

.corner-radius-custom {
border-top-left-radius: 60px;
border-bottom-right-radius: 60px;

}


/* ******************************************** */
/* service tabs  */
/* ******************************************** */

/* ---------- pills ---------- */
.service-pills .pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: #ffffff;
  border: none;
  border-radius: .75rem;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: all .3s ease;
  cursor: pointer;
  font-weight: 500;
  height: 100%;
  width: 100%;
}

.service-pills .pill img{
  width:90px; height:90px; object-fit:contain;
}
.service-pills .pill.active,
.service-pills .pill:hover{
  background:var(--primary);
  color:#fff;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
.service-pills .pill.active img,
.service-pills .pill:hover img{
  filter:brightness(0) invert(1);
}

.service-pills .pill span{
  font-size:1rem;
  font-weight:600; 
}

/* ---------- panes ---------- */
.service-content .pane{display:none;}
.service-content .pane.active{display:block;}

@media (max-width: 575.98px){
  .service-pills .pill span{font-size:1rem;}
}

/* For Iphone */
/* nav a {
  color: black !important;
  text-decoration: none !important;
  -webkit-text-fill-color: black !important;
  -webkit-tap-highlight-color: transparent;
}
 */
/* Default pill styles */
.service-pills .pill span {
  color: black !important;
  -webkit-text-fill-color: black !important; /* Fix for iPhone Safari */
  text-decoration: none;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

/* On hover or active state */
.service-pills .pill:hover span,
.service-pills .pill.active span {
  color: white !important;
  -webkit-text-fill-color: white !important; /* Fix for iPhone Safari */
}


/* nav a:visited {
  color: black !important;
} */


/* About Us */
.about a:hover{
  color: var(--dark);
}

/* ******************************************** */ 
/*** Section Title ***/
/* ******************************************** */


.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* ******************************************** */
/*** Facts ***/
/* ******************************************** */


.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
}

.fact-item:hover .fact-icon {
  background: var(--dark);
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: .5;
}

.fact-item:hover .fact-icon i {
  color: #FFFFFF;
}



/* ******************************************** */
/* Banner */
/* ******************************************** */

.hero-banner2{
  height: auto !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0.508), rgba(0, 0, 0, 0.497)), url(../img/hero-section.jpg);
  background-size: cover;
  background-position: cente;
  visibility: visible;
  animation-delay: 1s;
  animation-name: fadeInUp;
  border-radius: 15px;
}


/* ******************************************** */
/* Case study css */
/* ******************************************** */

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.case-card img {
  transition: transform 1.9s ease;
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.case-card:hover img {
  transform: scale(1.09);
}

.case-study-text h2{
	font-size: 26px !important;
}

.case-study-text p {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* change as needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* ******************************************** */
/* *** Model card *** */
/* ******************************************** */

.model-card{
  background-color: #FAFAFA;
  border: #FAFAFA; 
  border-radius: 15px;
  padding: 25px;
}

.model-card .nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #14A800;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  font-size: 20px !important;
}

.model-card .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #14A800;
  border-radius: 65px !important;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-buttons button {
  flex: 1;
  min-width: 100px;
}

.tab-content .card {
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  border: none;
}

.tab-content h5 {
  font-size: 17px !important;
}

.all-tab-content {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.tab-pane active {
  background-color: var(--primary) !important;
}

@media (max-width: 768px) {
  .tab-buttons {
     flex-direction: column;
  }
}
@media (max-width: 768px) {
  .tab-custom {
    flex-direction: column;
    align-items: center; /* centers the tabs horizontally */
    justify-content: center; /* optional, keeps spacing even */
    gap: 10px; /* spacing between buttons */
  }

  .tab-custom .nav-link {
    width: 100%;
    text-align: center;
    max-width: 250px; /* optional: restricts width */
  }
}


/* ******************************************** */
/* Tab search bar section */
/* ******************************************** */

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #777;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #252525;
  appearance: none;
  border-radius: 15px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-bar-margin{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .search-bar-margin{
      margin-top: 0 ;
      margin-bottom: 0;
  }
}

.icon-img {
  width: 60px !important;
  height: auto !important;
}

.frontend h3{
	font-size: 16px !important;
}

.backend h3{
	font-size: 16px !important;
}

.nocode h3{
	font-size: 16px !important;
}

.database h3{
	font-size: 16px !important;
}

.devops h3{
	font-size: 16px !important;
}

.mobile h3{
	font-size: 16px !important;
}
.aiml h3{
	font-size: 16px !important;
}

/* ******************************************** */
/* Client partner story css */
/* ******************************************** */


.team-section {
  padding: 60px 0;
  position: relative;
}
.team-member-img{
 
  object-fit: cover;
  border-radius: 15px;
}


.team-nav-buttons {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .team-nav-buttons {
  margin-top: 25px !important;
}
}
.team-nav-buttons button {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.team-nav-buttons button:hover {
  background-color: var(--secondary);
}
.play-btn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 10px;
  transition: background-color 0.3s, transform 0.3s;
}
.play-btn i {
  font-size: 20px;
  margin-right: 8px;
}
.play-btn:hover {
  background-color: var(--secondary) !important;
  transform: scale(1.05);
  color: var(--light);
}

/*** About & Feature ***/
.about-img,
.feature-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 60%;
  height: 80%;
  object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
  margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--primary);
  z-index: -1;
}


/*** Testimonial ***/
/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.btn-sm:hover{
	background-color: var(--primary); 
	color: var(--light) !important;
}


/*** Footer ***/
.footer{
/*   background-color: #000000e9; */
/* 	background-color: var(--secondary) !important; */
	 background: linear-gradient(135deg, #000, #001760) !important;
}
.footer .btn.btn-link {
  display: flex;
	align-items: flex-start;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
 
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: #777777;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.footer p {
  display: flex;
  align-items: center; /* changed from flex-start to center for better alignment */
  margin-bottom: 10px;
/*   color: #ffffff !important); */
  font-size: 16px !important;
  line-height: 1.6;
}

.footer h5{
	font-weight: 600 !important;
}

.footer p i {
  margin-right: 10px;
  font-size: 16px;
  min-width: 20px; /* ensures consistent spacing even if icon is missing */
  text-align: center;
color: var(--primary);
}
.footer h6.fw-bold {
  font-size: 1rem;
}
.footer small {
  font-size: 0.85rem;
}


.footer-logo img{
	margin-left: -11px !important;
}
/* ****************************** */
/* About Us  */
/* ****************************** */

/* About Farooq Manzor Desktop*/

.rounded-start-custom {
  border-top-left-radius: 60px !important;
  border-bottom-right-radius: 60px !important;
  
}

.rounded-end-custom {
  border-radius: 60px;
  background-color: #89D37F;
}

.image-box{
  margin-top: -20rem; 
  margin-left: 8rem;
}



/* About Farooq Manzor Mobile*/

.portfolio img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-4 {
  max-width: 1300px;
  margin: 0px auto 0px auto;
  padding: 0px 40px;
}
@media (min-width: 1200px) and (max-width: 1441px) {
  .container-4 {
    max-width: 1250px;
    padding: 0px 36px;
  }
}
@media (max-width: 767px) {
  .container-4 {
    padding: 0px 30px;
  }
}
@media (max-width: 479px) {
  .container-4 {
    padding: 0px 30px 0px 20px;
  }
}

.about-me {
  padding-top: 50px;
  padding-bottom: 10px;
}
.about-me .about-me-container-4 {
  position: relative;
}
@media (max-width: 960px) {
  .about-me .about-me-container-4 {
    padding-bottom: 10px;
  }
}
.about-me .about-me-container-4 .about-me-title {
  font-size: 45px;
  color: var(--primary);
  font-weight: 700;
	line-height: 58px;
}
@media (max-width: 500px) {
  .about-me .about-me-container-4 .about-me-title {
    font-size: 30px;
  }
}

.about-me-flex-container-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 25px;
}
@media (max-width: 960px) {
  .about-me-flex-container-4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    gap: 50px;
  }
}
@media (max-width: 500px) {
  .about-me-flex-container-4 {
    margin-top: 20px;
  }
}
.about-me-flex-container-4 .about-me-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
}

@media (max-width: 500px) {
  .about-me-flex-container-4 .about-me-image {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .about-me-flex-container-4 .about-me-image {
    height: 300px;
  }
}
.about-me-flex-container-4 .about-me-image .back-div {
  position: absolute;
  bottom: 0;
  z-index: -3;
  background-color: var(--dark);
  width: 80%;
  height: 80%;
   border-radius: 15px;
}
.about-me-flex-container-4 .about-me-image .black-image {
  z-index: -2;
  position: absolute;
  left: 20px;
  bottom: 20px;
  height: 100%;
}
.about-me-flex-container-4 .about-me-image .black-image img {
  height: 100%;
}
.about-me-flex-container-4 .about-me-image .main-image {
  width: 70%;
  height: 70%;
  overflow: hidden;
  position: absolute;
  left: 25%;
  top: 5%;
  box-shadow: rgb(0, 0, 0) 0px 7px 50px 0px;
  transition: all 0.2s ease-out;
}
.about-me-flex-container-4 .about-me-image .main-image:hover {
  transform-origin: top center;
  transform: scale(1.5);
  border-radius: 25px;
}
.about-me-flex-container-4 .about-me-image .main-image img {
  transform-origin: center center;
  transform: scale(2);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-out;
}
.about-me-flex-container-4 .about-me-image .main-image img:hover {
  transform: scale(1);
}
.about-me-flex-container-4 .about-me-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

@media (max-width: 960px) {
  .about-me-flex-container-4 .about-me-content {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .about-me-flex-container-4 .about-me-content {
    text-align: left;
  }
}
.about-me-flex-container-4 .about-me-content .logo {
  max-width: 200px;
}
.about-me-flex-container-4 .about-me-content .logo img {
  filter: drop-shadow(0 0 25px rgb(0, 0, 0));
}
@media (max-width: 500px) {
  .about-me-flex-container-4 .about-me-content .logo img {
    transform: rotateZ(90deg);
  }
}
@media (max-width: 767px) {
  .about-me .about-me-container-4 .about-me-title {
    text-align: center;
  }
}


/*** About ***/
.about-img-2 {
  position: relative;
  overflow: hidden;
}

.about-img-2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-about-img.png) top left no-repeat;
  background-size: contain;
}

/*** Facts cards ***/

.custom-card {
  position: relative;
  height: 100%;
  transition: all 0.4s ease;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.custom-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.custom-card img {
  transition: transform 0.4s ease;
}

.custom-card:hover img {
  transform: scale(1.1);
}

.custom-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.bg-card-1 {
  background-color: #fdeae4 !important;
}

.bg-card-2 {
  background-color: #dbe8fe !important;
}

.bg-card-3 {
  background-color: #d8f3f0 !important;
}

.bg-card-4 {
  background-color: #f8d5dc !important;
}

.bg-card-5 {
  background-color: #fef6d5 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
  .custom-card {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .custom-card {
    padding: 1.5rem 1rem;
  }
}


/* ****************************** */
/* Our Services pages  */
/* ****************************** */

.list-note li {
  position: relative;
  display: flex;
  padding-bottom: 25px;
}

.list-note li span {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  display: flex
;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary) !important;
  font-weight: 1000 !important;
  border: 1px solid var(--primary);
  border-radius: 40px;
  background: #FFFFFF;
}

.list-note li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 20px;
  background: #bdc0c4;
  z-index: -1;
}

.hover-tab a {
 position: relative;
 overflow: hidden;
 transition: color 0.4s ease;
 z-index: 1;
 background-color: white;
 color: var(--dark); /* default text color */
}

.rounded {
 border-radius: 6px !important;
}

/* Sweep effect */
.hover-tab a::before {
 content: "";
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background-color: var(--primary); /* green */
 transition: left 0.7s ease;
 z-index: -1;
}

.hover-tab a:hover::before,
.hover-tab a.active::before {
 left: 0;
}

.hover-tab a:hover,
.hover-tab a.active {
 color: #fff !important;
}

.hover-tab a i {
 transition: transform 0.7s ease;
 color: var(--primary); /* default icon color */
}

.hover-tab a:hover i,
.hover-tab a.active i {
 transform: translateX(5px);
 color: #fff !important;
}

.animated {
  animation-duration: 1.25s;
}

.about-one__image {
  position: relative;
  z-index: 2;
  padding-right: 48px;
  padding-bottom: 10px;
}

@keyframes aboutShapetop {
  0% { top: 0; }
  50% { top: 20px; } 
  100% { top: 0; }
}

.about-one__shapetop {
  background-color: var(--green-text-dark, #07370a);
  height: 138px;
  top: 0;
  right: 10px;
  position: absolute;
  animation: aboutShapetop 1.8s linear infinite alternate;
}

@keyframes aboutShapeleft {
  0% { left: 190px; }
  50% { left: 200px; }
  100% { left: 190px; }
}


.about-one__shapetop {
  background-color: var(--green-text-dark, #07370a);
  height: 138px;
  top: 0;
  right: 10px;
  position: absolute;
  animation: aboutShapetop 1.8s linear infinite alternate;
}

.about-one__shapetop, .about-one__shapebottom {
  content: "";
  position: absolute;
  width: 22px;
  z-index: 2;
  background-color: var(--green-base, #1a9120);
}

.about-one__bigimage{
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

@media (max-width: 767.98px) {
.about-one__bigimage{
  width: 100%;
  height: 100%;
  border-radius: 15px;
 
}
}


/* service card how we work */
/* Default desktop styling */
.service-card {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.103);
  cursor: pointer;
  height: 370px;
  border-radius: 15px;
  text-align: center;
}

.service-card:hover {
  background-color: var(--primary);
  color: white;
}

.service-card:hover a,
.service-card:hover h5 {
  color: white !important;
}

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.service-card:hover img {
  filter: brightness(0) invert(1);
}

/* Large desktops (max-width: 1400px) */
@media screen and (max-width: 1400px) {
  .service-card {
    height: 400px;
    border-radius: 12px;
  }
}

/* Tablets (e.g., 1024px) */
@media screen and (max-width: 1199px) {
  .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .service-card {
    height: auto !important; /* 🔥 Fix: Let content flow naturally */
    padding: 30px 20px;
  }
}

/* Small tablets & large phones (max-width: 767px) */
@media screen and (max-width: 767px) {
  .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-card {
    height: auto;
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .service-card img {
    width: 70px;
    height: 70px;
  }

  .service-card h5 {
    font-size: 18px;
  }

  .service-card p,
  .service-card a {
    font-size: 14px;
  }
}



/* ******************************/
/* Contact Form 7 */
/* ******************************/


/* Container styling */
.custom-contact-form {
  margin: 0 auto;
  padding: 15px;

}

/* Style all form elements */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form select,
.custom-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  color: #888 !important;
}

/* Focus state */
.custom-contact-form input:focus,
.custom-contact-form textarea:focus,
.custom-contact-form select:focus {
  border-color: var(--primary);
  outline: none;
}

/* Textarea styling */
.custom-contact-form textarea {
  resize: none;
  height: 200px;
}

/* Submit button full width */
.custom-contact-form input[type="submit"] {
  background-color: var(--primary);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

/* Submit hover effect */
.custom-contact-form input[type="submit"]:hover {
  background-color: var(--secondary);
}

/* Placeholder color */
.custom-contact-form ::placeholder {
  color: #888;
}

/* Responsive fix for Contact Form 7 custom form */
@media (max-width: 767px) {
  .custom-contact-form .col-6,
  .custom-contact-form .col-sm-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
	
	.form-container{
		padding: 0 !important;
	}
}


  /* Contact form Cards */


  .info-card {
    background-color: #f0f0f0b5;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px !important;
  }
  
/*   .icon-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 16px;
    margin-top: 4px; 
  }
   */
.icon-circle {
  width: 55px;
  height: 55px;
  background-color: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 16px;
  flex-shrink: 0;
}



  .card-title {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
  }
  
  .card-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 0;
  }
  
  .card-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
  }
   
  .arrow-circle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
  }
  
  .arrow-circle:hover {
    background-color: var(--secondary);
  }
  
@media (max-width: 576px) {
  .info-card {
    padding: 25px 20px;
    text-align: center;
  }

  .icon-circle {
    margin: 0 auto 12px;
  }

  .arrow-circle {
    margin: 15px auto 0;
  }

  .card-title,
  .card-subtitle,
  .card-info {
    text-align: center;
  }

  .info-card .d-flex {
    flex-direction: column !important;
    align-items: center !important;
  }

  .info-card .justify-content-between {
    flex-direction: column;
    gap: 10px;
  }
}

/* *************************** */
/* News Letter */
/* *************************** */




/* =================================== */
/* Modern Blog Post CSS */
/* =================================== */

/* Base Styles */
/* Base Styles */
.pro-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-header {
    text-align: start;
    margin-bottom: 40px;
}

.blog-main-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.blog-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Featured Post */
.featured-post {
    margin-bottom: 40px;
}

.featured-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Side Posts */
.side-post {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.side-post:hover {
    background: #ededed;
}

.side-post .post-thumbnail img {
    height: 117px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Grid Posts */
.blog-grid-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-grid-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grid-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.post-title a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
	font-size: 24px;
    transition: color 0.3s ease;
}

.post-excerpt{
	font-size: 15px !important;
	        width: 100% !important;
        max-width: 100% !important;
}

.post-title a:hover {
    color: var(--primary);
}

.category-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.post-date {
    color: #666;
    font-size: 0.9rem;
    margin-left: 10px;
}

.section-divider {
    margin: 50px 0;
    border-color: #eee;
}

#load-more {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 204, 41, 0.2);
}

@media (max-width: 768px) {
    .featured-post-image img {
        height: 250px;
    }
    
    .blog-main-title {
        font-size: 26px;
    }
    
    .side-post .row {
        flex-direction: column;
    }
    
    .side-post .col-4 {
        width: 100%;
        max-width: 100%;
    }
}

/* Add to your stylesheet */
.animate__animated {
    animation-duration: 0.6s;
}

.blog-grid-card {
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-badge {
    background: linear-gradient(135deg,rgb(27, 204, 0),rgb(38, 153, 0));
    transition: all 0.3s ease;
}

/* .btn-primary {
    background: linear-gradient(135deg, #0066cc, #004499);
    border: none;
    transition: all 0.3s ease;
} */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}
.radius{
   border-radius: 15px;
}

.search-form {
  max-width: 700px;
  margin: 0 auto;
}
.search-form .form-control {
  border-radius: 0.5rem 0 0 0.5rem;
}
.search-form .btn {
  border-radius: 0 0.5rem 0.5rem 0;
}


/* =================================== */
/* FAQS */
/* =================================== */

/* FAQ Accordion Styling */
.accordion .accordion-item {
   border: none;
   border-radius: 10px;
   overflow: hidden;
   background: #f9f9f9;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   transition: transform 0.3s ease;
}

/* .accordion .accordion-item:hover {
   transform: scale(1.01);
} */

.accordion .accordion-header {
   margin-bottom: 0;
}

.accordion .accordion-button {
   background: white;
   color: #333;
   font-weight: 600;
   padding: 1rem 1.25rem;
   transition: background 0.4s ease, color 0.4s ease;
   font-size: 1.05rem;
}


.accordion .accordion-button:not(.collapsed) {
   background: var(--primary);
   color: white;
   box-shadow: none;
}


.accordion-button:not(.collapsed)::after {
   transform: rotate(180deg);
}

.accordion-body {
   background-color: #fff;
   color: #555;
   font-size: 0.95rem;
   padding: 1.25rem;
   line-height: 1.7;
   border-top: 1px solid #ddd;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg);
}

.text-block {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  
  
}


/* =================================== */
/*** Work Process ***/
/* =================================== */

.process-icon {
    width: 75px;
    height: 75px;
}

.process-item .position-relative::after {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 50px;
    color: #DDDDDD;
    top: 0;
    right: -45px;
    -webkit-animation: process-item-icon 3s infinite linear;
    animation: process-item-icon 3s infinite linear;
}

@-webkit-keyframes process-item-icon {
    0% {right: -30px; } 50% { right: -45px; } 100% { right: -30px; }
}

.process-item:last-child .position-relative::after {
    display: none;
}

@media (max-width: 992px) {
    .process-item:nth-child(2) .position-relative::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-item .position-relative::after {
        display: none;
    }
}


/* =================================== */
/*** Section Title annimation ***/
/* =================================== */
.section-title-1::before,
.section-title-2::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title-2::before {
    height: 1px;
}

.section-title-1.text-center::before,
.section-title-2.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title-1.section-title-sm::before,
.section-title-2.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title-2.section-title-sm::before {
    height: 1px;
}

.section-title-1::after,
.section-title-2::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title-2::after {
    bottom: -2px;
    background: var(--primary);
}

.section-title-1.section-title-sm::after,
.section-title-2.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title-2.section-title-sm::after {
    bottom: -1px;
}

.section-title-1.text-center::after,
.section-title-2.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title-1.section-title-sm::after,
.section-title-2.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 70px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

@media (max-width: 768px) {
    .img-fluid-2{
	height: 100% !important;
	width: 100% !important;
}
}

/* =================================== */
/* Testing hero section */
/* =================================== */

.hero-header {
  width: 100%;
  height: 100vh;         
  min-height: 700px;     
  max-height: 900px;     
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black !important;
  overflow: hidden;
  background-attachment: fixed;
  position: relative;
}


/* Tablet (768px to 1024px) */
@media screen and (max-width: 1024px) {
  .hero-header {
    min-height: 90vh;   
    background-attachment: scroll; 
  }
}

/* Mobile (max-width: 767px) */
@media screen and (max-width: 767px) {
  .hero-header {
    min-height: auto;
    padding: 3rem 1rem;
    background-attachment: scroll; 
  }
}




.main-title {
	position: absolute;
	margin: 0;
	padding: 0;
	/* color: #f9f1e9; */
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

.demo-1 .main-title {
	text-transform: uppercase;
	font-size: 4.2em;
	letter-spacing: 0.1em;
}

.main-title .thin {
	font-weight: 200;
}

@media only screen and (max-width : 768px) {
	.demo-1 .main-title {
		font-size: 3em;
	}
}

/* Img-fluid */
.img-fluid {
  height: 100%;
  width: 100%;
  object-fit: cover !important; /* Optional: keeps image proportional without distortion */
}

@media screen and (max-width: 1024px) {
  .img-fluid {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .img-fluid {
    height: auto;
    width: 100%;
  }
}

/* =================================== */
/* Service 1st section list text  */
/* =================================== */

.service-p p{
	font-size: 16px !important;
}

/* =================================== */
/* Team Member Slider Section  */
/* =================================== */
  .container-team-slider {
/*     background: linear-gradient(135deg, #0f323d, #164B5D, #1d6e88); */
    color: #ffffff;
  }

  .team-section {
    padding: 70px 0;
    text-align: center;
  }

 
   .about-slider-item {
 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: none; 
   padding: 30px;
    border-radius: 20px;
/*     background: rgba(255, 255, 255, 0.03); */
	   background: linear-gradient(135deg, #0f323d, #164B5D, #1d6e88);
    box-shadow: 0 0 12px rgba(20, 168, 0, 0.15);
}

  .about-slider-team-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border: 4px solid transparent;
  }

  .owl-item.center .about-slider-team-img {
    width: 200px;
    height: 200px;
    filter: grayscale(0%);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary);
  }
  .owl-item.center .about-slider-item {
  min-height: 350px; 
}


  .about-slider-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-slider-member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
/*     text-shadow: 0 0 5px var(--primary); */
  }

  .about-slider-member-role {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 4px;
  }

  .about-slider-member-desc {
    max-width: 500px;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 15px auto 0;
  }

  .about-slider-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
  }

  .about-slider-custom-nav {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--light);
    cursor: pointer;
    transition: 0.3s;
/*     box-shadow: 0 0 8px var(--primary); */
	  background: linear-gradient(135deg, #0f323d, #164B5D, #1d6e88);
  }

  .about-slider-custom-nav:hover {
    background-color: var(--primary);
    color: var(--primary);
  }

  @media (max-width: 768px) {
    .about-slider-team-img {
      width: 140px;
      height: 140px;
    }
    .owl-item.center .about-slider-team-img {
      width: 160px;
      height: 160px;
    }
  }

/* Our vison mission goals */
    .info-section-about {
      padding: 60px 0;
    }

    .info-card-about {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      border: 1px solid rgba(20, 168, 0, 0.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .info-card-about:hover {
      background: #14A800; /* solid green */
      transform: translateY(-6px);
      box-shadow: 0 12px 25px rgba(20, 168, 0, 0.4);
      color: #fff;
    }

    .info-icon-about img {
      width: 60px;
      height: 60px;
      transition: filter 0.3s ease;
      filter: brightness(0) saturate(100%) invert(43%) sepia(90%) saturate(553%) hue-rotate(70deg) brightness(91%) contrast(94%);
    }

    .info-card-about:hover .info-icon-about img {
      filter: brightness(0) invert(1); /* White on hover */
    }

    .info-title-about {
      font-size: 20px;
      font-weight: 700;
      margin: 15px 0 8px;
    }

    .info-title-about span {
      color: var(--green);
    }

    .info-card-about:hover .info-title-about ,
    .info-card-about:hover .info-desc-about {
      color: #fff;
    }

    /* .line-wrapper3 {
      height: 20px;
      margin-bottom: 15px;
    }

    .line3 {
      width: 40px;
      height: 2px;
      background-color: var(--green);
      margin: 0 auto;
      position: relative;
      border-radius: 10px;
    }

    .moving-box3 {
      width: 8px;
      height: 8px;
      background-color: var(--green);
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      animation: moveBox3 2s linear infinite;
    }

    .info-card:hover .line3,
    .info-card:hover .moving-box3 {
      background-color: #fff;
    }

    @keyframes moveBox3 {
      0% {
        left: 0%;
      }
      100% {
        left: calc(100% - 8px);
      }
    } */

    /* .info-desc {
      font-size: 14px;
      color: #555;
      margin: 0;
    } */

    @media (max-width: 767px) {
      .info-card-about {
        margin-bottom: 20px;
      }
    }

/* ****************** */
/* Blog Page CSS */
/* ****************** */

.featured-title {
  font-size: 1.75rem;
  font-weight: 700;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #212529;
  transition: color 0.3s ease;
}
.featured-title:hover {
  color: var(--primary);
}
.gift-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
/*   text-align: center; */
}
/* .side-post-img {
  width: 145px;
  height: 145px;
  object-fit: cover;

} */
 .side-post {
  display: flex;
  gap: 15px;
}

 .side-post-img {
  width: 200px;         /* Increase width */
  height: 145px;        /* Keep height fixed */
  object-fit: cover;
  display: block;       /* Ensure it respects width/height */
  /* border-radius: 6px; */
}

.side-post-title {
    color: #111;
    font-family: CabinetGrotesk, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 150.5% !important;
    margin-bottom: 11px;
    margin-top: 8px !important;
}
.bg-warning{
  background-color: var(--primary) !important;
  color: var(--light) !important;
}
a.text-dark:hover .side-post-title {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.badge {
  font-size: 0.75rem;
  padding: 0.4em 0.6em;
  border-radius: 0.4rem;
}
.badge-guide {
  background-color: #E0F2FE;
  color: #0369A1;
  padding: 0.3em 0.6em;
  font-size: 0.8rem;
  border-radius: 4px;
}
hr {
  border: none;
  border-top: 1px solid #787575;
  margin: 2.0rem 0 1rem;
}

/* Grid Section */
.post-grid {
  padding: 20px 30px;
}
.grid-container {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
.grid-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.grid-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.card-info {
  padding: 15px;
}
.card-info h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}
.card-info a {
  text-decoration: none;
  color: #333;
}
.card-info a:hover {
  color: #0073aa;
}
.hero-date {
  font-size: 13px;
  color: #aaa;
}

/* Responsiveness */
@media(min-width: 768px) {
  .hero-small-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .post-grid .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(min-width: 1024px) {
  .hero-main img {
    max-height: 400px;
  }
}

.featured-post img {
  width: 100%;
  height: 450px; /* adjust height as needed */
  object-fit: cover !important;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.featured-post img:hover {
  transform: scale(1.02);
}

/* Right cards images  */



.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.1);
}

.card-title a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

/* Thank You page CSS */
        .thank-you-container {
            position: relative;
            max-width: 800px;
            width: 100%;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.8s ease-out;
        }

        .header-thank {
            background: linear-gradient(135deg, #14A800 0%, #067313 100%);
            padding: 40px 30px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .header-thank::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            animation: shine 8s infinite;
        }

        .check-container-thank {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
        }

        .circle-thank {
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .check-icon-thank {
            font-size: 60px;
            color: white;
            animation: checkDraw 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .header-thank h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-thank p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto;
        }

        .content-thank {
            padding: 40px;
            text-align: center;
        }

        .message-thank {
            margin-bottom: 30px;
        }

        .message-thank h2 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .message-thank p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .details-thank {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .detail-card-thank {
            background: #f8fafc;
            border-radius: 16px;
            padding: 20px;
            width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .detail-card-thank:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .detail-icon-thank {
            font-size: 32px;
            margin-bottom: 15px;
            color: #14A800;
        }

        .detail-card-thank h3 {
            font-size: 1.1rem;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .detail-card-thank p {
            font-size: 0.95rem;
            color: #718096;
        }

        .action-buttons-thank {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-thank {
            padding: 16px 36px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            outline: none;
        }

        .btn-primary-thank {
            background: linear-gradient(to right, #14A800, #0a4f00);
            color: white;
            box-shadow: 0 5px 15px rgba(3, 103, 23, 0.4);
        }

        .btn-primary-thank:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(98, 252, 37, 0.6);
        }

        .btn-secondary-thank {
            background: #edf2f7;
            color: #4a5568;
        }

        .btn-secondary-thank:hover {
            background: #e2e8f0;
            transform: translateY(-3px);
        }

        .btn-thank i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .confetti-thank {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #f00;
            opacity: 0;
        }

        .footer-thank {
            padding: 20px;
            text-align: center;
            background: #f8fafc;
            color: #718096;
            font-size: 0.9rem;
            border-top: 1px solid #edf2f7;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleIn {
            0% { transform: scale(0); }
            70% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes checkDraw {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(1); }
        }

        @keyframes shine {
            0% { transform: rotate(30deg) translate(-10%, -10%); }
            100% { transform: rotate(30deg) translate(100%, 100%); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-thank {
                padding: 30px 20px;
            }
            
            .header-thank h1 {
                font-size: 2.2rem;
            }
            
            .header-thank p {
                font-size: 1rem;
            }
            
            .content-thank {
                padding: 30px 20px;
            }
            
            .details-thank {
                gap: 15px;
            }
            
            .detail-card-thank {
                width: 160px;
                padding: 15px;
            }
            
            .btn-thank {
                padding: 14px 28px;
                font-size: 1rem;
                width: 100%;
            }
            
            .action-buttons-thank {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .check-container-thank {
                width: 90px;
                height: 90px;
            }
            
            .check-icon-thank {
                font-size: 45px;
            }
            
            .header-thank h1 {
                font-size: 1.8rem;
            }
            
            .message-thank h2 {
                font-size: 1.6rem;
            }
            
            .detail-card-thank {
                width: 100%;
            }
        }



