:root {
  --orange: rgb(237, 82, 64);
  --orange-light: hsla(24, 100%, 50%, 0.1);
  --gray: hsl(220, 2%, 31%);
  --dark-gray: hsl(217, 21%, 16%);
  --light-gray: hsl(0, 0%, 80%);
  --white: hsl(0, 0%, 100%);
  --light-bg: hsl(345, 20%, 96%);
  --shadow: hsla(0, 0%, 0%, 0.05);
  --black-light: hsla(0, 0%, 0%, 0.15);

  --font: 'Jost', sans-serif;
  --fs-large: 3.8rem;
  --fs-medium: 2.2rem;
  --fs-small: 2rem;
  --fs-xsmall: 1.8rem;
  --fs-tiny: 1.6rem;

  --fw-bold: 600;
  --fw-medium: 500;

  --padding: 80px;

  --radius: 4px;
  --radius-circle: 50%;
  --radius-pill: 500px;

  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

html {
  font-family: var(--font);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--gray);
  font-size: 1.6rem;
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.842);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 70%);
}

/* Reused Styles */
.container {
  padding: 0 15px;
}

.section {
  padding: var(--padding) 0;
}

.h1,
.h2,
.h3,
.h4 {
  color: var(--dark-gray);
  line-height: 1.3;
}

.h1,
.h2 {
  font-size: var(--fs-large);
}

.h3 {
  font-size: var(--fs-medium);
  font-weight: var(--fw-bold);
}

.h4 {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
}

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

.section-text {
  font-size: var(--fs-xsmall);
}

.btn {
  background: var(--bg, var(--dark-gray));
  color: var(--color, var(--white));
  padding: 10px 20px;
  border: 2px solid var(--border, var(--dark-gray));
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(120deg, #ED5240, #ed7321, #ef771c);
  --color: var(--white);
  --border: var(--orange);
}

.btn-primary:hover,
.btn-primary:focus {
  background: transparent;
  color: var(--orange);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--orange);
  border-color: var(--orange);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 10px 28px;
  font-weight: var(--fw-medium);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--orange);
  color: var(--white);
}

.has-shape {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  z-index: -1;
}

.title-wrapper {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

.card-text {
  font-size: var(--fs-xsmall);
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-gray);
  font-weight: var(--fw-medium);
  transition: var(--transition);
}

.btn-link:hover,
.btn-link:focus {
  color: var(--orange);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background: var(--light-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hover\:underline {
  background: linear-gradient(var(--dark-gray), var(--dark-gray)) no-repeat bottom;
  background-size: 0 2px;
  transition: var(--transition);
}

.hover\:underline:hover,
.hover\:underline:focus {
  background-size: 100% 2px;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
}

.header.active {
  position: fixed;
  box-shadow: 0 2px 15px var(--shadow);
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar */
.navbar-nav .nav-link {
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  font-size: 20px;
  transition: var(--transition);
  color: var(--orange) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--orange);
}

.navbar-toggler ion-icon {
  font-size: 28px;
  color: var(--dark-gray);
}

/* Desktop Dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown .nav-link {
    position: relative;
  }

  .nav-item.dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: var(--transition);
  }

  .nav-item.dropdown:hover .nav-link::after {
    border-top-color: var(--orange);
    transform: rotate(180deg);
  }

  .nav-item.dropdown .dropdown-menu {
    display: block;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px var(--shadow);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .dropdown-menu li:nth-child(1) {
    transition-delay: 0.05s;
  }

  .dropdown-menu li:nth-child(2) {
    transition-delay: 0.1s;
  }

  .dropdown-menu li:nth-child(3) {
    transition-delay: 0.15s;
  }

  .dropdown-menu li:nth-child(4) {
    transition-delay: 0.2s;
  }

  .nav-item.dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-item {
    color: var(--dark-gray);
    font-size: var(--fs-tiny);
    font-weight: var(--fw-medium);
    padding: 8px 20px;
    text-transform: capitalize;
    transition: var(--transition);
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: var(--orange-light);
    color: var(--orange);
  }
}

.hero-client {
  border-radius: 50px;
}

/* Mobile Sidebar */
@media (max-width: 991px) {
  .sidebar-nav .navbar-collapse {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: -2px 0 10px var(--shadow);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 20px;
  }

  .sidebar-nav .navbar-collapse.show {
    transform: translateX(-280px);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px !important;
  }

  .nav-item.dropdown .nav-link::after {
    position: relative !important;
    right: 0 !important;
  }

  .navbar-nav .nav-link {
    font-size: 1.8rem;
    padding: 15px 0;
    width: 100%;
  }

  .nav-item.dropdown .nav-link {
    position: relative;
  }

  .nav-item.dropdown .nav-link::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid var(--dark-gray);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    transition: var(--transition);
  }

  .nav-item.dropdown.active .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: var(--orange);
  }

  .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: none;
    width: 100%;
    padding: 0 0 0 20px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .navbar-nav .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    font-size: 1.6rem;
    padding: 10px 0;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    right: 0 !important;
  }

  .footer-top {
    flex-direction: column !important;
  }
}

