:root {
  --gold: #f5b800;
  --dark-gold: #fdb90e;
  --dark-yellow: #b8860b;
  --black: #000000;
  --dark-gray: #111111;
  --mid-gray: #222222;
  --light-gray: #333333;
  --white: #ffffff;

  --yellow: #fdb90e;
  --black: #121212;
  --dark-gray: #1e1e1e;

  --text-light: #f5f5f5;
  --card-black: #1a1a1a;

  --primary-gold: #ffd700;
  --dark-bg: #121212;
  --card-bg: #1e1e1e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
li {
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #111;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden;
}
#particles {
  overflow: hidden;
}
.margin-top {
  margin-top: 146px;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
p {
  color: var(--text-light);
  font-size: 1rem;
}

.container {
  width: 90%;
  /* max-width: 1200px; */
  margin: 0 auto;

}

/* .section {
  padding: 6rem 0;
} */

.text-center {
  text-align: center;
}

/* top-header- */

.top-header-inside {
  background: #000; /* Black background */
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-header-left span {
  margin-right: 20px;
  color: #f5c518; /* Golden text */
  font-weight: 500;
}

.top-header-right .top-social-icon {
  margin-left: 12px;
  color: #fff;
  font-size: 15px;
  transition: color 0.3s, transform 0.3s;
}

.top-header-right .top-social-icon:hover {
  color: #f5c518; /* Golden hover */
  transform: scale(1.2);
}

/* Hide on mobile */
@media (max-width: 768px) {
  .top-header-inside {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero-buttons .btn-outline {
    display: none;
  }
}

/* Header Styles */
:root {
  --primary-color: #f5b800;
  --secondary-color: #333;
  --light-gray: #f8f9fa;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --dropdown-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  --sidebar-width: 280px;
  --sidebar-bg: #253c53;
  --sidebar-hover: #34495e;
  --text-light: #ecf0f1;
  --transition-speed: 0.3s;
  --menu-bg: #ffffff;
  --menu-text: #555555;
  --menu-hover-bg: #f8f9fa;
  --menu-hover-text: #f5b800;
}

/* body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding-top: 80px;
      background-color: #f5f7fa;
    } */

/* Desktop Header */
.desktop-header {
  background: #fff;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}

.desktop-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  position: relative;
  /* margin: 0 5px; */
}

.desktop-nav a {
  color: var(--secondary-color) !important;
  font-weight: 500;
  padding: 10px 4px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 14px;
}
/* .desktop-nav a {
  color: var(--secondary-color) !important;
  font-weight: 600;
  padding: 10px 8px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
} */
/* @media(min-width:1200){
  .desktop-nav a {
  color: var(--secondary-color) !important;
  font-weight: 500;
  padding: 10px 8px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
 } */

.desktop-nav a:hover {
  background-color: var(--light-gray);
  color: var(--primary-color) !important;
}

.desktop-nav a i {
  margin-right: 5px;
  /* color: #ffb500; */
  background: linear-gradient(to right, #ffd700, #c6d638);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.desktop-nav li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Menu for Desktop */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 650px;
  background: var(--menu-bg);
  border-radius: 12px;
  box-shadow: var(--dropdown-shadow);
  padding: 25px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.desktop-nav li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu h6 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 8px;
}

.mega-menu h6 i {
  margin-right: 8px;
  color: var(--primary-color);
}

.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.mega-menu ul li {
  margin: 0 0 10px 0;
}

.mega-menu ul li a {
  color: var(--menu-text);
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.mega-menu ul li a:hover {
  color: var(--menu-hover-text);
  background: none;
  transform: translateX(5px);
}

.mega-menu ul li a img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.mega-menu ul li a:hover img {
  transform: scale(1.1);
}

/* Simple Dropdown for Desktop */
.simple-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: var(--menu-bg);
  border-radius: 12px;
  box-shadow: var(--dropdown-shadow);
  padding: 20px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.desktop-nav li:hover .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.simple-dropdown ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-dropdown ul li {
  margin: 0 0 8px 0;
}

.simple-dropdown ul li a {
  color: var(--menu-text);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.simple-dropdown ul li a:hover {
  color: var(--menu-hover-text);
  background-color: var(--menu-hover-bg);
  transform: translateX(5px);
}

/* Mobile Header */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px;
}

.mobile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--sidebar-width);
  background-color: var(--sidebar-bg);
  color: var(--text-light);
  transform: translateX(-100%);
  transition: transform var(--transition-speed) ease;
  z-index: 1050;
  overflow-y: auto;
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
}

.sidebar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  /*background-color: #ffffff;*/
}

.sidebar-brand i {
  margin-right: 10px;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition-speed);
}

.sidebar-close:hover {
  transform: rotate(90deg);
}

.sidebar-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--text-light);
  text-decoration: none;
  transition: background-color var(--transition-speed);
  font-weight: 500;
}

