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

:root {

/*   --primary: #E6FC81; */
	--primary: #38bdf8;
  --secondary: #fbfbfb !important;
  --light: #f8f8f8;
  --dark: #252525;
}

.text-secondary {
  color: var(--secondary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.bg-second {
  background-color: #fafafa !important;
}

h1,
.h1 {


font-weight: 700;
font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {

}

h2,
.h2 {
color: #414040;
font-weight: 700;
font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {
 
}

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

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

p,
.p {
color: #5A5959;
font-family: 'Poppins', sans-serif !important;
}

ul,
li {
   font-family: 'Poppins', sans-serif !important;
}



figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}


/* Images Animation */

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.what-we-image-1 figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-image-1 figure img{
	aspect-ratio: 1 / 0.73;
}

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

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

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

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #000;
  background-color: var(--primary);
  border-radius: 10px;
  font-weight: 600 !important;
}

.btn-secondary {
  color: #000;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  font-weight: 600 !important;
  border-color: #fff;
}

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

.btn-square {
  width: 38px;
  height: 38px;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.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);
}

.shop-btn {
  padding: 10px 25px 10px 25px !important;
}



/* Title with underline */
.section-title-2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title-2::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: var(--primary);
  margin-top: 20px;
}

.section-title-3 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title-3::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: var(--primary);
  margin: 20px auto 0 auto;
  /* ✅ This centers the line */
}



/* **************************************** */
/* Responsive Screens */
/* **************************************** */


@media (max-width: 768px) {

  /* ************************ */
  /* Globally Fonts */
  /* ************************ */

    h1,
  .h1 {
    font-size: 24px;

  }

 h2,
  .h2 {
    font-size: 24px !important;

  }

  p,
  .p {

    font-size: 15px;
  }


  .section-title-2::after {
    width: 100px;
    margin-top: 10px !important;
  }

  .section-title-3::after {
    width: 100px;
    margin-top: 10px !important;
  }
}

/* ****************************navbar***********
******************************************* */
/* nabar styles starts here  */
/* --- Global Navbar Styles --- */
.custom-nav {
  background-color: #fff;
  padding: 0.8rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.nav-logo-img {
  height: 65px;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link {
  color: #282829 !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem !important;
  transition: color 0.3s ease;
}

/* --- Dropdown & Submenu Logic --- */
.custom-dropdown .dropdown-menu {
  background-color: #003d6b; /* Deep Navy */
  border: none;
  border-radius: 0 0 15px 15px;
  padding: 15px 0;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-dropdown .dropdown-item {
  color: #ffffff !important;
  font-weight: 500;
  padding: 12px 25px;
  transition: all 0.2s ease;
}

.custom-dropdown .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #38bdf8 !important; /* Primary Blue Accent */
  padding-left: 30px;
}

/* --- Enhanced Hire Developer Button --- */
.dropdown-footer {
  padding: 20px 0 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.btn-hire {
  background-color: #38bdf8; /* Your primary accent color */
  color: #003d6b !important; /* Deep navy text for high contrast */
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 50px; /* Pill shape to match Free Trial button */
  border: 2px solid #38bdf8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-hire:hover {
  background-color: transparent;
  color: #38bdf8 !important;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

/* Ensure the dropdown menu doesn't cut off the button shadows */
.custom-dropdown .dropdown-menu {
  padding-bottom: 10px;
  overflow: visible; 
}

/* Desktop Hover and Nesting Logic */
@media (min-width: 992px) {
  .custom-dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropend:hover > .submenu {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -5px;
    background-color: #002d50 !important; /* Darker navy for nested menu */
    border-radius: 10px !important;
  }
}

/* Mobile Responsive Adjustments & Smooth Animations */
@media (max-width: 991px) {
  .custom-submenu-toggle::after {
    display: none !important;
  }

  /* Smooth Dropdown Transitions */
  .custom-dropdown .dropdown-menu {
    display: block !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out;
    box-shadow: none;
    border-radius: 0;
  }

  /* Target expanded Bootstrap main menus */
  .custom-dropdown .dropdown-toggle.show + .dropdown-menu {
    max-height: 1200px; /* Increased to factor in nested elements */
    opacity: 1;
    padding-top: 15px !important;
    padding-bottom: 10px !important;
  }

  /* Nested Submenu Architecture for Mobile */
  .submenu {
    position: static;
    max-height: 0 !important;
    opacity: 0 !important;
    padding-left: 20px;
    background-color: rgba(0, 0, 0, 0.2) !important;
    transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out, padding 0.3s ease-in-out !important;
  }

  /* Active styling class triggered by custom JavaScript toggler below */
  .dropend.open-submenu .submenu {
    max-height: 500px !important;
    opacity: 1 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  
  .dropend.open-submenu .custom-submenu-toggle .submenu-arrow {
    transform: rotate(90deg);
    display: inline-block;
  }
}

.submenu-arrow {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.2s ease;
}

/* --- Button Styling --- */
.btn-trial {
  background-color: #38bdf8;
  color: #003d6b !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease; 
}

.btn-trial:hover {
  background-color: #0284c7 !important; 
  color: #ffffff !important;          
}
/* navbar styles end  */
/* ****************************** hero section ******************************  */
/* ***************************************************************************** */
/* hero section of home styles starts here  */
 .hero-section {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
      }
/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Overlay (same effect as your gradient) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 26, 44, 0.85), rgba(0, 26, 44, 0.6));
  z-index: 1;
}

/* Ensure content is above video */
.hero-section .container {
  z-index: 2;
}

/* Enhancing Typography */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
}

.text-accent {
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  font-weight: 300;
}

/* Button Enhancements */
.btn-primary-custom {
  background-color: #38bdf8;
  border: none;
  color: #001a2c !important;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
  background-color: #ffffff;
}

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: #001a2c;
  border-color: white;
}

/* Simple Entry Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeInUp 0.8s ease forwards;
}
.animate-up-delayed {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.animate-up-more-delayed {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}
/* hero styles end  */
/* ***********************************client section slider of home page*********** */
/* **************************************************************************** */
/* client section slider of home page styles starts here  */

.client-slider-section {
  background-color: #1f589d;
  padding: 60px 0;
  overflow: hidden;
}

.logo-slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

/* Side Gradients for "Fade Out" effect */
.logo-slider::before,
.logo-slider::after {
  background: linear-gradient(
    to right,
    #3086c7 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.logo-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0;
  top: 0;
}

/* The Moving Track */
.logo-slide-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 30s linear infinite;
}

.slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.slide img:hover {
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 5));
  }
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .slide {
    width: 150px;
  }
  .logo-slide-track {
    width: calc(150px * 10);
  }
  @keyframes scroll {
    100% {
      transform: translateX(calc(-150px * 5));
    }
  }
}
/* client slider styles ends  */
/* ******************************************another logos slider of home page********  */
/* ***************************************************************************************** */
/* Container Background & Spacing */
.ltr-logo-slider {
  background-color: #1b539e; /* Matches the blue in your image */
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.ltr-slider-title h3 {
  color: #a5c7f0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-family: sans-serif;
  text-transform: uppercase;
}

/* The viewport of the slider */
.ltr-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Gradient Fade Effects on Edges */
.ltr-slider-container::before,
.ltr-slider-container::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 2;
}