/* Active & Scrolled Link Styling */
.header.active nav .navbar-nav .nav-item .nav-link.active {
  color: var(--orange) !important;
}

.nav-link.scrolled {
  color: var(--orange) !important;
}

.navbar .nav-item a.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f9a826;
}


/*--------WhatsApp Image-----*/
.wapp-section {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  width: auto;
}

.w-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #25D366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: shine 2s infinite alternate;
  cursor: pointer;
}

/* Hover effect */
.w-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

/* Shine animation */
@keyframes shine {
  0% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
  }

  100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 1);
  }
}

.wapp-section a::after {
  content: "Chat with us";
  position: absolute;
  bottom: 80px;
  right: 0;
  background: #25D366;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.wapp-section a:hover::after {
  opacity: 1;
  transform: translateY(0);
}


/* ------hero section------ */
.section.hero {
  position: relative;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(5px);
  z-index: -1;
}

.section.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Semi-transparent overlay for contrast */
  z-index: -1;
}

.section.hero .container {
  position: relative;
  z-index: 2;
}

.scroll-animate {
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Shorter duration, custom easing */
  will-change: transform, opacity;
}

.scroll-animate-left {
  transform: translateX(-100px);
}

.animate-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.hero-text {
  color: rgba(255, 255, 255, 0.63) !important;
}

.fade-animate {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.fade-visible {
  opacity: 1 !important;
}

.section .service-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.scroll-heading {
  transition: transform 0.3s ease-out, opacity 0.5s ease-out;
  transform: translateY(20px);
  /* Initial position */
  opacity: 0;
  /* Start with the heading invisible */
  display: block;
}

.scroll-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-underline {
  /* display: inline-block;  */
  position: relative;
  /* Pseudo-element position ke liye */
  color: inherit;
  /* Text color same rahe */
  text-decoration: none;
  /* Default underline hatao */
}

.scroll-underline::after {
  content: '';
  /* Empty content for underline */
  position: absolute;
  width: 100%;
  /* Full width */
  transform: scaleX(0);
  /* Initially hidden */
  height: 2px;
  /* Underline ki thickness */
  bottom: 0;
  /* Text ke neeche */
  left: 0;
  background-color: #ff6600;
  /* Orange color, apne hisaab se change karo (e.g., #f5f5f5 for light) */
  transform-origin: bottom right;
  /* Grow from right to left (change to left for opposite) */
  transition: transform 0.3s ease-out;
  /* Smooth animation, time adjust kar sakte ho */
}

.scroll-underline:hover::after {
  transform: scaleX(1);
  /* Hover par full show ho */
  transform-origin: bottom left;
  /* Animation direction */
}

/* Optional: Span ke andar ke text ke liye extra style agar chahiye */
.text-orange {
  color: #ff6600;

}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(110deg, #d6eadf, #f5f1e3, #fafafa);




  padding: 10px 0;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 4px 10px var(--shadow);
}

.marquee {
  display: inline-block;
  animation: marquee 300s linear infinite;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  font-size: 28px;
  font-family: var(--font);
  font-weight: 600;
  color: var(--orange);
  margin: 0 50px;
  vertical-align: middle;
  text-shadow: 1px 1px 2px var(--shadow);
  transition: transform 0.9s ease, color 0.9s ease;
}

.marquee span:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee:hover {
  animation-play-state: paused;
}

/* Decorative elements */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, rgba(237, 82, 64, 0.5), transparent);
  z-index: 1;
}

.marquee-container::before {
  left: 0;
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, rgba(237, 82, 64, 0.5), transparent);
}

.hero-paragraph {
  position: relative;
  bottom: 55px;
}

.hero-btn {
  position: relative;
  bottom: 70px;
}

.hero-container {
  position: relative;
  top: 35px;
}

/* ---------------------hero----------------------- */
/* Custom Styling for Header Icons (optional) */
header i {
  color: #f1f1f1;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar {
  border-bottom: 1px solid #000000;
  height: 80px;
}