.menu-link:hover {
  background-color: var(--sidebar-hover);
}

.menu-link i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  color: #eeb013;
}

.menu-toggle {
  margin-left: auto;
  font-size: 1rem;
  transition: transform var(--transition-speed);
}

.menu-item.active > .menu-link {
  background-color: var(--sidebar-hover);
  border-left: 4px solid var(--primary-color);
}

.menu-item.active > .menu-link .menu-toggle {
  transform: rotate(45deg);
}

.submenu {
  background-color: rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.submenu.open {
  max-height: 1000px;
}

.submenu-item {
  padding: 12px 20px 12px 55px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-speed);
}

.submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  padding-left: 60px;
}

.mobile-mega-menu {
  background-color: rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.mobile-mega-menu.open {
  max-height: 2000px;
}

.mobile-mega-menu-content {
  padding: 20px;
}

.mobile-mega-menu-column {
  margin-bottom: 20px;
}

.mobile-mega-menu-column h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.mobile-mega-menu-column h6 i {
  margin-right: 8px;
}

.mobile-mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-mega-menu-list li {
  margin-bottom: 10px;
}

.mobile-mega-menu-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  /* padding: 8px 0; */
  padding: 14px 0px 4px 37px;
  transition: all var(--transition-speed);
}

.mobile-mega-menu-list a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-mega-menu-list a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.mobile-mega-menu-list a:hover img {
  transform: scale(1.1);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  body {
    padding-top: 70px;
  }
}

@media (min-width: 993px) {
  .mobile-header,
  .mobile-sidebar,
  .overlay {
    display: none;
  }
}

/* Hero Section */

.hero {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  background: linear-gradient(
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* margin-top: 100px; */
}

.hero-content {
  flex: 1;
  max-width: 50%;
  z-index: 1;
}

.hero-image {
  flex: 1;
  max-width: 50%;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  /* box-shadow: 0 10px 30px rgba(245, 184, 0, 0.3); */
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
  text-shadow: 0 2px 10px rgba(245, 184, 0, 0.3);
}

.rotating-text {
  color: var(--gold);
  font-weight: 700;
  position: relative;
}

.rotating-text::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  height: 90%;
  width: 3px;
  background-color: var(--gold);
  transform: translateY(-50%);
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--black);
  opacity: 0.9;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(245, 184, 0, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(15deg);
  }
}

/* Footer */
footer {
  background-color: var(--bg-dark-gray);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 215, 0, 0.02) 10px,
    rgba(255, 215, 0, 0.02) 20px
  );
  padding: 5rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 1rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link a i {
  margin-right: 0.6rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-link a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mid-gray), var(--dark-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(245, 184, 0, 0.5);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 184, 0, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */

@media (min-width: 768px) and (max-width: 992px) {
  .hero-container {
    margin-top: 64px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .header-logo {
    height: 50px;
    padding: 0.1px;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 1rem;
    display: none;
  }

  .nav-item:hover .dropdown,
  .nav-item.active .dropdown {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/**************************** sevice section****************** */

/* service********************************************************************************************** */

.page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #ffd700;
  animation: pulseLine 2s ease-in-out infinite;
}

.main-container {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.page-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-white);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  position: var(--yellow);
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--yellow);
  animation: pulseLine 2s ease-in-out infinite;
}

.page-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff;
  opacity: 0.9;
}