.ltr-slider-container::before {
  left: 0;
  top: 0;
  background: linear-gradient(to right, #1b539e 0%, rgba(27, 83, 158, 0) 100%);
}

.ltr-slider-container::after {
  right: 0;
  top: 0;
  background: linear-gradient(to left, #1b539e 0%, rgba(27, 83, 158, 0) 100%);
}

/* The actual moving track */
.ltr-slider-track {
  display: flex;
  width: calc(250px * 12); /* Adjust based on image width x total items */
  animation: ltr-scroll 30s linear infinite;
}

.ltr-slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ltr-slide img {
  height: 45px; /* Adjust size to match your design */
  width: auto;
  filter: brightness(0) invert(1); /* Makes logos white like in the image */
  opacity: 0.8;
  transition: opacity 0.3s;
}

.ltr-slide img:hover {
  opacity: 1;
}

/* Reverse Animation: Left to Right */
@keyframes ltr-scroll {
  0% {
    transform: translateX(-50%); /* Starts halfway through the track */
  }
  100% {
    transform: translateX(0); /* Moves forward to the start */
  }
}

/* Pause on Hover */
.ltr-slider-track:hover {
  animation-play-state: paused;
}
/* another client slider styles end  */
/* ******************************************** */
/* about section of home page  */
/* ************************************************** */
/* About Section of home page  Styles */
.about-section {
  background-color: #ffffffe5;
  color: #64748b;
}

.text-primary-accent {
  color: #0d293f;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.text-highlight {
  color: var(--primary);
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #004274;
}

.about-text p {
  line-height: 1.8;
  color: #64748b;
}

/* Stat Cards */
.stat-card {
  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 66, 116, 0.1) !important;
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #004274;
  margin: 10px 0 5px;
}

.stat-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
  font-weight: 500;
}

.icon-blue {
  font-size: 2rem;
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
  .stat-card {
    padding: 20px;
  }
}
/* styles for about sections of home page  ends  */
/* ***************************************************** */
/* ***********************************why section *********** */
/* why us section of home page  */
.wy-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Clean white background */
}

.wy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wy-header {
  text-align: center;
  margin-bottom: 50px;
}

.wy-subtitle {
  color: #3498db;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.wy-title {
  font-size: 2.2rem;
  color: #002147;
  margin: 15px 0;
  font-weight: 700;
}

.wy-title span {
  color: #3498db;
}

.wy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Updated Card Styling with Borders */
.wy-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  border: 2px solid #f0f4f8; /* Visible subtle border */
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}

/* Card Hover Effect */
.wy-card:hover {
  border-color: #3498db; /* Border changes to blue */
  box-shadow: 0 15px 35px rgba(0, 33, 71, 0.08);
  transform: translateY(-8px);
}

.wy-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(52, 152, 219, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: background 0.4s ease;
}

.wy-icon-box i {
  font-size: 1.8rem;
  color: #3498db;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

/* ONLY the icon of the hovered card rotates 360 */
.wy-card:hover .wy-icon-box i {
  transform: rotateY(360deg);
}

.wy-card:hover .wy-icon-box {
  background: #3498db;
}

.wy-card:hover .wy-icon-box i {
  color: #ffffff;
}

.wy-card h3 {
  font-size: 1.3rem;
  color: #002147;
  margin-bottom: 15px;
  font-weight: 600;
}

.wy-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsiveness */
@media (max-width: 768px) {
  .wy-card {
    flex: 1 1 100%;
  }
}
/* ******************why us section styles ends here ******** */
/* **************************************************** */
/* ******************************service section *************** */
/* Section service of home page  */
.services-section {
  background-color: #f1f5f9;
  color: #000;
}

.section-heading {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Card Styling */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-image-wrapper {
  padding: 40px 40px 10px 40px;
  text-align: center;
  background: #f8fafc;
}

.card-image-wrapper img {
  max-height: 200px;
  object-fit: contain;
}

.card-body-custom {
  padding: 30px;
  color: #1a2b3c;
}

.card-title-custom {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #004274;
}

.card-text-custom {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Tag Links (Pills) */
.service-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #f1f5f9;
  border-radius: 50px;
  color: #004274;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tag-link i {
  font-size: 0.75rem;
  opacity: 0.6;
}

.tag-link:hover {
  background: #004274;
  color: #ffffff;
}

/* "View All" Footer Link */
.view-all-link {
  display: inline-block;
  color: #004274;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-heading {
    font-size: 1.4rem;
  }
  .card-title-custom {
    font-size: 1.2rem;
  }
}
/* service section styles ends here  */
/* ******************************************** */
/* *******************************promise section************** */
/* promise section of home page  */
.promise-section {
  background-color: #fff;
  padding: 80px 0;
}

.text-primary-accent {
  color: var(--primary);
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
}

/* Video/Image Placeholder */
/* Ensure the wrapper is a flex container to fill height */
.video-placeholder-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
}

