/* ============================================
   1. VARIABLES & RESET
   ============================================ */
:root {
  --centric-blue: #1F7EF6;
  --blue2: #096BE1;
  --blue3: #4896FA;
  --blue4: #0995e3;
  --ligh-gray: #F4F3F1;
  --gray: #B7BBBC;
  --gray-blue: #627A99;
  --gray-dark: #212F41;
  --new-blue: #8FA8C8;
  --footer-blue: #092242;
  --border: #151F2C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
   /* overflow-x: hidden; */
  max-width: 100%;
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.5em;
  color: #333333;
  background-color: #000000;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================
   2. HEADER MAIN & DESKTOP HOVER
   ============================================ */
.header-main {
  position: fixed;
  z-index: 1001;
  width: 100%;
  background: rgba(0, 0, 0, 0.76) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.5s ease-in-out;
}

.header-inner-main {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 50px;

}

/* Logo */
/* Logo styling fix */
.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.main-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Montserrat:wght@400;700&display=swap'); */
/* Desktop Navigation */
.header-nav.desktop-nav {
  /* display: none;
  align-items: center;
  gap: 5px; */
  /* font-family: 'Open Sans', sans-serif; */
  display: none;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  margin-right: 20px;
}

.nav-link {
  padding: 12px 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

/* --- JUNU HOVER RAVADYU CHE --- */
.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

@media (hover: hover) {
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 40%;
  }
}
/* 

.head-btn {
  padding: 12px 28px;
  border-radius: 25px;
  background: linear-gradient(267.29deg, #0995E3 0%, #096BE1 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.head-btn:hover {
  background: linear-gradient(267.29deg, #0884ca 0%, #085fc8 100%);
  color: #ffffff;

  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(9, 149, 227, 0.3);
} */
 
/* Desktop Contact Button */
.head-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  padding: 12px 28px;          /* Fixed padding - change nahi thay */
  border-radius: 25px;
  background: transparent;
  color: #0995E3;
  border: 2px solid #0995E3;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

/* Bottom to Top Fill */
.head-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(267.29deg, #0995E3 0%, #096BE1 100%);
  border-radius: 25px;
  transition: height 0.35s ease-in-out;   /* Same speed */
  z-index: -1;
}

/* Arrow */
.head-btn::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0L6.59 1.41L12.17 7H0V9H12.17L6.59 14.59L8 16L16 8L8 0Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  opacity: 0;
  height: 100%;
  width: 20px;
  transition: all 0.35s ease-in-out;     /* Same speed */
  z-index: 2;
}

/* Hover - size same j rahe */
.head-btn:hover {
  color: #ffffff;
  border-color: #0995E3;
  box-shadow: 0 4px 12px rgba(9, 149, 227, 0.3);

}

.head-btn:hover::before {
  height: 100%;                         
}

.head-btn:hover::after {
  opacity: 1;                             
}
/* ============================================
   3. MOBILE MENU OVERLAY & CAPSULE BUTTON
   ============================================ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  margin-top: 100px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Mobile Capsule Button */
.mobile-btn-wrapper {
  margin-top: auto;
  margin-bottom: 60px;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  padding: 0 30px !important;
}

.mobile-btn-wrapper a {
  width: 100% !important;
  max-width: 280px;
  text-decoration: none;
}