.carousel-wrapper {
  width: 1200px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.service-card {
  width: 280px;
  height: 320px;
  margin: 10px;
  perspective: 1200px;
  flex-shrink: 0;
  cursor: pointer;
}

.card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card-inner-wrapper {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  position: relative;
  border-radius: 20px;
}

.service-card.flipped .card-inner-wrapper {
  transform: rotateY(180deg);
}

.card-front-face,
.card-back-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.card-front-face {
  background: linear-gradient(145deg, #111, #222);
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.card-back-face {
  transform: rotateY(180deg);
  color: #000;
}

/* Different front colors with yellow accents */
.service-card:nth-child(1) .card-front-face {
  background: linear-gradient(145deg, #111, #222);
}

.service-card:nth-child(2) .card-front-face {
  background: linear-gradient(145deg, #121212, #222);
}

.service-card:nth-child(3) .card-front-face {
  background: linear-gradient(145deg, #111, #121212);
}

.service-card:nth-child(4) .card-front-face {
  background: linear-gradient(145deg, #121212, #111);
}

/* Different back colors with yellow and white theme */
.service-card:nth-child(1) .card-back-face {
  background: linear-gradient(145deg, #ffd700, #ffffff);
}

.service-card:nth-child(2) .card-back-face {
  background: linear-gradient(145deg, #ffffff, #ffd700);
}

.service-card:nth-child(3) .card-back-face {
  background: linear-gradient(145deg, #ffd700, #fffacd);
}

.service-card:nth-child(4) .card-back-face {
  background: linear-gradient(145deg, #fffacd, #ffd700);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card-front-face .card-icon {
  color: #ffd700; /* Yellow icons on front */
}

.card-back-face .card-icon {
  color: #000; /* Black icons on back */
}

.service-card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.card-front-face .card-title {
  color: #ffd700; /* Yellow titles on front */
}

.card-back-face .card-title {
  color: #000; /* Black titles on back */
}

.card-description {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  color: #fff; /* White paragraph text on front */
}

.card-back-face .card-description {
  color: #000; /* Black paragraph text on back */
}

.card-flip-hint {
  display: none; /* Hide the flip hint */
}

@media (max-width: 1200px) {
  .carousel-wrapper {
    width: 100%;
  }

  .service-card {
    width: 240px;
    height: 280px;
  }

  .card-icon {
    font-size: 3rem;
  }

  .card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .service-card {
    width: 200px;
    height: 240px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 160px;
    height: 200px;
    margin: 5px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .card-description {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero {
  /* height: 100vh; */
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/bg.png") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(245, 184, 0, 0.1) 0%,
    transparent 50%
  );
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.rotating-text {
  color: var(--gold);
  font-weight: 700;
  position: relative;
}

.rotating-text::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  height: 90%;
  width: 3px;
  background-color: var(--gold);
  transform: translateY(-50%);
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 184, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* process */

.process {
  background-color: #000c1b;
  overflow: hidden;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  /* margin: 40px 0; */
  color: #fff;
}

h2 span {
  color: #f5b800;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 120px auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* Wavy SVG line */
.timeline svg#waveLine {
  position: absolute;
  bottom: 45px;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 0;
}

.timeline path {
  stroke: url(#grad);
  stroke-width: 3;
  fill: transparent;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: lineDraw 5s linear forwards;
}

@keyframes lineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
  flex: 1;
  opacity: 0.5;
  transition: all 0.8s ease;
}

.step.active {
  opacity: 1;
  transform: scale(1.1);
}

.step-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5b800, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.6);
  transition: all 0.4s ease;
}

.step p {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #ddd;
}

/* Rocket */
.rocket {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.flame {
  fill: #f5b800;
  animation: flameFlicker 0.2s infinite alternate;
}

@keyframes flameFlicker {
  from {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(1.3);
    opacity: 0.4;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
    margin: 42px auto;
  }
  section {
    padding-top: 0.1px;
    padding-bottom: 0.1px;
  }
  .rocket {
    display: none;
  }

  .timeline svg#waveLine {
    display: none;
  }

  .step {
    margin: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /* Zig-zag layout */
  .step:nth-child(odd) {
    flex-direction: row;
    text-align: left;
  }

  .step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }

  .step-icon {
    margin: 0 20px;
  }
}

/* testimonial */
/* body {
      background-color: #121212;
      color: #f5f5f5;
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    } */
.testimonial-section {
  width: 100%;
  background: #111111;
  /* border-radius: 20px; */
  padding: 0px 30px 39px 40px;
  /* box-shadow: 0 0 20px rgba(255, 204, 0, 0.3); */
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 calc((100% - 60px) / 3); /* 3 slides with 30px gap */
  background: #292929;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
  text-align: center;
  color: #f5f5f5;
  user-select: none;
}
.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
  padding-right: 20px;
  line-height: 1.5;
  min-height: 90px;
}
.testimonial-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 2rem;
  color: #ffcc00;
  opacity: 0.3;
}
.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffcc00;
  margin-bottom: 5px;
}
.testimonial-position {
  font-size: 0.9rem;
  color: #999999;
}
/* Responsive */
@media (max-width: 900px) {
  .testimonial-slide {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media (max-width: 600px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }
}

section {
  padding-top: 20px;
  padding-bottom: 35px;
}

/* home about section */

.about-wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  position: relative;
  padding: 0 20px;
}

/* Divider line with animation */
.divider-line {
  position: absolute;
  top: 140;
  bottom: 140;
  left: 50%;
  width: 3px;
  background: #f5b800;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s ease-in-out;
  z-index: 1;
  opacity: 0.7;
}
.divider-line.animate {
  transform: scaleY(1);
}

.about-text {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.about-text .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5b800;
  margin-bottom: 20px;
}

.about-text .about-title span {
  color: #fff;
}

.about-text p {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text .highlight {
  color: #f5b800;
  font-weight: 600;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.btn-learn {
  display: inline-block;
  background-color: #f5b800;
  color: #111;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-learn:hover {
  background-color: #fff;
  color: #111;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(245, 184, 0, 0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(245, 184, 0, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .divider-line {
    display: none;
  }
  .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .about-text ul {
    text-align: left;
    display: inline-block;
  }
}

/* why chose us  home page */

.why-choose-section {
  /* padding: 80px 0 40px; */
  position: relative;
  overflow: hidden;
  background: transparent;
}
.container {
  position: relative;
  z-index: 1;
  /* max-width: 1200px; */
}
/* Section title with golden gradient and glow */
.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  animation: fadeInZoom 1.2s ease-out;
  text-shadow: 0 0 12px #ffd700;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #ffd700;
  border-radius: 3px;
  animation: grow 1.5s ease-out;
  box-shadow: 0 0 15px #ffd700;
}

/* Zigzag container for */
.zigzag-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}
.zigzag-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Each zigzag item - dark color scheme, no yellow/gold */
.zigzag-item {
  background: linear-gradient(135deg, #1c1c2e, #2a2a40);
  color: #e0e0e0; /* light gray text */
  border-radius: 25px;
  padding: 22px 36px;
  min-width: 190px;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  position: relative;
  cursor: default;
  user-select: none;
  animation: floatZigzag 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-sizing: border-box;
}
.zigzag-item:hover {
  transform: scale(1.12) translateY(-12px);
  box-shadow: 0 20px 40px rgba(30, 30, 50, 0.9);
  filter: drop-shadow(0 0 15px rgba(30, 30, 50, 1));
  color: #ffffff;
  background: linear-gradient(135deg, #2a2a40, #1c1c2e);
}
/* Alternate vertical offset for zigzag effect */
.zigzag-item:nth-child(odd) {
  animation-delay: 0s;
  margin-top: 0;
}
.zigzag-item:nth-child(even) {
  animation-delay: 2s;
  margin-top: 30px;
}

/* Floating zigzag animation */
@keyframes floatZigzag {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
  }
  25% {
    transform: translateY(-18px) translateX(12px);
    filter: drop-shadow(0 0 15px rgba(30, 30, 50, 1));
  }
  50% {
    transform: translateY(0) translateX(24px);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
  }
  75% {
    transform: translateY(-18px) translateX(12px);
    filter: drop-shadow(0 0 15px rgba(30, 30, 50, 1));
  }
}

/* Scroll hint arrow */
.scroll-hint {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.5rem;
  margin-top: -20px;
  margin-bottom: 40px;
  user-select: none;
  animation: bounceArrow 2s infinite;
}
@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Feature cards styling */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  perspective: 1000px;
}
.feature-card {
  background: linear-gradient(145deg, #0a0a23, #001122);
  border: none;
  border-radius: 25px;
  padding: 35px 30px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  height: 100%;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
  cursor: default;
  position: relative;
  overflow: hidden;
  color: #ffffff; /* white text */
  opacity: 0; /* for animation */
  box-sizing: border-box;
}
.feature-card:hover {
  transform: translateY(-20px) rotateX(10deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.8);
  z-index: 10;
  background: linear-gradient(145deg, #1c1c2e, #2a2a40);
  color: #e0e0e0; /* light gray text on hover */
}
.feature-card .icon-wrapper {
  font-size: 3.8rem;
  color: #ffd700;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.85));
  animation: bounceAndSpin 2.5s ease-in-out infinite;
  display: inline-block;
  transition: color 0.3s ease;
}
.feature-card:hover .icon-wrapper {
  color: #a0a0a0;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}
.feature-card h5 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 18px;
  font-weight: 800;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 0 8px #ffd700;
  transition: color 0.3s ease;
}
.feature-card:hover h5 {
  color: #a0a0a0;
  text-shadow: none;
}
.feature-card p {
  font-size: 1.05rem;
  color: #ffffff; /* white paragraph */
  animation: fadeInUp 1.2s ease-out;
  line-height: 1.6;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}
.feature-card:hover p {
  color: #c0c0c0;
  text-shadow: none;
}

/* Animations reused */
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceAndSpin {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

/* Staggered animation delays for feature cards */
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.7s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.9s;
}
.feature-card:nth-child(6) {
  animation-delay: 1.1s;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .zigzag-container {
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 20px;
  }
  .zigzag-item {
    min-width: 140px;
    font-size: 1rem;
    padding: 15px 20px;
    margin-top: 0 !important;
    animation: floatZigzagMobile 4s ease-in-out infinite;
  }
  .zigzag-item:nth-child(even) {
    margin-top: 0 !important;
    animation-delay: 2s;
  }
  @keyframes floatZigzagMobile {
    0%,
    100% {
      transform: translateY(0);
      filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
    }
    50% {
      transform: translateY(-10px);
      filter: drop-shadow(0 0 15px rgba(30, 30, 50, 1));
    }
  }
  .card-container {
    grid-template-columns: 1fr;
  }
}

/* social icons homepage */
/* Background and base text */

.home-social-bar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}
.home-social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.home-social-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.6s ease;
}
.home-social-icon:hover::before {
  transform: scale(2.5);
}
.home-social-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.3;
}
.home-social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.home-social-icon:hover i {
  transform: rotate(360deg) scale(1.2);
}
.home-social-icon:hover {
  transform: scale(1.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.home-social-icon:nth-child(1) {
  background: linear-gradient(135deg, #e1306c, #833ab4);
}
.home-social-icon:nth-child(2) {
  background: linear-gradient(135deg, #3b5998, #8b9dc3);
}
.home-social-icon:nth-child(3) {
  background: linear-gradient(135deg, #25d366, #075e54);
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.3;
  }
}
@media (max-width: 768px) {
  .home-social-bar {
    right: 10px;
    gap: 15px;
    display: none;
  }
  .home-social-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Floating Call Button Wrapper */
.call-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

/* Call Button */
.call-btn {
  width: 70px;
  height: 70px;
  background: #f5b800;
  color: #111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(245, 184, 0, 0.6);
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 35px rgba(245, 184, 0, 0.9);
}

/* Phone Icon Shake */
.call-btn i {
  animation: shake 1.2s infinite;
}

@keyframes shake {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(245, 184, 0, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(245, 184, 0, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(245, 184, 0, 0.6);
  }
}

/* Phone Number */
.phone-number {
  background: #222;
  color: #f5b800;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 50px;
  margin-left: 12px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
  white-space: nowrap;
  pointer-events: none;
}

/* Reveal on hover */
.call-wrapper:hover .phone-number {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Popup overlay with subtle transparent black */

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background-color: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  transform: scale(0.7);
  transition: all 0.3s ease;
}

.popup-overlay.active .popup {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ffd700;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #fff;
}

.popup h2 {
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
  font-size: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #ffd700;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #ff8c00;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #ff7f00;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 2000;
}

.notification.show {
  transform: translateX(0);
}

/* acontact us page design */

/* 
        :root {
            --yellow: #FFD700;
            --dark-yellow: #B8860B;
            --bg-black: #000000;
            --bg-dark-gray: #0a0a0a;
            --bg-darker: #050505;
            --bg-medium: #0f0f0f;
            --card-black: #1a1a1a;
            --text-white: #ffffff;
            --text-light: #cccccc;
        } */

/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

/* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-black);
            color: var(--text-white);
            line-height: 1.5;
        } */

/* Section Styling */
/* .section {
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        } */

/* Different Backgrounds for Each Section */
.section-1 {
  background-color: var(--bg-black);
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 50%
    );
}

.section-2 {
  background-color: var(--bg-dark-gray);
  background-image: linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.02) 25%,
      transparent 25%
    ),
    linear-gradient(-45deg, rgba(255, 215, 0, 0.02) 25%, transparent 25%);
  background-size: 60px 60px;
}

.section-3 {
  background-color: var(--bg-darker);
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(255, 215, 0, 0.08) 0%,
    transparent 70%
  );
}

.section-4 {
  background-color: var(--bg-medium);
  background-image: linear-gradient(
      90deg,
      rgba(255, 215, 0, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.section-5 {
  background-color: var(--bg-black);
  background-image: conic-gradient(
    from 90deg at 50% 50%,
    rgba(255, 215, 0, 0.05) 0deg,
    transparent 120deg,
    rgba(255, 215, 0, 0.05) 240deg,
    transparent 360deg
  );
}

/* Animated Header Section */
.header-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.animated-title {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: infiniteGlow 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes infiniteGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3),
      0 0 15px rgba(255, 215, 0, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
      0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
  }
}

.animated-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: infiniteLine 3s linear infinite;
}

@keyframes infiniteLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.header-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.7;
  animation: floatUp 10s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Contact Info Items - Consistent Size */
.contact-info-item {
  background-color: var(--card-black);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-info-item:hover::before {
  left: 100%;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--yellow), var(--dark-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  }
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--bg-black);
}

.contact-details {
  text-align: center;
}

.contact-details h3 {
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

.contact-details p {
  color: var(--text-light);
  margin: 5px 0;
  font-size: 1rem;
}

/* Form Section */
.form-container {
  background-color: var(--card-black);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-title {
  text-align: center;
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 30px;
  position: relative;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--yellow);
  animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.5;
    width: 100px;
  }
  50% {
    opacity: 1;
    width: 150px;
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 500;
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, var(--yellow), var(--dark-yellow));
  color: var(--bg-black);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  }
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Map Section */
.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 2;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 40px;
  position: relative;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--yellow);
  animation: pulseLine 2s ease-in-out infinite;
}

.accordion-item {
  background-color: var(--card-black);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: transparent;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  position: relative;
}

.accordion-button:not(.collapsed) {
  color: var(--yellow);
  background-color: rgba(255, 215, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--yellow), var(--dark-yellow));
  color: var(--bg-black);
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  z-index: 1000;
  display: none;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .animated-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 30px 20px;
  }

  .map-container {
    height: 300px;
  }
}

/* about us page */

:root {
  --primary-yellow: #ffd700;
  --dark-yellow: #b8860b;
  --bg-black: #000000;
  --bg-dark-gray: #0a0a0a;
  --bg-darker: #050505;
  --bg-medium: #0f0f0f;
  --card-black: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #cccccc;
}

/* Different Backgrounds for Each Section */
.section-1 {
  background-color: var(--bg-black);
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 50%
    );
}

.section-2 {
  background-color: var(--bg-dark-gray);
  background-image: linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.02) 25%,
      transparent 25%
    ),
    linear-gradient(-45deg, rgba(255, 215, 0, 0.02) 25%, transparent 25%);
  background-size: 60px 60px;
}

.section-3 {
  background-color: var(--bg-darker);
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(255, 215, 0, 0.08) 0%,
    transparent 70%
  );
}

.section-4 {
  background-color: var(--bg-medium);
  background-image: linear-gradient(
      90deg,
      rgba(255, 215, 0, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.section-5 {
  background-color: var(--bg-black);
  background-image: conic-gradient(
    from 90deg at 50% 50%,
    rgba(255, 215, 0, 0.05) 0deg,
    transparent 120deg,
    rgba(255, 215, 0, 0.05) 240deg,
    transparent 360deg
  );
}

/* Animated Header Section */
.header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.animated-title {
  font-size: 2rem;
  color: var(--primary-yellow);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: infiniteGlow 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes infiniteGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3),
      0 0 15px rgba(255, 215, 0, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
      0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
  }
}

.animated-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-yellow),
    transparent
  );
  animation: infiniteLine 3s linear infinite;
}