/* Force the container to be exactly the height of the row */
.promise-image-container {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.promise-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-content-padding {
  padding: 60px;
  background-color: #fff;
}

/* List Icons */
.award-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.check-icon i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.promise-item {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .promise-image-container {
    height: 300px;
    min-height: 300px;
  }
  .promise-cover-img {
    position: relative;
  }
  .custom-content-padding {
    padding: 30px;
  }
}
/* **********************************promise section styles end ****** */
/* ****************************************** */
/* ***********overview section ********** */
/* overview section of home page styles  */
.overview-section {
  background-color: #f1f5f9;
}

.overview-card {
  background: rgba(78, 68, 68, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  transition: all 0.4s ease;
}

.overview-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.fw-800 {
  font-weight: 800;
}

/* Industry Pills */
.btn-industry-pill {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: black;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-industry-pill:hover {
  background-color: var(--primary);
  color: var(--var-dark-bg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .overview-card {
    padding: 30px !important;
  }
  .overview-card h2 {
    font-size: 1.8rem;
  }
}
/* ***********************overview section style ends  ******* */
/* ************************************************* */
/* **********************testimonials starts here  ********************* */
/* testimonials and case study section of home page  */
/* Tab Styling */
.social-proof-section {
  background-color: #fff;
  overflow: hidden;
}

/* Tabs Styling */
.custom-tabs .nav-link {
  color: #fff;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 50px;
  padding: 12px 35px;
  margin: 0 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.custom-tabs .nav-link.active {
  background-color: var(--primary);
  color: var(--var-dark-bg);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

/* Testimonials Continuous Slider */
.testimonial-slider {
  overflow: hidden;
  padding: 40px 0;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: 2400px;
  animation: scrollTestimonials 30s linear infinite;
}

.testimonial-card {
  width: 380px;
  background: var(--primary);
  padding: 30px;
  border-radius: 25px;
  margin-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.stars {
  color: #facc15;
  font-size: 0.8rem;
  margin-top: 10px;
}
.text-accent {
  color: var(--primary);
  font-weight: 600;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1600px);
  }
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* Case Study Section with Blur */
.case-study-container {
  position: relative;
  padding: 80px 50px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.case-study-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 40px 20px;
}

.case-card {
  position: relative;
  min-width: 380px;
  height: 450px;
  background: rgba(56, 189, 248, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Blurred Image Background */
.card-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(15px) saturate(1.5);
  opacity: 0.5;
  z-index: 0;
  transition: 0.6s ease;
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: var(--primary);
  backdrop-filter: blur(12px);
}

.case-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.case-card:hover .card-image-bg {
  opacity: 0.6;
  transform: scale(1.1) translateY(-10px);
}

.case-category {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.case-heading {
  color: #000;
  font-weight: 800;
  font-size: 1.8rem;
  margin: 12px 0;
}

.case-desc {
  color: #000;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Enhanced Read Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s;
}

.read-more-btn span {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary);
}

.read-more-btn:hover span {
  transform: translateX(8px);
}
/* Navigation Arrows */
.nav-arrow {
  background: var(--primary);
  color: var(--var-dark-bg);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: 0.3s;
}

.left-arrow {
  left: 10px;
}
.right-arrow {
  right: 10px;
}
.nav-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
/* ********************************************* testimonial ends here ******* */
/* **************************************************** */
/* ***********************************contact form ************* */
/* contact form section of home page  */
.contact-section {
  padding: 80px 20px;
  background: #f1f5f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Content */
.contact-info {
  flex: 1;
  min-width: 320px;
}

.section-title {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 40px;
}

.section-title span {
  color: var(--primary);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item .icon {
  font-size: 1.5rem;
  color: #004a87;
}

.info-item .label {
  color: #000;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.info-item .value {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
}

/* Form Card */
.form-card {
  flex: 1.2;
  min-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  background: #004a87;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.contact-form {
  padding: 30px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}

.form-row input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #004a87;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333333;
}

.form-note {
  font-size: 0.85rem;
  color: #666666;
  margin: 15px 0;
}

.consent-row {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: #666666;
  align-items: flex-start;
}

.consent-row a {
  color: #004a87;
  text-decoration: underline;
}

.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #206988;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 35, 35, 0.3);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .contact-container {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 15px;
  }
  .contact-container {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  .contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the info items container horizontally */
    gap: 20px; /* Adds clean spacing between Call, Email, and Address blocks */
  }
  .info-item {
    display: flex;
    flex-direction: column; /* Stacks the icon neatly on top of the text */
    align-items: center;    /* Centers both the icon and the text horizontally */
    justify-content: center;
    text-align: center;
  }
}

/* ******************** contact form styles ends ************ */
/* *********************************************************** */
/* *****************************footer styles ************ */
/* footer  */
.main-footer {
  background-color: #fff ;
  color: #000;
  padding: 80px 20px 20px;
  
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary);
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}

.brand-desc {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Newsletter & Partners Area */

.main-footer {
  background-color: #003366;
  background: radial-gradient(circle at 90% 10%, #0a4d8c 0%, #002147 60%);
  color: #ffffff;
  padding: 60px 0 20px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative background circles  */
.main-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.02),
    0 0 0 80px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
  color :#fff !important;
}

/* The blue line under headings */
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: #3498db;
}

.brand-col img {
  max-width: 200px;
  margin-bottom: 20px;
}

.brand-desc,
.stay-updated {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #3498db;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icon:hover {
  background: #3498db;
}

/* Appointment Button */
.appointment-btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.appointment-btn:hover {
  background-color: #2980b9;
}

/* Footer Bottom Area */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 0.85rem;
  color: #95a5a6;
}

.highlight {
  color: #fff !important;
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Icon specific styling */
.social-icon i {
  font-size: 16px;
  color: #ffffff;
}

.social-icon:hover i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
/* footer styles end  */
/* it services web development page styles start here  */
/* --- Hero Section of the web page  --- */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(
        to right, 
        rgba(0, 26, 44, 0.95), 
        rgba(0, 26, 44, 0.7)
    ), 
    url('/wp-content/uploads/2026/03/Web-Development.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Gradient text using your --primary variable */
.text-gradient {
    background: linear-gradient(45deg, var(--primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- Premium Primary Button --- */
.btn-talk-premium {
    background-color: var(--primary);
    color: var(--var-dark-bg) !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    border: 2px solid var(--primary);
    display: inline-block;
}

.btn-talk-premium:hover {
    background-color: transparent;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
}

/* --- Secondary Outline Button --- */
.btn-outline-custom {
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Floating Abstract Shape for visual depth */
.hero-abstract-shape {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    filter: blur(60px);
    z-index: 0;
}
/* second section of web page  */
/* Container for Web Development Services */
.wd-service-card {
    background: #ffffff; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Update text color to be visible on white */
.wd-service-card h4, 
.wd-service-card h3 {
    color: var(--var-navy-dark) !important;
}

.wd-service-card p {
    color: #555 !important; 
}

.wd-service-card:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wd-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.wd-feature-list li {
    color: var(--var-navy) !important; 
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
/* third section of web page  */
/* Process Timeline Container */
.at-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.at-process-timeline::after {
    display: none; 
}

/* Individual Timeline Item */
.at-process-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Numbered Dots */
.at-process-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: #fff;
    border: 2px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Alternating Sides Logic */
.at-process-item:nth-child(odd) { left: 0; text-align: right; }
.at-process-item:nth-child(even) { left: 50%; text-align: left; }

.at-process-item:nth-child(even) .at-process-dot { left: -20px; }

/* Content Card Styling */
.at-process-content {
    padding: 20px 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    border-radius: 20px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Text Visibility Fixes */
.at-process-content h4 {
    color: var(--var-navy-dark) !important;
}

.at-process-content p {
    color: var(--var-navy) !important;
    opacity: 0.8;
}

.at-process-item:hover .at-process-content {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-5px);
}

.at-process-item:hover .at-process-dot {
    background-color: var(--primary);
    color: #fff;
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
    .at-process-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }
    .at-process-item:nth-child(even) { left: 0%; }
    .at-process-dot { left: 11px !important; }
}
/* fourth section of web page  */
/* Container for the Grid */
.at-stack-main-container {
    padding: 20px;
    background: #ffffff;
    border-radius: 30px;
}

/* Grid Layout */
.at-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Individual Stack Item */
.at-stack-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.at-stack-item i {
    font-size: 2rem;
    color: var(--var-navy);
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.at-stack-item span {
    font-weight: 600;
    color: var(--var-navy-dark);
    font-size: 0.9rem;
}

/* Hover Effects */
.at-stack-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.15);
}

.at-stack-item:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .at-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* fifth section of web page  */
.at-perf-section {
    overflow: hidden;
}

.at-perf-blur-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    z-index: 0;
}

/* List Icon Spacing */
.at-perf-list i {
    font-size: 1.2rem;
    width: 25px;
}

/* Visual Card for Stats */
.at-perf-visual-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.at-perf-bar {
    transition: width 1.5s ease-in-out;
}

/* CTA Button Styling */
.at-perf-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.at-perf-cta-btn:hover {
    background-color: var(--var-navy);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 61, 107, 0.2);
}
/* sixth section of web page  */
/* Feature Box Styling */
.at-edge-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid rgba(56, 189, 248, 0.1); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.at-edge-box:hover {
    background: #fff;
    border-left: 4px solid var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Icon Container */
.at-edge-icon {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1); 
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Bottom Banner */
.at-edge-banner {
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.1);
    padding: 35px;
    border-radius: 24px;
    margin-top: 20px;
}

.at-edge-banner .at-edge-icon {
    margin-bottom: 0;
    min-width: 50px;
    background: var(--primary);
    color: #fff;
}

/* Gradient Text for Headlines */
.at-edge-gradient {
    background: linear-gradient(90deg, var(--primary), var(--var-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA Button */
.at-edge-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.at-edge-btn:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
/* seven section of web page  */
.at-faq-accordion {
    border: none;
    background: transparent;
}

.at-faq-item {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.at-faq-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Question Button */
.at-faq-btn {
    background: transparent !important;
    color: var(--var-navy-dark) !important;
    font-weight: 700;
    padding: 25px;
    box-shadow: none !important;
    border: none !important;
}

.at-faq-btn:not(.collapsed) {
    color: var(--primary) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Arrow Styling - Resetting filters for visibility on light BG */
.at-faq-btn::after {
    filter: none; 
}

.at-faq-btn:not(.collapsed)::after {
    /* Using your primary color for the active arrow */
    filter: sepia(100%) hue-rotate(170deg) saturate(500%); 
}

/* Answer Body */
.at-faq-body {
    background: transparent;
    color: var(--var-navy);
    opacity: 0.8;
    line-height: 1.8;
    padding: 25px;
    font-size: 0.95rem;
}
/* web development styles end  */
/* app page styles starts here  */
/* --- Hero Section of the web page  --- */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(
        to right, 
        rgba(0, 26, 44, 0.95), 
        rgba(0, 26, 44, 0.7)
    ), 
    url('/wp-content/uploads/2026/03/App-Development-img.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Gradient text using your --primary variable */
.text-gradient {
    background: linear-gradient(45deg, var(--primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- Premium Primary Button --- */
.btn-talk-premium {
    background-color: var(--primary);
    color: var(--var-dark-bg) !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    border: 2px solid var(--primary);
    display: inline-block;
}

.btn-talk-premium:hover {
    background-color: transparent;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
}

/* --- Secondary Outline Button --- */
.btn-outline-custom {
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Floating Abstract Shape for visual depth */
.hero-abstract-shape {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    filter: blur(60px);
    z-index: 0;
}
/* app styles ends here  */
/* ******************************************* */
/* **************** cloud page styles starts here ******* */
/* --- Hero Section of the web page  --- */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(
        to right, 
        rgba(0, 26, 44, 0.95), 
        rgba(0, 26, 44, 0.7)
    ), 
    url('https://staging.airtechcommunication.com/wp-content/uploads/2026/03/Software-Solutions.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Gradient text using your --primary variable */
.text-gradient {
    background: linear-gradient(45deg, var(--primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- Premium Primary Button --- */
.btn-talk-premium {
    background-color: var(--primary);
    color: var(--var-dark-bg) !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    border: 2px solid var(--primary);
    display: inline-block;
}

.btn-talk-premium:hover {
    background-color: transparent;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
}

/* --- Secondary Outline Button --- */
.btn-outline-custom {
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Floating Abstract Shape for visual depth */
.hero-abstract-shape {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    filter: blur(60px);
    z-index: 0;
}
/* cloud page styles ends here  */
/* ************************************************ */
/* ******************* contact page styles starts here ******** */
/* *************************************************************** */
/* Airtech Form Styles */
.at-input {
    border: 2px solid #f1f5f9 !important;
    background-color: #f8fafc !important;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.at-input:focus {
    border-color: var(--primary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    outline: none;
}

/* Premium Button */
.btn-primary-at {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s transform;
}

.btn-primary-at:hover {
    background-color: var(--primary-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 74, 135, 0.2);
}

/* Card & Responsive Adjustments */
.at-form-card {
    border-top: 5px solid var(--primary) !important;
}

@media (max-width: 991.98px) {
    .at-inquiry-section {
        text-align: center;
    }
    
    .at-stats-container {
        display: inline-block;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .at-form-card {
        padding: 25px !important;
    }
}

/* Stat Icons Transition */
.at-icon-check i {
    transition: transform 0.3s ease;
}

.at-stats-container div:hover i {
    transform: scale(1.2);
}
/* ************************************************ */
/* ******************* BPO services page styles starts here ******** */
/* *************************************************************** */
/* styles for inbound services  */
/* --- second  SECTION LAYOUT --- */
.atc-inbound-hero {
    background-color: #ffffff; 
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.atc-service-pill {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    background: #f9fafb;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.atc-service-pill:hover {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
}

.atc-service-pill i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* --- PRIMARY BUTTON --- */
.atc-main-btn {
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    padding: 8px 24px; 
    width: fit-content; 
    background: #3DC2F7; 
    color: #131212 !important;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(61, 194, 247, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.atc-main-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.25);
}

/* --- THE INTERACTIVE CARD --- */
.atc-visual-wrapper {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.atc-interactive-card {
    background: #ffffff;
    border: 1px solid var(--atc-border);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

/* CARD HOVER STYLE */
.atc-interactive-card:hover {
    transform: translateY(-15px) scale(1.02) rotate(1deg);
    box-shadow: 0 50px 80px rgba(0, 74, 135, 0.12);
    border-color: var(--primary);
}

/* Browser Dot Decorations */
.atc-browser-dots {
    display: flex;
    gap: 6px;
}

.atc-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.atc-browser-dots span:nth-child(1) { background: #ff5f56; }
.atc-browser-dots span:nth-child(2) { background: #ffbd2e; }
.atc-browser-dots span:nth-child(3) { background: #27c93f; }

.atc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.atc-status-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #ecfdf5;
    color: #059669;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* PROGRESS BAR STYLES */
.atc-growth-bar {
    width: 100%;
    height: 10px;
    background: #f3f4f6;
    border-radius: 20px;
    margin: 15px 0;
    overflow: hidden;
}

.atc-growth-fill {
    width: 45%; 
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-deep));
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Animate progress on hover */
.atc-interactive-card:hover .atc-growth-fill {
    width: 92%;
}

.atc-mini-badge {
    padding: 6px 14px;
    background: var(--var-dark-bg);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
}

/* --- DECORATIVE ACCENT --- */
.atc-accent-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.12;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .atc-inbound-hero {
        text-align: center;
        padding: 60px 0;
    }
    .atc-service-pill {
        justify-content: center;
    }
    .atc-main-btn {
        width: 100%;
        justify-content: center;
    }
    .atc-visual-wrapper {
        margin-top: 40px;
        padding: 0;
    }
}
/* third section styles  */
/* Unique Airtech Inbound Services Styling */
.atc-serv-section {
    position: relative;
    padding: 100px 0;
}

.atc-serv-card {
    background: #ffffff; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}


.atc-serv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.atc-serv-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.atc-serv-card:hover::before {
    opacity: 1;
}

.atc-serv-icon {
    width: 65px;
    height: 65px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.atc-serv-card:hover .atc-serv-icon {
    background: var(--primary);
    color: #fff; 
    transform: scale(1.1) rotate(-5deg);
}

.atc-serv-card h4 {
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.atc-serv-card p {
    line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .atc-serv-section { padding: 60px 0; }
    .atc-serv-card { padding: 2rem 1.5rem; }
}
/* section four styles  */
/* Section Container */
/* Section & Typography */
.atc-rely-section {
    background-color: #ffffff;
    overflow: visible; 
}

/* Sticky Logic */
.atc-sticky-element {
    position: -webkit-sticky;
    position: sticky;
    top: 120px; 
    padding-bottom: 2rem;
}

/* Badge Styles */
.atc-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(0, 102, 255, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
}

/* Content List Styles */
.atc-content-list {
    padding-top: 20px;
}

.atc-step {
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.atc-step:first-child { padding-top: 0; }
.atc-step:last-child { border-bottom: none; }

.atc-step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.4;
    padding-top: 4px;
}

.atc-step-body h4 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.atc-step-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Hover Enhancement */
.atc-step:hover .atc-step-num {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .atc-sticky-element {
        position: relative;
        top: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .atc-title { font-size: 2.2rem; }
    
    .atc-step {
        flex-direction: column;
        gap: 10px;
        padding: 30px 0;
    }
}
/* fifth section styles  */
/* Section Setup */
.atc-solve-section {
    background-color: #f1f5f9;
    overflow: hidden;
}

.atc-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50px;
}

.atc-header-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary));
    margin-bottom: 20px;
}

/* Card Design */
.atc-solve-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 61, 107, 0.05);
    position: relative;
    z-index: 1;
}

.atc-solve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 45, 80, 0.1);
    border-color: var(--primary);
}

/* Icon & Number Styling */
.atc-card-icon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.atc-card-icon-wrap i {
    font-size: 2rem;
    color: var(--primary);
    transition: 0.3s ease;
}

.atc-card-num {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--var-navy);
    opacity: 0.15;
    font-family: monospace;
}

.atc-solve-card:hover i {
    transform: rotate(360deg) scale(1.1);
}

/* Professional Detail */
.atc-solve-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    opacity: 0;
    z-index: -1;
    transition: 0.4s ease;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .atc-solve-card {
        padding: 1.8rem;
    }
    .atc-badge {
        margin-bottom: 1rem;
    }
}
/* sixth section styles  */
/* Container Styling */
.atc-cta-container {
    background: linear-gradient(135deg, var(--var-dark-bg) 0%, var(--var-navy-dark) 100%);
    padding: 5rem 4rem;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 26, 44, 0.3);
}

.atc-cta-label {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.atc-text-primary {
    color: var(--primary);
}

.atc-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Action Area */
.atc-action-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 25px;
}

.atc-main-btn {
    display: block;
    background-color: var(--primary);
    color: var(--var-dark-bg);
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

.atc-main-btn:hover {
    background-color: var(--primary-deep);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    color: var(--var-navy-dark);
}

/* Status & Pulse Effect */
.atc-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.atc-pulse {
    width: 8px;
    height: 8px;
    background-color: #10b981; /* Success Green */
    border-radius: 50%;
    animation: atc-blink 2s infinite;
}

@keyframes atc-blink {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { opacity: 1; box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { opacity: 0.4; }
}

/* Modern Glow Background */
.atc-glow-orb {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-deep) 0%, transparent 70%);
    opacity: 0.4;
    z-index: -1;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .atc-cta-container {
        padding: 3rem 2rem;
        border-radius: 25px;
    }
    .atc-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}
/* ******************************************** */
/* *****BPO Services pages styles ends here ***** */
/* **************************************************** */

/* ******************************************************* */
/* **** digital marketing pages styles starts here **** */
/* ********************************************************* */
/* styles for seo page  */
/* second section style  */
/* Airtech SEO Section Styles */
.atc-seo-section {
    position: relative;
    background-color: #ffffff;
}
.atc-seo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 61, 107, 0.1); 
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.atc-seo-card:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
    
}

.atc-seo-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), #205470);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.3rem;
    transition: transform 0.6s ease-in-out;
}
.atc-seo-icon-box:hover {
    transform: rotate(360deg);
}

.atc-seo-divider {
    border-top: 1px solid rgba(0, 61, 107, 0.1);
    margin: 1.5rem 0;
    opacity: 1;
}

.atc-seo-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--var-navy);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .atc-seo-card {
        padding: 1.5rem;
    }
}
/* third section styles  */
/* Airtech Communications Section Styles */
.atc-process-section {
    background-color: #f1f5f9;
    overflow: hidden;
}

.atc-flow-wrapper {
    position: relative;
    padding-top: 30px;
}

.atc-flow-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3.5rem 2rem 2.5rem 2rem;
    border-radius: 24px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.atc-flow-card:hover {
    border-color: #0056b3;
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.atc-flow-number {
    position: absolute;
    top: -20px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #0056b3;
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 86, 179, 0.3);
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .atc-flow-card {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }
    
    .atc-flow-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        left: 20px;
    }
}

@media (max-width: 575.98px) {
    .display-5 {
        font-size: 2rem;
    }
    .atc-flow-card {
        margin-top: 10px;
    }
}
/* fifth section styles  */
/* Airtech Communications Growth Section */
.atc-growth-section {
    background-color: #f1f5f9;
}

.atc-growth-stat-item {
    background: #ffffff;
    border-left: 4px solid #0056b3;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.atc-growth-stat-item:hover {
    transform: translateX(5px);
}



.atc-growth-visual-card {
    background: #ebe6e6;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 35px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.atc-growth-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.atc-growth-status {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.atc-growth-line-wrapper {
    height: 180px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.atc-growth-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent 30%, rgba(0, 86, 179, 0.08) 100%);
    clip-path: polygon(0 90%, 20% 80%, 45% 65%, 75% 35%, 100% 10%, 100% 100%, 0 100%);
    border-top: 3px solid #0056b3; /* Visual line path */
}

.atc-growth-dot {
    position: absolute;
    top: 10%;
    right: 0;
    width: 14px;
    height: 14px;
    background: #0056b3;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.4);
    animation: atc-float 3s infinite ease-in-out;
}

@keyframes atc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}



/* Responsive adjustments */
@media (max-width: 991px) {
    .atc-growth-visual-card { padding: 25px; }
    .display-4 { font-size: 2.25rem; }
}
/* sixth section styles  */
/* Airtech Why SEO Section */
.atc-whyseo-section {
    background-color: #fff;
}

.atc-whyseo-banner {
    background: #ffffff;
    border-left: 5px solid #0056b3;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.atc-whyseo-icon-large {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0056b3, #00a8ff);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.2);
}

.atc-whyseo-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.atc-whyseo-box:hover {
    background: #ffffff;
    border-color: #0056b3;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}



/* Responsive Tweaks */
@media (max-width: 991px) {
    .atc-whyseo-banner {
        flex-direction: column;
        text-align: center;
    }
    .atc-whyseo-icon-large {
        margin: 0 auto 1.5rem auto;
    }
}
/* *************************************************** */
/* ********digital marketing styles ends here **** */
/* *************************************************** */

/* ******************************************* */
/* ****** our story styles starts here ***** */
/* ******************************************** */
/* about page styles  */
/* second section styles  */
/* --- Airtech Premium Story Section --- */
.at-premium-story {
    background-color: #ffffff;
    overflow: hidden;
}

.at-image-stack {
    position: relative;
    padding: 20px;
}

.at-main-image-container {
    width: 90%;
    height: 480px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.at-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-rect-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.1), transparent);
}

/* Floating Cards Styling */
.at-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.1);
    padding: 18px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card-top { top: 5%; right: -10px; }
.card-bottom { bottom: 10%; left: -20px; }

.at-icon-circle {
    width: 50px;
    height: 50px;
    background: #e7f1ff; /* Light blue tint */
    color: #007bff; /* Primary blue */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Content Styling */
.at-dash-title {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
}

.at-dash-title .line {
    width: 40px;
    height: 2px;
    background-color: #007bff;
}


.at-modern-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    background: #f8f9fa;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .at-main-image-container {
        width: 100%;
        height: 350px;
    }
    .at-image-stack {
        margin-bottom: 50px;
        padding: 0;
    }
    .card-top { right: 0; }
    .card-bottom { left: 0; }
}
/* third section  */
.at-purpose-section {
    background-color: #f1f5f9; 
    position: relative;
    z-index: 1;
}

/* Softer Glows for light background */
.at-glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.1; 
}
.at-glow-circle.left { top: -50px; left: -100px; background: var(--primary); }
.at-glow-circle.right { bottom: -50px; right: -100px; background: var(--var-navy); }

/* White Shade Cards */
.at-mission-card {
    background: #ffffff; /* Shade of white */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Light shadow */
}

.at-mission-card:hover {
    transform: translateY(-8px);
    background: #fafbfc; 
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.at-card-inner {
    padding: 2.5rem; /* Responsive padding */
    z-index: 2;
    position: relative;
}

/* Icon Wrap - High Contrast */
.at-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.at-icon-wrap.variant-navy {
    background: var(--var-navy);
}

/* Typography Enhancements */
.at-label {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.at-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.at-p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Progress Bar */
.at-card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--primary);
    transition: width 0.5s ease;
}

.at-mission-card:hover .at-card-progress {
    width: 100%;
}


/* Responsiveness Tweaks */
@media (max-width: 991px) {
    .at-card-inner { padding: 2rem; }
    .at-h3 { font-size: 1.35rem; }
}

@media (max-width: 575px) {
    .at-card-inner { padding: 1.5rem; }
    .display-4 { font-size: 2.2rem; }
    .at-mission-card { border-radius: 20px; }
}
/* section fourth  */
/* Section Base */
.at-values-wrap {
    background-color: #ffffff;
    overflow: hidden;
}

/* Badge Tag */
.at-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(56, 189, 248, 0.1); /* Using --primary shade */
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Decorative Line */
.at-decorative-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary));
    border-radius: 3px;
}

/* Card Styling */
.at-value-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 45px 40px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.at-value-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.1);
    background: #fafbfc;
}

.at-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* ID Number */
.at-id {
    font-size: 1rem;
    font-weight: 800;
    color: #e2e8f0; /* Light gray for non-hover */
    transition: color 0.3s ease;
}

.at-value-card:hover .at-id {
    color: var(--primary);
}

/* Icon Wrap */
.at-icon-shield {
    width: 42px;
    height: 42px;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.at-value-card:hover .at-icon-shield {
    transform: scale(1.1) rotate(5deg);
}

/* Typography */
.at-card-h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.at-card-p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .at-value-card {
        padding: 35px 30px;
    }
    .at-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .at-values-wrap {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .at-card-h4 {
        font-size: 1.35rem;
    }
}
/* fifth section  */
.at-exec-section {
    background: #f1f5f9; 
    padding: 80px 0;
}

.at-sticky-top {
    position: sticky;
    top: 100px;
}

/* Sidebar Styling */
.at-mini-label {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.at-main-h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}



/* Stat Grid */
.at-stat-grid {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.at-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--var-navy);
}

.at-stat-label {
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Timeline/Path Visuals (Right Side) */
.at-path-container {
    padding-left: 50px;
    position: relative;
}

.at-path-step {
    position: relative;
    padding-bottom: 40px;
}

/* The Vertical Line */
.at-path-line {
    position: absolute;
    left: -31px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: rgba(56, 189, 248, 0.2); /* Using --primary shade */
}

/* The Numbered Circles */
.at-path-circle {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--var-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
    transition: 0.4s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* The Cards */
.at-path-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 30px;
    border-radius: 20px;
    color: #64748b; /* text-muted style */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

/* Interaction Effects */
.at-path-step:hover .at-path-card {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.1);
}

.at-path-step:hover .at-path-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .at-sticky-top { position: relative; top: 0; margin-bottom: 50px; }
    .at-main-h2 { font-size: 2.5rem; }
    .at-path-container { padding-left: 40px; }
}

@media (max-width: 575px) {
    .at-path-container { padding-left: 30px; }
    .at-path-circle { left: -40px; width: 32px; height: 32px; font-size: 0.7rem; }
    .at-path-line { left: -25px; }
}
/* sixth section  */
/* Sidebar Header Styles */
.at-top-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.at-heading { font-size: 2.8rem; font-weight: 800; line-height: 1.1; }

.at-pointer { display: flex; align-items: center; gap: 12px; }
.at-check { width: 22px; height: 22px; }

/* Mosaic Grid Layout */
.at-mosaic-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
    position: relative;
}

.at-tile {
    background: #cad7dd;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Sizing Logic */
.at-tile-lg { grid-row: span 2; }
.at-tile-wide { grid-column: span 2; }

/* Interaction */
.at-tile:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
}

.at-tile-icon {
    width: 38px;
    height: 38px;
    color: var(--primary);
    transition: 0.3s ease;
}

.at-tile:hover .at-tile-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--var-navy);
}

.at-tile-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Dots Pattern for depth on white bg */
.at-mosaic-container::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background-image: radial-gradient(rgba(56, 189, 248, 0.05) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    z-index: -1;
    top: -10%;
    left: -10%;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .at-heading { font-size: 2.2rem; }
    .at-mosaic-container { grid-template-columns: repeat(2, 1fr); }
    .at-tile-lg { grid-column: span 1; grid-row: span 1; }
    .at-tile-wide { grid-column: span 2; }
}

@media (max-width: 575px) {
    .at-mosaic-container { 
        grid-template-columns: 1fr; 
        grid-auto-rows: auto; 
        gap: 15px;
    }
    .at-tile-wide { grid-column: span 1; }
    .at-tile { min-height: 180px; padding: 20px; }
}
/* ******************* */
/* our story styles ends here  */
/* ****************************** */


/* **********************
privacy policy page
*********************** */
.tracking-wider { letter-spacing: 0.1em; }
    .leading-relaxed { line-height: 1.75; }
    .list-group-item-action:hover {
      background-color: #f1f3f5 !important;
      color: #0056b3 !important;
    }
/* **********************
privacy policy page ends here
*********************** */


/* **********************
terms and condition page
*********************** */

    .at-terms-subtitle { letter-spacing: 2px; }
      .at-terms-list-group .at-terms-nav-link:hover {
        background-color: #f1f3f5 !important;
        color: #0056b3 !important;
      }
/* **********************
terms and condition page ends here
*********************** */
   

/* **********************
FAQS page
*********************** */
  .at-faq-btn:not(.collapsed) {
        color: #0056b3 !important;
        box-shadow: none !important;
      }
      .at-faq-btn::after {
        background-size: 1rem !important;
      }
      .at-faq-item {
        transition: border-color 0.2s ease-in-out;
      }
      .at-faq-item:hover {
        border-color: #d1d5db !important;
      }

/* **********************
FAQS page ends here
*********************** */
.counter-plus::after {
    content: "+" !important;
}
.counter-percent::after {
    content: "%" !important;
}




/* ******************************************** */
/* Blog + Single Post Page Styles (Cleaned) */
/* ******************************************** */

/* =========================================================
   Featured & Side Posts
   ========================================================= */

.featured-post {
  padding: 10px;
  transition: all 0.3s ease;
	color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 20px;
}

.featured-post:hover {
  
  box-shadow: 0 5px 20px rgba(56, 189, 248, 0.4);
}

.featured-post span {
  color: var(--primary) !important;
}

.side-post {
  transition: all 0.3s ease;
  padding: 10px;
  align-items: center;
	color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 20px;
}

.side-post:hover {
  
  box-shadow: 0 0 10px rgb(0 255 136);
}

.featured-post img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px !important;
  display: block;
  margin: 0 auto 20px;
}

