/* ==============================
   Root Variables
============================== */
:root {
  --primary-color: #0B0B45;   
  --mustard-color: 	#00aeef;  
  --text-color: #212529;
  --bg-color: #ffffff;
  --light-bg: #f8f9fa;
  --yellow-color: #1E478E;
  --blue-color: #00aeef;
  --blue-dark:#1e478e;
  --yellow-dark:#00aeef;
    --cyan-color: #00aeef;

}



/* ==============================
   Global Reset & Base
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cls-3{
  fill: #ffff!important;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #0e0e0e!important;
  color: #fff;

}
  body {
    overflow-x: hidden;
  }

  section {
    overflow: visible;
  }

a{
    text-decoration: none!important;
}
li{
    list-style: none;
}
.section-padding{
  padding: 60px 40px;
}
.yellow-btn {
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.yellow-btn .right-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Move arrow on hover of the whole button */
.yellow-btn:hover .right-arrow {
  transform: translateX(5px); /* move slightly to the right */
}

/* ==============================
   Typography
============================== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
}
.section-subtitle{
  text-transform: uppercase!important;
  letter-spacing: 3px;

}

/* ==============================
   Utility Classes (Spacing)
============================== */


/* ==============================
   Navbar Custom
============================== */
/* ---------------- Navbar Enhancements ---------------- */

/* Smooth underline effect */
.nav-link {
  position: relative;
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:focus-visible {
    outline: 0;
    box-shadow: none!important;
}
 img.logo{
   height: auto;
    width: 140px!important;
    object-fit: contain;
}


/* Fade-in class for dropdowns */
.fade-in {
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*  -------Sample  Mega dropdown images------- */
/* .dropdown-menu-large {
  min-width: 700px;
}
.dropdown-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.dropdown-image-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dropdown-image-card:hover img {
  transform: scale(1.1);
} */


.overlay-text {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}


/* Services dropdown  */
/* ---- Hover Open (Desktop Only) ---- */
/* @media (min-width: 992px) {
  .dropdown-menu {
  display: block !important;
  border: none;
  padding: 25px;
  transform: translateX(-50%)!important;
 
}
  .dropdown-hover:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
 .service-menu {
 min-width: 1200px!important;
 padding: 18px;
   left: 0% !important; 
 
}
} */

/* ---- Smooth Animation ---- */
/* .dropdown-menu {
  display: block !important;
  border: none;
  padding: 25px;
 
}
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    width: 120vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 0;
  }

  .service-menu {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
  }
} */


/* Column style */
.mega-title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.mega-link {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fff!important;
  font-size: 0.95rem;
padding: 16px;
}

.mega-link i {
  width: 22px;
  color: var(--mustard-color)!important;
  margin-right: 10px;
}

.mega-link:hover {
  color: #00aeef;
}
.mega-link {
  color: #ddd;
  transition: all 0.2s ease;
}
.mega-link:hover {
  background-color: rgba(255, 193, 7, 0.1);
  color: #fff;
}
/* ==============================
   Hero Section
============================== */
/* General */
.main-btn{
    padding: 15px;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
  transition: all .5s ease; 
}
.section-badge {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00aeef;
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.25);
  border-radius: 30px;
  margin-bottom: 15px;
}
.section-desc{
  color: #000!important;
}
/* Mustard Accent */
.text-mustard {
  color: #00aeef;
}
.rounded-img{
  border-radius: 100px!important;
}
/* ==========================
   Mustard Button (Common Class)
========================== */

.btn-mustard {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* optional spacing if icon is visible */
  background-color: var(--mustard-color);
  color: #000;
  font-weight: 500;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 0;
  
}

/* Door panels behind text */
.btn-mustard::before,
.btn-mustard::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #000;
  transition: transform 0.5s ease;
  z-index: -1;
}

/* Left door */
.btn-mustard::before {
  left: 0;
  transform: translateX(-100%);
}

/* Right door */
.btn-mustard::after {
  right: 0;
  transform: translateX(100%);
}

