* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Satoshi", sans-serif;
  /* font-family: "Raleway", Arial, sans-serif; */
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("assets/fonts/Satoshi-Regular.woff2") format("woff2"),
    url("assets/fonts/Satoshi-Regular.woff") format("woff"),
    url("assets/fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Satoshi-Regular", sans-serif !important;
  background-color: #000;
}

.noraml {
  font-family: Arial, Helvetica, sans-serif;
}
.light {
  font-family: "Zodiak", serif !important;
  font-weight: 300; /* Light */
}
.light .letter-anim {
  font-family: "Zodiak", serif !important;
  font-weight: 300; /* Light */
}
.body-cover {
  overflow: hidden;
  position: relative;
}

.body-cover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #00000091;
}

:root {
  --bs-danger: #ffffff;
  /* --bs-danger: #008080; */
  --primary-color: var(--bs-danger);
  --bs-secondary: #ffffff;
  --bs-primary: #15171c;
  --black: #15171c;
  --overlay-height: var(--overlay-height, 70%);
}

.odd {
  background: #000;
}

.even {
  background: #000000;
}

.text-danger {
  color: var(--bs-danger) !important;
}

a {
  color: inherit;
  text-decoration: inherit;
}

p {
  color: inherit;
}

.navbar-toggler {
  outline: none;
  border: none;
}

.navbar-toggler:focus {
  border: none;
  outline: none;
}

.navbar-toggler:active {
  border: none;
  outline: none;
}

section {
  padding: 3rem 0rem;
  overflow: hidden;
}

footer {
  overflow: hidden;
}

.heading-wrapper {
  /* font-size: clamp(3rem, 2rem, 3rem); */
  color: var(--bs-danger);
  /* color: #000; */
  font-weight: 700;
  line-height: 3rem;
}

.text-wrapper {
  font-size: clamp(1rem, 1.2rem, 1.5rem); /* ✅ auto responsive */
  line-height: 28px;
  color: #ffffff;
  margin: 0 auto;
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  margin-left: -1rem;
}
/* .text-wrapper {
  font-size: clamp(1rem, 1.5vw, 1.25rem); 
  line-height: 1.6;
  max-width: 800px;
  
} */

/* ✅ Tablet view */
@media (max-width: 768px) {
  .text-wrapper {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.8rem;
    /* margin-left: -3rem; */
  }
}

/* ✅ Mobile view */
@media (max-width: 480px) {
  .text-wrapper {
    font-size: 0.9rem; /* smaller but readable */
    line-height: 1.4;
    padding: 0.5rem;
  }
}

/* Header new Style */
.box {
  border-left: 3px solid #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  z-index: 1000;
  background: transparent;
  justify-content: space-between;
}

/* Default (Desktop) */
.site-logo {
  width: 80%; /* desktop size */
  max-width: 80px; /* prevents it from being too large */
  height: auto;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .site-logo {
    width: 60%;
    max-width: 70px;
  }
}

/* ✅ Mobile */
@media (max-width: 576px) {
  .site-logo {
    width: 80%; /* make it larger percentage for mobile */
    max-width: 60px;
  }
}

.blur {
  backdrop-filter: blur(10px);
  /* background: rgba(20, 20, 20, 0.6); */
  background: #000;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Sidebar & overlays (your existing setup) */

/* Hamburger styles */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}
/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff9800;
}

/* Hamburger Icon */
.nav-linkes {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hamburger {
  display: flex; /* Always visible */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Fullscreen Overlay Menu */
/* Cross animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar */

.sidebar {
  padding: 20px 0;
  position: fixed;
  top: 0;
  right: -100%; /* hidden initially */
  width: 25%;
  height: 100%;
  background: #000000;
  color: #fff;
  transition: right 0.5s ease;
  z-index: 10000000;
  border-left: 0.5px solid rgba(255, 255, 255, 0.5);
}

.sidebar.active {
  right: 0; /* slide in */
}

.sidebar ul {
  list-style: none;
  padding: 0;
  width: 100%;
  height: 30rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.sidebar ul li {
  padding: 10px 20px;
  margin: 20px 0;
  width: 100%;
  height: 15%;
  /* background:#ffffff; */
}
.sidebar ul li:hover {
  color: #000;
  background: #ffffff;
  transition: background 0.3s;
}

.sidebar ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  /* color: #ffffff; */
  font-size: 2rem;
  font-weight: 900;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #000;
  /* background-color: #ffffff; */
  border-radius: 5px;
  transition: background 0.3s;
}
/* Cross button */
.cross {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #525151;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  position: relative;
  top: 10px;
  right: 10px;
}

.cross:hover {
  background: #fff;
  color: #000;
}

/* Optional: overlay background */
.overlays {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 900;
  overflow: hidden;
}

.overlays.active {
  display: block;
}

.noscroll {
  overflow: hidden;
}

.custom-btn {
  /* border: 1px solid #fff; */
  color: #ffffff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  /* transition: background 0.3s, color 0.3s; */
  animation: zoomInOut 2s infinite ease-in-out;
}
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1); /* normal size */
  }
  50% {
    transform: scale(1.3); /* zoom in */
  }
}

/* Tablet view */
@media (max-width: 1024px) {
  .sidebar {
    width: 40%;
    right: -100%;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .sidebar {
    width: 60%;
    right: -100%;
  }
}
/* Custom CSS for the header component */

/* Sticky Header with Backdrop Filter */
.backdrop-blur-3 {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* Matches the original's bg-white/30*/
}

.nav-link {
  font-size: clamp(1rem, 1.3rem, 1.5rem);
}

/* Custom Nav Link Hover Effect */
.nav-link:hover {
  color: var(--bs-danger) !important;
  transition: color 300ms ease-in-out;
}

/* Custom Button */
.custom-btn {
  /* border: 1px solid #000;
  color: #000; */
  transition: color 300ms ease-in-out, border-color 300ms ease-in-out;
}

/* .custom-btn:hover {
  background: var(--bs-danger);
  color: white;
  border-color: var(--bs-danger);
} */

.custom-btn .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bs-danger);
  /* background-color: #000; */
  transition: background-color 300ms ease-in-out;
}