.featured-post .badge-guide,
.featured-post small {
  font-size: 15px;
  color: black;
  text-transform: uppercase !important;
}

.featured-title {
  font-size: 22px !important;
  font-weight: 600;
  line-height: 26px !important;
  color: var(--dark) !important;
}

.featured-post .gift-description {
  font-size: 15px !important;
  font-weight: 400;
  line-height: 19px;
  max-width: 90%;
}

.col-lg-5 .side-post {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 18px;
}

.side-post-img {
  width: 265px;
  height: 150px;
  max-width: 100%;
  /* min-width: 200px; */
  object-fit: cover;
  border-radius: 10px !important;
  display: block;
  flex-shrink: 0;
}

.col-lg-5 .side-post::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #3b3fcf 0%, #6d4bff 100%);
  border-radius: 10px 6px 6px 10px;
  box-shadow: 0 6px 14px rgba(59, 63, 207, 0.14);
  z-index: 2;
  pointer-events: none;
}

.col-lg-5 .side-post>div {
  flex: 1;
  min-width: 0;
}

.side-post-title {
  color: var(--dark) !important;
  font-size: 18px !important;
  line-height: 22px !important;
}

.side-post .badge,
.side-post small {
  font-size: 12.5px;
  color: #7b7b93;
  text-transform: uppercase !important;
  padding: 0 !important;
}