/* Text stays relative */
.btn-mustard span {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Icon absolute to avoid taking space */
.btn-mustard i {
  position: absolute;
  right: 5px; /* distance from right edge */
  z-index: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Hover effects */
.btn-mustard:hover {
  color: #fff;
}
.btn-mustard:hover i {
  opacity: 1;
  transform: translateX(0);
}
.btn-mustard:hover::before {
  transform: translateX(0);
}
.btn-mustard:hover::after {
  transform: translateX(0);
}

/* ======================
   Pulse Keyframes
====================== */
.pulse-button{
    /* Pulse Animation */
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* ==========================
   Multi-Ripple Button
========================== */
.ripple-button-multi {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-weight: 500;
  color: #fff;
  background-color: var(--mustard-color);
  border: none;
  border-radius:100px;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
}

/* Base ripple layers (::before and ::after) */
.ripple-button-multi::before,
.ripple-button-multi::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
background: rgba(0, 174, 239, 0.3);  border-radius: 100px;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  animation: rippleAnimation 2s infinite;
}

/* Offset second ripple */
.ripple-button-multi::after {
  animation-delay: 0.9s;
}

/* Additional ripple layers using spans */
.ripple-button-multi span.ripple-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border-radius: 100px;
/* very subtle */
background: rgba(0, 174, 239, 0.3);
 transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  animation: rippleAnimation 2s infinite;
}

/* Offset multiple spans for staggered waves */
.ripple-button-multi span.ripple-layer:nth-child(1) {
  animation-delay: 0.3s;
}
.ripple-button-multi span.ripple-layer:nth-child(2) {
  animation-delay: 0.9s;
}

/* Ripple keyframes */
@keyframes rippleAnimation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
  }
}
/* Common heading style */
.main-heading {
  font-size: 2.5rem; /* adjust as needed */
  font-weight: 500;
  position: relative;
  color: #000;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-transform: uppercase;
}

/* Mustard highlight */
.main-heading .highlight {
  color: var(--mustard-color);
}

/* Decorative underline / small border */
.main-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* distance from text */
  width: 50px; /* length of border */
  height: 3px; /* thickness */
  background-color: var(--mustard-color);
  border-radius: 2px;
}



/*================= Hero Section====================== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
    display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;

}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);

}
/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}


/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* Title */
.hero-title {
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(14px, 2vw, 20px);
  color: #eee;
}

/* Button spacing */
.hero-btn {
  margin-top: 20px;
}

/* ============ SCROLL BUTTON ============ */
/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  position: absolute;
  bottom: 40px;        /* distance from hero bottom */
  left: 50%;
  transform: translateX(-50%);

  width: 50px;
  height: 50px;
 background: rgba(0, 174, 239, 0.1); /* subtle cyan background */
   border: 1px solid rgba(0, 174, 239, 0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-down:hover {
  background-color: #00aeef;
  transform: translateX(-50%) translateY(5px);
}

/* Optional: animate arrow icon up and down */
.scroll-down i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}


.hero-content h1 span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  animation: wordFadeUp 0.6s ease forwards;
}

@keyframes wordFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content{
    width: 100%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}



/* =================choose us section ======================== */
/* ==============================
   WHY CHOOSE US SECTION
============================== */
.why-choose-us {
  background-color: #0b0b0b;
  color: #fff;
  position: relative;
  z-index: 1;
}

.choose-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.choose-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(225, 173, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.choose-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--mustard-color);
  transition: all 0.4s ease;
}

.choose-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.choose-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* Hover Effects */
.choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--mustard-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.choose-card:hover::before {
  transform: scaleX(1);
}

.choose-card:hover {
  transform: translateY(-10px);
  border-color: var(--mustard-color);
background: rgba(108, 202, 239, 0.2);}

.choose-card:hover .icon-wrapper {
  background-color: var(--mustard-color);
}

.choose-card:hover .icon-wrapper i {
  color: #000;
}

/* ==============================
   Services Section
============================== */
.services {
  background-color: #0e0e0e;
  color: #fff;
  text-align: center;
  padding: 100px 0;
 
}
#services {
  position: relative;
  background: url('../images/service-banner-2.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  color: #fff;
  z-index: 1;
  overflow: hidden;

}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 0;
}

#services .container {
  position: relative; /* Place content above overlay */
  z-index: 1;
}


  .services-section {
  background: #111;
  overflow: hidden;
}

/* LEFT SIDE */
.services-left {
  position: sticky;
  margin-top: -50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
 

}