.mobile-contact-btn {
  width: 100% !important;
  height: 52px !important;
  background: linear-gradient(267.29deg, #0995E3 0%, #096BE1 100%) !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  /* Pure Capsule */
  font-size: 16px !important;
  font-weight: 500 !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(9, 149, 227, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mobile-contact-btn:hover {

  background: linear-gradient(267.29deg, #0884ca 0%, #085fc8 100%);
  color: #ffffff;


}

/* Hamburger Circle */
.mobile-menu-circle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2101;
  margin-left: auto;
}

.hamburger {
  width: 18px;
  height: 12px;
  position: relative;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s ease;
  margin-left: -9px;
}

.line:nth-child(1) {
  top: 0;
}

.line:nth-child(2) {
  top: 5px;
}

.line:nth-child(3) {
  top: 10px;
}

.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.is-active .line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ============================================
   4. RESPONSIVE BREAKPOINTS
   ============================================ */
@media screen and (min-width: 1024px) {
  .header-nav.desktop-nav {
    display: flex;
  }

  .header-child {
    display: block;
  }

  .mobile-menu-circle-btn {
    display: none;
  }
}

@media screen and (max-width: 1023px) {

  .header-child {
    display: none !important;
  }

  .mobile-menu-circle-btn {
    display: flex;
  }

  .header-inner-main {
    padding: 0 20px;
  }
}

/*----------Hero------------*/

/* 

.section-plm-key-slider {
  background-color: #000000;
  padding: 50px 0;

  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}


.section-plm-key-slider .row-intro .col {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 80px;

}

@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.general-title {
  opacity: 0;
  text-align: center;
  color: white;

}

.start-text-animation .h1-main {
  animation: fadeInTitle 1s forwards;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;

  line-height: 1.2;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;

}

.start-text-animation h2.general-title {
  animation: fadeInTitle 1s forwards;
  animation-delay: 0.3s;

  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #ffffff;
}

.carousel-outer-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.shadow-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.shadow-overlay.left {
  left: 0;
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.shadow-overlay.right {
  right: 0;
  background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.carousel-container {
  opacity: 0;
  animation: fadeInTitle 1s forwards;
  animation-delay: 0.8s;
}


.service-card {
  padding: 30px 40px;
  text-align: left;
  outline: none;
  transition: transform 0.3s ease;
}

.icon-box img {
  width: 60px !important;
  height: 60px;
  margin-bottom: 30px;
  filter: brightness(0.9) sepia(1) hue-rotate(190deg) saturate(6) drop-shadow(0 0 10px rgba(0, 170, 255, 0.4));
}


.service-name {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-text {
  font-size: 15px;
  line-height: 1.6;
  color: #aaaaaa;
}

.slick-track {
  display: flex !important;
  align-items: flex-start;
}


@media (max-width: 768px) {
  .h1-main {
    font-size: 32px;
  }

  .start-text-animation h2.general-title {
    font-size: 24px;
    line-height: 34px;
  }

  .shadow-overlay {
    width: 80px;
  }


}

* {
  outline: none;
  box-sizing: border-box;
}

@media (max-width: 500px) {
  .section-plm-key-slider {
    padding-top: 80px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .row-intro {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    padding: 0 15px !important;
  }

  .start-text-animation .h1-main {
    font-size: 22px !important;
    line-height: 1.2 !important;
    transform: none !important;
    opacity: 1 !important;
    margin-top: 0 !important;
  }

  .start-text-animation h2.general-title {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
  }


  .carousel-outer-wrapper {
    margin-top: 20px !important;
  }
}


@media (max-width: 360px) {
  .section-plm-key-slider {
    padding-top: 70px !important;
  }

  .start-text-animation .h1-main {
    font-size: 20px !important;
  }
} */
 /*============================================
 Hero
 /* --- Section Base Setup (Original) --- */
.section-plm-key-slider {
  background-color: #000000;
  padding: 80px 0; 
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* --- Row Intro (Header) (Original) --- */
.section-plm-key-slider .row-intro .col {
  max-width: 850px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

/* --- Animations (Original) --- */
@keyframes fadeInTitle {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.general-title {
  opacity: 0;
  text-align: center;
  color: white;
}

.start-text-animation .h1-main {
  animation: fadeInTitle 1s forwards;
  font-size: 40px; /* Desktop Font Size */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
}

.start-text-animation h2.general-title {
  animation: fadeInTitle 1s forwards;
  animation-delay: 0.3s;
  font-size: 20px; /* Desktop Subtitle Size */
  line-height: 1.6;
  font-weight: 400;
  color: #aaaaaa;
}

/* --- Black Shadow Overlay Design (Original) --- */
.carousel-outer-wrapper {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.shadow-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.shadow-overlay.left { left: 0; background: linear-gradient(to right, #000000 15%, transparent 100%); }
.shadow-overlay.right { right: 0; background: linear-gradient(to left, #000000 15%, transparent 100%); }

/* --- Service Card Styling (Original) --- */
.service-card {
  padding: 40px;
  text-align: left;
  transition: all 0.4s ease;
  background: transparent;
}

.service-card:hover {
  transform: translateY(-10px);
}

.icon-box img {
  width: 50px !important;
  height: 50px;
  margin-bottom: 25px;
  filter: brightness(0.9) sepia(1) hue-rotate(190deg) saturate(6) drop-shadow(0 0 15px rgba(0, 170, 255, 0.5));
}

.service-name {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-text {
  font-size: 15px;
  line-height: 1.7;
  color: #999999;
}

/* =======================================================
   RESPONSIVE MEDIA QUERIES (Only Changes Added Here)
   ======================================================= */

/* 1. Laptop / Small Desktop (Max 1200px) */
@media (max-width: 1200px) {
  .start-text-animation .h1-main {
    font-size: 40px; 
  }
  .carousel-outer-wrapper {
    max-width: 100%;
    padding: 0 20px; 
  }
}

/* 2. Tablet (Max 991px) */
@media (max-width: 991px) {
  .section-plm-key-slider {
    padding: 70px 0;
  }
  
  .start-text-animation .h1-main {
    font-size: 36px;
  }
  
  .start-text-animation h2.general-title {
    font-size: 18px;
  }

  .service-card {
    padding: 35px; 
  }
  
  .shadow-overlay {
    width: 100px; 
  }
}

/* 3. Mobile Landscape (Max 768px) *//* TOUCH SCROLL FIX */
@media (max-width: 768px) {

  .carousel-outer-wrapper {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important; /* iOS smooth scroll */
    scroll-snap-type: x mandatory;               /* Snap to each card */
    cursor: grab;
  }

  .splide__list,
  .swiper-wrapper,
  .slick-track,
  .carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;       /* Full width expand */
    touch-action: pan-x !important;      /* Touch scroll enable */
  }

  /* Snap each card */
  .splide__slide,
  .swiper-slide,
  .slick-slide,
  .carousel-slide {
    width: 75vw !important;
    min-width: 75vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important; /* Snap on swipe */
  }

  /* Scrollbar hide karo */
  .carousel-outer-wrapper::-webkit-scrollbar {
    display: none !important;
  }
  .carousel-outer-wrapper {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
}
/* 4. Mobile Portrait (Max 500px) */
@media (max-width: 500px) {
  .section-plm-key-slider { 
    padding-top: 60px !important; 
    padding-bottom: 40px !important;
  }
  
  .start-text-animation .h1-main { 
    font-size: 26px !important; /* Mobile Font */
    line-height: 1.2;
  }
  
  .start-text-animation h2.general-title { 
    font-size: 15px !important; 
  }
  
  .carousel-outer-wrapper {
    padding: 0 15px;
  }

  .service-card {
    padding: 20px; /* Compact Card */
  }
  
  .service-name {
    font-size: 15px;
  }
  
  .service-text {
    font-size: 14px;
  }
  
  /* Mobile ma shadow thodo niche karva */
  .shadow-overlay {
    width: 60px; 
  }
}

/* 5. Extra Small (Max 360px) */
@media (max-width: 360px) {
  .start-text-animation .h1-main { 
    font-size: 22px !important; 
  }
  .service-card {
    padding: 18px;
  }
  .icon-box img {
    width: 40px !important;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════
   Services.css 
═══════════════════════════════════════════════ */

/* ── RESET ── */
.svc-wrap *, .svc-wrap *::before, .svc-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

/* ══════════════════════════════
   WRAPPER
══════════════════════════════ */
.svc-wrap {
  background: #0a0a0a;
  width: 100%;

}

/* ══════════════════════════════
   HEADER  (desktop — sticky)
══════════════════════════════ */
.svc-header {
  padding: 100px 80px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #0a0a0a;
}

.svc-overline {
   font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d5eb08;
  margin-bottom: 6px;
  /* text-align: center; */
}

.svc-main-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f0f0f0;

}

/* ══════════════════════════════
   DESKTOP LAYOUT  (> 1024px)
══════════════════════════════ */
.svc-body {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: start;
  padding: 30px 80px 0;
}

/* LEFT — sticky nav */
.svc-sticky {
  position: sticky;
  top: 220px;
  padding-right: 40px;
  padding-bottom: 60px;
}

.svc-sticky-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d5eb08;
  margin-bottom: 6px;
}

.svc-nav { list-style: none; }

.svc-nav-item {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #666;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.25s ease;
  user-select: none;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  white-space: normal;
  overflow: visible;
}
.svc-nav-item:hover     { color: #ccc; }
.svc-nav-item.is-active { color: #f5f5f5; font-weight: 800; }

/* RIGHT — scrollable feed */
.svc-feed {
  padding-left: 60px;
  border-left: 1px solid #141414;
}

.svc-entry {
  min-height: 70vh;
  display: flex;
  scroll-margin-top: 220px; /* accounts for sticky header */
  align-items: center;
  padding: 48px 0;
  opacity: 0.45;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.svc-entry.is-active { opacity: 1; transform: translateY(0); }

.svc-content { max-width: 460px; width: 100%; }

/* Desktop image */
.svc-content-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid #151515;
  display: block;
}

.svc-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.85) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.svc-entry.is-active .svc-content-image {
  filter: brightness(1) saturate(1);
  transform: scale(1.03);
}

.svc-content-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10, 10, 10, 0.6) 80%,
    #0a0a0a 100%
  );
}

.svc-content-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border: 1px solid #1e40af35;
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  margin-bottom: 26px;
  box-shadow: 0 0 0 1px #0a0a0a, 0 0 18px #1d4ed818, 0 4px 20px rgba(0,0,0,.5);
}

.svc-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e8e8e8;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.svc-content-desc {
  font-size: 16px;
  color: #999;
  line-height: 1.85;
}

/* ══════════════════════════════
   MOBILE + TABLET  ≤ 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  .svc-header {
    padding: 90px 20px 24px;
    position: static;
    background: #0a0a0a;
  }
  .svc-main-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    color: #f0f0f0;
  }
  .svc-mobile {
    display: flex;
    flex-direction: column;
  }
  .svc-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
  }
  .svc-tabs::-webkit-scrollbar { display: none; }
  .svc-tab {
    flex-shrink: 0;
    padding: 11px 18px;
    border: none;
    border-right: 1px solid #141414;
    background: transparent;
    color: #3a3a3a;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    position: relative;
    letter-spacing: 0.01em;
  }
  .svc-tab::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 0; height: 2px;
    background: #3b82f6;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .svc-tab.is-active { color: #e0e0e0; background: #0f0f0f; }
  .svc-tab.is-active::after { width: 100%; }
  .svc-tab:hover:not(.is-active) { color: #888; background: #0c0c0c; }
  .svc-panel-wrap { overflow: hidden; }
  .svc-panel { display: flex; flex-direction: column; }
  .svc-panel-image-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .svc-panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.72) saturate(0.9);
  }
  .svc-panel-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(10,10,10,0.65) 75%, #0a0a0a 100%);
  }
  .svc-panel-tag {
    position: absolute;
    top: 12px; right: 14px;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .svc-panel-body {
    padding: 20px 20px 28px;
    display: flex;
    flex-direction: column;
  }
  .svc-panel-icon-row { margin-bottom: 14px; }
  .svc-panel-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #0d1829 0%, #1a3357 100%);
    border: 1px solid #1e3a6e40;
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa;
    box-shadow: 0 0 24px #1d4ed820, 0 2px 12px rgba(0,0,0,.5);
  }
  .svc-panel-title {
    font-size: clamp(1.3rem, 4.5vw, 1.7rem);
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .svc-panel-accent {
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    margin-bottom: 14px;
  }
  .svc-panel-desc {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 22px;
  }
  .svc-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .svc-dot {
    width: 5px; height: 5px;
    background: #222;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }
  .svc-dot.is-active {
    background: #3b82f6;
    width: 20px;
    box-shadow: 0 0 6px #3b82f670;
  }
  .svc-dot:hover:not(.is-active) { background: #444; }
}

/* 480px */
@media (max-width: 480px) {
  .svc-header { padding: 80px 16px 20px; }
  .svc-panel-image-wrap { height: 190px; }
  .svc-panel-body { padding: 16px 16px 24px; }
  .svc-panel-title { font-size: 1.2rem; }
  .svc-panel-desc { font-size: 12.5px; }
}

/* 360px */
@media (max-width: 360px) {
  .svc-header { padding: 75px 12px 16px; }
  .svc-tab { font-size: 0.65rem; padding: 9px 13px; }
  .svc-panel-image-wrap { height: 170px; }
  .svc-panel-body { padding: 14px 14px 20px; }
  .svc-panel-title { font-size: 1.1rem; }
  .svc-panel-desc { font-size: 12px; line-height: 1.7; }
  .svc-panel-icon { width: 38px; height: 38px; }
}
/*--------------Delivery process---------------*/

.delivery-main-wrapper {
  background-color: #000;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.delivery-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.process-header {
  text-align: center;
  margin-bottom: 100px;
}

.main-title-text {
  font-size: 40px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
}

.process-row {
  display: flex;
  align-items: center;
  margin-bottom: 250px;
  position: relative;
  width: 100%;
}

.left-img  { flex-direction: row; }
.right-img { flex-direction: row-reverse; }

.content-holder {
  flex: 0.8;
  padding: 0 60px;
  position: relative;
  z-index: 20;
  margin-top: -10px;
}

.section-tab h2.title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 30px;
  line-height: 41px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  background: linear-gradient(180deg, #0C7DE5 0%, #51B3EC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0, 0, 0, 1);
}

.main-desc {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
}

.bullet-points li {
  color: #aaaaaa;
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.check-icon {
  color: #51B3EC;
  margin-right: 10px;
}

.image-holder {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.big-process-img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 0 30px rgba(12, 125, 229, 0.4));
}

.dashed-path {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.dashed-path svg {
  width: 100%;
  height: 100%;
}

/* ── Right Vertical Nav ── */
.right-vertical-nav {
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

.right-vertical-nav.visible {
  opacity: 1;
  visibility: visible;
}

.vertical-line-bg {
  position: absolute;
  right: 4px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #222;
  z-index: -1;
}

.vertical-line-active {
  width: 100%;
  background: #0C7DE5;
  box-shadow: 0 0 10px #51B3EC;
  transition: height 0.4s ease;
}

.nav-dot-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  height: 15px;
  pointer-events: auto;
}

.dot-label {
  color: #555;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-dot-wrapper.active .dot-label,
.nav-dot-wrapper:hover .dot-label {
  opacity: 1;
  color: #51B3EC;
}

.nav-dot {
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  transition: 0.3s;
}

.nav-dot-wrapper.active .nav-dot {
  background: #51B3EC;
  box-shadow: 0 0 10px #51B3EC;
  transform: scale(1.3);
}

/* ── Navigation Buttons ── */
.step-navigation-btns {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.nav-btn {
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}

.nav-btn.next {
  color: white;
  margin-left: auto;
}

.nav-btn:hover {
  opacity: 1;
  color: #1f7ef6;
}

/* ── Skip Button ── */
.skip-container {
  text-align: center;
  /* padding: 50px 0; */
}

.skip-link {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  opacity: 0.5;
  pointer-events: auto;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Vertical nav hide ≤1100px */
@media (max-width: 1100px) {
  .right-vertical-nav { display: none; }
}

/* Stack layout ≤992px */
@media (max-width: 992px) {
  .process-row {
    flex-direction: column !important;
    margin-bottom: 120px;
    align-items: flex-start;
  }
  .image-holder       { width: 100%; margin-bottom: 40px; }
  .content-holder     { width: 100%; padding: 0; }
  .dashed-path        { display: none; }
  .right-vertical-nav { display: none; }
}

/* Tablet ≤768px */
@media (max-width: 768px) {
  .delivery-main-wrapper  { padding: 40px 0; }
  .process-header         { margin-bottom: 40px; padding: 0 20px; }
  .main-title-text        { font-size: 22px; letter-spacing: -0.2px; }
  .delivery-container     { padding: 0 20px; }
  .process-row            { margin-bottom: 70px; }
  .image-holder           { margin-bottom: 28px; }
  .big-process-img        { max-width: 100%; }
  .section-tab h2.title   { font-size: 22px; line-height: 1.3; }
  .main-desc              { font-size: 14px; }
  .bullet-points li       { font-size: 14px; }
  .step-navigation-btns   { margin-top: 24px; padding-top: 16px; gap: 20px; }
  .nav-btn                { font-size: 13px; }
}

/* Mobile ≤480px */
@media (max-width: 480px) {
  .delivery-main-wrapper  { padding: 30px 0; }
  .process-header         { margin-bottom: 30px; padding: 0 16px; }
  .main-title-text        { font-size: 18px; }
  .delivery-container     { padding: 0 16px; }
  .process-row            { margin-bottom: 50px; }
  .image-holder           { margin-bottom: 20px; }
  .section-tab h2.title   { font-size: 18px; line-height: 1.3; margin-bottom: 12px; }
  .main-desc              { font-size: 13px; margin-bottom: 12px; }
  .bullet-points li       { font-size: 13px; margin-bottom: 6px; }
  .step-navigation-btns   { margin-top: 18px; padding-top: 14px; gap: 16px; }
  .nav-btn                { font-size: 12px; }
}

/* 360px */
@media (max-width: 400px) {
  .delivery-main-wrapper  { padding: 24px 0; }
  .process-header         { margin-bottom: 24px; padding: 0 12px; }
  .main-title-text        { font-size: 15px; letter-spacing: 0; }
  .delivery-container     { padding: 0 12px; }
  .process-row            { margin-bottom: 40px; }
  .section-tab h2.title   { font-size: 16px; margin-bottom: 10px; }
  .main-desc              { font-size: 12.5px; }
  .bullet-points li       { font-size: 12.5px; margin-bottom: 5px; }
  .check-icon             { margin-right: 7px; }
  .step-navigation-btns   { margin-top: 14px; padding-top: 12px; gap: 12px; }
  .nav-btn                { font-size: 11px; }
}
/*--------------Industries-----------*/
/* Section Styles */
.industries-section {
  background-color: #05070a;
  padding: 50px 8%;
  font-family: 'Inter', sans-serif;
  color: #fff;
  min-height: 100vh;
}

.industries-heading {
  font-size: 40px;
  /* font-weight: 750; */
  font-weight: 800;
  margin-bottom: 50px;
  text-align: left;
  letter-spacing: -0.5px;
  font-family: "Inter", sans-serif;

}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Styles */
.industries-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 12px 0;
  border-radius: 16px;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-tab {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  color: #999;
}

.industry-tab:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
}

.industry-tab.active {
  background-color: rgba(0, 168, 255, 0.12);
  border-left: 4px solid #00a8ff;
  color: #00a8ff !important;
  padding-left: 25px;
}

/* Custom Scrollbar */
.industries-sidebar::-webkit-scrollbar {
  width: 5px;
}

.industries-sidebar::-webkit-scrollbar-track {
  background: #05070a;
  border-radius: 10px;
}

.industries-sidebar::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}

.industries-sidebar::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Content Area */
.content-display {
  position: relative;
  height: 600px;
}

.image-box {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  background-color: #111;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.8) 60%, transparent 100%);
  padding: 60px 40px 40px 40px;
}

.card-title {
  font-size: 32px;
  color: #00a8ff;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.card-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  max-width: 850px;
  font-family: 'Open Sans', sans-serif;

}

/**/
/* --- Desktop and General Styles (Tamaro existing code optimized) --- */
/* .design.industries-section {
  background-color: #05070a;
  padding: 80px 8%;
  font-family: 'Inter', sans-serif;
  color: #fff;
  min-height: 100vh;
  box-sizing: border-box;
}

.industries-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: left;
  letter-spacing: -1px;
}

.industries-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.industries-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 12px 0;
  border-radius: 16px;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-tab {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  color: #999;
}

.industry-tab.active {
  background-color: rgba(0, 168, 255, 0.12);
  border-left: 4px solid #00a8ff;
  color: #00a8ff !important;
  padding-left: 25px;
}

.content-display {
  position: relative;
  height: 600px;
}

.image-box {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  background-color: #111;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 1) 0%, rgba(5, 7, 10, 0.7) 70%, transparent 100%);
  padding: 60px 40px 40px 40px;
}

/* --- Fully Responsive Media Queries --- */
/* For Mobile (up to 768px) */
@media (max-width: 768px) {
  .industries-section {
    padding: 40px 20px;
  }
  .industries-heading {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industries-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 10px;
    border-radius: 12px;
    scrollbar-width: none;
    max-height: unset;
  }
  .industries-sidebar::-webkit-scrollbar {
    display: none;
  }
  .industry-tab {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    border-left: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .industry-tab.active {
    border-left: none;
    background-color: #00a8ff;
    color: #fff !important;
    padding-left: 14px;
  }
  .content-display {
    height: auto;
  }
  .image-box {
    height: 320px;
    border-radius: 16px;
  }
  .glass-card {
    padding: 30px 16px 16px 16px;
  }
  .card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .card-desc {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* 480px */
@media (max-width: 480px) {
  .industries-section {
    min-height: unset !important;  /* ✅ Black space fix */
    height: auto !important;
  }
  .image-box {
    height: 280px;
    min-height: unset !important;  /* ✅ */
  }
  .card-title {
    font-size: 16px;
  }
  .card-desc {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .industries-section {
    padding: 30px 12px !important;
    min-height: unset !important;   
    height: auto !important;
  }
  .industries-heading {
    font-size: 20px;
  }
  .industry-tab {
    font-size: 11px;
    padding: 7px 12px;
  }
  .image-box {
    height: 240px !important;
    min-height: unset !important; 
    border-radius: 12px;
  }
  .card-title {
    font-size: 15px;
  }
  .card-desc {
    font-size: 11px;
    line-height: 1.5;
  }
}
/*end*/
/*---------techsec----------*/
:root {
  --centric-blue: #1F7EF6;
  --gray-light: rgba(0, 0, 0, 0.1);
}

.tech-heading-wrapper {
  text-align: center;
  margin-bottom: 50px;
  z-index: 20;
}

.tech-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.blue-gradient {
  color: var(--centric-blue);
}

.tech-underline {
  width: 70px;
  height: 5px;
  background: var(--centric-blue);
  margin: 15px auto 0;
  border-radius: 5px;
}

.technology-section-container {
  background-color: #ffffff;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

/* ── Orbit Wrapper - Scale fix ── */
.animated-logos {
  position: relative;
  width: 850px;
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center center;
}

/* Rings */
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.8px dashed var(--gray) !important;
  border-radius: 50%;
  pointer-events: none;
}

.ring-inner {
  width: 440px;
  height: 440px;
}

.ring-outer {
  width: 750px;
  height: 750px;
}

.start-animation .logo-main {
  animation: fadeinLogo 0.7s forwards;
  animation-delay: 0.2s !important;
}

.logo-main {
  position: absolute;
  width: 140px;
  height: 140px;
  z-index: 25;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-circle {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.center-brand-logo {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.logo-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.start-animation .logo-node { opacity: 1; }

.start-animation .logo-node.inner {
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-220px);
}

.start-animation .logo-node.outer {
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-375px);
}

.icon-wrapper {
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f2f2f2;
  transform: rotate(calc(-1 * var(--angle))) scale(0);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.start-animation .icon-wrapper {
  transform: rotate(calc(-1 * var(--angle))) scale(1);
  transition-delay: var(--delay);
}

.inner .icon-wrapper {
  width: 105px;
  height: 105px;
}

.inner img { width: 55px; }

.outer .icon-wrapper {
  width: 75px;
  height: 75px;
  opacity: 0.85;
}

.outer img { width: 35px; }

.icon-wrapper img[alt="IBM DB2"] {
  width: 100% !important;
  height: 65% !important;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

@keyframes fadeinLogo {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

.icon-wrapper:hover {
  transform: rotate(calc(-1 * var(--angle))) scale(1.2) !important;
  border-color: var(--centric-blue);
  box-shadow: 0 10px 25px rgba(31, 126, 246, 0.2);
  z-index: 100;
  cursor: pointer;
}

.tech-name {
  position: absolute;
  bottom: -30px;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  opacity: 0;
  white-space: nowrap;
}

.icon-wrapper:hover .tech-name { opacity: 1; }

/* ── See All Link ── */
.tech-see-all-wrapper {
  margin-top: 48px;
  text-align: center;
}

.tech-see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
  font-family: 'Segoe UI', sans-serif;
}

.tech-see-all-link:hover {
  border-color: #2563eb;
  gap: 14px;
}

/* ── Orbit Rotation ── */
.orbit-inner,
.orbit-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.start-animation .orbit-inner {
  animation: rotateCW 60s linear infinite;
}

.start-animation .orbit-outer {
  animation: rotateCCW 80s linear infinite;
}

.logo-node { pointer-events: auto; }

.start-animation .orbit-inner .icon-wrapper {
  animation: unrotateCW 60s linear infinite;
}

.start-animation .orbit-outer .icon-wrapper {
  animation: unrotateCCW 80s linear infinite;
}

@keyframes rotateCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes unrotateCW {
  from { transform: rotate(calc(-1 * var(--angle))) scale(1); }
  to { transform: rotate(calc(-1 * var(--angle) - 360deg)) scale(1); }
}

@keyframes unrotateCCW {
  from { transform: rotate(calc(-1 * var(--angle))) scale(1); }
  to { transform: rotate(calc(-1 * var(--angle) + 360deg)) scale(1); }
}

.icon-wrapper img[alt="IBM DB2"] {
  width: 100% !important;
  height: 65% !important;
  object-fit: contain;
  padding: 5px;
}

.icon-wrapper:hover .tech-name {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ======================
   RESPONSIVE - Scale orbit
   ====================== */

/* Tablet Large (max 1100px) */
@media (max-width: 1100px) {
  .animated-logos {
    width: 750px;
    height: 750px;
    transform: scale(0.88);
    margin: -50px 0;
  }
}

/* Tablet (max 900px) */
@media (max-width: 900px) {
  .technology-section-container {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .animated-logos {
    width: 850px;
    height: 850px;
    transform: scale(0.72);
    margin: -100px 0;
  }

  .tech-title {
    font-size: 32px;
  }

  .tech-see-all-wrapper {
    margin-top: 20px;
  }
}

/* Tablet Portrait (max 768px) */
@media (max-width: 768px) {
  .technology-section-container {
    padding: 50px 0 30px;
  }

  .animated-logos {
    width: 850px;
    height: 850px;
    transform: scale(0.62);
    margin: -130px 0;
  }

  .tech-title {
    font-size: 28px;
  }

  .tech-heading-wrapper {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .tech-see-all-wrapper {
    margin-top: 10px;
  }

  .tech-see-all-link {
    font-size: 15px;
  }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {
  .technology-section-container {
    padding: 40px 0 20px;
  }

  .animated-logos {
    width: 850px;
    height: 850px;
    transform: scale(0.50);
    margin: -170px 0;
  }

  .tech-title {
    font-size: 24px;
  }

  .tech-underline {
    width: 50px;
    height: 4px;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .animated-logos {
    transform: scale(0.43);
    margin: -195px 0;
  }

  .tech-title {
    font-size: 22px;
  }

  .tech-see-all-link {
    font-size: 14px;
  }
}

/* 360px */
@media (max-width: 380px) {
  .technology-section-container {
    padding: 30px 0 10px;
  }

  .animated-logos {
    transform: scale(0.36);
    margin: -220px 0;
  }

  .tech-title {
    font-size: 20px;
  }

  .tech-heading-wrapper {
    margin-bottom: 20px;
  }

  .tech-see-all-wrapper {
    margin-top: 0;
  }

  .tech-see-all-link {
    font-size: 13px;
  }
}
/*-----------TechPage----------*/
/* Main Container */
.tech-universe {
  min-height: 100vh;
  background: #000000;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Animated Background Orbs */
.tech-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.tech-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.tech-orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.tech-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: 150px;
  right: -150px;
  animation-delay: 7s;
}

.tech-orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -100px) scale(1.1); }
  66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* Main Container */
.tech-container-main {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Section */
.tech-header-section {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.tech-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tech-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
}

.tech-main-heading {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.tech-gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tech-description {
  font-size: 16px;
  color: #d1d7db;
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

/* Filter Section */
.tech-filter-section {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.tech-filter-wrapper {
  display: flex;
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}

.tech-filter-btn {
  padding: 12px 28px;
  font-size: 1.3rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.tech-filter-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
  z-index: -1;
}

.tech-filter-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.tech-filter-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.tech-filter-btn.active::before {
  opacity: 1;
}

/* Technology Cards Grid */
.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Technology Card */
.tech-card-unique {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 40px 30px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardAppear 0.6s ease-out backwards;
  overflow: hidden;
}

.tech-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 24px;
}

.tech-card-unique:hover .tech-card-glow { opacity: 1; }

.tech-card-border {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tech-card-unique:hover .tech-card-border { opacity: 1; }

.tech-card-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.tech-icon-wrapper {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card-unique:hover .tech-icon-wrapper {
  transform: translateY(-10px) scale(1.1) rotate(5deg);
}

.tech-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.tech-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: filter 0.5s ease;
}

.tech-card-unique:hover .tech-icon-img {
  filter: drop-shadow(0 8px 24px rgba(102, 126, 234, 0.6));
}

.tech-icon-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tech-card-unique:hover .tech-icon-ring { opacity: 1; }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tech-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card-unique:hover .tech-card-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-card-category {
  font-size: 0.85rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.tech-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
}

.tech-card-unique:hover .tech-card-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.tech-card-unique .tech-icon-img[alt="Express.js"],
.tech-card-unique:hover .tech-icon-img[alt="Express.js"] {
  filter: invert(1) brightness(100%) !important;
  transition: filter 0.3s ease;
}

.tech-icon-ibm {
  width: 90px !important;
  height: 90px !important;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.2) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.tech-card-unique:hover .tech-icon-ibm {
  background: transparent;
  filter: brightness(1.3) contrast(1.3) drop-shadow(0 8px 24px rgba(102, 126, 234, 0.6));
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardAppear {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

/* =====================
   TABLET (max 1024px)
   ===================== */
@media (max-width: 1024px) {
  .tech-main-heading {
    font-size: 3rem;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
  }
}

/* =====================
   TABLET PORTRAIT (max 992px)
   padding-top fix for sticky navbar
   ===================== */
@media (max-width: 992px) {
  .tech-universe {
    padding: 100px 20px 60px 20px;
  }
}

/* =====================
   MOBILE (max 768px)
   ===================== */
@media (max-width: 768px) {
  .tech-universe {
    padding: 100px 15px 60px 15px;
  }

  .tech-main-heading {
    font-size: 2.5rem;
  }

  .tech-description {
    font-size: 1rem;
  }

  .tech-header-section {
    margin-bottom: 40px;
  }

  .tech-filter-section {
    margin-bottom: 40px;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .tech-card-unique {
    padding: 30px 20px;
  }

  .tech-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .tech-icon-img {
    width: 60px;
    height: 60px;
  }

  .tech-filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* =====================
   SMALL MOBILE (max 640px)
   ===================== */
@media (max-width: 640px) {
  .tech-main-heading {
    font-size: 2rem;
  }

  .tech-filter-wrapper {
    padding: 6px;
    gap: 8px;
  }

  .tech-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* =====================
   MOBILE (max 480px)
   ===================== */
@media (max-width: 480px) {
  .tech-universe {
    padding: 100px 12px 50px 12px;
  }

  .tech-main-heading {
    font-size: 1.8rem;
  }

  .tech-badge {
    font-size: 0.85rem;
    padding: 6px 18px;
    letter-spacing: 1.5px;
  }

  .tech-description {
    font-size: 0.92rem;
  }

  .tech-header-section {
    margin-bottom: 30px;
  }

  .tech-filter-section {
    margin-bottom: 30px;
  }

  .tech-filter-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tech-card-unique {
    padding: 25px 15px;
    
  }

  .tech-card-title {
    font-size: 1rem;
  }

  .tech-card-category {
    font-size: 0.75rem;
  }

  .tech-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .tech-icon-img {
    width: 50px;
    height: 50px;
  }
}

/* =====================
   360px
   ===================== */
@media (max-width: 380px) {
  .tech-universe {
    padding: 100px 10px 40px 10px;
  }

  .tech-main-heading {
    font-size: 1.6rem;
  }

  .tech-badge {
    font-size: 0.78rem;
    padding: 5px 14px;
    letter-spacing: 1px;
  }

  .tech-description {
    font-size: 0.85rem;
  }

  .tech-filter-wrapper {
    gap: 6px;
    padding: 5px;
  }

  .tech-filter-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tech-card-unique {
    padding: 20px 12px;
    border-radius: 18px;
  }

  .tech-card-title {
    font-size: 0.9rem;
  }

  .tech-card-category {
    font-size: 0.7rem;
  }

  .tech-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .tech-icon-img {
    width: 44px;
    height: 44px;
  }

  .tech-icon-ibm {
    width: 70px !important;
    height: 70px !important;
  }
} 
/* -----gallery*-----/
/* --- Base Styling --- */
.gallery-wrapper {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  padding-bottom: 60px;
}

/* --- Header Section  --- */
.gallery-header {
  padding: 100px 20px 40px 20px;
  text-align: center;
}

.get-to-know {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #2eaad3;
  letter-spacing: 2.5px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.main-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  font-family: "Inter", sans-serif !important;
  color: #ffffff;

}

.sub-description {
  color: #d7d1db;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}

/* --- Button Styling --- */
.home-btn {
  background-color: #009dff;
  color: white !important;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.home-btn:hover {
  background-color: #0082d4;
  transform: translateY(-2px);
}

/* --- Full Width Hero Photo --- */
.full-img-container {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 50px;

}

.full-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.logo-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  min-width: 260px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}

.logo-subtext {
  font-size: 10px;
  letter-spacing: 4px;
  color: #bbb;
  margin-top: 3px;
  text-transform: uppercase;
}

/* --- Grid Layout (3 Column) --- */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* 
.gallery-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
 
  overflow: hidden;
  transition: transform 0.3s ease;
} */
.gallery-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: 
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:hover {
  transform: translateY(-3px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-box1 {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   

}


.image-box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover {
  transform: translateY(-5px);
}



/* --- Simple Underline Category Filter --- */
.underline-filter-section {
  display: flex;
  justify-content: center;
  padding: 20px 20px 50px;
  margin-bottom: 20px;
}

.underline-tabs {
  display: flex;
  gap: 50px;
  align-items: center;
}

.underline-tab {
  background: none;
  border: none;
  color: #abaaaa;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 8px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline effect - center to left-right */
.underline-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #009dff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.underline-tab:hover {
  color: #ffffff;
}

.underline-tab:hover::after {
  width: 100%;
}

.underline-tab.tab-active {
  color: #ffffff;
}

.underline-tab.tab-active::after {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .gallery-header {
    padding: 80px 20px 20px 20px;
  }

  .main-title {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .underline-tabs {
    gap: 30px;
  }

  .underline-tab {
    font-size: 12px;
    padding: 8px 6px;
  }
}

@media (max-width: 600px) {
  .gallery-header {
    padding: 80px 15px 18px 15px;
  }

  .get-to-know {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .main-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .sub-description {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .home-btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .full-img-container {
    height: 45vh;
    margin-top: 10px;
    margin-bottom: 25px;
  }

  .underline-filter-section {
    padding: 20px 15px 40px;
    margin-bottom: 15px;
  }

  .underline-tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .underline-tab {
    font-size: 11px;
    padding: 8px 4px;
  }

  .underline-tab::after {
    height: 1.5px;
  }

  .logo-overlay {
    bottom: 10px;
    min-width: 130px;
    padding-top: 8px;
  }

  .logo-text {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .logo-subtext {
    font-size: 6px;
    letter-spacing: 1.5px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-header {
    padding: 80px 12px 15px 12px;
  }

  .main-title {
    font-size: 18px;
  }

  .full-img-container {
    height: 42vh;
  }

  .gallery-container {
    padding: 0 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .image-box1 {
    aspect-ratio: 4 / 3;
  }

  .logo-overlay {
    bottom: 8px;
    min-width: 110px;
  }

  .logo-text {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .logo-subtext {
    font-size: 6px;
    letter-spacing: 1px;
  }
}

@media (max-width: 360px) {
  .gallery-header {
    padding: 80px 10px 12px 10px;
  }

  .full-img-container {
    height: 38vh;
  }

  .gallery-container {
    padding: 0 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .image-box1 {
    aspect-ratio: 4 / 3;
  }

  .main-title {
    font-size: 17px;
  }

  .sub-description {
    font-size: 11px;
  }

  .home-btn {
    padding: 9px 18px;
    font-size: 12px;
  }

  .underline-tabs {
    gap: 12px;
  }

  .underline-tab {
    font-size: 10px;
  }

  .logo-overlay {
    bottom: 6px;
    min-width: 100px;
    padding-top: 6px;
  }

  .logo-text {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .logo-subtext {
    font-size: 5px;
    letter-spacing: 1px;
  }
}
/*---------module-------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');

.centric-slider-section {
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  padding: 0px 0;
  padding-bottom: 80px;
}

/* --- Page Title Center --- */
.section-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
}

.main-modules-title {
  font-weight: 800;
  font-size: 40px;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
  position: relative;
}

.main-modules-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #0056b3;
  margin: 10px auto 0;
}

/* --- Slider Container (Height 500px) --- */
.slider-wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
}

.cards-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.centric-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-inner {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* --- Left Image Side --- */
.image-panel {
  flex: 1.2;
  background-size: cover;
  background-position: center;
}

/* --- Right Content Side --- */
.content-panel {
  flex: 0.8;
  padding: 50px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
}

.text-container {
  position: relative;
  width: 100%;
  z-index: 2;
}

/* Large Grey ID Backdrop */
.bg-id-number {
  position: absolute;
  top: -40px;
  left: -5px;
  font-size: 7rem;
  font-weight: 800;
  color: #f3f3f3;
  line-height: 1;
  z-index: 0;
}

.module-title {
  font-size: 2rem;
  font-weight: 800;
  color: #033972;
  /* Professional Blue */
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.blue-bar {
  width: 50px;
  height: 4px;
  background-color: #0055aa;
  margin-bottom: 25px;
}

.scope-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
  position: relative;
  z-index: 1;
}

/* --- Navigation Arrows Center ma --- */
.nav-btn-centric {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: #1a1b1f;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-btn-centric:hover {
  background: #033972;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -27px;
}

.next-btn {
  right: -27px;
}

.arrow-icon {
  font-size: 1.6rem;
  font-weight: bold;
}
/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .slider-wrapper     { width: 95%; height: 460px; }
  .content-panel      { padding: 35px; }
  .module-title       { font-size: 1.7rem; }
  .scope-text         { font-size: 1.2rem; }
  .bg-id-number       { font-size: 6rem; }
}

/* ── Small Tablet (max 850px) ── */
@media (max-width: 850px) {
  .slider-wrapper     { width: 92%; height: 420px; }
  .content-panel      { padding: 28px; }
  .module-title       { font-size: 1.4rem; }
  .scope-text         { font-size: 1.1rem; }
  .bg-id-number       { font-size: 5rem; top: -30px; }
  .main-modules-title { font-size: 34px; }
  .prev-btn           { left: -20px; }
  .next-btn           { right: -20px; }
  .nav-btn-centric    { width: 44px; height: 44px; }
}
/* ── Mobile (max 600px) ── */
@media (max-width: 600px) {
  .centric-slider-section {
    min-height: auto;
    padding: 30px 0 40px;
  }

  .slider-wrapper {
    width: 88%;
    height: auto;        /* ← fixed height hatavo */
    min-height: 0;
  }

  .cards-stack {
    height: auto;
    min-height: 0;
  }

  .centric-card {
    position: relative;  /* ← absolute → relative */
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Inactive cards hide karo */
  .centric-card:not(.active) {
    display: none;
  }

  .card-inner {
    flex-direction: column;
    height: auto;
  }

  .image-panel {
    width: 100%;
    height: 200px;
    flex: none;
  }

  .content-panel      { padding: 20px 16px 24px; flex: none; }
  .module-title       { font-size: 1.15rem; }
  .scope-text         { font-size: 1rem; }
  .bg-id-number       { font-size: 4rem; }
  .main-modules-title { font-size: 28px; }
  .prev-btn           { left: -16px; }
  .next-btn           { right: -16px; }
  .nav-btn-centric    { width: 38px; height: 38px; top:200px; transform: translateY(-50%); }
}

/* ── 360px ── */
@media (max-width: 400px) {
  .centric-slider-section {
    min-height: auto;
    padding-bottom: 40px;
  }

  .slider-wrapper     { width: 86%; height: auto; }
  .image-panel        { height: 170px; }
  .content-panel      { padding: 16px 12px; }
  .module-title       { font-size: 1rem; }
  .scope-text         { font-size: 0.95rem; line-height: 1.5; }
  .bg-id-number       { font-size: 3.5rem; top: -18px; }
  .main-modules-title { font-size: 24px; }
  .prev-btn           { left: -14px; }
  .next-btn           { right: -14px; }
.nav-btn-centric { width: 34px; height: 34px; top: 150px; transform: translateY(-50%); }  .arrow-icon         { font-size: 1.1rem; }
}

/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');
/*-----About----*/
.about-section-new {
  background-color: #000;
  padding: 120px 0px;
  font-family: 'Open Sans', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.custom-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */
.left-side {
  flex: 1.2;
}

.main-heading {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.main-heading span {
  color: #f8f9fa;
  background: linear-gradient(to right, #007bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-text {
  font-size: 1.4rem;
  color: #adb5bd;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
}

/* TAB DESIGN */
.tab-container {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-menu {
  display: flex;
  border-bottom: 2px solid #212529;
  margin-bottom: 20px;
}

.tab-link {
  background: none;
  border: none;
  color: #6c757d;
  padding: 15px 30px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.tab-link.active {
  color: #007bff;
}

.tab-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #007bff;
}

.tab-content-box {
  padding: 10px 0;
  min-height: 120px;
}

.tab-content-box p {
  font-size: 1.4rem;
  color: #dee2e6;
  line-height: 1.8;
}

/* RIGHT SIDE IMAGE */
.right-side {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
}

.about-cartoon-img {
  width: 600px;
  display: block;
  border-radius: 15px;
}

/* =====================
   TABLET - 768px to 992px
   ===================== */
@media (max-width: 992px) {
  .about-section-new {
    padding: 100px 0px 80px 0px;
  }

  .custom-container {
    padding: 0 30px;
  }

  .main-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .left-side {
    flex: unset;
    width: 100%;
  }

  .right-side {
    flex: unset;
    width: 100%;
  }

  .main-heading {
    font-size: 3rem;
    letter-spacing: -0.5px;
  }

  .sub-text {
    font-size: 1.2rem;
    margin: 0 auto 30px auto;
  }

  .tab-menu {
    justify-content: center;
  }

  .tab-link {
    padding: 12px 20px;
    font-size: 1.2rem;
  }

  .tab-content-box p {
    font-size: 1.2rem;
  }

  .about-cartoon-img {
    width: 100%;
    max-width: 500px;
  }
}

/* =====================
   MOBILE - up to 768px
   ===================== */
@media (max-width: 768px) {
  .about-section-new {
    padding: 100px 0px 60px 0px;
  }

  .custom-container {
    padding: 0 20px;
  }

  .main-flex {
    gap: 30px;
  }

  .main-heading {
    font-size: 2.6rem;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
  }

  .sub-text {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.7;
  }

  .tab-container {
    padding: 15px;
  }

  .tab-link {
    padding: 10px 15px;
    font-size: 1.15rem;
  }

  .tab-content-box {
    min-height: 100px;
  }

  .tab-content-box p {
    font-size: 1.15rem;
  }

  .about-cartoon-img {
    width: 100%;
    max-width: 400px;
  }
}

/* =====================
   SMALL MOBILE - up to 480px
   ===================== */
@media (max-width: 480px) {
  .about-section-new {
    padding: 100px 0px 50px 0px;
  }

  .custom-container {
    padding: 0 15px;
  }

  .main-heading {
    font-size: 2.1rem;
    letter-spacing: 0px;
  }

  .sub-text {
    font-size: 1.05rem;
  }

  .tab-menu {
    flex-wrap: wrap;
    gap: 4px;
  }

  .tab-link {
    padding: 8px 12px;
    font-size: 1.05rem;
  }

  .tab-content-box p {
    font-size: 1.05rem;
  }

  .about-cartoon-img {
    max-width: 100%;
  }
}

/* =====================
   VERY SMALL - 380px
   ===================== */
@media (max-width: 380px) {
  .main-heading {
    font-size: 1.75rem;
  }

  .sub-text {
    font-size: 0.95rem;
  }

  .tab-link {
    padding: 7px 10px;
    font-size: 0.95rem;
  }

  .tab-content-box p {
    font-size: 0.95rem;
  }

  .custom-container {
    padding: 0 12px;
  }
}
/*---------------Milestone-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

.ms-container {
  background-color: #000000;
  color: #ffffff;
  padding: 120px 8%;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.ms-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- HEADER --- */
.ms-header {
  display: flex;
  gap: 25px;
  margin-bottom: 80px;
}

.ms-accent-line {
  width: 4px;
  background: linear-gradient(to bottom, #ef4444, #38bdf8);
  border-radius: 10px;
}

.ms-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0;
}

.ms-gradient-text {
  background: linear-gradient(180deg, #ffffff 30%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ms-tagline {
  font-size: 1rem;
  letter-spacing: 4px;
  color: #87919f;
  font-weight: 500;
  display: block;
  margin-top: 12px;
}

/* --- GRID --- */
.ms-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* --- CARD --- */
.ms-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 28px 40px;
  border-radius: 20px;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
  cursor: default;
}

.ms-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Top glow line */
.ms-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Corner shine */
.ms-card::after {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 0 20px 0 0;
}

/* HOVER */
.ms-card:hover {
  background: rgba(14, 27, 45, 0.9);
  border-color: rgba(56, 189, 248, 0.22);
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(56, 189, 248, 0.04);
}

.ms-card:hover::before { opacity: 1; }
.ms-card:hover::after  { opacity: 1; }

/* SPOTLIGHT */
.ms-card-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(56, 189, 248, 0.045),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}
.ms-card:hover .ms-card-spotlight { opacity: 1; }

/* ICON */
.ms-icon-wrap {
  color: rgba(56, 189, 248, 0.55);
  margin-bottom: 28px;
  transition: color 0.35s ease, transform 0.35s ease;
  display: inline-block;
}
.ms-card:hover .ms-icon-wrap {
  color: #38bdf8;
  transform: translateY(-3px);
}

/* NUMBER */
.ms-number-wrap {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  color: #ffffff;
  line-height: 1;
}
.ms-suffix {
  font-size: 1.8rem;
  margin-left: 3px;
  color: #38bdf8;
  font-weight: 700;
  letter-spacing: -1px;
}

/* LABEL */
.ms-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}

/* DESC */
.ms-desc {
  font-size: 1.1rem;
  color: #86909d;
  margin-top: 0;
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.ms-card:hover .ms-desc { color: #64748b; }

/* BOTTOM LINE */
.ms-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #38bdf8, rgba(56, 189, 248, 0.05));
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.ms-card:hover .ms-hover-line { width: 65%; }
/* ======================
   TABLET (max 1200px)
   ====================== */
@media (max-width: 1200px) {
  .ms-container { padding: 100px 6%; }
}

/* ======================
   SCROLL (max 1100px)
   ====================== */
@media (max-width: 1100px) {
  .ms-grid {
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 16px;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .ms-grid::-webkit-scrollbar { display: none; }
  .ms-card { flex: 0 0 280px; min-width: 280px; }
}

/* ======================
   TABLET (max 992px)
   ====================== */
@media (max-width: 992px) {
  .ms-container { padding: 90px 5%; }
  .ms-title { font-size: 3rem; }
  .ms-header { margin-bottom: 60px; }
}

/* ======================
   MOBILE (max 768px)
   ====================== */
@media (max-width: 768px) {
  .ms-container { padding: 80px 5%; }
  .ms-title { font-size: 2.6rem; letter-spacing: -1.5px; }
  .ms-grid { gap: 12px; }
  .ms-card {
    flex: 0 0 222px;
    min-width: 222px;
    padding: 36px 18px 32px;
    border-radius: 16px;
  }
  .ms-number-wrap { font-size: 2.8rem; letter-spacing: -1.5px; }
  .ms-suffix { font-size: 1.4rem; }
  .ms-label { font-size: 1.15rem; }
  .ms-desc { font-size: 1.15rem; }
}

/* ======================
   MOBILE (max 480px)
   ====================== */
@media (max-width: 480px) {
  .ms-container { padding: 70px 5% 80px; }
  .ms-title { font-size: 2.1rem; letter-spacing: -1px; }
  .ms-tagline { font-size: 0.85rem; letter-spacing: 3px; }
  .ms-grid { gap: 12px; }
  .ms-card {
    flex: 0 0 195px;
    min-width: 195px;
    padding: 30px 16px 26px;
    border-radius: 16px;
  }
  .ms-number-wrap { font-size: 2.5rem; }
  .ms-suffix { font-size: 1.3rem; }
  .ms-label { font-size: 1.05rem; }
  .ms-desc { font-size: 1.05rem; }
  .ms-icon-wrap { margin-bottom: 20px; }
  .ms-icon-wrap svg { width: 30px; height: 30px; }
}

/* ======================
   380px
   ====================== */
@media (max-width: 380px) {
  .ms-container { padding: 60px 4% 70px; }
  .ms-title { font-size: 1.75rem; }
  .ms-grid { gap: 10px; }
  .ms-card {
    flex: 0 0 155px;
    min-width: 155px;
    padding: 24px 14px 22px;
    border-radius: 14px;
  }
  .ms-number-wrap { font-size: 2rem; letter-spacing: -1px; }
  .ms-suffix { font-size: 1.1rem; }
  .ms-label { font-size: 0.95rem; }
  .ms-desc { font-size: 0.95rem; }
  .ms-icon-wrap { margin-bottom: 16px; }
  .ms-icon-wrap svg { width: 28px; height: 28px; }
}
/*------------WhyChooseUS--------*/
.why-choose-wrapper {
  background: #000000;
  padding: 100px 0;
  color: #f8fafc;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
}

.why-choose-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:#000;
  pointer-events: none;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.why-choose-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
  color: #f8fafc;
}

.why-choose-title span {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- IMAGE LEFT ---- */
.why-choose-image {
  position: relative;
  width: 100%;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  mix-blend-mode: lighten;
}

/* ---- RIGHT CONTENT ---- */
.why-choose-content {
  width: 100%;
}

.why-choose-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  cursor: default;
}

.why-choose-item:hover {
  transform: translateX(6px);
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.06);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(56, 189, 248, 0.1);
}

.why-choose-icon {
  min-width: 52px;
  min-height: 52px;
  border-radius: 12px;
  background: #1a2235;
  border: 1px solid #243044;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
  background: #1e2d4a;
  border-color: rgba(56, 189, 248, 0.3);
  transform: scale(1.08);
}

.why-choose-icon svg {
  width: 24px;
  height: 24px;
}

.why-choose-text {
  font-size: 1.16rem;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}

/* =====================
   TABLET (max 1024px)
   ===================== */
@media (max-width: 1024px) {
  .why-choose-grid {
    gap: 50px;
  }
  .why-choose-title {
    font-size: 2.6rem;
    margin-bottom: 36px;
  }
  .why-choose-text {
    font-size: 1.1rem;
  }
}

/* =====================
   TABLET PORTRAIT (max 768px)
   ===================== */
@media (max-width: 768px) {
  .why-choose-wrapper {
    padding: 70px 0;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-choose-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .why-choose-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .why-choose-item {
    padding: 16px 18px;
    gap: 14px;
  }

  .why-choose-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-choose-text {
    font-size: 1.1rem;
  }
}

/* =====================
   MOBILE (max 480px)
   ===================== */
@media (max-width: 480px) {
  .why-choose-wrapper {
    padding: 60px 0;
  }
   .why-choose-title {
    font-size: 2.1rem;
    margin-bottom: 26px;
    text-align: center;
  }
  .why-choose-item {
    gap: 12px;
    padding: 14px 16px;
  }
  .why-choose-icon {
    min-width: 44px;
    min-height: 44px;
    border-radius: 10px;
  }
  .why-choose-icon svg {
    width: 20px;
    height: 20px;
  }
  .why-choose-text {
    font-size: 1.05rem;
  }
  .why-choose-list {
    gap: 12px;
  }
}

/* =====================
   SMALL MOBILE (max 380px)
   ===================== */
@media (max-width: 380px) {
  .why-choose-wrapper {
    padding: 50px 0;
  }
  .why-choose-container {
    padding: 0 4%;
  }
  .why-choose-title {
    font-size: 1.85rem;
    margin-bottom: 22px;
    text-align: center;
  }
  .why-choose-item {
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
  }
  .why-choose-icon {
    min-width: 38px;
    min-height: 38px;
    border-radius: 8px;
  }
  .why-choose-icon svg {
    width: 18px;
    height: 18px;
  }
  .why-choose-text {
    font-size: 0.95rem;
  }
  .why-choose-list {
    gap: 10px;
  }
}
/*----------chatbot---------*/
/* Main Container */
.galaxyerp-chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Chat Button */
.chat-button-wrapper {
  position: relative;
}

.chat-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0070F3 0%, #0051D5 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 112, 243, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 112, 243, 0.5);
}

.chat-button:active {
  transform: scale(0.95);
}

/* Chat Window */
.chat-window {
  width: 420px;
  height: 650px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.chat-header {
  background: linear-gradient(135deg, #0070F3 0%, #0051D5 100%);
  padding: 18px 20px;
  color: white;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-logo {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.95;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.header-actions {
  display: flex;
  gap: 6px;
}

.header-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.header-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Join Notification */
.join-notification {
  background: #E3F2FD;
  color: #1976D2;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  margin: 12px 16px;
  border-radius: 8px;
}

/* Messages Area */
.messages-area {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #F8FAFB;
}

.messages-area::-webkit-scrollbar {
  width: 6px;
}

.messages-area::-webkit-scrollbar-thumb {
  background: #CBD5E0;
  border-radius: 3px;
}

/* Messages */
.message-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-wrapper {
  justify-content: flex-start;
}

.user-wrapper {
  justify-content: flex-end;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bot-avatar {
  background: linear-gradient(135deg, #0070F3 0%, #0051D5 100%);
  color: white;
}

.message-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 16px;
}

.bot-bubble {
  background: white;
  color: #1A202C;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-bubble {
  background: linear-gradient(135deg, #0070F3 0%, #0051D5 100%);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 112, 243, 0.2);
}

.message-text {
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.message-timestamp {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 6px;
  font-weight: 500;
}

/* Typing Indicator */
.typing-indicator {
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #CBD5E0;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
  animation: fadeIn 0.5s ease-out;
}

.topic-card {
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #2D3748;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.topic-card:hover {
  border-color: #0070F3;
  background: #F0F7FF;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.15);
}

/* Input Area */
.input-area {
  padding: 16px;
  background: white;
  border-top: 1px solid #E2E8F0;
}

.input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.message-input {
  flex: 1;
  border: 2px solid #E2E8F0;
  border-radius: 24px;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
  background: #F8FAFB;
}

.message-input:focus {
  border-color: #0070F3;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

.send-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #0070F3;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-btn:hover:not(:disabled) {
  background: #0051D5;
  transform: scale(1.05);
}

.send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.end-chat-btn {
  width: 100%;
  background: #FEE2E2;
  color: #DC2626;
  border: 2px solid #FCA5A5;
  padding: 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.end-chat-btn:hover {
  background: #FECACA;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 480px) {
  .galaxyerp-chatbot-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .chat-window {
    width: 100%;
    height: calc(100vh - 100px);
  }

  .chat-button {
    width: 56px;
    height: 56px;
  }
}

/* --- Professional Suggestion Chips CSS --- */
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.suggestion-chip {
  background: rgba(0, 112, 243, 0.1);
  color: #0070F3;
  border: 1px solid rgba(0, 112, 243, 0.3);
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.suggestion-chip:hover {
  background: #0070F3;
  color: white;
  border-color: #0070F3;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════
   Features.css
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Section ── */
.fs-dark {
  position: relative;
  padding: 96px 24px 110px;
  background: #000000;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}


/* Glow orbs */
.fs-dark__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.5;
}

.fs-dark__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(29, 79, 216, 0.545);
   top: 200px; left: -150px;
}

.fs-dark__orb--2 {
  width: 450px;
  height: 450px;
  background: #7c3aed;
  bottom: -150px;
  right: -150px;
}

.fs-dark__orb--3 {
  width: 300px;
  height: 300px;
  background: #0891b2;
  top: 40%;
  left: 40%;
  opacity: 0.15;
}

/* ── Inner ── */
.fs-dark__inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
}

/* ── Heading ── */
.fs-dark__head {
  text-align: center;
  margin-bottom: 72px;
}

.fs-dark__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.fs-dark__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.fs-dark__title {
  font-size: 40px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.fs-dark__title-glow {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fs-dark__sub {
  font-size: 16px;
  color: #a9afb9;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── Cards Grid ── */
.fs-dark__grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Card ── */
.fcard {

  position: relative;
  background: #0d1526;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px 18px 20px;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.fcard--in {
  opacity: 1;
  transform: translateY(0);
}

.fcard--hov {
  background: #111d35;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px) !important;
}

/* Shine pseudo element */
.fcard::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 80%);
  transform: skewX(-15deg);
  transition: right 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.fcard--hov::before {
  right: 150%;
}

/* Glow behind card on hover */
.fcard__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -40px;
  right: -30px;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.fcard--hov .fcard__glow {
  opacity: 0.25;
}

/* Top accent line */
.fcard__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.fcard--hov .fcard__top-line {
  transform: scaleX(1);
}

/* Icon wrap */
.fcard__icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.fcard--hov .fcard__icon-wrap {
  background: rgba(255, 255, 255, 0.08);
}

.fcard__svg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcard__svg svg {
  width: 40px;
  height: 40px;
}

/* Title */
.fcard__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 14px;
  transition: color 0.3s ease;
  color: #e2e8f0;
}

/* Category badge */
.fcard__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .fs-dark__grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .fs-dark__title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .fs-dark {
    padding: 64px 16px 80px;
  }

  .fs-dark__grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fs-dark__title {
    font-size: 30px;
  }

  .fs-dark__sub {
    font-size: 14px;
  }

  .fcard {
    padding: 18px 14px 16px;
  }

  .fcard__icon-wrap {
    width: 48px;
    height: 48px;
  }

  .fcard__svg,
  .fcard__svg svg {
    width: 32px;
    height: 32px;
  }

  .fcard__title {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .fs-dark__grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .fcard__cat {
    display: none;
  }

  .fs-dark__title {
    font-size: 26px;
  }
}
/* -----------------------BookAppointment------------------------ */

.book-main {
  position: relative;
  padding: 80px 0;
  background: #0d1117; 
  overflow: hidden;
}

/* Video */
#myvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
}

/* Dark overlay */
.book-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #080c18;
  z-index: 1;
}

/* Container */
.book-main .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Inner row */
.book-inner-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.book-child {
  display: flex;
  align-items: center;
}

.book-inner-child {
  display: flex;
  flex-direction: column;
}

.book-one {
  font-size: 20px;      
  font-weight: 500;
  color: #64748b;
  letter-spacing: 3px;
  text-transform: uppercase; 
}

.book-two {
  font-size: 50px;      
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1.2;   
}


/* Button */
.book-btn {
  display: flex;
  align-items: center;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.book-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  border-radius: 50px;
  z-index: -1;
}

.book-link:hover {
  color: #000000;
  border-color: #ffffff;
}

.book-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.book-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.book-link:hover .book-icon {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .book-main        { padding: 50px 0; }
  .book-inner-main  {
    flex-direction: row;          /* ← column nahi, row j rakhvo */
    align-items: center;
    gap: 20px;
  }
  .book-one         { font-size: 14px; letter-spacing: 2px; }
  .book-two         { font-size: 28px; letter-spacing: -1px; }
  .book-link        { padding: 13px 22px; font-size: 13px; }
}

@media (max-width: 480px) {
  .book-main        { padding: 36px 0; }
  .book-one         { font-size: 11px; letter-spacing: 1.5px; }
  .book-two         { font-size: 22px; letter-spacing: -0.5px; }
  .book-link        { padding: 11px 16px; font-size: 12px; gap: 6px; }
}

@media (max-width: 400px) {
  .book-main        { padding: 28px 0; }
  .book-two         { font-size: 18px; }
  .book-one         { font-size: 10px; }
  .book-link        { padding: 10px 14px; font-size: 11px; }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ═══════════════════════════════
   FOOTER  –  3 Columns · Blue
   Base: html { font-size: 10px }
═══════════════════════════════ */

.gx-footer {
  font-family: 'Poppins', sans-serif;
  background: #0d1520;
  color: #c8d8e4;
}

/* ── Grid: 3 equal columns ── */
.gx-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 56px;
  padding: 48px 80px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

.gx-col {
  display: flex;
  flex-direction: column;
}

/* ── Col 1 · Brand ── */
.gx-brand-top {
  margin-bottom: 0;
}

.gx-brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Logo image */
.gx-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.gx-brand-title h2 {
  font-size: 1.6rem;  /* 16px */
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.gx-brand-title p {
  font-size: 1.1rem;  /* 11px */
  color: #ffffff;
  margin-top: 2px;
}

.gx-brand-desc {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: #7a9ab0;
}

/* ── Column Headings ── */
.gx-col-head {
  font-size: 1.45rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}

.gx-col-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: linear-gradient(90deg, #1F7EF6, #4896FA);
  border-radius: 2px;
}

/* extra top gap for second heading in col 2 */
.gx-head-gap {
  margin-top: 24px;
}

/* ── Links ── */
.gx-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.gx-links li a {
  font-size: 1.3rem;
  color: #7a9ab0;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.gx-links li a:hover { color: #fff; padding-left: 5px; }

/* ── Generic icon rows (office + contact) ── */
.gx-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gx-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gx-row-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(31,126,246,0.1);
  border: 1px solid rgba(31,126,246,0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gx-row-val {
  font-size: 1.3rem;
  color: #c8d8e4;
}

.gx-row-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.gx-row-val a:hover { color: #1F7EF6; }

/* ── Address card ── */
.gx-address-card {
  background: #111e2e;
  border: 1px solid rgba(31,126,246,0.14);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.gx-addr-pin {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(31,126,246,0.1);
  border: 1px solid rgba(31,126,246,0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.gx-addr-text {
  font-size: 1.3rem;
  color: #c8d8e4;
  line-height: 1.75;
}

/* ── Social icons ── */
.gx-social {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
  color: #4a6070;
}

.gx-social.fb:hover { background:#1877f2; border-color:#1877f2; color:#fff; transform:translateY(-2px); }
.gx-social.tw:hover { background:#1da1f2; border-color:#1da1f2; color:#fff; transform:translateY(-2px); }
.gx-social.li:hover { background:#0077b5; border-color:#0077b5; color:#fff; transform:translateY(-2px); }
.gx-social.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color:transparent; color:#fff; transform:translateY(-2px);
}

/* ── Bottom bar ── */
.gx-bottom {
  padding: 13px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gx-copyright {
  font-size: 1.2rem;
  color: #4a6070;
}

.gx-socials-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gx-follow-lbl {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.gx-socials {
  display: flex;
  gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gx-main   { grid-template-columns: 1fr 1fr; padding: 40px 40px 34px; gap: 40px; }
  .gx-bottom { padding: 13px 40px; }
}

@media (max-width: 640px) {
  .gx-main   { grid-template-columns: 1fr; padding: 32px 20px 26px; gap: 28px; }
  .gx-bottom { flex-direction: column; align-items: flex-start; padding: 13px 20px; gap: 10px; }
}