a.text-decoration-none.text-dark {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* =========================================================
   Blog Search & Headings
   ========================================================= */

.blog-search-form .form-control,
.blog-search-form-mobile .form-control-lg {
  font-size: 1rem !important;
  font-weight: 500 !important;
  border: 1px solid #cdcdcd !important;
  box-shadow: none !important;
  border-radius: 50px;
  padding: 20px;
  background: transparent;
}

.blog-search-form .btn.btn-primary {
  padding: 10px 60px 10px 20px !important;
}

.blog-search-form-mobile .btn.btn-primary {
  width: 100% !important;
  margin-top: 15px !important;
  padding: 15px 0 !important;
  text-align: center;
}

.blog-search-form-mobile .input-group-mobile {
  display: block !important;
}

.blog-heading h1 {
  color: var(--dark);
  margin-bottom: 20px;
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 1.2em;
}

.blog-heading p {
  color: var(--dark);
  font-size: 19px !important;
  font-weight: 500;
  line-height: 1.5em;
}

/* =========================================================
   Category Cards + Misc
   ========================================================= */
/* =========================================================
   Enhanced Category Cards + Buttons
   ========================================================= */

.card-img-top {
  border-radius: 12px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card-img-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(59, 63, 207, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-img-top:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

/* #category-posts-container .card-img-top:hover::after {
  opacity: 1;
} */

#category-posts-container .card {
  border: none !important;
  background-color: transparent !important;
  transition: all 0.3s ease;
  border-radius: 15px !important;
  padding: 15px;
	 border: 1px solid var(--primary) !important;
  border-radius: 20px;
}

#category-posts-container .card:hover {
 
  box-shadow: 0 0 10px rgb(0 255 136);
}

/* #category-posts-container .card:hover {
  background: linear-gradient(135deg, rgba(41, 41, 100, 0.05), rgba(0, 255, 136, 0.05)) !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
} */



#category-posts-container .card-body {
  padding: 15px 0 !important;
  transition: all 0.3s ease;
}