.section-title {
  color: #00aeef;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 48px;
}
.section-white-title{
    color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 40px;
}
.services-subtitle {
  color: #aaa;
  margin-top: 15px;
  font-size: 16px;
  max-width: 300px;
}

/* RIGHT SIDE WALL */
.services-wall {
  position: relative;
  min-height: 1050px;
  
}
.wall-card {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
}

/* Common card styling (your existing style kept) */
.service-card .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: 20px;
  padding: 40px 20px;
  min-height: 450px;
  box-shadow: 0 8px 20px rgba(0, 174, 239, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 5px rgba(0, 174, 139, 0.2),
              0 0 2px #00aeef,
              0 0 4px #00aeef;
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;

}

.service-card .card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 174, 239, 0.8),
              0 0 20px #00aeef,
              0 0 40px #00aeef;
}

/* ICON & TEXT */
.service-card .icon {
  font-size: 50px;
  color: #00aeef;
  margin-bottom: 20px;
}

.service-card h4 {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
}

.service-card p {
  color: #666;
  font-size: 14px;
}

/* WALL POSITIONS */
.wall-card {
  position: absolute;
  width: 340px;
}

.card-1 { top: 0; left: 0; }
.card-2 {
    top: 70px;
    left: 480px;
}
.card-3 { top: 260px; left: 220px; }
.card-4 { top: 500px; left: 500px; }
.card-5 { top: 595px; left: 32px; }

/* RESPONSIVE FIX */
@media (max-width: 991px) {
  .services-wall {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .wall-card {
    position: static;
    width: 100%;
  }

  .services-left {
    position: static;
    text-align: center;
    margin-bottom: 40px;
  }
}
/* Glass Card */
/* Glass card base */
.service-cat-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 24px 0px 24px;
 
  min-height: 220px;
 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.service-cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.25);
}

/* Card content */
.card-content {
  display: flex;
  flex-direction: column;

  position: relative;
}

/* Title & description */
.card-title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
}

.card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  flex-grow: 1;
}

/* Hover button (hidden initially) */
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #00e0ff;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin-top: 12px;
}

.service-cat-card:hover .card-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover effect */
.card-btn:hover {
  color: #00e0ff;
  text-decoration: underline;
}

/* Arrow circle always visible at bottom-right */
.arrow-circle {
  position: absolute;
  bottom: -20px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,224,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00e0ff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-cat-card:hover .arrow-circle {
  background: #00e0ff;
  color: #111;
  transform: scale(1.1);
}

/* Optional shimmer effect */
.service-cat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(0,224,255,0.12), rgba(255,255,255,0.05), rgba(0,224,255,0.12));
  transform: rotate(45deg);
  pointer-events: none;
  transition: all 0.6s ease;
}

.service-cat-card:hover::before {
  transform: rotate(45deg) translateX(10%) translateY(10%);
}


.about-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 40px;
  background: #00aeef!important;
  color: #fff!important;
  font-weight: 600;
  text-decoration: none;
}
/* Tabs Styling */
.nav-pills .nav-link {
  color: #fff;
  background: transparent;
  border: 2px solid var(--mustard-color);
  border-radius: 50px;
  padding: 10px 22px;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  z-index: 100;
}