.custom-btn:hover .dot {
  background-color: #000;
}

/* Social Links Hover */
.hover-red:hover {
  color: var(--bs-danger) !important;
  transition: color 300ms ease-in-out;
}

/* Offcanvas for Mobile Drawer */
.offcanvas {
  width: 80%; /* Adjust as needed */
  max-width: 320px; /* Matches the max-w-xs of the original */
}

/* Utility to match original's spacing, if needed */
.space-x-6 > * + * {
  margin-left: 1.5rem !important;
}

/* Ensure z-index is sufficient for the sticky header */
.z-3 {
  z-index: 1030; /* Higher than Bootstrap's default offcanvas z-index */
}

@media (min-width: 768px) {
  .space-x-6 {
    display: flex;
    align-items: center;
  }
}

/* Custom CSS for the Hero Section */

/* Colors */

/* Animations from the original component */
@keyframes circleWave {
  from {
    transform: scale(0.9);
    opacity: 1;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.shado-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: var(--primary-color);
  filter: drop-shadow(0 0 5px var(--primary-color));
  animation: circleWave 3s ease-in-out infinite;
}

/* Hero Section specific styles */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  /* height: 800px; */
}
/* Tablet View */
@media (max-width: 1024px) {
  .hero-section .heading-wrapper {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-section .text-wrapper {
    font-size: 1rem;
  }

  .hero-section .hero-image {
    max-width: 90%;
    margin: 0 auto;
  }
  .doublearrow {
    /* font-size: 1rem; */
    margin-left: -1.5rem;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .innovation span {
    font-size: 1rem;
    /* margin-left: -1.5rem; */
  }
  .innovation {
    margin-left: -1.5rem;
  }

  .hero-section {
    text-align: center;
  }

  .hero-section .heading-wrapper {
    font-size: 1.8rem;
    margin-left: -1.5rem;
    text-align: left;
  }

  .hero-section .text-wrapper {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    margin-left: -2rem;
  }

  .hero-section .social-icon {
    display: none;
  }

  .hero-section .play-button {
    margin: 0 auto 1rem;
  }

  .hero-section .hero-image {
    max-width: 100%;
  }
}

/* Social Icons and Scroll Indicator */
.social-icon {
  margin-top: 2rem;
  font-size: 1.5rem; /* Larger icon size */
  /* color: var(--text-color); */
  color: #fff;
  transition: color 0.3s ease-in-out;
  margin-bottom: 3rem; /* Simulates the original's space-y-12 */
}

/* .social-icon:hover {
  color: var(--primary-color);
} */

.scroll-dot {
  width: 1rem;
  height: 1rem;
  /* background-color: var(--primary-color); */
  background-color: #ffffff;
  border-radius: 50%;
}

.scroll-line {
  width: 1px;
  height: 3.75rem; /* ~60px, similar to original */
  /* background-color: var(--black); */
  background: #fff;
}

.scroll-text {
  /* color: var(--black); */
  color: #fff;
  transform: rotate(-90deg);
  display: inline-block;
  margin-top: 2rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 4px;
}

/* Banner Content */
.line {
  width: 2.5rem;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 9999px;
}

.dot-wave {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

h1 .animated-text {
  display: inline-block;
}

.hover-danger {
  color: var(--primary-color);
  /* transition: color 0.3s ease-in-out; */
}

.cta-line {
  width: 2.5rem;
  height: 1px;
  background-color: var(--text-color);
}

.cta-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.play-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon {
  font-size: 1.25rem;
  z-index: 10;
}

/* Hero Image Animation */
.hero-image {
  width: 800px;
  top: 0px;
  right: 0;
  position: absolute;
  z-index: -1000;
  transform-origin: right center; /* Start zoom from right side */
  transition: transform 4s ease-in-out;
  animation: zoomRightLeft 6s ease-in-out infinite;
}

/* Keyframes for zoom from right to left */
@keyframes zoomRightLeft {
  0%,
  100% {
    transform: scaleX(1) scaleY(1);
  }
  50% {
    transform: scaleX(1.1) scaleY(1.1);
  }
}

/* Mobile: hide vertical overflow */
@media (max-width: 992px) {
  .hero-image {
    width: 300;
    top: -100px;
    right: 0;
    position: relative;
  }
}

/* AnimatedHeading styles converted to vanilla CSS */
.letter-anim {
  display: inline-block;
  opacity: 0;
  animation: letter-in 0.5s forwards;
  position: relative;
}

@keyframes letter-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animated-text {
  display: inline-block;
  opacity: 0;
  animation: letter-in 0.5s forwards;
}

@keyframes letter-in {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Spacing and responsive fixes */
.space-y-12 {
  margin-top: 3rem !important; /* Tailwind's space-y-12 is 3rem */
}

@media (max-width: 468px) {
  .flex-column-custom {
    flex-direction: column !important;
  }
  .align-items-start-custom {
    align-items: flex-start !important;
  }
}

/* Custom CSS for the Features Section */

/* Define the keyframe animation for the pulse effect */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Feature Card and Icon Styling */
.feature-card {
  transition: transform 0.3s ease-in-out;
  /* padding: 1rem; */
  gap: 20px;
  cursor: pointer;
}

.feature-card .icon-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.feature-card .icon {
  font-size: 5rem; /* Adjust icon size to match original */
  transition: transform 0.3s ease-in-out;
  color: var(--bs-danger);
}

/* Apply the animation on hover */
.feature-card:hover .icon-container {
  animation: pulse 1s ease-in-out infinite;
}
.footer-list li {
  line-height: 40px;
}

.newsletter-form input {
  width: 50%;
}

.group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 2.5rem;
  width: 100%;
  position: relative;
}
.rotate {
  position: absolute;
  z-index: -1;
  width: 200px;
  height: auto;
  animation: spin 5s linear infinite; /* speed & infinite loop */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.group input {
  height: 0;
  width: 100%;
  max-width: 15rem;
  padding: 0 0.125rem;
  outline: none;
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  color: black;
  transition: all 0.3s ease-in-out;
}

.group:hover input,
.group:focus-within input,
.group:active input {
  height: 2rem;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.bg-circle {
  position: absolute;
  left: 0.5rem; /* adjust for button position */
  z-index: 0;
  width: 1rem;
  height: 1rem;
  background: var(--bs-danger);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.group:hover .bg-circle,
.group:focus-within .bg-circle,
.group:active .bg-circle {
  top: 0;
  width: 10rem;
  height: 2.5rem;
}

.btn-wrapper button {
  position: relative;
  z-index: 10;
  height: 100%;
  padding-left: 1.7rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: black;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.group:hover button,
.group:focus-within button {
  color: white;
}

@media (max-width: 408px) {
  .btn-wrapper {
    margin-top: 10px;
  }
}

/* /````````````````````````````````` Our project ``````````````````````````````````````````````````````/ */
.caption-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.line {
  border: 1px solid var(--bs-secondary);
  display: inline-block;
  width: 40px;
  height: 1px;
}

.lines {
  border: 1px solid #000;
  display: inline-block;
  width: 40px;
  height: 1px;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--bs-danger);
  animation: pulse 2s ease-in-out infinite;
}
.dots {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  /* background: var(--bs-danger); */
  background: #000;
  animation: pulse 2s ease-in-out infinite;
}

.caption-container .caption {
  font-size: clamp(2rem, 1.25rem, 1.5rem);
  /* font-size: 1rem; */
  /* color: var(--bs-secondary); */
  color: #ffffff;
}
@media (max-width: 576px) {
  .caption-container .caption {
    font-size: 1.3rem;
    /* font-size: 5rem; */
  }
  .services .heading-container h1 {
    font-size: 1rem;
  }
}
.heading-container {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.our-product .projectImage {
  position: relative;
  overflow: hidden;
}

.our-product .projectImage .product-overlay {
  position: absolute;
  color: white;
  top: 100%;
  padding: 1rem;
}
/* Main Section Layout */
.services-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 8%;
  margin-bottom: 2rem;
  padding-top: 0;
  flex-wrap: nowrap; /* Prevent wrapping on large screens */
  color: #fff; /* Inherited from inline style, applied here */
}

/* Left Content (Services-One) */
.services-one .heading-main {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff; /* Inherited from inline style, applied here */
}

.bold-text {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
}

.light-text {
  font-size: 3rem;
  font-weight: 300;
  color: #ffffff;
}

/* Right Content (Services-Two) */
.services-two p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 300; /* Inherited from inline style, applied here */
}

.services-two .highlight {
  font-weight: 600;
  color: #ffffff;
}

/* Link Button (All Services) */
.services-two a {
  width: 15rem;
  height: 4rem;
  text-align: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #000000;
}

.services-two a:hover {
  background-color: gray;
  color: #fff;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.btn-link i {
  transition: transform 0.3s ease;
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* Project Grid Styling (our-product) */
.our-product .projectImage {
  position: relative;
  overflow: hidden;
  height: 60vh; /* Consistent height from inline styles, applied here */
  /* Remove background-image properties, as they are inline in HTML */
}

/* Overlay for Project Images */
.our-product .projectImage .product-overlay {
  position: absolute;
  color: white;
  top: 100%;
  padding: 1rem;
  background: #0000009f; /* Background color for overlay */
  width: 100%;
  height: 70%;
  z-index: 1;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.our-product .projectImage:hover > .product-overlay {
  top: 90%;
  left: 0;
  transform: translateY(-70%);
}

.product-overlay p {
  color: #ffffffff; /* Consistent color/opacity from inline styles */
  font-size: clamp(0.5rem, 1rem, 1.7rem);
  font-weight: 400;
  overflow: hidden;
  /* Multi-line ellipsis setup */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

/* Read More Link (Inside Image Overlay) */
.read-more {
  display: flex;
  align-items: center;
}

.read-more .line {
  border: 2px solid #fff; /* Assuming a primary color variable from Bootstrap */
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 8px; /* Added margin for spacing */
}

.our-product .overlay .read-more .line {
  border-color: white;
}

.read-more .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(
    --bs-danger
  ); /* Assuming a danger color variable from Bootstrap */
  animation: pulse 2s ease-in-out infinite; /* Keep pulse for effect */
  margin-right: 8px; /* Added margin for spacing */
}

.our-product .read-more a {
  color: white;
  outline: none;
  text-decoration: none;
}

/* Card Styling (All Projects) */
.our-product .card {
  background-color: white !important;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  z-index: 0;
  border: none;
  background-color: transparent; /* Assuming no background for the card itself as it's full height of projectImage */
}

.our-product .card h1 {
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  color: white; /* Added color for h1 based on context */
}

.our-product .card h1 {
  color: #000;
  font-size: clamp(2rem, 2.5rem, 3rem);
}

.our-product .card .circle {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: -15px;
  left: -12px;
  border-radius: 100%;
  margin-bottom: 30px;
  background-color: #000;
  z-index: -1;
}

.our-product .card p {
  color: #000000; /* Inline style was black, using it here. This will only work if the card has a white background or the text is white against the black body background. */
  font-size: clamp(0.5rem, 1rem, 2rem);
  font-weight: 600;
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; */
}

/* .product-overlay p{
  font-size: clamp(1.5rem,1.5rem,2rem ); 
} */

/* Card Read More Link */
.card .read-more a {
  color: var(
    --bs-primary
  ); /* Assuming a primary color variable from Bootstrap */
  text-decoration: none;
  font-weight: bold;
}

.lines {
  /* Used for dot in 'All Projects' card */
  border: 1px solid #000;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-right: 8px; /* Added margin for spacing */
}

.dots {
  /* Used for dot in 'All Projects' card */
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: #000;
  animation: pulse 2s ease-in-out infinite;
  margin-right: 8px; /* Added margin for spacing */
}

/* Essential Responsive Adjustments (Simplified) */
@media (max-width: 992px) {
  .services-part {
    display: none;
    /* flex-direction: column;
    text-align: center;
    padding: 60px 20px; */
  }
  .services .line {
    border: 1px solid #000;
    display: inline-block;
    width: 40px;
    height: 1px;
    margin-right: 8px; /* Added margin for spacing */
  }

  .services-one .heading-main {
    font-size: 1.8rem;
  }

  .bold-text {
    font-size: 2rem;
  }

  .light-text {
    font-size: 1.8rem;
  }

  .services-two p {
    margin: 0 auto 20px;
  }
}

/* ````````````````````````````````````````````our project end here `````````````````````````````````````````````` */

/* ``````````````````````````````````````````````````counter section state here ``````````````````````````````````````` */
/* Hero section */
.heroes {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: url("../images/years-banner.jpg") center/cover no-repeat;
}

/* Dark overlay */
.heroes .overlayes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 20px;
}

.hero-content .subtitle {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
}

.hero-content h1 span {
  font-weight: 300;
}

/* Stats */
.stats {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 120px; /* ✅ large spacing for desktop */
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; /* ✅ center container */
}

.stat h2 {
  font-size: 4rem;
  margin-bottom: 5px;
  background: none;
}

.stat p {
  font-size: 1rem;
  letter-spacing: 2px;
  text-align: center; /* ✅ looks cleaner on mobile */
}
.counter {
  background: none !important; /* removes any image/color */
  background-color: transparent !important; /* fully transparent */
}
/* ✅ Tablet */
@media (max-width: 992px) {
  .stats {
    gap: 60px; /* reduce spacing */
  }

  .stat h2 {
    font-size: 3rem;
  }

  .stat p {
    font-size: 0.95rem;
  }
}

/* ✅ Mobile */
@media (max-width: 576px) {
  .heroes .subtitle {
    font-size: 0.7rem;
  }
  .heroes .hero-content h1 {
    font-size: 2.5rem;
  }

  .stats {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 30px;
  }

  .stat h2 {
    font-size: 2.2rem;
  }

  .stat p {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}

/* ------------------------------------------------------- */
.counter {
  background-image: url("../images/years-banner.jpg");
  height: 500px;
}

.counter-Heading-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.counter-Heading-container h1 {
  width: 70%;
}

.play {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
}

.counter-Heading-container .play-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.counter-Heading-container .play-icon {
  font-size: 1rem;
  border: 1px solid black;
  padding: 0.3rem 0.4rem;
  border-radius: 100%;
  z-index: 10;
  position: absolute;
  top: 2px;
  left: 3.5px;
}

.counter-Heading-container .image img {
  border-radius: 40px;
  overflow: hidden;
}

.counter .count h1 {
  font-size: 2rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: var(--bs-secondary);
}

.counter .count h1 .hollow-text {
  font-size: 6rem;
  font-weight: 900;
  color: white; /* removes fill */
  -webkit-text-stroke: 2px var(--bs-secondary); /* stroke width & color */
}

.counter .count h1:hover {
  color: var(--bs-danger); /* removes fill */
  -webkit-text-stroke: 0.5px var(--bs-secondary);
  transition: color 0.5s ease-in-out;
}

.counter .count h1:hover > .hollow-text {
  color: var(--bs-danger); /* removes fill */
  -webkit-text-stroke: 1px var(--bs-secondary);
  transition: color 0.5s ease-in-out;
}

.counter .count h1:active {
  color: var(--bs-danger); /* removes fill */
  -webkit-text-stroke: 0.5px var(--bs-secondary);

  transition: color 0.5s ease-in-out;
}

.counter .count h1:active > .hollow-text {
  color: var(--bs-danger); /* removes fill */
  -webkit-text-stroke: 2px var(--bs-secondary);
  transition: color 0.5s ease-in-out;
}

.counter .count h1:focus {
  color: var(--bs-danger); /* removes fill */
  -webkit-text-stroke: 0.5px var(--bs-secondary);

  transition: color 0.5s ease-in-out;
}

.counter .count h1:focus > .hollow-text {
  color: var(--bs-danger); /* removes fill */
  -webkit-text-stroke: 2px var(--bs-secondary);
  transition: color 0.5s ease-in-out;
}

@media (max-width: 576px) {
  .counter .count h1 {
    font-size: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: var(--bs-secondary);
  }

  .counter .count h1 .hollow-text {
    font-size: 4.5rem;
    font-weight: 900;
    color: white; /* removes fill */
    -webkit-text-stroke: 2px var(--bs-secondary); /* stroke width & color */
  }
}

@media (max-width: 404px) {
  .counter .count h1 {
    font-size: 1.2rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: var(--bs-secondary);
  }

  .counter .count h1 .hollow-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: white; /* removes fill */
    -webkit-text-stroke: 2px var(--bs-secondary); /* stroke width & color */
  }
}

@media (max-width: 404px) {
  .counter .count h1 {
    font-size: 1.2rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: var(--bs-secondary);
  }

  .counter .count h1 .hollow-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: white; /* removes fill */
    -webkit-text-stroke: 2px var(--bs-secondary); /* stroke width & color */
  }
}
/* ``````````````````````````````````````````````````````counter end here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````services section start here ```````````````````````````````````````````` */

.services-section {
  background: #000000;
}

.services-card {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-right: 2px solid var(--bs-primary);
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.services-card:last-child {
  border-right: 0px;
}

.services-card h1 {
  /* color: var(--bs-danger); */
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  padding: 0 2rem;
}

.services-card p {
  font-size: 1rem;
  font-weight: 400;
  padding: 10px;
  align-items: center;
  text-align: center;
}

.services-card .image-overlay {
  height: 40vh;
  position: relative;
}
.services-card .image-overlay .read-more {
  position: absolute;
  bottom: 10vh;
  z-index: 0;
  padding: 0 2rem;
  margin-left: 3rem;
}
.services-card .image-overlay .image {
  height: 0;
  transition: height 1s ease-in-out;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-card:hover .image-overlay .image {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  transform: y(100%);
  transition: height 0.5s ease-in-out;
}
.services-card .know-more {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  opacity: 1; /* visible by default */
  transition: opacity 0.5s ease;
}

.services-card:hover .services-card .read-more {
  display: none;
  background: white;
}

/* ``````````````````````````````````````````````````````services section end here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````client section start here ```````````````````````````````````````````` */
/* //////////////////////////image Slider///////////////////////////////////// */
.slider {
  /* height: 300px; */
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
}

.slide-track {
  display: flex;
  width: calc(200px * 13); /* 4 images x 2 sets */
  animation: scroll 20s linear infinite;
}

.slide {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  padding: 10px;
}

.slide img {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  object-fit: cover;
}
.slide img {
  align-items: center;
  max-height: 80px;
  object-fit: contain;
}

.slide-track .slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Slide Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.swiper-wrapper {
  align-items: center; /* vertically center logos */
}
.swiper-slide img {
  max-height: 400px; /* adjust size */
  object-fit: contain;
  filter: grayscale(0.3); /* optional gray effect */
  transition: filter 0.3s ease;
}
.swiper-slide img:hover {
  filter: grayscale(0); /* color on hover */
}
@media (max-width: 768px) {
  .swiper-slide img {
    margin: 2%;
  }
}

/* ``````````````````````````````````````````````````````client section end here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````faq section start here ```````````````````````````````````````````` */

/* .faq .answer-container {
  width: 100%;
  padding: 2rem;
  border: 1px solid var(--bs-danger);
  background-color: #fff;
  position: relative;
  top: 7rem;
  left: 6rem;
  z-index: 1;
  margin-left: 40%;
  margin-top: -8%;
} */

.faq .answer-container {
  width: 100%;
  max-width: 1200px; /* ✅ keeps it readable */
  padding: 1rem;
  backdrop-filter: blur(10px);
  background: rgba(43, 43, 43, 0.6);
  position: relative;
  margin: 5rem auto; /* ✅ centers horizontally */
  box-shadow: 0 0 10px rgba(0, 0, 0);
  z-index: 1;
  top: 0;
  left: 0;
  margin-left: 55%;
  margin-top: 15%;
}

.faq .caption {
  display: flex;
  align-items: center;
}

.faq .caption span {
  margin-right: 10px;
}

.faq .heading-wrapper {
  margin-bottom: 3rem;
}

.faq .qna {
  /* background: ; */
  border-bottom: 1px solid var(--bs-primary);
  width: 100%;
}

.faq .question {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
}
.faq .question span {
  padding-right: 5%;
}

.faq .question h3 {
  /* color: var(--bs-danger); */
  font-weight: 700;
  font-size: 1rem;
}

.faq .question span img {
  width: 25px;
  height: 25px;
}

.faq .answer {
  justify-content: end;
  width: 90%;
  display: none;
}
.faq .answer p {
  width: 90%;
}

.faq .active {
  display: flex;
  transition: display 1s ease-in-out;
}

.faq-banner {
  height: 130vh;
  width: 100%;
  right: 0;
  overflow: hidden;
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
  .faq .answer-container {
    padding: 1.2rem;
    margin: 0rem;
    max-width: 100%;
    margin-top: 3rem;
  }
  .faq-banner {
    padding: 20px;
    height: 100vh;
  }
  .answer-container .heading-wrapper {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .faq .answer-container {
    padding: 1rem;
    font-size: 0.8rem;
    width: 100%;
    margin-top: 6rem;
  }
}

/* @media (max-width: 991.99px) {
  .faq .answer-container {
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--bs-danger);
    background-color: #fff;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .faq-banner {
    padding: 20px 1rem;
    height: 100vh;
  }

  .faq-banner img {
    width: 100%;
  }
} */

/* ``````````````````````````````````````````````````````faq section end here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````blog section start here ```````````````````````````````````````````` */

.blog-card:hover {
  border: 3px solid var(--bs-danger);
  /* border-color: #ffffff;
  box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #ffffff,
    0 0 60px #ffffff;
  transform: scale(1.05); */
}

.blog-content {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.blog-content p,
.blog-content h5 {
  margin-bottom: 2rem;
}
.blog-content div {
  justify-self: end;
}

.blog-card {
  /* height: 300px; */
  transition: transform 0.3s ease;
}
.blog-card:hover {
  /* transform: translateY(-5px); */
}
.blog-image {
  width: 50%;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-wrapper img {
  height: 750px;
}

@media (min-width: 768px) {
  .blog-card {
    width: 90%;
    height: 100%;
    padding: 2rem;
  }
}
/* ``````````````````````````````````````````````````````blog section end here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````feedback section start here ```````````````````````````````````````````` */

.section-subtitle {
  font-size: 14px;
  color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.section-subtitle span {
  display: block;
  width: 30px;
  height: 1px;
  background: #aaa;
}
.section-subtitle::before,
.section-subtitle::after {
  content: "•";
  color: var(--bs-danger);
}
.feedback-card {
  min-height: 250px;
  border-radius: 4px;
}
.custom-next,
.custom-prev {
  background: rgba(0, 0, 0, 0.6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.custom-next::after,
.custom-prev::after {
  font-size: 16px;
  color: white;
}

/* Feedback card border and layout */
.feedback-card {
  border: 2px solid rgba(255, 255, 255, 0.15); /* soft white border */
  border-radius: 12px; /* rounded edges */
  padding: 1.5rem;
  background-color: #111; /* darker than bg-dark for contrast */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect for larger screens */
.feedback-card:hover {
  transform: translateY(-5px);
  border-color: #fff; /* Bootstrap danger color */
}

/* Swiper slide alignment fix for mobile */
.swiper-slide {
  display: flex;
  justify-content: center;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .feedback-card {
    padding: 1rem;
    margin: 0.5rem; /* spacing between cards */
  }

  .swiper-slide {
    width: 100% !important; /* full width slide */
  }

  body {
    padding: 0.5rem; /* reduce global padding */
  }
}
/* ``````````````````````````````````````````````````````feedback section end here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````post carousel section start here ```````````````````````````````````````````` */

.post-card {
  position: relative;
  overflow: hidden;
  height: 50vh;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #000; */
}
.post-card .post-image {
  transition: transform 0.4s ease;
  width: 100%;
  height: 50vh;
}
.post-card:hover img {
  transform: scale(1.05);
}
.post-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff74;
  opacity: 0;
  top: 1.5%;
  left: 1.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  width: 97%;
  height: 97%;
  transition: opacity 0.3s ease;
}
.post-card:hover .post-overlay,
.post-card:focus .post-overlay,
.post-card:active .post-overlay {
  opacity: 1;
}
.post .post-overlay .icon {
  border: 2px solid var(--bs-primary);
  border-radius: 100%;
  padding: 1rem;
  /* margin-bottom: 10px; */
}

.post .post-overlay .icon img {
  width: 2rem;
}

.post .post-overlay p {
  color: var(--bs-primary);
  font-weight: 900;
}

/* ``````````````````````````````````````````````````````post carousel section enc here ```````````````````````````````````````````` */

/* ``````````````````````````````````````````````````````````````About US section start here``````````````````````````````````````````````` */

.cta-btn {
  border: none;
}

.management-section .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--bs-danger);
  border-radius: 50%;
  margin: 0 6px;
}

.management-card {
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 5px;
}

.management-card img {
  width: 100%;
  border-radius: 4px;
}

.management-card.active,
.management-card:hover {
  border: 2px solid var(--bs-danger);
  cursor: pointer;
}

.management-card .info h6 {
  font-weight: 600;
}

.management-card .info small {
  color: var(--bs-danger);
  font-weight: 500;
}

/* ``````````````````````````````````````````````` */

/* ===== About Us Page Styling ===== */

/* Global Section Spacing */
.about-section {
  max-width: 1200px;
  margin: 60px auto;
  /* margin: 15vh; */
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-col .roght-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-section p {
  font-size: 1.2rem;
  color: #ffffff;
}

.about-section strong {
  font-weight: bold;
}
.roght-col {
  margin-top: 7vh;
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-section p {
    width: 100%;
  }
}

.about-section .container {
  padding: 2rem;
}

/* .about-section, */
.mission-vision,
.why-choose-us {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Headings */
.about-section h2,
.mission-vision h2,
.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}
.why-choose-us .container h2 {
  font-size: 1.8rem;
}

.mission-vision h4,
.why-choose-us h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

/* Image Styling */
.about-section .image-container img {
  transition: transform 0.4s ease;
}

/* Mission & Vision Cards */
.mission-vision .border {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mission-vision .border:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--bs-danger) !important;
}

/* Why Choose Us Cards */
.why-choose-us .border {
  background: #ffffff;
  /* background: var(--bs-danger); */
  color: #000000;
  border: 1px solid #eee;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.why-choose-us .border:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--bs-danger) !important;
}

/* Center Text in Cards */
.why-choose-us .text-center h5 {
  margin-bottom: 12px;
  color: #fff;
}

/* Background Colors */
.mission-vision {
  background: #f9f9f9;
}

/* Utility */
.text-muted {
  color: #ffffff !important;
}

/*----------------------- Index Page In About PAge --------------- */

/* ---------------------About Banner------------------- */

.about-banner {
  position: relative;
  height: 100vh;
  background: url("../images/About-bann.jpg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Overlay for dark effect */
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.hero-contents {
  position: relative;
  z-index: 2;
}

.hero-contents h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.hero-contents h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero-contents h1 span {
  font-weight: 400; /* Normal weight for 'Studio' */
}

.hero-contents p {
  margin-top: 30px;
  font-size: 18px;
  color: #fff; /* Neon green */
}

@media (max-width: 768px) {
  .hero-contents h1 {
    font-size: 50px;
  }

  .hero-contents p {
    font-size: 16px;
  }
  .about-banner {
    height: 70vh;
    margin-top: 0;
  }
}

/* ✅ About image down */
.about-image-down {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
  background: #fff;
}

.about-image-down img {
  max-width: 80%;
  /* border-radius: 10px; */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  background: #fff;
  margin-top: -10%; /* 🔥 overlaps 20% on banner */
}

/* Hero layout */
.hero {
  /* margin-left: 10%; */
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

/* Left background image */
.hero-left {
  flex: 1;
  background: url("../images/ABOUTPIC.jpg") no-repeat center center/cover;
}

/* Right content */
.hero-right {
  flex: 1;
  background: #fff;
  /* padding: 4rem 3rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-right h1 {
  margin-left: -12%;
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-right h1 strong {
  font-weight: 700;
}

.hero-right p {
  max-width: 50%;
  margin-left: 20%;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.hero-right p strong {
  font-weight: 600;
}

/* Button */
.btn {
  margin-left: 20%;
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.5rem;
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
  max-width: 250px; /* ✅ Prevents button from stretching too much */
  width: auto; /* ✅ Button grows with text */
}
.btn:hover {
  background: #8e8f8d;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }
  .hero-right {
    left: 0; /* remove overlap on small screens */
    padding: 2rem;
    text-align: center;
    /* margin-top: 1%; */
  }
  .hero-right p {
    max-width: 100%; /* take more width */
    margin-left: 1%; /* reduce left gap */
    font-size: 1rem; /* slightly smaller text */
  }
  .hero-right h1 {
    font-size: 2rem;
    margin-left: 1%;
    /* height: 30vh; */
  }

  .btn {
    margin-left: 0; /* center properly */
    display: block; /* ensures centering */
    margin-right: auto;
    margin-left: auto;
    max-width: 300px; /* but capped */
  }
}

/* ///////////////////////////////About-Sections Part/////////////////// */

.containers-part {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 10%;
  flex-wrap: wrap;
}

/* Left Section */
.left-part {
  flex: 1;
  min-width: 300px;
}

.left-part h1 {
  font-size: 3rem;
  font-weight: 300;
  margin: 0 0 15px;
}

.left-part h1 strong {
  font-weight: 700;
}

.left-part p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Accordion */
.accordion {
  border-top: 1px solid #000;
}

.accordions-item {
  border-bottom: 1px solid #000;
  padding: 15px 0;
  cursor: pointer;
  font-size: 1.5rem;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* font-weight: 500; */
  text-transform: uppercase;
}

.accordion-header span {
  /* font-size: 1.5rem; */
  font-size: 19px;
  font-weight: bold;
  /* font-weight: 500;   */
  transition: 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 10px;
  transition: max-height 0.4s ease;
}

.accordions-item.active .accordion-content {
  max-height: 300px; /* enough height for content */
}

/* .accordion-item.active .accordion-header span {
  transform: rotate(360deg);
  content: "-";
} */

/* Right Section */
.right-part {
  margin-top: 7%;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.right-part img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
}

/* Second image overlaps the first */
.right-part .image-part2 {
  margin-top: -20%;
  margin-left: 30%;
  transition: all 0.3s ease-in-out;
}

/* Tablet Devices (768px–1024px) */
/* @media (max-width: 1024px) {
  .right-part {
    margin-top: 10%;
    gap: 10px;
  }
  .right-part img {
    max-width: 320px;
  }
  .right-part .image-part2 {
    margin-top: -15%;
    margin-left: 25%;
  }
} */

/* Mobile Devices (below 768px) */
@media (max-width: 768px) {
  .right-part {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12%;
    gap: 15px;
  }
  .right-part img {
    max-width: 85%;
  }
  .right-part .image-part2 {
    margin-top: -20%;
    margin-left: 20%;
    transition: all 0.3s ease-in-out;
  }
}

/* .right-part img:nth-child(2) {
  position: absolute;
  top: 80px;
  right: 0;
  width: 70%;
  z-index: -1;
} */

@media (max-width: 900px) {
  .containers-part {
    flex-direction: column;
  }
  .right-part {
    flex-direction: row;
    justify-content: center;
  }
  /* .right-part img:nth-child(2) {
    position: relative;
    top: 0;
    right: 0;
    width: 50%;
  } */
}
/* @media (max-width: 768px) {
  .right-part .image-part2 {
    margin-top: 0%;
    margin-left: 0%;
  }
} */

/* -------------------------- Skills Section ---------------------------------- */
.skills-section {
  position: relative;
  min-height: 150vh;
  background: url("../images/ABOUTPIC.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px;
  color: #fff;
}

.skills-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
}

.skills-container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}

.skills-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

.skill {
  margin-bottom: 20px;
}

.skill p {
  margin: 0 0 5px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
}

.progress-bar {
  background: #333;
  border-radius: 4px;
  overflow: hidden;
  height: 20px;
  position: relative;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0; /* start from 0 */
  background: #babdb6;
  text-align: right;
  font-size: 12px;
  font-weight: 800;
  /* color: #000; */
  color: #fff;
  line-height: 20px;
  padding-right: 5px;
}

.progress-bar span::after {
  content: attr(data-progress);
  position: absolute;
  right: -40px;
  top: -20px;
  font-size: 14px;
  color: #fff;
}

/*----------------------- About Section Member------------------ */
.meet-team {
  margin-bottom: 3rem;
}
.meet-team h1 {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
}

.meet-team h1 strong {
  font-weight: 700;
}

.team-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  position: relative;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.team-member .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member:hover .overlay {
  opacity: 1;
}

.team-member .overlay a {
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-member .overlay a:hover {
  background: #fff;
  color: #111;
}

.member-info {
  padding: 15px;
  z-index: 10000000;
}

.member-info h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #111;
}

.member-info p {
  font-size: 0.95rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
  }
  .team-member {
    width: 80%;
  }
}

/* ------------------------Work-together-------------------- */
.work-together {
  background-color: #fff;
}
.worktogether {
  margin-top: 15vh;
  width: 100%;
  height: 40vh;
  align-items: center;
  /* justify-content: space-between; */
  text-align: center;
}
.worktogether h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
}
.worktogether h1 {
  font-size: 4rem;
  color: #000000;
}
.work-together button {
  /* border: 3px solid black; */
  border-radius: 10px;
  background-color: #000000;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 2rem;
  /* height: 8vh;
  width: 30vh; */
}
.work-together button:hover {
  background-color: rgb(176, 171, 171);
  color: rgb(0, 0, 0);
  /* border: 3px solid white; */
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .worktogether h1 {
    font-size: 2.5rem;
    color: #000000;
    padding: 2rem;
  }
  .worktogether h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
  }
  .work-together button {
    /* border: 3px solid black; */
    border-radius: 10px;
    background-color: #000000;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2rem;
  }
}

/* ``````````````````````````````````````````````````````````````About US section end here``````````````````````````````````````````````` */

/* ```````````````````````````````````````````````````````````````form modal section starts here ````````````````````````````````````````````` */

.form-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.259);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  overflow-y: scroll;
}

.form-modal.active {
  display: flex;
  opacity: 1;
}

.container-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #232946;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  overflow: hidden;
}

.registration-split-container {
  display: flex;
  width: 100%;
  min-height: 500px;
}

/* Close button style */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  font-weight: 300;
  transition: color 0.3s ease;
  z-index: 10;
}

.close-btn:hover {
  color: #e45858;
}

/* Left Section - Contact Info- */
.contact-info-section {
  flex: 1;
  background: linear-gradient(135deg, #a4bfea, #00416a);
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-info-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.2rem;
  color: #fff;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

.contact-item a,
.contact-item p {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000;
}

.follow {
  display: flex;
}
.social-links {
  margin-left: 10px;
}

.social-links a {
  color: #fff;
  font-size: 1rem;
  margin-right: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #000;
  transform: scale(1.1);
}

/* Right Section - Form */
.form-section {
  flex: 1.2;
  /* background-color: #ffffff; */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--bs-danger);
  margin-bottom: 30px;
  text-align: center;
}

.modal-form label {
  display: block;
  color: var(--bs-danger);
  /* color:rgba(0, 0, 0, 0.5); */
  font-weight: 400;
  margin-top: 15px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.modal-form i {
  color: var(--bs-danger);
  /* color:rgba(0, 0, 0, 0.5); */
  margin-right: 8px;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  background: transparent;
  outline: none;
  border: none;
  width: 90%;
}

.modal-form .input {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding: 12px 15px;
  margin-top: 8px;
  /*border: 1px solid rgb(60, 60, 60);*/
  border: 1px solid var(--bs-danger);
  border-radius: 8px;
  background: rgba(60, 60, 60, 0.067);
  color: #000;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.modal-form .txt {
  align-items: start;
  color: var(--bs-danger);
}
.modal-form .txt i {
  padding-top: 5px;
}

.modal-form textarea,
.modal-form select {
  /*color:rgba(0, 0, 0, 0.5);*/
  color: var(--bs-danger);
}
.modal-form option {
  color: rgba(0, 0, 0, 0.416);
  background: #fff;
  width: 140%;
}
.modal-form .input:focus {
  outline: none;
  border-color: #e45858;
  box-shadow: 0 0 5px rgba(228, 88, 88, 0.5);
}

.modal-form input::placeholder {
  color: var(--bs-danger);
}
.modal-form textarea::placeholder {
  color: var(--bs-danger);
}

.modal-form input[type="range"]:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.modal-form .display {
  color: var(--bs-danger);
  /*color:rgba(0, 0, 0, 0.5);*/
  font-weight: 800;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: var(--bs-danger);
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: var(--bs-danger);
  transform: translateY(-2px);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .registration-split-container {
    flex-direction: column;
    min-height: auto;
  }
  .contact-info-section {
    display: none;
  }
  .form-section {
    padding: 30px;
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
  .social-links {
    text-align: center;
  }
}

/* ````````````````````````````````````range input ```````````````````````````````````````````````````` */

/* ```````````````````````````````````````````````````````````````form modal section end here ````````````````````````````````````````````` */

.banner {
  position: relative;
  height: clamp(20vh, 50vh, 80vh);
  top: 0;
  z-index: 0;
  background-position: centre;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(102, 126, 234, 0) 0%,
    #00000087 50%,
    #000000af 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-heading {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  color: white;
  font-weight: 900;
}

.banner-text {
  font-size: clamp(0.5rem, 2vw, 1.5rem);
  color: white;
  font-weight: 400;
}

@media (max-width: 768px) {
  .custom-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 376) {
}

.cursor {
  font-weight: 100;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.typing-effect {
  color: var(--bs-danger);
}

/* ---------------------------------Services Odd Section--------------------------------- */
.icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* padding: 20px 0; */
}
.icons-container img {
  height: 100px;
  width: auto;
  margin: 20px;
}

/* ----------------------Services-part--------------------- */

/* ````````````````````````globe.css```````````````````````````` */

.page {
  /* position: absolute; */
  /* top:-25%; */
  /* right:0%; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#globe-3d,
#globe-2d-overlay,
#globe-popup-overlay,
.globe-popup {
  display: block;
  position: absolute;
}

#globe-2d-overlay,
#globe-popup-overlay {
  pointer-events: none;
}

.globe-popup {
  top: 0;
  left: 0;
  background-color: white;
  opacity: 0;
  color: #111;
  font-family: sans-serif;
  padding: 5px 10px;
  font-size: 15px;
  border-radius: 3px;
  filter: drop-shadow(0px 0px 3px #555555);
}
/* ````````````````````````globe.css```````````````````````````` */

/* .video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 120vh;
  padding: 0;
  margin: 0;
}

.video-faq{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  
}

.faq {
  padding: 0 !important;
  margin: 0px !important;
  height: 120vh;
  background: blue;
}

.faq .container-fluid{
  margin: 0;
  padding: 0;
} */

.faq {
  position: relative;
  overflow: hidden; /* prevents scrollbars from video overflow */
  margin: 0;
  padding: 0;
  height: 100vh;
}
.faq-item.active .answer {
  display: block;
}

.faq .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind content */
}

.faq .video-faq {
  width: 100%;
  height: 120%;
  object-fit: cover; /* ✅ fills whole area */
}

.faq .row {
  position: relative;
  z-index: 1; /* ✅ ensures content appears above video */
  color: #fff; /* better visibility */
}

/* Alarm Bell  */
/* .bell-icon:hover {
  transform: rotate(-10deg) scale(1.1);
  color: #ffcc00;
} */

.bell-icon:active {
  transform: rotate(-15deg) scale(1.1);
  color: #ffcc00;
}

/* --------------Footer New part-------------------  */
/* ===== Base ===== */
.footer {
  height: 50vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  background: #000000;
  color: #bfbfbf;
  position: relative;
}

/* ===== Layout ===== */
.footer-container {
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-top: -2%;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo img {
  margin-top: -10px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-logo h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ===== Social icons ===== */
.footer-social a {
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 20px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #a4a89b;
  transform: translateY(-3px);
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  margin-right: 1rem;
}

.footer-links a:hover {
  color: #fff;
}
.footer-right {
  display: flex;
  justify-content: space-between;
  margin-top: 8%;
}
.footer-links {
  /* gap: 3rem; */
  margin-left: 1rem;
}
.footer-bottom {
  /* margin-top: 1%; */
  font-size: 0.7rem;
  color: #ffffff;
  margin-right: 1rem;
}
.footer-address {
  margin-top: 1%;
  font-size: 0.9rem;
  color: #ffffff;
}
.footer-address address {
  font-size: 0.9rem;
  color: #ffffff;
}

/*  Responsive Design */
@media (max-width: 992px) {
  .footer {
    margin-top: 8vh;
    text-align: center;
    padding: 2rem;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .footer-links {
    /* margin-top: 4rem; */

    margin-left: -0.1rem;
    font-size: 0.85rem;
    /* gap: 0.3rem; */
  }
  .footer-right {
    margin-top: 7rem;
  }

  .footer-links span {
    display: none; /* Hide the pipe divider on mobile */
  }

  .footer-bottom {
    /* margin-top: 6rem; */
    font-size: 0.7rem;
  }
}
