* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   scroll-behavior: smooth !important;
}





/* Text selection styling */
::selection {
  /* background: var(--btn-color); */
  background-color: red;

  color: white;
}

/* Firefox ke liye alag pseudo-element */
::-moz-selection {
  background-color: red;
  /* background: var(--btn-color); */

  color: white;
}





:root {
  --color-1: #00247d;
  --color-2: #cf142b;
  --btn-color: linear-gradient(to right, #00247d, #cf142b);
  --btn-h-color: linear-gradient(to right, #cf142b, #00247d);
}

/* Style the scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00247d, #cf142b);
  border-radius: 10px;
}



/* Text selection styling */
::selection {
  background-color: red;
  color: white;
}

/* Firefox ke liye alag pseudo-element */
::-moz-selection {
  background-color: red;
  color: white;
}


body {
  height: 200vh;
  background: black;
  font-family: "Montserrat", sans-serif;
  color: #fff;
   overflow-x: hidden; 
}

/* Video Background Section */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.video-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.brand-text {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-top: 120px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  font-family: "Inter", sans-serif;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.cta-button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Background decoration */
.bg-decoration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: float 15s infinite ease-in-out;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation: float 12s infinite ease-in-out reverse;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation: float 10s infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}

/* iOS 26 Style Glass Effect */
header.glass {
  background: rgba(12, 12, 12, 0.203);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}






















.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s;
  padding: 5px 0;
  cursor: pointer;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #fff;
}

nav a:hover::before {
  width: 100%;
}

.right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Original Gradient Button Colors */
.btn {
  background: linear-gradient(90deg, #00247d, #cf142b);
  border: none;
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease, opacity 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
  box-shadow: 0 0 15px rgba(207, 20, 43, 0.5);
}

.btn:hover::before {
  left: 100%;
}

/* Enhanced Icon Styling */
.icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.icon {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  z-index: 2;
}

/* Red-blue gradient effect on icon */
.icon-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #00247d, #cf142b);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Popup animation and hover effects */
.icon-container:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow:
    0 10px 25px rgba(207, 20, 43, 0.3),
    0 5px 15px rgba(0, 36, 125, 0.3);
}

.icon-container:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.icon-container:hover .icon {
  color: #fff;
  transform: scale(1.2);
}

/* Tooltip effect */
.icon-container::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.icon-container:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.notification-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: #cf142b;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 3;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 20, 43, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(207, 20, 43, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 20, 43, 0);
  }
}

/* ========== MEGA MENU STYLES ========== */
.mega-menu {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 600px;
}

.mega-menu-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 50px;
}

/* Main Tabs (Horizontal) */
.main-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.main-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.main-tab i {
  font-size: 1.1rem;
}

.main-tab::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00247d, #cf142b);
  transition: width 0.3s ease;
}

.main-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.main-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.main-tab.active::after {
  width: 100%;
}

/* Content Area */
.mega-menu-content {
  display: flex;
  gap: 40px;
  min-height: 400px;
}

/* Sub Tabs Container (Left Side) */
.sub-tabs-container {
  flex: 0 0 280px;
  position: relative;
}

.sub-tabs {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: fadeInLeft 0.4s ease;
}

.sub-tabs.active {
  display: flex;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sub-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.sub-tab i {
  font-size: 1rem;
  min-width: 20px;
}

.sub-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #00247d, #cf142b);
  transition: height 0.3s ease;
}

.sub-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateX(5px);
}

.sub-tab.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sub-tab.active::before {
  height: 100%;
}

/* Content Display (Right Side) */
.content-display {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
}

.service-content {
  display: none;
  animation: fadeInRight 0.4s ease;
}

.service-content.active {
  display: block;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.content-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.content-badge {
  background: linear-gradient(135deg, #00247d, #cf142b);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.content-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.feature-item i {
  color: #cf142b;
  font-size: 1rem;
}

.content-preview {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-preview:hover img {
  transform: scale(1.05);
}

.content-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #00247d, #cf142b);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 20, 43, 0.3);
}

.content-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 20, 43, 0.5);
}

.content-cta i {
  transition: transform 0.3s ease;
}