#category-posts-container .card-body span {

  color: var(--primary);
}

/* #category-posts-container .card:hover .card-body {
  transform: translateX(5px);
} */

#category-posts-container .card-title a {
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 25px !important;
  color: var(--dark) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}


#category-posts-container .card-text {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  color: var(--text-light) !important;
  transition: all 0.3s ease;
}



#category-posts-container .badge {
  text-transform: uppercase !important;
  font-size: 15px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#category-posts-container .badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}


/* Category Tabs Enhancement */
#category-tabs .category-tab {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent !important;
  border-radius: 25px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(45deg, #292964, #3b3fcf) !important;
  color: white !important;
  margin: 5px;
}

#category-tabs .category-tab.btn-outline-primary {
  background: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
}

#category-tabs .category-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

#category-tabs .category-tab:hover::before {
  left: 100%;
}

#category-tabs .category-tab:hover {
  transform: translateY(-3px) scale(1.05);
   box-shadow: 0 5px 20px rgba(56, 189, 248, 0.4);
  border-color: var(--primary) !important;
}

#category-tabs .category-tab.active {
 background: linear-gradient(45deg, #38bdf8, #0369a1) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 5px 20px rgba(56, 189, 248, 0.4);
    transform: scale(1.05);
}

/* Loading Indicator Enhancement */
#loading-indicator {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