.touch {
  width: 150px;
  font-size: 14px !important;
  border-radius: 30px !important;
}

.dropdown-hover {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  padding: 10px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

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

/* Remove bullets */
.dropdown-menu-custom {
  list-style: none;
  margin: 0;
}

.dropdown-icon {
  font-size: 20px;
  margin-top: 4px;
}

/* Style individual items */
.dropdown-menu-custom li {
  padding: 8px 20px;
}

.dropdown-menu-custom li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-menu-custom li a:hover {
  background-color: #f8f9fa;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-weight: 400 !important;
  font-size: 24px !important;
}

/* ---hero section--- */
.hero {
  /* background-color: #f8f9fa; Optional: light background */
  padding: 60px 0;
  padding-top: 95px !important;
}

.brand-white {
  color: #747070;
}

.hero .container {
  max-width: 1200px;
  /* Ensure max width for large screens */
}

.hero h1 {
  font-size: 2.5rem;
  /* Default size for small screens */
  margin-bottom: 20px;
}

.hero h3 {
  font-size: 1.5rem;
  /* Adjust size for better readability */
  margin-bottom: 30px;
}

.hero p {
  font-size: 1rem;
  /* Default size for smaller screens */
  margin-bottom: 12px;
}

.hero i {
  width: 20px;
  /* Keeps icons aligned */
}

/* Make buttons larger and responsive */
.hero .btn {
  min-width: 180px;
  padding: 12px 25px;
  line-height: 1.2;
  font-size: 16px;
  margin: 5px;
}

.hero img {
  max-width: 100%;
  height: auto;
  /* Ensure image adjusts to different screens */
}

/* ---Responsive Adjustments for Larger Screens--- */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    /* Bigger heading text on tablets and larger screens */
  }

  .hero h3 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1.1rem;
    /* Slightly larger text for readability */
  }

  .hero .btn {
    font-size: 18px;
    padding: 14px 30px;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
    /* Larger text for bigger screens */
  }

  .hero h3 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero .btn {
    font-size: 20px;
    padding: 15px 35px;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 4rem;
    /* Even bigger heading on very large screens */
  }

  .hero h3 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.7rem;
    /* Slightly bigger for better readability */
  }

  .hero .btn {
    font-size: 22px;
    padding: 16px 40px;
  }

  .blog-position-1 {
    position: relative;
    top: 1.5rem;
  }

  .blog-position-2 {
    position: relative;
    top: 2.2rem;
  }

  .blog-position-3 {
    position: relative;
    top: 2rem;
  }

  .blog-position-4 {
    position: relative;
    top: 2rem;
  }
}


/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/
.text-orange {
  color: var(--orange);
}

.service {
  background: var(--light-bg);
}

.service .section-text {
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-radius: 10px;
}

.service-card-1:hover {
  transform: translateY(-5px);
  background-color: #85a5ce;
}

.service-card-2:hover {
  transform: translateY(-5px);
  background-color: #e8bfe2;
}

.service-card-3:hover {
  transform: translateY(-5px);
  background-color: #f8b192;
}

.service-card-4:hover {
  transform: translateY(-5px);
  background-color: #b5faff;
}

.service-card-5:hover {
  transform: translateY(-5px);
  background-color: #a8f4da;
}

.service-card-6:hover {
  transform: translateY(-5px);
  background-color: #f2979a;
}

.service-card-7:hover {
  transform: translateY(-5px);
  background-color: #f3f5cf;
}

.service-card-8:hover {
  transform: translateY(-5px);
  background-color: #c8caed;
}

.service-card .card-icon {
  margin: 0 auto;
}

.service-card .card-title {
  margin: 15px 0 10px;
  transition: var(--transition);
}

.service-card .card-title:hover,
.service-card .card-title:focus {
  color: rgb(194, 37, 37);
}

.service .shape-1 {
  bottom: 20px;
  left: 0;
}

.service .shape-2 {
  display: none;
}

.round-element {
  background-color: #b9b4c082;
  box-shadow: 10px 20px 30px rgb(108, 72, 72);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  right: 150px;
  top: 200px;
}

.round-element2 {
  background-color: #b9b4c082;
  box-shadow: 10px 20px 30px rgb(108, 72, 72);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  left: 140px;
  bottom: 40px;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .section-text {
  margin: 20px 0 30px;
  max-width: 500px;
}

.about .btn {
  max-width: max-content;
}

.about .shape {
  top: 0;
  right: 20px;
}


.hover-border-bottom {
  position: relative;
  display: inline-block;
}

.hover-border-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  /* border thickness */
  background-color: #000;
  /* border color */
  transition: width 0.3s ease, left 0.3s ease;
}

