/* ============================================
   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 {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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;
  -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%;
  }
}

/* Desktop Contact Button */
.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;
  /* Movement and Shadow logic */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(9, 149, 227, 0.3);
}

/* ============================================
   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 Base Setup --- */
.section-plm-key-slider {
  background-color: #000000;
  padding: 120px 0;
  /* Top and bottom padding */
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* --- Row Intro (Header) - 760px constraint --- */
.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;
  /* Spacing between text and slider */
}

/* --- Animations: Centric Style fadeInTitle --- */
@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.general-title {
  opacity: 0;
  /* Sharuat ma hidden raheshe */
  text-align: center;
  color: white;
  font-family: "Open Sans", sans-serif;
}

.start-text-animation .h1-main {
  animation: fadeInTitle 1s forwards;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 48px;
}

.start-text-animation h2.general-title {
  animation: fadeInTitle 1s forwards;
  animation-delay: 0.3s;
  /* H1 pachi aavse */
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #ffffff;
}

/* --- Black Shadow Overlay Design --- */
.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 --- */
.carousel-container {
  opacity: 0;
  animation: fadeInTitle 1s forwards;
  animation-delay: 0.8s;
}

/* --- Service Card Styling --- */
.service-card {
  padding: 30px 40px;
  text-align: left;
  /* Image mujab text left side */
  outline: none;
  transition: transform 0.3s ease;
}

.icon-box img {
  width: 60px !important;
  height: 60px;
  margin-bottom: 30px;
  /* Blue Glow effect as per Centric image */
  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;
}

/* --- Smooth Scrolling Fix --- */
.slick-track {
  display: flex !important;
  align-items: flex-start;
}

/* --- Responsive Adjustments --- */
@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 and Box Sizing Fixes */
* {
  outline: none;
  box-sizing: border-box;
}

@media (max-width: 500px) {
  .section-plm-key-slider {
    /* Mobile ma header nani hoy to padding adjust karo */
    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;
    /* Animation vakhate upar jatu rokva mate transform ne fix karo */
    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;
  }

  /* Slider area */
  .carousel-outer-wrapper {
    margin-top: 20px !important;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .section-plm-key-slider {
    padding-top: 70px !important;
  }

  .start-text-animation .h1-main {
    font-size: 20px !important;
  }
}

/*--------------deliveryprocess---------------*/
/* TAMARI ORIGINAL CSS PROPERTIES */
.delivery-main-wrapper {
  background-color: #000;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  /* Nav mate jaruri */
}

.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: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.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;
}

.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);
  /* Professional Black Shadow */
}

.main-desc {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.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 SIDE VERTICAL INDICATOR (Added only this) */

.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;

  /* Starting ma hide */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Jyare block active hoy tyare j dekhase */
.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;
}

.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);
}

.content-holder {
  margin-top: -10px;
}

@media (max-width: 1100px) {
  .right-vertical-nav {
    display: none;
  }
}

/* --- 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: #0C7DE5;
}


/* Next Button (Right Side) */
.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;
}

/* --- Mobile & Tablet Responsiveness --- */
@media (max-width: 992px) {
  .process-row {
    flex-direction: column !important;
    /* Stack image and text */
    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;
  }
}


/*--------------Industries-----------*/
/* Section Styles */
.industries-section {
  background-color: #05070a;
  padding: 80px 8%;
  font-family: 'Inter', sans-serif;
  color: #fff;
  min-height: 100vh;
}

.industries-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: left;
  letter-spacing: -1px;
}

/* 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;
}

.card-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  max-width: 850px;
}

/*end*/

/*---------techsec----------*/
:root {
  --centric-blue: #1F7EF6;
  --gray-light: rgba(0, 0, 0, 0.1);
}

.tech-heading-wrapper {
  text-align: center;
  margin-bottom: 60px;
  z-index: 20;
}

.tech-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.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;
}

.animated-logos {
  position: relative;
  width: 850px;
  /* Container મોટું કર્યું */
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rings Logic - \Dashed Circles */
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.8px dashed var(--gray-light);
  border-radius: 50%;
  pointer-events: none;
}