@keyframes infiniteLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.header-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.7;
  animation: floatUp 10s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Story Section */
.story-content {
  background-color: var(--card-black);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 2;
}

.story-title {
  font-size: 2rem;
  color: var(--primary-yellow);
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.story-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary-yellow);
  animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.5;
    width: 100px;
  }
  50% {
    opacity: 1;
    width: 150px;
  }
}

.story-text {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

/* Mission Vision Values */
.mvv-item {
  background-color: var(--card-black);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mvv-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.mvv-item:hover::before {
  left: 100%;
}

.mvv-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-yellow);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.mvv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--dark-yellow)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mvv-icon i {
  font-size: 1.8rem;
  color: var(--bg-black);
}

.mvv-title {
  font-size: 1.4rem;
  color: var(--primary-yellow);
  margin-bottom: 15px;
}

.mvv-description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Team Section */
.team-member {
  background-color: var(--card-black);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-yellow);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--primary-yellow);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  animation: imagePulse 3s ease-in-out infinite;
}

@keyframes imagePulse {
  0%,
  100% {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
  }
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.3rem;
  color: var(--primary-yellow);
  margin-bottom: 5px;
}

.member-position {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.social-links {
  margin-top: 15px;
}

.social-link {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--dark-yellow)
  );
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin: 0 5px;
  color: var(--bg-black);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 10px rgba(255, 215, 0, 0.4);
}