.hover-border-bottom:hover::after {
  width: 100%;
  left: 0;
}


.hover-title-scale:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.hover-shadow:hover {
  box-shadow: 0 0 20px rgb(237, 82, 64) !important;
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}

.hover-title-scale:hover {
  color: rgb(237, 82, 64);
  transition: color 0.3s ease-in-out;
}

/* Custom animations for services section in about-us page */
.WhatweDo {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
  padding-left: 10px;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(13, 110, 253, 0.05);
}

.service-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Animation classes */
.animate-fadeInUp {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-item {
    font-size: 1rem;
    padding-left: 5px;
  }

  .service-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.img-fluid:hover {
  transform: scale(1.04);
}


/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.section.project {
  position: relative;
  z-index: 2;
  /* Above hero, below subsequent sections */
  overflow: hidden;
  background: transparent;
  /* Remove default background to show image */
}

.section.project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about-banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(5px);
  /* Match hero blur */
  z-index: -1;
}

.section.project::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Match hero overlay */
  z-index: -1;
}

.section.project .container {
  position: relative;
  z-index: 2;
  /* Content above background */
}

.section.project .title-wrapper {
  color: var(--white);
  /* White text for contrast */
}

.section.project .section-title,
.section.project .section-text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* Match hero text shadow */
}

.section.project .project-card {
  background: rgba(255, 255, 255, 0.9);
  /* Semi-transparent white for contrast */
}

.project .section-title {
  margin-bottom: 20px;
}

.project-card {
  border-radius: var(--radius);
  box-shadow: 0 5px 20px var(--shadow);
}

.project-card .card-banner {
  margin-bottom: 15px;
}

.project-card:hover .img-cover,
.project-card:focus-within .img-cover {
  transform: scale(1.1);
}

.project-card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

.project-card .h3 {
  font-size: 2.4rem;
  margin-bottom: 5px;
}

.project-card .card-tag {
  font-size: var(--fs-tiny);
  color: var(--gray);
}

.project-card .card-link {
  color: var(--dark-gray);
  font-size: 20px;
  padding: 10px;
  border-radius: var(--radius-circle);
  transition: var(--transition);
}

.project-card .card-link:hover,
.project-card .card-link:focus {
  background: var(--orange-light);
  color: var(--orange);
}

/* Ensure subsequent sections cover the project background */
.section.blog {
  position: relative;
  z-index: 3;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 5px 20px var(--shadow);
}

.blog-card .card-banner {
  position: relative;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.blog-card .card-banner:hover .img-cover,
.blog-card .card-banner:focus .img-cover {
  transform: scale(1.1);
}

.blog-card .card-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--white);
  color: var(--dark-gray);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.blog-card .card-tag:hover,
.blog-card .card-tag:focus {
  background: var(--orange);
  color: var(--white);
}

.blog-card .meta-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 15px 20px 10px;
}

.blog-card .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card .meta-item-text {
  color: var(--gray);
  font-size: var(--fs-tiny);
}

.blog-card .h3 {
  font-size: 2.4rem;
  margin: 20px 20px 15px;
}

.blog-card .btn-link {
  font-size: var(--fs-tiny);
  margin: 0 20px 20px;
}

/* ----- stats section ----- */
#stats {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 20px;
}


.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  background: linear-gradient(45deg, #f19063, #eea507);
  color: white;
  padding: 30px;
  border-radius: 15px;
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat h3 {
  font-size: 2.2em;
  margin: 0;
  font-weight: bold;
  display: inline-flex;
  align-items: baseline;
}

.stat h3 .plus {
  font-size: 1em;
  margin-left: 2px;
}

.stat p {
  font-size: 1.1em;
  margin: 10px 0 0;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.5s;
}

.stat:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .stat {
    width: 100%;
    max-width: 220px;
  }

  #stats h2 {
    font-size: 2em;
  }
}


/*-----------------------------------*\
  #PACKAGES
\*-----------------------------------*/
/* Packages Section */
.packages {
  background: var(--light-bg);
  padding: var(--padding) 0;
}

.packages .section-text {
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(45deg, rgba(237, 82, 64, 0.1), rgba(255, 255, 255, 0.9));
}

.package-card .card-icon {
  margin: 0 auto 15px;
}