/* રીંગ ને મોટી કરી */
.ring-inner {
  width: 440px;
  height: 440px;
}

.ring-outer {
  width: 750px;
  height: 750px;
}

/* .logo-main {
      position: absolute;
      width: 140px;
      height: 140px;
      z-index: 10;
      opacity: 0;
      transform: scale(0);
  } */

.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;
  /* background-color: #edeaea; */
  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;
}

.outer .logo-node.outer:has(img[alt="IBM DB2"]) .icon-wrapper {
  background: #ffffff;
  padding: 5px;
}

@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;
}






.orbit-inner,
.orbit-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.start-animation .orbit-inner {
  animation: rotateOrbitCW 50s linear infinite;
}


.start-animation .orbit-outer {
  animation: rotateOrbitCCW 70s linear infinite;
}

.start-animation .orbit-inner .icon-wrapper {
  animation: counterRotateCW 50s linear infinite;
}

.start-animation .orbit-outer .icon-wrapper {
  animation: counterRotateCCW 70s linear infinite;
}

/* Keyframes */
@keyframes rotateOrbitCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateOrbitCCW {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes counterRotateCW {
  from {
    transform: rotate(calc(-1 * var(--angle))) scale(1);
  }

  to {
    transform: rotate(calc(-1 * var(--angle) - 360deg)) scale(1);
  }
}

@keyframes counterRotateCCW {
  from {
    transform: rotate(calc(-1 * var(--angle))) scale(1);
  }

  to {
    transform: rotate(calc(-1 * var(--angle) + 360deg)) scale(1);
  }
}

/* IBM DB2 Image Fix  */
.icon-wrapper img[alt="IBM DB2"] {
  width: 100% !important;
  height: 65% !important;
  object-fit: contain;
  padding: 5px;
}


/* --- 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);
  }
}


/* IBM DB2 Image Fix */
.icon-wrapper img[alt="IBM DB2"] {
  width: 100% !important;
  height: 65% !important;
  object-fit: contain;
}

/* Hover Effect Fix for 2nd Round */
.icon-wrapper:hover .tech-name {
  opacity: 1 !important;
  visibility: visible !important;
}

/**/
/*-----------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: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -2px;
  line-height: 1.1;
}

.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: 1.2rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}

/* 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;
}

/* .filter-icon {
  font-size: 1.2rem;
} */

.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;
}

/* Card Glow Effect */
.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;
}

/* Card Border */
.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;
}

/* Card Content */
.tech-card-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Icon Wrapper */
.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);
}

/* Icon Background */
.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;
}

/* Icon Image */
.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));
}

/* Icon Ring */
.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);
  }
}

/* Card Title */
.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;
}

/* Card Category */
.tech-card-category {
  font-size: 0.85rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Card Shine Effect */
.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;
}

/* IBM DB2 Special Icon Style */
.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;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tech-main-heading {
    font-size: 3rem;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .tech-universe {
    padding: 60px 15px;
  }

  .tech-main-heading {
    font-size: 2.5rem;
  }

  .tech-description {
    font-size: 1rem;
  }

  .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;
  }
}

@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;
  }

  /* .filter-icon {
    font-size: 1rem;
  } */
}

@media (max-width: 480px) {
  .tech-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tech-card-unique {
    padding: 25px 15px;
  }

  .tech-card-title {
    font-size: 1rem;
  }
}
/* --- 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 (SS મુજબ Padding) --- */
.gallery-header {
  /* image_6bdd27.png મુજબ ઉપરથી વધારે જગ્યા */
  padding: 100px 20px 40px 20px; 
  text-align: center;
}

.get-to-know {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #777;
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.main-title {
  /* image_6bdd27.png મુજબ ફોન્ટ સાઈઝ */
  font-size: 40px; 
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.sub-description {
  color: #888;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

/* --- 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: 60px;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-header {
    padding: 60px 15px 30px 15px;
  }
  .main-title {
    font-size: 28px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
  }
}

/*--------About----------*/
/* .main-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
  animation: lineGlow 2s ease-in-out infinite;
} */
/* 
@keyframes lineGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.title-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
} */





/*--------Contact---------*/