.content-cta:hover i {
  transform: translateX(5px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.mobile-menu a:hover::before {
  width: 20px;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

/* Content section */
/* .content { */
  /* top: 10%; */
  /* bottom: 50px; */
  /* position: sticky !important; */
  /* padding: 0 100px;
  text-align: center;
  margin-top: 20px; */
  /* z-index: -1 !important; */
  /* background-color: BLACK; */
/* } */

.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.scroll-arrow {
  margin-top: 5px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablets */
@media (max-width: 1200px) {
  header {
    padding: 0 50px;
  }

  nav {
    gap: 25px;
  }

  .content {
    padding: 0 50px;
  }

  .brand-text {
    font-size: 5rem;
  }

  .mega-menu-container {
    padding: 30px 40px;
  }

  .mega-menu-content {
    gap: 30px;
  }

  .sub-tabs-container {
    flex: 0 0 240px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  header {
    padding: 0 40px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .content {
    padding: 0 40px;
  }

  .content h1 {
    font-size: 2.5rem;
  }

  .brand-text {
    font-size: 4rem;
  }

  /* Mega Menu Tablet Adjustments */
  .mega-menu {
    top: 110px;
  }

  .mega-menu-container {
    padding: 25px 30px;
  }

  .main-tabs {
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-tabs::-webkit-scrollbar {
    display: none;
  }

  .main-tab {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .mega-menu-content {
    flex-direction: column;
    gap: 25px;
  }

  .sub-tabs-container {
    flex: 1;
  }

  .sub-tabs {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 10px;
  }

  .sub-tabs::-webkit-scrollbar {
    display: none;
  }

  .sub-tab {
    white-space: nowrap;
    min-width: fit-content;
  }

  .content-display {
    padding: 25px;
  }

  .content-header h2 {
    font-size: 1.6rem;
  }

  .content-features {
    grid-template-columns: 1fr;
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  header {
    padding: 0 30px;
    height: 70px;
  }

  nav {
    display: none;
  }

  .right .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .content {
    padding: 0 30px;
    margin-top: 50px;
  }

  .content h1 {
    font-size: 2.2rem;
  }

  .content p {
    font-size: 1.1rem;
  }

  .icon-container {
    width: 35px;
    height: 35px;
  }

  .icon {
    font-size: 1.1rem;
  }

  .brand-text {
    font-size: 3rem;
    letter-spacing: 5px;
  }

  .tagline {
    font-size: 1.2rem;
  }

  /* Hide mega menu on mobile */
  .mega-menu {
    display: none;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  header {
    padding: 0 20px;
    height: 65px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .content {
    padding: 0 20px;
    margin-top: 40px;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1rem;
  }

  .right {
    gap: 15px;
  }

  .icon-container {
    width: 32px;
    height: 32px;
  }

  .icon {
    font-size: 1rem;
  }

  .mobile-menu a {
    font-size: 1.3rem;
  }

  .bg-circle {
    display: none;
  }

  .brand-text {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .tagline {
    font-size: 1rem;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 400px) {
  header {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .content h1 {
    font-size: 1.6rem;
  }

  .right {
    gap: 10px;
  }

  .brand-text {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}






























































 a {
      text-decoration: none;
      color: inherit;
    }

    /* ===== LEFT SOCIAL ICONS ===== */
    .social-bar {
      position: fixed;
      top: 50%;
      left: 18px;
      transform: translateY(-50%) translateX(-40px);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
      opacity: 0;
      transition: all 0.6s ease;
    }

    .social-bar.show {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    .social-item {
      width: 38px;
      height: 38px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.25s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
      position: relative;
    }

    .social-item:hover {
      background: var(--btn-color);

      transform: scale(1.15) translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .social-label {
      position: absolute;
      left: 50px;
      top: 50%;
      transform: translateY(-50%) scale(0.8);
      background: #000;
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 13px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: all 0.25s ease;
    }

    .social-item:hover .social-label {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }

    /* ===== RIGHT SIDEBAR CONTAINER ===== */
    .right-wrapper {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%) translateX(60px);
      z-index: 9999;
      opacity: 0;
      transition: all 0.6s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .right-wrapper.show {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    /* ===== GET QUOTE BUTTON ===== */
    .get-quote-box {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .get-quote {
      position: relative;
      background: var(--btn-color);
      color: #fff;
      width: 130px;
      height: 60px;
      margin-top: 100px;
      text-align: center;
      font-weight: bold;
      line-height: 50px;
      border-radius: 10px 10px 0px 0px;
      transform: rotate(-90deg);
      transform-origin: right center;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .get-quote:hover {
      background: var(--btn-color);
      transform: rotate(-90deg) translateY(-10px) ;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    }

    .get-quote::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.159), transparent 98%);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .get-quote:hover::before {
      transform: translateX(100%);
    }

    /* ===== CONTACT ICONS BELOW BUTTON ===== */
    .contact-box {
      margin-top: 100px;
      margin-right: -120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .contact-item {
      width: 34px;
      height: 34px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.25s;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    }

    .contact-item:hover {
      transform: translateY(-3px) scale(1.1);
      background: var(--btn-color);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 720px) {
      .social-bar,
      .right-wrapper {
        display: none;
      }
    }










































/* .sectin-1{
  height: 1000px !important;
} */

.hero-section {
  text-align: center;
  padding: 60px 20px 60px;
  padding-bottom: 120px !important;

  /* position: sticky; */
  /* z-index: -1; */
  /* top: 10%; */
}

.section-label {
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "•";
  background: linear-gradient(90deg, #00247d, #cf142b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  margin-top: -10px;
}

.hero-section h1 {
  font-size: 53px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 0px;
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: white;
}

.earth-image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 60px; */
}

.earth-image img {
  width: 600px;
  max-width: 90%;
  /* border-radius: 50%; */
  /* filter: drop-shadow(0 0 40px rgba(0, 36, 125, 0.5)); */
  /* transition: transform 10s linear; */
  /* border: 2px solid; */
  /* border-image: linear-gradient(45deg, #00247d, #cf142b) 1; */
}



/* Logo Slider Styles */
.logo-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 10px auto 0px;
  overflow: hidden;
  
}

.logo-slider {
  display: flex;
  animation: slide 20s linear infinite;
  gap: 40px;
  padding: 20px 0;
}

.logo-slider img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.logo-slider img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 40px));
  }
}

.logo-slider-container::before,
.logo-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
}

.logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.locations {
  margin-top: 20px !important;
  background: linear-gradient(90deg, #00237d41, #cf142a3d);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.227);
  box-shadow: 0 0 15px rgba(207, 20, 42, 0.288);
}

.locations span {
  font-weight: 600;
  /* color: red; */
}

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  opacity: 0.9;
  font-weight: 500;
}

.dot {
  background: linear-gradient(90deg, #00247d, #cf142b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .locations {
    flex-direction: column;
    padding: 15px 25px;
  }

  .logo-slider img {
    height: 30px;
  }
}





























/* 
     .contact-page {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
      color: #fff;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      transition: filter 0.3s ease;
    } */

/* .contact-page.blur-active {
      filter: blur(5px);
    } */

/* Button to open modal */
.contact-page__open-btn {
  background: linear-gradient(90deg, #00247d, #cf142b);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(0, 36, 125, 0.3);
  transition: all 0.3s ease;
}

.contact-page__open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 36, 125, 0.5);
}

/* Modal overlay */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  overflow-y: hidden;
}

/* Modal content box */
.contact-modal__content {
  background: #fff;
  /* border-radius: 16px; */
  width: 100%;
  max-width: 1080px;
  padding: 25px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 36, 125, 0.2);
  animation: modalFadeIn 1s ease;
  max-height: 90vh;
  overflow-y: hidden;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close button */
.contact-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 44px;
  color: #888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in;
  z-index: 10;
}

.contact-modal__close:hover {
  background: var(--btn-color);
  color: white;
  /* transform: rotate(90deg); */
}

/* Header */
.contact-modal__header {
  color: #000;
  margin-bottom: 20px;
  text-align: left;
  padding-right: 30px;
  /* border: 2px solid red; */
  width: 700px;
}

.contact-modal__title {
  font-size: 45px;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
  color: black;
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  margin-bottom: 6px;
}

.contact-modal__subtitle {
  color: #666;
  font-size: 13px;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.contact-modal__highlight {
  color: #cf142b;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Form layout */
.contact-form__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-right: 30px;
  padding-left: 30px;

}

.contact-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {

  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  font-size: 13px;
  outline: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: #00247d;
  box-shadow: 0 0 0 2px rgba(0, 36, 125, 0.1);
}

/* Form validation styles */
.contact-form__input.error,
.contact-form__select.error,
.contact-form__textarea.error {
  border-color: #cf142b;
  box-shadow: 0 0 0 2px rgba(207, 20, 43, 0.1);
}

.contact-form__input.success,
.contact-form__select.success,
.contact-form__textarea.success {
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.contact-form__error-message {
  color: #cf142b;
  font-size: 11px;
  margin-top: 5px;
  display: none;
}

.contact-form__error-message.show {
  display: block;
}

/* Full-width elements */
.contact-form__full-width {
  grid-column: span 2;
}

.contact-form__textarea {
  resize: none;
  min-height: 120px;
}

/* Budget section */
.contact-form__budget {
  background: linear-gradient(135deg, #f0f4ff, #e6ecff);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #d6e0ff;
  margin-bottom: 20px;
}

.contact-form__budget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.contact-form__budget-title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.contact-form__budget-value {
  color: #00247d;
  font-weight: 700;
  font-size: 16px;
}

.contact-form__range-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 6px;
  color: #666;
}

.contact-form__range {
  width: 100%;
  appearance: none;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #00247d, #cf142b);
  outline: none;
  margin: 10px 0;
}

.contact-form__range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #00247d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-form__budget-note {
  font-size: 11px;
  color: #888;
  margin-top: 5px;
  font-style: italic;
}

/* Bottom section */
.contact-form__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: start;
  margin-top: 10px;
}

.contact-form__project-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form__submit-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  align-items: flex-start;
}

/* Submit button */
.contact-form__submit {
  background: linear-gradient(90deg, #00247d, #cf142b);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 36, 125, 0.3);
  height: fit-content;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 140px;
  position: relative;
  overflow: hidden;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 36, 125, 0.5);
}

.contact-form__submit:active {
  transform: translateY(0);
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form__submit.loading {
  pointer-events: none;
}

.contact-form__submit.loading .contact-form__submit-text {
  opacity: 0;
}

.contact-form__submit-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.contact-form__submit.loading .contact-form__submit-spinner {
  display: block;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success message */
.contact-form__success {
  display: none;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f0fff4, #e6ffe6);
  border-radius: 10px;
  border: 1px solid #d6ffd6;
  margin-top: 15px;
}

.contact-form__success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.contact-form__success-icon {
  font-size: 40px;
  color: #28a745;
  margin-bottom: 10px;
}

.contact-form__success-title {
  color: #28a745;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form__success-message {
  color: #666;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Form footer */
.contact-form__footer {
  text-align: center;
  margin-top: 15px;
  color: #666;
  font-size: 11px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.contact-form__footer-link {
  color: #00247d;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form__container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form__full-width {
    grid-column: span 1;
  }

  .contact-modal__content {
    padding: 20px;
  }

  .contact-modal__title {
    font-size: 22px;
  }

  .contact-form__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .contact-modal__content {
    padding: 18px;
    border-radius: 14px;
  }

  .contact-modal__title {
    font-size: 20px;
  }

  .contact-form__input,
  .contact-form__select,
  .contact-form__textarea {
    padding: 9px 12px;
  }
}



.content {
 width: 100%;
/* height: 100vh; */
 background: black;
 /* border: 2px solid white; */
 position: sticky !important;
 top: 0;
 /* display: flex; */
 /* justify-content: center; */
 /* text-align: center; */

}
/* .section-2{
  background:var(--btn-color);
 
} */
 .sec-2-1{
  position: relative;
      background: #141418; /* black background */
overflow: hidden;
/* height: 100vh; */
width: 100%;

 }
 .sec-2-1::before{
   content: "";
      position: absolute;
      top: -150px; /* adjust vertical position of glow */
      left: 50%;
      transform: translateX(-50%);
      width: 1200px;   /* glow width */
      height: 500px;  /* half of width to make half-circle look */
      background: radial-gradient(
        ellipse at center,
        rgba(207, 20, 42, 0.25) 0%,   /* light red core */
        rgba(207, 20, 42, 0.076) 50%,   /* fade out */
        rgba(0, 0, 0, 0) 100%         /* fully transparent edge */
      );
      filter: blur(60px);
      opacity: 0.8;
      pointer-events: none;
 }
































































    .services-section {
      width: 100%;
      padding: 60px 5%;
      /* background: linear-gradient(to right, #0d0d0d, #1e1e1e); */
      opacity: 0;
      /* transform: translateX(50px); */
      /* transition: all 0.8s ease; */
      overflow-x: hidden;
    }

    .services-section--visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ----------- TOP ROW ----------- */
    .services-header {
      display: flex !important;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
    }

    .services-title-container {
      flex: 0 0 50%;
    }

    .services-main-title {
      font-size: 3.4rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .services-controls {
      flex: 0 0 50%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
    }

    .services-tabs-wrapper {
      display: flex;
      justify-content: flex-end;
      width: 100%;
    }

    .services-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: flex-end;
    }

    .services-tab {
      background: transparent;
      border: none;
      color: #aaa;
      font-size: 1.1rem;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s ease;
      padding: 15px 10px;
      margin-top: 50px;
    }

    .services-tab:hover {
      color: #fff;
    }

    .services-tab--active {
      color: #fff;
      font-weight: 600;
    }

    .services-tab--active::after {
      content: "→";
      color: var(--color-2);
      font-size: 1.2rem;
    }

    .services-view-all {
      background: var(--btn-color);
      border: none;
      padding: 13px 40px;
      border-radius: 25px;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
    }

    .services-view-all:hover {
      background: var(--btn-color);
      transform: translateY(-5px);
    }

    /* ----------- TAB CONTENT ----------- */
    .services-tab-content {
      display: none;
      animation: servicesFadeIn 2s ease;
    }

    .services-tab-content--active {
      display: block;
    }

    .services-content-row {
      display: flex;
      /* flex-wrap: wrap; */
      align-items: center;
      gap: 50px;
      margin-bottom: 60px;
      position: relative;
    }

    .services-text-content {
      flex: 0 0 25%;
    }

    .services-image-container {
      flex: 0 0 75%;
      position: relative;
      overflow: hidden;
      border-radius: 15px;
    }

    .services-feature-image {
      width: 100%;
      border-radius: 15px;
      height: 550px;
      object-fit: cover;
      position: relative;
      z-index: 0;
      display: block;
    }

    .services-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--btn-color);
      z-index: 1;
      border-radius: 15px;
    }

    .services-image-overlay--reveal {
      animation: servicesUncoverAnimation 2.8s ease forwards;
    }

    .services-content-title {
      font-size: 33px !important;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .services-content-description {
      color: #bbb;
      margin-bottom: 20px;
      line-height: 1.7;
      font-size: 16px !important;
    }

    .services-content-highlight {
      font-size: 5rem;
      color: white;
      margin-bottom: 10px;
    }

    .services-content-button {
      background: var(--btn-color);
      border: none;
      padding: 17px 35px;
      border-radius: 30px;
      color: #fff;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
    }

    .services-content-button:hover {
      background: var(--btn-color);
      transform: translateY(-2px);
    }

    /* ----------- IMAGE BOXES ----------- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 50px;
    }
.services-grid2 {
  margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
      gap: 20px;
    }

    .services-card {
      display: flex;
      flex-direction: column;
      gap: 15px;
      position: relative;
      overflow: hidden;
    }

    .services-card-image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
    }

    .services-card-image {
      width: 100%;
      border-radius: 15px;
      height: 450px;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
    }

    .services-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--btn-color);
      z-index: 1;
      border-radius: 15px;
    }

    .services-card-overlay--reveal {
      animation: servicesUncoverAnimation 1.5s ease forwards;
    }

    .services-card:hover .services-card-image {
      transform: scale(1.02);
    }

    .services-card-title {
      font-size: 1.8rem;
      font-weight: 600;
    }

    .services-card-description {
      color: #bbb;
      line-height: 1.7;
      font-size: 15px !important;
    }

    .services-card-feature {
      margin-top: -20px;
      display: flex;
      /* flex-wrap: wrap; */
      /* align-items: center; */
      gap: 10px;
      /* margin-top: 10px; */
      /* border: 2px solid red; */
    }

    .services-card-feature-label {
      /* border: 2px solid red; */

      font-size: 3.5rem;
      color: var(--btn-color);
    }

    .services-card-feature-text {
      font-size: 13px !important;
      /* border: 2px solid red; */
      align-content: center;
      width: 100%;
      height: 100%;
      color: #aaa;
    }

    .services-card-button {
      /* margin-top: 15px; */
      background: var(--btn-color);
      border: none;
      padding: 10px 40px;
      border-radius: 25px;
      height: 45px;
      /* align-items: center; */
      align-self: center;
      font-size: 14px;
      color: white;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
      /* align-self: flex-start; */
    }

.services-card-button2 {
      /* margin-top: 15px; */
      background: var(--btn-color);
      border: none;
      padding: 10px 40px;
      border-radius: 25px;
      height: 45px;
      width: 140px;
      /* align-items: center; */
      align-self: left;
      font-size: 14px;
      color: white;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
      /* align-self: flex-start; */
    }


    .services-card-button:hover {
      background: var(--btn-color);
      transform: translateY(-5px);
    }


.services-card-button2:hover {
      background: var(--btn-color);
      transform: translateY(-5px);
    }

    @keyframes servicesFadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes servicesUncoverAnimation {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      100% {
        transform: translateX(-100%);
        opacity: 0;
      }
    }

    /* ----------- MEDIA QUERIES ----------- */
    @media (max-width: 1200px) {
      .services-title-container, .services-controls {
        flex: 0 0 100%;
      }
      
      .services-controls {
        margin-top: 30px;
        align-items: flex-start;
      }
      
      .services-tabs-wrapper {
        justify-content: flex-start;
      }
      
      .services-tabs {
        justify-content: flex-start;
      }
    }

    @media (max-width: 992px) {
      .services-text-content, .services-image-container {
        flex: 100%;
      }
      .services-feature-image {
        height: 350px;
      }
    }

    @media (max-width: 768px) {
      .services-main-title {
        font-size: 2rem;
      }
      
      .services-tabs {
        gap: 10px;
      }
      
      .services-tab {
        font-size: 0.9rem;
        padding: 4px 8px;
      }
      
      /* Mobile layout - content row becomes column */
      .services-content-row {
        flex-direction: column;
        gap: 30px;
      }
      
      .services-text-content {
        order: 2;
      }
      
      .services-image-container {
        order: 1;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .services-feature-image, .services-card-image {
        height: 300px;
      }
    }
    
    @media (max-width: 576px) {
      .services-main-title {
        font-size: 1.8rem;
      }
      
      .services-tabs {
        gap: 5px;
      }
      
      .services-tab {
        font-size: 0.85rem;
        padding: 3px 6px;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .services-feature-image, .services-card-image {
        height: 250px;
      }
    }















    .section-3{
  /* border: 2px solid yellow; */
  background: hsl(240, 4%, 16%);
  height: 530px;
  /* padding-bottom: 30px; */
  position: relative;
  width: 100%;
  flex-direction: column;
  display: flex;
}

 .section-3::before{
   content: "";
      position: absolute;
      top: -150px; /* adjust vertical position of glow */
      left: 50%;
      transform: translateX(-50%);
      width: 1000px;   /* glow width */
      height: 500px;  /* half of width to make half-circle look */
      background: radial-gradient(
        ellipse at center,
        rgba(207, 20, 42, 0.25) 0%,   /* light red core */
        rgba(207, 20, 42, 0.076) 50%,   /* fade out */
        rgba(0, 0, 0, 0) 100%         /* fully transparent edge */
      );
      filter: blur(60px);
      opacity: 0.8;
      pointer-events: none;
 }

 .section-label3 {
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding-top: 15px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.section-label3::before {
  content: "•";
  background: linear-gradient(90deg, #00247d, #cf142b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  margin-top: -10px;
}















.page-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
      width: 100%;
      /* padding: 50px 0; */
      /* background: #111; */
      color: #fff;
      overflow-x: hidden;
      font-family: sans-serif;
    }

    /* h2 {
      font-weight: 500;
      margin-bottom: 10px;
      text-align: center;
    } */

    /* 🔹 Carousel Base */
    .carousel {
      width: 100%;
      overflow: hidden;
      /* background: #1e1e1e; */
      /* padding: 25px 0; */
      cursor:default;
    }

    .carousel-track {
      display: flex;
      width: max-content;
    }

    .carousel-item {
      width: 160px;
      height: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #cccbcb26;
      border-radius: 15px;
      margin: 0 15px;
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .carousel-item img {
      width: 70%;
      height: 70%;
      object-fit: contain;
      /* filter: brightness(0) invert(1); */
    }

    /* 🔹 Animation Keyframes */
    @keyframes moveLeft {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-50%); }
    }

    @keyframes moveRight {
      0% { transform: translateX(0%); }
      100% { transform: translateX(50%); }
    }

    /* 🔹 Responsive */
    @media (max-width: 768px) {
      .carousel-item {
        width: 90px;
        height: 90px;
      }
    }
















       .section-4{
  /* border: 2px solid yellow; */
  /* background: hsl(0, 0%, 3%); */
  height: 100vh;
  width: 100%;
  position: relative;
  flex-direction: column;
  display: flex;

     

}

 .grid-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0.5;
        }

        .orb-1 {
            width: 420px;
            height: 420px;
            background: linear-gradient(135deg, #00247d, #cf142b, #00247d);
            top: 10%;
            left: 10%;
            animation: float-1 25s infinite ease-in-out;
        }

        .orb-2 {
            width: 380px;
            height: 380px;
            background: linear-gradient(135deg, #00247d, #cf142b, #00247d);
            top: 5%;
            left: 80%;
            animation: float-2 35s infinite ease-in-out;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #00247d, #cf142b, #00247d);
            top: 75%;
            left: 15%;
            animation: float-3 45s infinite ease-in-out;
            display: none;
        }

        @keyframes float-1 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            20% {
                transform: translate(120px, 80px) scale(1.05);
            }
            40% {
                transform: translate(200px, -60px) scale(0.95);
            }
            60% {
                transform: translate(80px, -120px) scale(1.1);
            }
            80% {
                transform: translate(-100px, 100px) scale(0.9);
            }
        }

        @keyframes float-2 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(-80px, 120px) scale(1.08);
            }
            50% {
                transform: translate(-120px, -80px) scale(0.92);
            }
            75% {
                transform: translate(100px, 0px) scale(1.06);
            }
        }

        @keyframes float-3 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            15% {
                transform: translate(180px, 60px) scale(1.04);
            }
            30% {
                transform: translate(100px, -180px) scale(0.96);
            }
            45% {
                transform: translate(-120px, -140px) scale(1.07);
            }
            60% {
                transform: translate(-80px, -100px) scale(0.93);
            }
            75% {
                transform: translate(160px, 40px) scale(1.03);
            }
            90% {
                transform: translate(140px, -80px) scale(0.98);
            }
        }
















        /* Background Glow Effect */
        .glow-effect {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 50%;
            background-color: rgba(128, 0, 128, 0.25);
            border-radius: 9999px;
            filter: blur(80px);
            opacity: 0.7;
            transform: translate(33%, -50%);
            z-index: -1;
        }

        /* Main Content Area */
        .main-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            /* justify-content: center; */
            max-width: 1280px;
            margin: auto;
            /* border: 2px solid white; */
            /* padding: 5rem 6rem; */
        }


        .content-grid {
            display: grid;
            /* margin-top: 30px; */
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
        }

        /* Main Service Categories (Left) */
        .main-services-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-align: left;
            width: 100%;
            cursor: pointer;
            background: none;
            border: none;
            color: #6b7280;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }
        .service-item:hover {
            color: #9ca3af;
        }
        .service-item.active-service {
            color: white;
        }

        .service-item-icon {
            width: 2.5rem;
            height: 2.5rem;
            color: var(--color-2);
            transform: scale(0);
            transition: transform 0.3s ease;
        }
        .service-item.active-service .service-item-icon {
            transform: scale(1.1);
        }
        
        .service-item-title {
            font-size: 40px;
            font-weight: 800;
            transition: transform 0.3s ease;
        }
        .service-item.active-service .service-item-title,
        .service-item:hover .service-item-title {
            transform: translateX(0.5rem);
        }

        /* Right Content Area (Sub-services and Details) */
        .right-content-wrapper {
            position: relative;
            min-height: 420px;
        }
        
        .content-box {
            position: absolute;
            width: 100%;
            margin-top: 110px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            padding: 3rem;
            backdrop-filter: blur(10px);
            transition: opacity 0.5s ease, transform 0.6s ease-in-out;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content:space-evenly;
        }

        .sub-services-box ul, .detail-links-box ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        
        .sub-services-box li {
            font-size: 20px;
            font-weight: 600;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        .sub-services-box li:before {
            content: "";
            position: absolute;
            left: -1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--btn-color);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .sub-services-box li:hover {
            color: white;
        }
        .sub-services-box li:hover:before {
            opacity: 1;
        }
        
        .sub-service-header {
            margin-bottom: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .sub-service-header h3 {
            font-size: 2rem;
            font-weight: 700;
        }
        .sub-service-header p {
            font-size: 0.9rem;
            color: var(--color-2);
            margin-top: 0.25rem;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .back-arrow {
            color: var(--color-2);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .sub-service-header:hover .back-arrow {
            transform: translateX(-5px);
        }

        .detail-links-box a {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.5rem 0;
            position: relative;
        }
        .detail-links-box a:before {
            content: "";
            position: absolute;
            left: -1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--btn-color);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .detail-links-box a:hover {
            color: white;
        }
        .detail-links-box a:hover:before {
            opacity: 1;
        }

        /* CTA Section */
        .cta-section {
            margin-top: 4rem;
            text-align: center;
        }
        
      

        /* View States & Animations */
        .sub-services-box {
            opacity: 1;
            transform: translateX(0);
        }
        .detail-links-box {
            opacity: 0;
            transform: translateX(50px);
            pointer-events: none;
        }

        .services-page.details-view .main-services-container {
            opacity: 0;
            /* transform: translateX(-50px); */
            pointer-events: none;
        }
        
        .services-page.details-view .sub-services-box {
            transform: translateX(calc(-100% - 6rem));
        }
        .services-page.details-view .sub-service-header p {
            opacity: 1;
        }

        .services-page.details-view .detail-links-box {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .main-container {
                padding: 4rem 1.5rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .service-item-title {
                font-size: 48px;
            }
            .right-content-wrapper, .content-box {
                min-height: 350px;
            }
             .content-box {
                 padding: 2rem;
             }
            .services-page.details-view .sub-services-box {
                transform: translateY(-50px);
                opacity: 0;
            }

        }

        @media (max-width: 768px) {
          .orb {
            display: none;
          }
            .service-item-title {
                font-size: 36px;
            }
            .sub-services-box li {
                font-size: 28px;
            }
            .detail-links-box a {
                font-size: 1.25rem;
            }
        }






















































        .section-5{
          height: 100vh;
          background: #ffffff;
        }























.hero-section2 {
  text-align: left;
  padding: 20px 70px 20px;
  /* padding-bottom: 120px !important; */

  /* position: sticky; */
  /* z-index: -1; */
  /* top: 10%; */
}

.section-label2 {
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: var(--color-2);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label2::before {
  content: "•";
  background: linear-gradient(90deg, #00247d, #cf142b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  margin-top: -10px;
}

.hero-section2 h1 {
  font-size: 53px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  /* margin: 0  0px; */
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: black;
}
























































 .speaker-carousel-app {
            margin: 0;
            background-color: #18181b;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .speaker-carousel-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            box-sizing: border-box;
        }

        .speaker-carousel-header {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .speaker-carousel-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .speaker-carousel-subtitle {
            font-size: 1.125rem;
            color: #d4d4d8;
            margin-bottom: 3rem;
        }

        .speaker-carousel-wrapper {
            position: relative;
            width: 100%;
            max-width: 100%;
            cursor: grab;
            user-select: none;
            margin-top: -130px;
            /* border: 2px solid yellow; */
        }

        .speaker-carousel-wrapper:active {
            cursor: grabbing;
        }
        
        .speaker-carousel-viewport {
            overflow: hidden;
        }

        .speaker-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .speaker-carousel-slide {
            flex-shrink: 0;
            width: 100%;
            display: grid;
            gap: 1.5rem;
            padding: 0.25rem;
            box-sizing: border-box;
        }

        .speaker-profile-card {
            background-color: #ffffff;
            border-radius: 1.5rem;
            /* margin-top: -40px; */
            /* padding: 0.5rem; */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease-in-out;
            box-sizing: border-box;
            position: relative;
        }

        /* .speaker-profile-card:hover {
            transform: scale(1.05);
        }
         */
        .speaker-media-container {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: 1.25rem;
            overflow: hidden;
            background-color: #000;
        }

        .speaker-profile-image,
        .speaker-profile-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .speaker-profile-video {
            display: none;
        }

        .speaker-mute-toggle {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--btn-color);
            color: #ffffff;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            z-index: 10;
            display: none !important;
            transition: background-color 0.2s ease;
        }

        .speaker-mute-toggle:hover {
            background-color: #7c3aed;
        }

        .speaker-mute-toggle svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .speaker-info-panel {
            /* display: flex; */
            /* align-items: center; */
            justify-content: space-between;
            padding: 0.75rem;
            margin-top: 0.25rem;
            /* border: 2px solid blue; */
        }

        .speaker-company-details {
            display: flex;
            align-items: center;
          
            /* gap: 0.75rem; */
        }

        .speaker-logo-frame {
            width: 5rem;
            height: 2.6rem;
            /* border-radius: 0.5rem; */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
display: none;

            /* border: 1px solid #e5e7eb; */
        }

        .speaker-company-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
display: none;

        }

        .speaker-company-name {
            font-size: 0.875rem;
            font-weight: 600;
            color: #6b7280;
display: none;
        }

        .speaker-profile-name {
          /* margin-top: 30px; */
            font-size: 1rem;
            font-weight: 700;
            color: #374151;
        }
        
        .speaker-carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            display: none !important;

        }
        
        .speaker-nav-button {
            background-color: #4f46e5;
            color: white;
            border: none;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            
            transition: background-color 0.2s ease;
        }
        
        .speaker-nav-button:hover {
            background-color: #4338ca;
        }
        
        .speaker-nav-button svg {
            width: 1.5rem;
            height: 1.5rem;
        }
        
        .speaker-carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            display: none !important;
            
        }
        
        .speaker-indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background-color: #6b7280;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .speaker-indicator.active {
            background-color: #4f46e5;
        }
        
        @media (min-width: 768px) {
            .speaker-carousel-title {
                font-size: 3rem;
            }
        }

















          .section-6{
 
  height: 100vh;
  position: relative;
  flex-direction: column;
  display: flex;
  /* padding-bottom: 95px; */

     

}

 .section-6::before{
   content: "";
      position: absolute;
      top: -150px; /* adjust vertical position of glow */
      left: 50%;
      transform: translateX(-50%);
      width: 1200px;   /* glow width */
      height: 800px;  /* half of width to make half-circle look */
      background: radial-gradient(
        ellipse at center,
        rgba(207, 20, 42, 0.25) 0%,   /* light red core */
        rgba(207, 20, 42, 0.076) 50%,   /* fade out */
        rgba(0, 0, 0, 0) 100%         /* fully transparent edge */
      );
      filter: blur(60px);
      opacity: 0.8;
      pointer-events: none;
 }





 
.hero-section3 {
  text-align: left;
  padding: 80px 60px 60px;
  /* padding-bottom: 120px !important; */

  /* position: sticky; */
  /* z-index: -1; */
  /* top: 10%; */
  /* border: 2px solid ; */
}

.section-label3 {
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: left;
  gap: 8px;
  /* border: 2px solid ; */

}

.section-label3::before {
  content: "•";
  background: linear-gradient(90deg, #00247d, #cf142b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  margin-top: -10px;
}

.hero-section3 h1 {
  font-size: 53px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  /* margin: 0 auto 0px; */
  /* background: linear-gradient(90deg, #00247d, #cf142b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; */
  color: white;
}















































 .clients-wrapper {
      position: relative;
      /* min-height: 100vh; */
      /* background: radial-gradient(circle at top, #3a006a 0%, #000 70%); */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      overflow-x: hidden;
      /* padding-bottom: 100px; */
    }

    /* .clients-wrapper::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: linear-gradient(#111 1px, transparent 1px),
                        linear-gradient(90deg, #111 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: 0.3;
      z-index: 1;
    } */

    .clients-container {
      text-align: center;
      z-index: 2;
      padding: 60px 20px;
      /* max-width: ; */
      width: 100%;
    }

    .clients-subtitle {
      font-size: 0.9rem;
      color: var(--color-2);
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .clients-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 60px;
      line-height: 1.2;
    }

    /* Grid Layout */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0px;
      justify-items: center;
      align-items: center;
    }

    /* Individual Card */
    .client-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      /* border-radius: 12px; */
      width: 230px;
      height: 150px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* transition: all 0.4s ease; */
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .client-logo {
      font-size: 1.2rem;
      font-weight: 600;
      opacity: 0.9;
      /* transition: transform 0.4s ease, opacity 0.4s ease; */
    }

    .client-desc {
      font-size: 0.8rem;
      color: #ccc;
      opacity: 0;
      position: absolute;
      bottom: 15px;
      transition: all 0.4s ease;
      transform: translateY(10px);
    }

    /* Hover Effect */
    /* .client-card:hover {
      transform: translateY(-10px);
      border-color: var(--color-2);
      background: rgba(255, 255, 255, 0.07);
    } */

    .client-card:hover .client-logo {
      transform: scale(0.85) translateY(-8px);
      opacity: 1;
    }

    .client-card:hover .client-desc {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .clients-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 600px) {
      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .clients-title {
        font-size: 1.8rem;
      }

      .client-card {
        width: 120px;
        height: 100px;
      }
    }


    /* .section-7{
      height: 600px;
      background:#141418;
    } */






    .blog-section {
  background-color: #141418;
  color: #fff;
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-content {
  max-width: 600px;
}

.blog-label {
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.blog-label span {
  width: 10px;
  height: 10px;
  background: var(--btn-h-color);
  border-radius: 50%;
  display: inline-block;
}

.blog-title {
  font-size: 60px;
  font-weight: 800;
  margin-top: 20px;
  line-height: 1.1;
}

.blog-button {
  margin-top: 30px;
}

.view-btn {
  background: var(--btn-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 40px;
  transition: 0.3s ease;
  display: inline-block;
}

.view-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    flex-direction: column;
    text-align: center;
  }

  .blog-button {
    margin-top: 50px;
  }

  .blog-title {
    font-size: 40px;
  }
}































 .dg-body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .dg-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }

        /* Main Container */
        .dg-container {
            display: flex;
            max-width: 1400px;
            width: 100%;
            background-color: transparent;
            border-radius: 10px;
            z-index: 1;
            padding: 40px;
            box-sizing: border-box;
            position: relative;
        }

        /* Left Section */
        .dg-left-section {
            flex: 1;
            padding-right: 60px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .dg-logo {
            font-size: 16px;
            font-weight: 600;
            color: #a0a0a0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .dg-dot {
            width: 8px;
            height: 8px;
            background: var(--btn-color);
            border-radius: 50%;
            margin-right: 8px;
        }

        .dg-heading {
            font-size: 4em;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #fff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dg-description {
            font-size: 1.1em;
            line-height: 1.6;
            color: #a0a0a0;
            max-width: 500px;
        }

        /* Right Section */
        .dg-right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding-left: 60px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Search Bar */
        .dg-search-container {
            margin-bottom: 20px;
            position: relative;
        }

        .dg-search-input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .dg-search-input:focus {
            outline: none;
            border-color: var(--color-2);
            box-shadow: 0 0 0 2px rgba(226, 43, 61, 0.2);
        }

        .dg-search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0a0a0;
        }

        /* FAQ Items */
        .dg-faq-item {
            background-color: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }

        .dg-faq-item:last-child {
            border-bottom: none;
        }

        .dg-faq-item:hover {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .dg-faq-question {
            padding: 20px 0;
            font-size: 1.1em;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            user-select: none;
            transition: color 0.3s ease;
        }

        .dg-faq-item:hover .dg-faq-question {
            color: #cf142ab5;
        }

        .dg-toggle-icon {
            font-size: 1.5em;
            font-weight: 400;
            color: var(--color-2);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        .dg-faq-item.active .dg-toggle-icon {
            transform: rotate(45deg);
        }

        .dg-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.4s ease-out;
            padding-bottom: 0;
        }

        .dg-faq-item.active .dg-faq-answer {
            max-height: 500px;
            padding-bottom: 20px;
        }

        .dg-answer-text {
            margin: 0;
            color: #a0a0a0;
            font-size: 1em;
            padding-top: 10px;
            line-height: 1.6;
        }

        /* No Results Message */
        .dg-no-results {
            text-align: center;
            padding: 30px;
            color: #a0a0a0;
            display: none;
        }

        .dg-no-results i {
            font-size: 2em;
            margin-bottom: 15px;
            display: block;
        }

        /* Stats Section */
        .dg-stats-container {
            display: flex;
            margin-top: 30px;
            gap: 30px;
        }

        .dg-stat-item {
            display: flex;
            flex-direction: column;
        }

        .dg-stat-value {
            font-size: 3em;
            font-weight: 700;
            color: var(--color-2);
        }

        .dg-stat-label {
            font-size: 0.9em;
            color: #a0a0a0;
        }

        /* Floating Elements */
        .dg-floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(226, 43, 43, 0.2) 0%, rgba(226, 43, 43, 0) 70%);
            z-index: 0;
            animation: float 15s infinite ease-in-out;
        }

        .dg-floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .dg-floating-element:nth-child(2) {
            bottom: 15%;
            right: 10%;
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-20px) translateX(10px);
            }
            50% {
                transform: translateY(0) translateX(20px);
            }
            75% {
                transform: translateY(20px) translateX(10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .dg-container {
                flex-direction: column;
                padding: 30px;
            }

            .dg-left-section {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }

            .dg-logo {
                justify-content: center;
            }

            .dg-heading {
                font-size: 3em;
            }

            .dg-description {
                max-width: none;
            }

            .dg-right-section {
                padding-left: 0;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .dg-heading {
                font-size: 2.5em;
            }

            .dg-faq-question {
                font-size: 1em;
            }

            .dg-answer-text {
                font-size: 0.9em;
            }

            .dg-container {
                padding: 20px;
            }

            .dg-stats-container {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .dg-heading {
                font-size: 2em;
            }

            .dg-description {
                font-size: 0.9em;
            }

            .dg-faq-question {
                font-size: 0.9em;
                padding: 15px 0;
            }

            .dg-toggle-icon {
                font-size: 1.2em;
            }

            .dg-faq-item.active .dg-faq-answer {
                padding-bottom: 15px;
            }
        }





































         .hero-video-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      /* align-items: center; */
      justify-content: space-between;
      padding: 60px 80px;
      color: #fff;
    }

    .hero-video-section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .hero-video-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0);
      z-index: -1;
    }

    .hero-heading-area {
      flex: 1;
      font-size: 3rem;
      font-weight: bold;
    }

    .hero-content-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      /* text-align: right; */
      /* border: 2px solid red; */
    }
    .hero-heading-area h1{
      margin-top: 70px;
      margin-right:60px;
font-size: 50px;
    }

    .hero-content-area p {
      max-width: 420px;
      margin-bottom: 20px;
      font-size: 18px;
      line-height: 1.6;
    }

    .hero-action-btn {
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 10px;
      background: var(--btn-color);
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .hero-action-btn:hover {
      background-color: #ffdd33;
    }

    @media (max-width: 768px) {
      .hero-video-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 30px;
      }

      .hero-heading-area,
      .hero-content-area {
        align-items: center;
        text-align: center;
      }

      .hero-content-area {
        align-items: center;
      }
    }




































    .footer-section {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid #333;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            /* padding: 0 0px; */
            padding-bottom: 200px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            height: 40px; /* Adjust as needed */
            margin-right: 10px;
        }

        .footer-logo span {
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            line-height: 1;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            border-left: 3px solid ; /* Accent color */
            padding-left: 10px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .footer-column ul li a:hover {
            color: var(--color-2); /* Accent color */
        }

        .footer-column p {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .footer-column a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .footer-column a:hover {
            color: var(--color-2); /* Accent color */
        }

        .social-icons {
            display: flex;
            margin-top: 20px;
        }

        .social-icons a {
            color: #ffffff;
            font-size: 18px;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--color-2); /* Accent color */
        }

        .footer-bottom {
            background-color: #111111;
            color: #cccccc;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            border-top: 1px solid #222222;
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #cccccc;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--color-2); /* Accent color */
        }

        .footer-copyright {
            margin-top: 10px;
            /* margin-bottom: 10px; */
        }

        .footer-background-text {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-family:sans-serif;
    font-weight: bold;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.079); /* 👈 Stroke line added */
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 5px;
    line-height: 1;
}


        /* Responsive adjustments */
        @media (max-width: 992px) {
            .footer-column {
                flex-basis: 48%;
            }
            .footer-container {
                justify-content: center;
            }
            .footer-background-text {
                font-size: 150px;
                bottom: -30px;
            }
        }

        @media (max-width: 768px) {
            .footer-column {
                flex-basis: 100%;
                text-align: center;
            }
            .footer-logo, .social-icons {
                justify-content: center;
            }
            .footer-column h3 {
                border-left: none;
                padding-left: 0;
                text-align: center;
            }
            .footer-bottom-container {
                flex-direction: column;
            }
            .footer-bottom-links {
                margin-top: 15px;
            }
            .footer-background-text {
                font-size: 100px;
                bottom: -10px;
            }
        }

        @media (max-width: 480px) {
            .footer-logo span {
                font-size: 24px;
            }
            .footer-background-text {
                font-size: 70px;
                bottom: 0px;
                letter-spacing: 2px;
            }
        }



         .footer-section::before{
   content: "";
      position: absolute;
      top: 400px; /* adjust vertical position of glow */
      left: 50%;
      transform: translateX(-50%);
      width: 1200px;   /* glow width */
      height: 400px;  /* half of width to make half-circle look */
      background: radial-gradient(
        ellipse at center,
        rgba(207, 20, 42, 0.25) 0%,   /* light red core */
        rgba(207, 20, 42, 0.076) 50%,   /* fade out */
        rgba(0, 0, 0, 0) 100%         /* fully transparent edge */
      );
      filter: blur(60px);
      opacity: 0.8;
      pointer-events: none;
 }