.package-card .card-title {
  margin-bottom: 15px;
  font-size: var(--fs-medium);
  font-weight: var(--fw-bold);
  color: var(--dark-gray);
  transition: var(--transition);
}

.package-card:hover .card-title {
  color: var(--orange);
}

.package-price {
  margin-bottom: 20px;
}

.package-price .price {
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: var(--orange);
}

.package-price .period {
  font-size: var(--fs-tiny);
  color: var(--gray);
  margin-left: 5px;
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  padding: 0 20px;
}

.package-features li {
  font-size: var(--fs-xsmall);
  margin-bottom: 12px;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
}

.package-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.2rem;
}

.package-features li strong {
  color: var(--dark-gray);
}

.package-card .btn-primary {
  max-width: 200px;
  padding: 12px 24px;
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  transition: var(--transition);
}

.package-card .btn-primary:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

/*-----------------------------------*\
  #PARTNERS
\*-----------------------------------*/
/* Partners Marquee Container */
.partners-marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 4px 10px var(--shadow);
}

/* Partners Marquee Animation with 2-second Delay */
.partners-marquee {
  display: inline-block;
  animation: partners-marquee 75s linear infinite;
  animation-delay: 2s;
  /* Starts scrolling after 2 seconds */
  white-space: nowrap;
}

/* Partners Marquee Items (Logos) */
.partners-marquee span {
  display: inline-block;
  margin: 0 50px;
  vertical-align: middle;
  transition: transform 0.9s ease;
}

.partners-marquee span:hover {
  transform: scale(1.1);
}

/* Partners Marquee Animation Keyframes */
@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Pause on Hover */
.partners-marquee:hover {
  animation-play-state: paused;
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  position: relative;
  bottom: 0;
  z-index: 0;
  color: white;
  background: rgb(40 39 39 / 84%);
  padding: 20px;
  width: 100%;
}

main {
  flex: 1;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.footer-logo {
  position: relative;
  right: 28px;
}

.footer-list-title {
  color: var(--orange);
}

.footer-top {
  padding: 20px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.footer-link {
  font-size: var(--fs-tiny);
  transition: var(--transition);
}

.footer-link:hover,
.footer-link:focus {
  color: var(--orange);
}

.footer-brand .footer-link:not(:last-of-type) {
  margin: 20px 0 10px;
}

.social-list {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  font-size: 18px;
  transition: var(--transition);
}

.social-link:hover,
.social-link:focus {
  color: var(--orange);
}

.footer-list .footer-link {
  padding: 5px 0;
}


.copyright {
  padding: 20px 0;
}

.copyright a {
  color: var(--orange);
  font-weight: var(--fw-medium);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

@media(max-width: 576px) {
  .social-links-1 {
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .footer {
    position: relative;
  }
  .round-element{
    right: 315px !important;
    top: 230px !important;
  }
  .round-element2{
    display: none;
  }

}

@media (min-width: 576px) {
  :root {
    --fs-large: 4.5rem;
  }

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

  .hero .shape {
    left: 0;
  }
  
}

@media (min-width: 768px) {
  :root {
    --fs-large: 5rem;
  }

  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  :root {
    --fs-large: 6rem;
    --padding: 100px;
  }

  .container {
    max-width: 960px;
  }

  .h2 {
    font-size: 4.8rem;
  }

  .section-text {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 30px;
  }

  .btn-secondary {
    padding: 14px 32px;
  }

}

@media (min-width: 1200px) {
  :root {
    --fs-large: 7rem;
  }

  .container {
    max-width: 1140px;
  }

  .h2 {
    font-size: 5.5rem;
  }

  .blog-container {
    max-width: 1420px;
  }
}

@media (max-width: 768px) {
  .footer {
    position: relative;
  }
}

/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/


/* Contact Section */
.contact {
  background: var(--light-bg);
  padding: var(--padding) 0;
}

.contact .section-title {
  margin-bottom: 20px;
}

.contact .section-text {
  max-width: 500px;
  margin-bottom: 30px;
}

.contact-form .form-control {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 1.6rem;
  font-family: var(--font);
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 5px rgba(237, 82, 64, 0.3);
  outline: none;
}

.contact-form .form-label {
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  color: var(--dark-gray);
}

.contact-form .btn-primary {
  padding: 12px 24px;
  font-size: 1.8rem;
  font-weight: var(--fw-medium);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-form .btn-primary:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px var(--shadow);
  object-fit: cover;
  max-height: 500px;
}

.social-links .social-link {
  font-size: 2.4rem;
  color: var(--orange);
  margin: 0 10px;
  transition: var(--transition);
}

.social-links .social-link:hover {
  color: var(--white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .contact-image {
    margin-top: 30px;
  }

  .fade-animate {
    opacity: 1 !important;
  }
}

/*-----------------------------------*\
  #PACKAGES PAGE
\*-----------------------------------*/

/* Plan Inquiry Section */
.plan-inquiry {
  background: var(--light-bg);
  padding: var(--padding) 0;
}

.plan-inquiry .section-title {
  margin-bottom: 20px;
}

.plan-inquiry .section-text {
  max-width: 500px;
  margin-bottom: 30px;
}

.plan-inquiry-form .form-control,
.plan-inquiry-form .form-select {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 1.6rem;
  font-family: var(--font);
  transition: border-color 0.3s ease;
}

.plan-inquiry-form .form-control:focus,
.plan-inquiry-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 5px rgba(237, 82, 64, 0.3);
  outline: none;
}

.plan-inquiry-form .form-label {
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  color: var(--dark-gray);
}

.plan-inquiry-form .btn-primary {
  padding: 12px 24px;
  font-size: 1.8rem;
  font-weight: var(--fw-medium);
  border-radius: var(--radius);
  transition: var(--transition);
}

.plan-inquiry-form .btn-primary:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

/* Image Styling */
.plan-inquiry-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px var(--shadow);
}

.packages-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  /* Ensures image scales without stretching */
  object-position: center;
  /* Centers the image */
  border-radius: var(--radius);
}

/* OTP Section */
.plan-inquiry-form #otp-section .form-control {
  margin-bottom: 10px;
}

.plan-inquiry-form #otp-section .btn-outline-primary {
  padding: 8px 16px;
  font-size: 1.6rem;
  border-color: var(--orange);
  color: var(--orange);
  transition: var(--transition);
}