/* Stats Section */
.stats-container {
  background-color: var(--card-black);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-yellow);
  margin-bottom: 10px;
  animation: countUp 2s ease-out infinite;
}

@keyframes countUp {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ........................ecomm services ......................*/

@media (max-width: 768px) {
  .flipkart-hero-section {
    padding: 140px 0 80px;
  }
}
@media (min-width: 768px) {
  .flipkart-hero-section {
    padding: 80px 0 80px;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(20, 20, 20, 0.85) 100%
    );
    position: relative;
    overflow: hidden;
  }
}

/* Animated Background */
.flipkart-animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.flipkart-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0) 70%
  );
  animation: flipkart-float 20s infinite ease-in-out;
}

@keyframes flipkart-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(15px, 15px) scale(1.05);
  }
}

/* Hero Section */
.flipkart-hero-section {
  padding: 80px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(20, 20, 20, 0.85) 100%
  );
  position: relative;
  overflow: hidden;
}

.flipkart-hero-section {
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url("../img/ecomm-bg/bg1.png") no-repeat center center/cover; */
  background: linear-gradient(rgb(255 160 160 / 70%), rgb(4 110 7 / 70%));
}

.flipkart-floating-element {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 215, 0, 0) 70%
  );
  border-radius: 50%;
  filter: blur(5px);
  animation: flipkart-float 15s infinite ease-in-out;
}