#loading-indicator::after {
  content: '';
  animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {

  0%,
  20% {
    content: '.';
  }

  40% {
    content: '..';
  }

  60%,
  100% {
    content: '...';
  }
}

/* Blog Divider Enhancement */
.blog-hr-divider hr {
  width: 85% !important;
  margin: 0 auto !important;
  background: linear-gradient(90deg, transparent, var(--primary), transparent) !important;
  height: 3px !important;
  border: none !important;
  opacity: 1 !important;
  border-radius: 10px;
}

.for-max-width {
  width: 100%;
  max-width: 250px;
}

/* =========================================================
   Enhanced Buttons
   ========================================================= */

#loadMoreBtn {
  color: #fff;
  background: linear-gradient(45deg, #292964, #3b3fcf);
  border-radius: 50px;
  font-weight: 600 !important;
  width: fit-content !important;
  padding: 18px 40px !important;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(41, 41, 100, 0.4);
  letter-spacing: 0.5px;
}

#loadMoreBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

#loadMoreBtn:hover {
  background: linear-gradient(45deg, #007a2f, #00ff66);
  box-shadow: 0 15px 30px rgba(0, 255, 100, 0.6);
  transform: translateY(-5px) scale(1.05);
  color: #000;
  border: none;
}

#loadMoreBtn:hover::before {
  left: 100%;
}