.plan-inquiry-form #otp-section .btn-outline-primary:hover {
  background: var(--orange);
  color: var(--white);
}

.plan-inquiry-form #otp-section .btn-outline-secondary {
  padding: 8px 16px;
  font-size: 1.6rem;
  border-color: var(--gray-light);
  color: var(--dark-gray);
  transition: var(--transition);
}

.plan-inquiry-form #otp-section .btn-outline-secondary:hover {
  background: var(--gray-light);
  color: var(--white);
}

.plan-inquiry-form #otp-section .valid-feedback {
  display: none;
  font-size: 1.4rem;
  color: #28a745;
  /* Green for success */
}

.plan-inquiry-form #otp-section .is-invalid~.invalid-feedback,
.plan-inquiry-form #otp-section .valid-feedback[style*="block"] {
  display: block;
}

/* Form Adjustments */
.plan-inquiry-form .invalid-feedback {
  display: none;
  font-size: 1.4rem;
  color: var(--orange);
}

.plan-inquiry-form .is-invalid~.invalid-feedback {
  display: block;
}

/* Modal Styling */
.modal-content {
  border-radius: var(--radius);
  font-family: var(--font);
}

.modal-header.bg-orange {
  background: var(--orange);
}

.modal-title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
}

.modal-body p {
  font-size: 1.6rem;
  color: var(--dark-gray);
}

.modal-footer .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
}

.modal-footer .btn-primary:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .plan-inquiry-image {
    margin-top: 30px;
  }

  .packages-img {
    max-height: 300px;
    /* Smaller height on mobile */
  }
}


/* -------------------------Blog page styling-------------------------------- */
.blog-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);
  border-radius: 10px;
}

.blog-post {
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;


}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.line-decor {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(180deg, #ff0033, #c9a7b1);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.blog-post:hover .line-decor {
  transform: scaleY(1);
}

.blog-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.blog-post:hover .blog-content h2 {
  color: rgb(237, 82, 64);
}

.blog-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}

.blog-extra-content p {
  color: #333;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
}

.blog-extra-content.show p {
  opacity: 1;
  transform: translateY(0);
  color: #444;
}

.latest-blog {
  position: relative;
  bottom: 2rem;
}

.read-toggle {
  width: 150px;
  background: rgb(237, 82, 64);
  transition: background 0.3s ease, transform 0.2s ease;
}

.read-toggle:hover {
  background: white;
  transform: scale(1.05);
}