.flipkart-text-glow {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.flipkart-animate-fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flipkart-btn-gold {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.flipkart-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: #000;
}

/* Stats Section */
.flipkart-stats-section {
  padding: 60px 0;
  background: #111;
}

.flipkart-counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

/* Services Section */
.flipkart-section-padding {
  padding: 80px 0;
}

.flipkart-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.flipkart-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--primary-gold);
}

.flipkart-service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000;
  font-size: 2rem;
}

.flipkart-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 15px;
}

.flipkart-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease;
}

/* Benefits Section */
.flipkart-benefits-container {
  position: relative;
}

.flipkart-benefit-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.flipkart-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--primary-gold);
}

.flipkart-benefit-icon-container {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000;
  font-size: 1.8rem;
}

.flipkart-benefit-stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.flipkart-benefit-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.flipkart-benefit-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.flipkart-benefit-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease;
}

/* Providers Section */
.flipkart-provider-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000;
}

/* CTA Section */
.flipkart-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  position: relative;
}

.flipkart-cta-section h2,
.flipkart-cta-section p {
  color: #000;
}

.flipkart-cta-section .flipkart-btn-gold {
  background: #000;
  color: var(--primary-gold);
}

.flipkart-cta-section .flipkart-btn-gold:hover {
  background: #333;
  color: var(--primary-gold);
}