.nav-pills .nav-link.active {
  background-color: var(--mustard-color);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.nav-pills .nav-link:hover {
  background-color: var(--mustard-color);
  color: #000!important;
  transform: translateY(-3px);
  ;
}

/* Responsive: Stack Tabs */
@media (max-width: 767px) {
  .nav-pills .nav-link {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
}

/* Tab Content */
.tab-content {
  margin-top: 40px;
  position: relative;
}



/* Text Styling */
.tab-content h4 {
  color: var(--mustard-color);
}

.tab-content p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.tab-content:hover p {
  color: #fff;
}

/* Tab fade animation */
.tab-pane {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tab-pane.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.tab-pane.fade {
  opacity: 0;
  transform: translateY(20px);
}
.text-underline{
  color: var(--mustard-color)!important;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 16px;
}
.border-bottom{
  border-bottom: 2px solid var(--mustard-color)!important;
  position: absolute;
  bottom: 0px;
  width: 28%;
}
.two-d-image-container{
  overflow: hidden; 

}
.two-d-image-container img{
  width: 100%;
  height: 300px;
  transition: transform 0.3s ease;
  object-fit: contain;
  border-radius: 10px;
}

/* about us styling  */


.about-section {
  background: #f8f9fa;
  overflow: hidden;
}

.text-mustard {
  color: var(--yellow-dark);
}

.btn-mustard {
  background-color: var(--yellow-dark);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-mustard:hover {
  background-color:#00aeef ;
  transform: translateY(-2px);
}

.icon-box {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
  border-radius: 20px;
}

.about-shape {
  background: linear-gradient(135deg, rgba(255,180,0,0.2), transparent);
  z-index: 1;
  pointer-events: none;
}
.fa-lightbulb{
  color: var(--yellow-dark)!important;
  font-size: 60px!important;
}

/* bulb animation */
.fa-lightbulb{
  color: var(--yellow-dark) !important;
  font-size: 40px;
  display: inline-block;              /* keep transforms predictable */
  transform-origin: center center;
  /* two animations: smooth pulse + subtle flicker for realism */
  animation: bulb-pulse 2.6s ease-in-out infinite,
             bulb-flicker 6s linear infinite;
  /* glow using text-shadow so it works with FontAwesome glyphs */
  text-shadow: 0 0 6px rgba(255,220,100,0.45);
}

/* smooth breathing/pulse */
@keyframes bulb-pulse {
  0%   { transform: scale(1);      text-shadow: 0 0 6px rgba(255,220,100,0.45); }
  50%  { transform: scale(1.06);   text-shadow: 0 0 18px rgba(255,210,80,0.65); }
  100% { transform: scale(1);      text-shadow: 0 0 6px rgba(255,220,100,0.45); }
}

/* subtle random-like flicker — uses many short steps for an organic feel */
@keyframes bulb-flicker {
  0%   { opacity: 1; filter: brightness(1); text-shadow: 0 0 6px rgba(255,220,100,0.45); }
  3%   { opacity: .92; filter: brightness(.95); text-shadow: 0 0 2px rgba(255,200,60,0.25); }
  6%   { opacity: .98; filter: brightness(1.03); text-shadow: 0 0 10px rgba(255,230,120,0.7); }
  7%   { opacity: .9;  filter: brightness(.9);  text-shadow: 0 0 2px rgba(255,180,40,0.18); }
  12%  { opacity: 1;   filter: brightness(1);  text-shadow: 0 0 6px rgba(255,220,100,0.45); }
  100% { opacity: 1;   filter: brightness(1);  text-shadow: 0 0 6px rgba(255,220,100,0.45); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fa-lightbulb {
    animation: none;
    transition: none;
  }
}





/*================== testimonial section ============ */
 
.testimonial{
    border-left: 3px solid main-heading!important;;
    padding: 100px 0 100px 275px;
    position: relative
}
.testimonial:before,
.testimonial:after{
    content: "";
    width: 320px;
    height: 55px;
    border-right: 3px solid main-heading!important;;
    position: absolute;
    left: 0;
}
.testimonial:before{
    border-top: 3px solid main-heading!important;;
    top: 0;
}
.testimonial:after{
    border-bottom: 3px solid main-heading!important;;
    bottom: 0;
}
.testimonial .pic{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100px;
    left: 100px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description{
    font-size: 14px;
    color: #7a7e82;
    line-height: 27px;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -70px;
    left: 0;
    font-size: 20px;
    color: #7a7e82;
}
.testimonial .testimonial-title{
    font-size: 22px;
    font-weight:800;
    color: #22272c;
    text-transform: capitalize;
}
.testimonial .post{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color :main-heading!important;;
    margin-top: 10px;
}
.owl-theme .owl-controls{
    text-align: right;
    margin-top: 30px;
}
.owl-theme .owl-controls .owl-buttons div{
    background: main-heading!important;;
    border-radius: 0;
    opacity: 1;
    padding: 5px 10px;
}
.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    color: #fff;
}
.owl-next:before{
    content: "\f054";
}
@media only screen and (max-width: 990px){
    .testimonial{
        padding: 80px 0 80px 265px;
    }
}
@media only screen and (max-width: 767px){
    .testimonial{
        padding: 0;
        border: none;
    }
    .testimonial:before,
    .testimonial:after{
        border: none;
    }
    .testimonial .pic{
        position: relative;
        top: 0;
        left: 0;
    }
    .testimonial .description{
        margin-top: 15px;
    }
    .testimonial .description:before{
        content: "";
    }
}

/*---------------- faq----------- */
  .accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 500;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-icon {
    font-weight: bold;
    font-size: 1.25rem;
    color: #00aeef; /* Mustard color */
  }
 .accordion-button {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-right: 1.5rem; /* space for icon */
    }
button.accordion-button.collapsed {
    padding: 25px!important;
    /* margin: 20px; */
}
    .accordion-button::after {
      content: '+'; /* default plus icon */
      font-size: 1.5rem;
      color: #00aeef; /* mustard color */
      margin-left: auto;
      transition: transform 0.2s, content 0.2s;
    }

    .accordion-button.collapsed::after {
      content: '+';
      transform: rotate(0deg);
    }

    .accordion-button:not(.collapsed)::after {
      content: '-';
      transform: rotate(0deg);
    }
    .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image:none!important;
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed) {
    color: #fff!important;
    background-color: var(--blue-dark)!important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}




.footer {
  background-color: var(--text-color);
}
.logo-footer svg{
  color: var(--mustard-color);
  font-size: 18px!important;
}
h5.fw-bold.text-uppercase.mb-3.logo-footer {
    font-size: 12px !important;
}
.footer ul li a.text-white:hover{
color: var(--mustard-color)!important;

}
@media(min-width:1600px){
  .social-link {

  padding: 10px;

}

}
.social-link {
  color: #fff;
  font-size: 28px; /* Bigger icons */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media(max-width:991px){
  .social-link {
font-size: 22px;
}

}
  .social-link:hover {
    background-color: #00aeef; /* Mustard background */
    color: #fff;               /* Icon stays white */
    border-radius: 100px;        /* Circle */
    transform: scale(1.15);  
  
  }


/* ---------------------------------------------------------------------- */
  /*------------------ services styling --------------------------------  */
  /* ------------------------------------------------------------------- */
  .services-common-bg {
  background-color: #0e0e0e;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  height: 60vh;
}
#services-common-bg {
  position: relative;
  background: url('../images/Samples/HDR Samples/After/12.jpg');
  background-repeat: no-repeat;
  
  background-size:contain;
  background-attachment: fixed; 
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

#services-common-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 0;
}

#services-common-bg .container {
  position: relative; /* Place content above overlay */
  z-index: 1;
}










    .service-parallax {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.service-parallax .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.service-parallax .content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.service-description {
    font-size: 34px;
    line-height: 38px;
    width: 100%;
    margin: 0 auto;
}
.benefit-section-padding{
padding: 80px 0px;
}
/* benfits card  */
/* Benefit Card Styles */
/* Benefit Card */
/* Glass Benefit Card */
.benefit-card {
    position: relative;
    height: 360px;
    padding: 40px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05); /* subtle glass */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Gradient Border Glow */
.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #00aeef, #ffdd7a, #00aeef);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0.5;
}

/* Icon Container */
.icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #00aeef, #00aeef);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(244,165,0,0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Icon */
.icon-wrap i {
    font-size: 40px;
    color: #fff;
}

/* Title */
.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

/* Description */
.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

/* Hover Effect */
.benefit-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.benefit-card:hover .icon-wrap {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 20px 50px rgba(244,165,0,0.6);
}



.before-after-box {
    margin-bottom: 50px;
}

.before-after-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.before-after-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.before-after-wrapper img {
    width: 100%;
    display: block;
}

.before-img {
    position: absolute;
    inset: 0;
    width: 100%;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.slider-range {
    width: 100%;
    margin-top: 10px;
}

/*================= GSAP HEADING================  */
.gsap-heading,
.gsap-subtitle {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
/* section {
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
} */















/* ====================================================== */
/* ======================media queires=================== */
/* ========================================================= */
@media(max-width:992px)
{
   .why-choose-us .about-images {
    height: 500px;
    display: none!important;
  }
}

@media(max-width:768px){
  .main-heading {
  font-size: 26px!important;
}

  #emailBtn{
    display: none!important;
  }
    #chatbot-btn{
    display: none!important;
  }
.r-text{
  font-size: 14px!important;
}
.btn-contact{
  padding:10px 11px!important;
  font-size: 12px;
}
.main-contact{
  padding:10px 11px!important;
  font-size: 12px;
}
}