.blog-image img {
  width: 700px;
  height: 250px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.collapse {
  transition: height 0.4s ease;
}

/* Ensure image goes below text on small screens */
@media (max-width: 768px) {
  .blog-post {
    flex-direction: column;
  }
}

.blog-para {
  font-size: 1.5rem !important;
}

/* ---------------------------------Webprojects page---------------------- */
.webProject {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.webProject.visible {
  opacity: 1;
}

.webProject img {
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.webProject img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgb(237, 82, 64);
}

.webProject .btn {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;

}

.webProject .btn:hover {
  background: white;
  color: rgb(237, 82, 64);
  transform: translateY(-2px);
}

/* Ensure text animations are subtle */
.webProject h3,
.webProject p,
.webProject .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.webProject.visible h3,
.webProject.visible p,
.webProject.visible .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.webProject.visible h3 {
  transition-delay: 0.2s;
}

.webProject.visible p {
  transition-delay: 0.4s;
}

.webProject.visible .btn {
  transition-delay: 0.6s;
}


/* ---------------Custom styles for Team section --------------*/

/* ===============================
   TEAM SECTION
================================== */
.team {
  background-color: #f8f9fa;
}

/* Section Header */
.team header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
}

.team header p.lead {
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* ===============================
   FOUNDER PROFILE
================================== */
.founder-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.card {
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.rounded-circle {
  border: 5px solid #e9ecef;
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.card-title {
  color: #1a1a1a;
  font-size: 1.75rem;
  margin-top: 1rem;
}

.text-primary {
  color: #007bff !important;
  font-size: 1.1rem;
  font-weight: 500;
}

.card-text {
  color: #191919;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .rounded-circle {
    width: 150px;
    height: 150px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .row>div {
    margin-bottom: 20px;
  }
}

/* ===============================
   TEAM CAROUSEL CARDS
================================== */
.team-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.team-card figure {
  margin: 0;
}

.team-card img {
  border: 4px solid #e9ecef;
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* Name & Role */
.team-card h4 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #1a1a1a;
}

.team-card p {
  font-size: 0.95rem;
  color: #777;
}

/* ===============================
   ANIMATIONS
================================== */
[data-bs-animation="fadeInUp"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-bs-animation="fadeInUp"].animate {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   HERO SECTION ROTATING TEXT
================================== */


#rotating-service {
  display: inline-block;
  transition: opacity 0.4s ease;
  /* Smooth fade for rotation */
  white-space: nowrap;
  /* Icon aur text ko single line mein rakhega */
  font-size: 1.5em;
  /* Thoda highlight ke liye, adjust karo */
  min-width: 250px;
  transition: 0.3s;
  position: relative;
  top: -65px;
}

.hero-heading {
  font-size: 3rem;
  /* Bada size for impact */
  line-height: 1.2;
  text-align: left;
  font-family: 'Jost', sans-serif;
  /* Clean, professional font for main heading */
  color: #222222;
  /* Dark gray for readability, SEO-neutral */
  padding-top: 5rem;
}

.highlight {
  color: var(--orange);
  /* Accent color for brand keyword (SEO attract) */
  font-weight: 700;
  /* Bold for emphasis */
  font-family: 'Montserrat', sans-serif;
  /* Sleek font to stand out */
  font-size: 6rem;
  transition: 0.3s !important;
}

.rotating-service {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  /* Smooth animation */
  white-space: nowrap;
  font-size: 1.5rem;
  /* Slightly larger for service keywords */
  min-width: 240px;
  /* Stable layout */
  font-weight: 600;
  color: #cc1f2b;
  /* Deeper red for SEO keywords like services */
  font-family: 'Montserrat', sans-serif;
  /* Modern font for highlights */
}

.rotating-service i {
  font-size: 1.6rem;
  /* Icon ko prominent */
  vertical-align: middle;
  color: #cc1f2b;
  /* Match service color */
}

h3.mb-4.text-dark {
  font-family: 'Jost', sans-serif;
  /* Consistent with heading */
  font-weight: 500;
  /* Lighter weight for subtext */
  color: #444444;
  /* Softer dark for less emphasis */
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.012em;
  /* Subtle spacing for readability */
}

/* Subtle treatment for non-highlighted text (muted for focus on keywords) */
.hero-heading:not(.highlight),
h3.mb-4.text-dark {
  color: #555555;
  /* Muted gray – lag rakho, taaki highlights pop karein */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: center;
  }

  .rotating-service {
    font-size: 1.3rem;
  }

  h3.mb-4.text-dark {
    font-size: 1.5rem;
  }
}

/* ===============================
   BUBBLE
================================== */

/* Main container for all bubbles */
.bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* Base bubble styling */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation: bubble-float linear infinite;
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}

/* Bubble 1 - Orange */
.bubble-1 {
  width: 15px;
  height: 15px;
  background: radial-gradient(circle at 30% 30%, var(--orange), rgba(255, 165, 0, 0.6));
  top: 10%;
  animation-duration: 20s;
  /* animation-delay: 0s; */
}

/* Bubble 2 - Black Light */
.bubble-2 {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, var(--black-light), rgba(128, 128, 128, 0.6));
  bottom: 25%;
  animation-duration: 15s;
  /* animation-delay: 2s; */
}

/* Bubble 3 - Blue */
.bubble-3 {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #00bfff, rgba(0, 191, 255, 0.6));
  top: 45%;
  animation-duration: 30s;
  /* animation-delay: 1s; */
}

/* Bubble 4 - Green */
.bubble-4 {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #32cd32, rgba(50, 205, 50, 0.6));
  left: 65%;
  animation-duration: 18s;
  /* animation-delay: 3s; */
}

/* Bubble 5 - Purple */
.bubble-5 {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #9370db, rgba(147, 112, 219, 0.6));
  left: 80%;
  animation-duration: 18s;
  /* animation-delay: 4s; */
}

/* Bubble 6 - Pink */
.bubble-6 {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ff69b4, rgba(255, 105, 180, 0.6));
  left: 35%;
  animation-duration: 21s;
  /* animation-delay: 1.5s; */
}