/* Particle Effect */
.flipkart-particle {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.8) 0%,
    rgba(255, 215, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 9999;
}

@keyframes flipkart-particleAnimation {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(1);
  }
}

/* Stagger Animation */
.flipkart-stagger-animation > div {
  opacity: 0;
  transform: translateY(30px);
}

.flipkart-stagger-animation > div.visible {
  animation: fadeInUp 0.8s forwards;
}

.card-title,
.flipkart-benefit-title {
  color: var(--white);
}
.flipkart-card-text,
.flipkart-benefit-description {
  color: var(--white);
  padding: 10px;
}
.flipkart-benefit-stats {
  color: var(--white);
}

/************************** for website pages************************************* */

:root {
  --swd-primary: #ffd700;
  --swd-primary-dark: #ffa500;
  --swd-secondary: #000000;
  --swd-accent: #ff8c00;
  --swd-light: #f8f9fa;
  --swd-dark: #212529;
  --swd-gray: #6c757d;
  --swd-gray-dark: #343a40;
  --swd-gradient: linear-gradient(135deg, #ffd700, #ffa500);
  --swd-gradient-dark: linear-gradient(135deg, #ffa500, #ff8c00);
}

/* Banner */
.swd-inner-banner {
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; */

  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.swd-inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), transparent);
  z-index: 1;
}

.swd-inner-banner h1 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--swd-primary);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: swd-glow 2s ease-in-out infinite alternate;
}

@keyframes swd-glow {
  from {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
      0 0 30px rgba(255, 165, 0, 0.6);
  }
}

.swd-inner-banner p {
  font-size: 0.9rem;
  max-width: 700px;
  margin: 10px auto 0;
  position: relative;
  z-index: 2;
  color: var(--swd-light);
  font-weight: 300;
}

/* Content Section */
.swd-content-section {
  padding: 60px 0;
  position: relative;
}

.swd-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--swd-primary);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.swd-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--swd-gradient);
  border-radius: 2px;
}

.swd-feature-box {
  background: var(--swd-gray-dark);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-left: 5px solid var(--swd-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.swd-feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  border-left-color: var(--swd-primary-dark);
}

.swd-feature-icon {
  font-size: 1.5rem;
  color: var(--swd-primary);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
}

.swd-feature-box:hover .swd-feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--swd-primary-dark);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.swd-benefits-list {
  list-style: none;
  padding: 0;
  color: var(--text-white);
}

.swd-benefits-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.swd-benefits-list li:hover {
  padding-left: 10px;
  background: rgba(255, 215, 0, 0.05);
}

.swd-benefits-list li i {
  color: var(--swd-primary);
  margin-right: 15px;
  font-size: 0.9rem;
  width: 30px;
  text-align: center;
}

.swd-benefits-list li strong {
  color: var(--swd-primary);
  font-weight: 600;
}

/* Sidebar */
.swd-sidebar-box {
  background: var(--swd-gray-dark);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.swd-sidebar-box:hover {
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.swd-sidebar-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--swd-primary);
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.swd-sidebar-box h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--swd-gradient);
  border-radius: 2px;
}

.swd-sidebar-box ul {
  list-style: none;
  padding: 0;
}

.swd-sidebar-box ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
}

.swd-sidebar-box ul li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--swd-primary);
  transition: all 0.3s ease;
  font-size: 0, 9rem;
}

.swd-sidebar-box ul li:hover::before {
  left: 5px;
  color: var(--swd-primary-dark);
}

.swd-sidebar-box ul li a {
  text-decoration: none;
  color: var(--swd-light);
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  font-size: 0.9rem;
}

.swd-sidebar-box ul li:hover a {
  color: var(--swd-primary);
  padding-left: 5px;
}