#loadMoreBtn:active {
  transform: translateY(-2px) scale(1.02);
}

/* No Posts Message Enhancement */
#no-posts-message {
  position: relative;
}

#no-posts-message .lead {
  font-size: 1.25rem;
  color: var(--dark);
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(41, 41, 100, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px dashed var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}


/* =========================================================
   Single Post (Sidebar + Content)
   ========================================================= */

:root {
  --header-height: 80px;
}

.single-left {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: fit-content;
  z-index: 10;
}

.single-left .sidebar-inner {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 30px;
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
  box-shadow: 0 0 10px rgb(0 255 136);
}

.post-toc h2 {
  margin-bottom: 25px;
  color: var(--dark);

}

.post-toc ul {
  list-style: none;
  padding-left: 0;
  counter-reset: toc-counter;
}

.post-toc ul li {
  margin-bottom: 10px;
  counter-increment: toc-counter;
}

.post-toc ul li a::before {
  content: counter(toc-counter) ". ";
  font-weight: 600;
  margin-right: 6px;
  color: var(--primary);
}

.post-toc ul li a {
  text-decoration: none;
  color: var(--text);
  display: block;
  line-height: 1.4;
  padding: 4px 0;
  transition: color 0.3s ease;
  font-size: 18px !important;
}

.post-toc ul li a:hover {
  text-decoration: none;
  color: var(--primary);
}

/* .sidebar-box {
  padding-bottom: 15px;
  margin-bottom: 15px;
} */

.sidebar-box p {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 325px;
  color: var(--dark) !important;
}

.social-icons a {
  margin-right: 25px !important;
  font-size: 26px !important;
  color: var(--dark);
}

.social-icons a i:hover {
  color: var(--primary);
}

.single-right {
  padding: 0 !important;
}

.post-content {
  padding: 0 !important;
}

.post-content p {
  font-size: 16px !important;
  color: var(--dark) !important;
  font-weight: 500 !important;
}

.single-post .entry-content img,
.blog-post img,
.post-content img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
  .for-blog-heading h1 {
    font-size: 40px !important;
  }

  .for-blog-heading br {
    display: none !important;
  }

  .for-blog-heading p,
  .blog-heading p {
    font-size: 16px !important;
  }

  #category-posts-container .card-text {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 25px !important;

  }

  .featured-post img {
    height: 320px;
  }

  .side-post-img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .col-lg-5 .side-post::after {
    right: 14px;
    top: -5px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 575px) {
  .featured-title {
    font-size: 22px !important;
    line-height: 27px !important;
  }

  .featured-post img {
    height: 240px;
    object-fit: fill;
  }

  .col-lg-5 .side-post {
    flex-direction: row;
    gap: 12px;
  }

  .side-post-img {
    max-width: 36%;
  }

  .side-post-title {
    font-size: 14px !important;
    line-height: 19px !important;
    font-weight: 700 !important;
  }

  .col-lg-5 .side-post::after {
    display: none;
  }

  .col-lg-6 a .side-post {
    display: flex !important;
    margin-bottom: 25px !important;
  }


  .col-lg-6 a .side-post .flex-grow-1 span {
    font-size: 11px !important;
  }

  .side-post.d-flex.mb-3 {
    gap: 0 !important;
    padding: 0 !important;
  }

  .category-tab {
    margin-left: 0 !important;
    margin-right: 0 !important;

  }

  #category-tabs {
    gap: 10px;
  }

  .single-left {
    position: static !important;
  }

  .engagement-model-section .service-nav-column .nav-pills .nav-link.active .tab-text strong,
  .engagement-model-section .service-nav-column .nav-pills .nav-link.active .tab-text small,
  .engagement-model-section .service-nav-column .nav-pills .nav-link.active i {
    color: #fff !important;
  }
	
}



.category-tab.btn-outline-primary {


  background-color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  border: none !important;
  color: var(--dark) !important;
}

.category-tab.btn-primary.active {

  background-color: var(--accent-glow);
  border-color: #262262;

  color: var(--dark);



  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 0.9rem;

}


/* Search Result page */

.serach-results-page .card {
  background: transparent !important;
}

.serach-results-page h1 {
  color: var(--dark) !important;
}

.serach-results-page span {
  color: var(--primary) !important;
}

.serach-results-page a:hover {
  color: var(--accent-glow) !important;
}

/* ************************************
custom styles for toggle on mobile 
************************************ */
.navbar-dark .navbar-toggler {
    color: #545454;
    border-color: rgba(255, 255, 255, 0.1);
	background-color: var(--primary);
}
.navbar-toggler:hover {
    text-decoration: none;
}



.page-banner {
    background-image: url('/wp-content/uploads/2026/07/Insight-Header.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

div#tawk-message-preview-content {
    display: none !important;
}

div#tawk-message-preview {
    display: none !important;
}

.back-to-top{
	display: none !important;
}