/* Bubble 7 - Yellow */
.bubble-7 {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 30% 30%, #ffd700, rgba(255, 215, 0, 0.6));
  left: 55%;
  animation-duration: 15s;
  /* animation-delay: 1.5s; */
}

/* Floating Animation - Tagda Wala */
@keyframes bubble-float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(0) rotate(36deg) scale(1);
  }

  25% {
    transform: translateY(75vh) translateX(-20px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg) scale(0.9);
  }

  75% {
    transform: translateY(25vh) translateX(-15px) rotate(270deg) scale(1.2);
  }

  90% {
    opacity: 1;
    transform: translateY(50vh) translateX(10px) rotate(320deg) scale(0.8);
  }

  100% {
    transform: translateY(-10vh) translateX(0) rotate(360deg) scale(0);
    opacity: 0;
  }
}

/* Hover Effect - Optional */
.bubble:hover {
  animation-play-state: paused;
  transform: scale(1.5) !important;
  transition: transform 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bubble {
    max-width: 12px;
    max-height: 12px;
  }

  .bubble-1,
  .bubble-5 {
    max-width: 10px;
    max-height: 10px;
  }

  .bubble-3,
  .bubble-7 {
    max-width: 14px;
    max-height: 14px;
  }
  
}

/* ===============================
   CURSOR
================================== */

/* Hide default cursor */
* {
  cursor: none !important;
}

/* Main orange cursor circle - NOW FOLLOWER */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 213, 128, 0.3);
  /* Light orange like image */
  border: 2px solid #ED5240;
  /* Light orange border */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease;
  z-index: 9998;
  /* Behind the dot */
  mix-blend-mode: normal;
  /* Remove difference blend */
}

/* Black dot - MAIN CURSOR */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  /* In front */
}

/* Hover effects */
.cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 165, 0, 0.1);
  border-color: #ff6600;
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  background-color: #ff6600;
}

.project-heading {
  position: relative;
  top: 3.5rem;
}

.project-para {
  position: relative;
  top: 0.5rem;
}

.blog-heading {
  position: relative;
  top: 3.5rem;
}

.blog-para {
  position: relative;
  top: 0.5rem;
}

.hero-image {
  transition: 0.3s ease-in-out;
}

.hero-image:hover {
  transform: scale(1.04);
  /* box-shadow: 0 8px 28px 0 rgba(0,0,0,0.4); */
}

.gradient-text {
  font-size: 60px !important;
  font-weight: bold !important;
  background: linear-gradient(120deg, #ED5240, #ed7321, #efa51c) !important;


  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  transition: 0.5s ease;
}

.gradient-text:hover {
  font-size: 60px !important;
  font-weight: bold !important;
  background: linear-gradient(270deg, #f34330 10%, #d27427 100.06%) !important;
  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  transform: scale(1.03);
}

.contact-btn {
  border-radius: 10px;
}
@media (max-width: 768px){
  .gradient-text{
    font-size: 45px !important;
  }
}

.solution-heading {
  position: relative;
  top: 33px;
}

.solution-para {
  position: relative;
  top: 11px;
}