/* Form Styling */
.swd-form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  color: var(--swd-light);
  transition: all 0.3s ease;
  width: 100%;
}

.swd-form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.swd-form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--swd-primary);
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
  color: var(--swd-light);
}

.swd-btn-primary {
  background: var(--swd-gradient);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  color: var(--swd-secondary);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.swd-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
  background: var(--swd-gradient-dark);
  color: var(--swd-secondary);
}

/* Scroll animation */
.swd-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.swd-fade-in.swd-show {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative elements */
.swd-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
}

.swd-decoration-1 {
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 215, 0, 0.15);
}

.swd-decoration-2 {
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 140, 0, 0.15);
}

/* Social Icons */
.swd-social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--swd-primary);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swd-social-icons a:hover {
  background: var(--swd-primary);
  color: var(--swd-secondary);
  transform: translateY(-5px);
}

/* Animations */
@keyframes swd-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swd-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .swd-inner-banner h1 {
    font-size: 1.5rem;
  }
  .hero-container {
    margin-top: 20px;
  }
  .hero-container {
    gap: 0.5rem;
  }

  .swd-section-title {
    font-size: 1.2em;
    /* font-weight: 500; */
    font-weight: bold;
  }
}
@media (min-width: 10px) and (max-width: 576px) {
  .margin-top {
    margin-top: 38px;
  }
  .flipkart-hero-section {
    padding: 44px 0 23px;
  }
  .flipkart-section-padding {
    padding: 40px 0;
  }
  .flipkart-stats-section {
    padding: 40px 0;
    background: #111;
  }
  .flipkart-cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    position: relative;
  }
  .swd-inner-banner {
    height: 200px;
  }
  .swd-content-section {
    padding: 28px 0;
    position: relative;
  }

  .hero-title {
    height: 116px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .margin-top {
    margin-top: 38px;
  }
  /* .flipkart-hero-section {
    padding: 115px 0 39px;
  } */
  .flipkart-stats-section {
    padding: 40px 0;
    background: #111;
  }
  .flipkart-section-padding {
    padding: 40px 0;
  }
  .flipkart-cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    position: relative;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .margin-top {
    margin-top: 23px;
  }

  .hero-title {
    height: 157px;
  }
}
@media (min-width: 992px) and (max-width: 14000px) {
  .swd-inner-banner {
    margin-top: 79px;
  }
  .hero-container {
    padding-top: 123px;
    padding-bottom: 41px;
  }
  .flipkart-hero-section {
    margin-top: 75px;
  }
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

/* blog page */

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}

.blog-card {
  background: #111;
  border: 2px solid gold;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px gold;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.blog-meta span {
  color: gold;
  font-weight: bold;
}

.blog-content h2 {
  color: gold;
  margin: 0 0 10px;
  font-size: 22px;
}

.blog-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 15px;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  background: #e6b800;
  box-shadow: 0 0 12px gold;
}

.blog-details {
  max-width: 900px;
  margin: 40px auto;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px gold;
}

.blog-details img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

.blog-meta span {
  color: gold;
  font-weight: bold;
}

.blog-details h2 {
  color: gold;
  margin-bottom: 15px;
}

.blog-details p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
}

a.back-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

a.back-link:hover {
  background: #e6b800;
  box-shadow: 0 0 12px gold;
}


/*8888888888888 -com-grid 999999999999*/

   .e-com-grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .e-com-logo-card {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .e-com-logo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
        z-index: 1;
    }

    .e-com-logo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .e-com-logo-card img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        z-index: 2;
        position: relative;
    }

    .e-com-logo-card .brand-name a {
        color: #fff;
        text-decoration: none;
    }

    .e-com-logo-card .brand-name {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 0;
        font-size: 0.9rem;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 3;
    }

    .e-com-logo-card:hover .brand-name {
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .e-com-grid-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .e-com-grid-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .section-title h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .e-com-grid-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
        }

        .e-com-logo-card {
            height: 120px;
        }

        .section-title h2 {
            font-size: 1.8rem;
        }

    }
 
   @media (min-width: 10px) and (max-width: 480px) {
    .swd-inner-banner {
        height: 200px;
        margin-top: 13px;
    }
    .hero-title {
    font-size: 2.2rem;
    /*margin-bottom: 2.1rem;*/
      height: 85px;
 
    }
    .hero-subtitle {
    font-size: 1.4rem;
  }
      .page-title {
        font-size: 2.2rem;
    }
    
    .call-btn {
    width: 60px;
    height: 60px;
    background: #f5b800;
    color: #111;
    border-radius: 50%;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(245, 184, 0, 0.6);
    animation: pulse 1.5s infinite;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}

.call-wrapper {
    position: fixed;
    bottom: 30px;
    left: 13px;
    display: flex
;
    align-items: center;
    z-index: 1000;
}
    
}
