﻿body {
    font-family: "Inter", "Poppins", "Sora", sans-serif;
    color: #0A0A0A;
    line-height: 1.5;
}




/********** Template CSS **********/
:root {
    --primary: #1A73E8;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


.bg-vertical-blue {
  background: linear-gradient(
    180deg,
    rgba(28,130,214,0.35) 0%,
    rgba(15,204,223,0.15) 50%,
    rgba(10,20,40,0.60) 100%
  );
}

.bg-vertical-purple {
  background: linear-gradient(
    180deg,
    rgba(223,74,176,0.32) 0%,
    rgba(106,0,255,0.20) 50%,
    rgba(20,10,40,0.60) 100%
  );
}

.bg-vertical-blue-soft {
  background: #F4F7FE;
}

.bg-vertical-blue-soft2{
	background: linear-gradient(101.13deg, #E8E6FF 20.87%, #F9EBFE 87.05%);
	
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.section-divider {
    width: 100%;
    height: 2px;
    margin: 10px 0; /* Section spacing */
    background: linear-gradient(90deg, #1C82D6, #8B4DFE);
    border-radius: 4px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Hover Light Change (Optional) */
.section-divider:hover {
    opacity: 1;
}

/* Glow Variant */
.section-divider.glow {
    box-shadow: 0 0 12px rgba(124, 78, 255, 0.5),
                0 0 20px rgba(28, 130, 214, 0.3);
}


.global-network {
  position: relative;
  width: 100%;
  min-height: 520px;

  /* ✅ REAL WORLD MAP BACKGROUND */
  background-image:url('../img/background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  overflow: hidden;
}

/* Subtle dark overlay (keeps map visible) */
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31,150,255,0.25) 0%,
    rgba(0,120,255,0.12) 45%,
    rgba(138,42,228,0.70) 100%
  );

  z-index: 1;
}

/* Content */
.content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px;
}

.content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #000000;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.content p {
  margin-top: 12px;
  color: #000000;
  font-size: 1.1rem;
}

/* SVG Connection Lines */
.connections {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.connections line {
  fill: none;
  stroke: url(#neonGradient);
  stroke-width: 0.35;
  stroke-dasharray: 4;
  animation: flow 6s linear infinite;
  opacity: 0.85;
}

/* Fallback color if gradient not supported */
.connections line {
  stroke: #7aa2ff;
}

/* Flow animation */
@keyframes flow {
  from {
    stroke-dashoffset: 16;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Glowing Nodes */
.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #4cc9ff);
  box-shadow:
    0 0 10px rgba(76, 201, 255, 0.9),
    0 0 22px rgba(155, 92, 255, 0.8);
  animation: pulse 3s infinite ease-in-out;
  z-index: 3;
}

/* Node positions (sync with SVG lines) */
.node-1 { top: 42%; left: 28%; }
.node-2 { top: 38%; left: 52%; }
.node-3 { top: 55%; left: 68%; }
.node-4 { top: 60%; left: 40%; }

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .global-network {
    min-height: 420px;
  }

  .content {
    padding: 100px 16px;
  }

  .connections line {
    stroke-width: 0.45;
  }
}




/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}



.products-section {
      background: #F4F7FE;
      padding: 50px 50px;
      font-family: "Inter", sans-serif;
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #000000;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .product-card {
      background: linear-gradient(155deg,rgba(0, 199, 254, 1) 0%, rgba(240, 240, 240, 1) 50%, rgba(157, 76, 255, 1) 100%);
      padding: 35px 30px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      text-align: center;
      position: relative;
    }

    /* ✅ Zoom Hover Effect */
    .product-card:hover {
      transform: scale(1.08);
      box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

    .product-icon {
      font-size: 42px;
      margin-bottom: 15px;
    }

    .product-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: #000000; /* Dark Purple */
    }

    .product-card p {
      font-size: 15px;
      color: #000000;
      line-height: 1.6;
    }

    .badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: #A855F7;
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }

    /* ✅ Responsive Design */
    @media (max-width: 992px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: 1fr;
      }

      .section-header h2 {
        font-size: 28px;
      }
}



.why-section {
  padding: 100px 20px;
  background: linear-gradient(101.13deg, #E8E6FF 20.87%, #F9EBFE 87.05%);
  font-family: 'Inter', 'Roboto', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 60px;
}

/* ===== FIRST ROW GRID (3 CARDS) ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-bottom: 36px;
  align-items: stretch;
}

/* ===== SECOND ROW GRID (CENTERED WITH SAME GAP) ===== */
.why-grid-center {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 360px));
  justify-content: center;
  gap: 36px; /* ✅ SAME GAP AS FIRST ROW */
  align-items: stretch;
}

/* ===== CARD STYLE ===== */
.why-card {
  position: relative;
  background: linear-gradient(45deg,rgba(0, 122, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 59%, rgba(137, 43, 225, 1) 100%);
  border-radius: 20px;
  padding: 10px 10px;
  gap: 36px;
  width: 100%;
  height: 100%;
  border: 1px solid #6A00FF;
  transition: transform 0.3s ease;
  overflow: hidden;
}

/* ✅ GRADIENT GLOW BORDER */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #00e5ff, #7c7cff);
  -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.3s ease;
}

.why-card:hover::before {
  opacity: 1;
}

/* ✅ BOUNCE + LIFT ANIMATION */
.why-card:hover {
  animation: bounceHover 0.6s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

@keyframes bounceHover {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-12px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

/* ✅ ICON PULSE ANIMATION ON HOVER */
.why-card:hover .why-icon {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ===== ICON & TEXT ===== */
.why-icon {
  font-size: 36px;
  color: #1A73E8;
  padding-top:10px; padding-bottom:10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid-center {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid,
  .why-grid-center {
    grid-template-columns: 1fr;
  }

  .why-container h2 {
    font-size: 30px;
  }
}


/* ===== Our Engineering Approach Section ===== */

.approach-section {
  padding: 100px 20px;
  background: #ffffff;
  font-family: 'Inter', 'Roboto', sans-serif;
}


.approach-section2 {
  font-family: 'Inter', 'Roboto', sans-serif;
}


.approach-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.approach-container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 70px;
}

/* ===== GRID ===== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* ===== STEP CARD ===== */
.approach-step {
  position: relative;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid #eeeeee;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* ✅ NEW PREMIUM HOVER (NO BOUNCE) */
.approach-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ✅ Subtle Accent Bar Animation */
.approach-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #00e5ff, #6c78ff);
  transition: width 0.4s ease;
}

.approach-step:hover::after {
  width: 100%;
}

/* ===== STEP NUMBER ===== */
.step-number {
  display: inline-block;
  background: #0886FF;
  color: #00e5ff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ===== STEP TITLE ===== */
.approach-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 12px;
}

/* ===== STEP TEXT ===== */
.approach-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-container h2 {
    font-size: 30px;
  }
}


/*  Careers Highlight Section (Button Right-Aligned) ===== */

.careers-section {
  padding: 110px 20px;
  background: linear-gradient(135deg, #1363C6, #1A1E42);
  font-family: 'Inter', 'Roboto', sans-serif;
}

.careers-container {
  max-width: 1200px;
  margin: auto;
}

.careers-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 70px 70px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.careers-box:hover {
  transform: translateY(-5px);
}

/* ===== TEXT AREA ===== */
.careers-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

.careers-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #cfd3ff;
  max-width: 520px;
}

/* ===== BUTTON RIGHT ===== */
.careers-btn-container {
  display: flex;
  justify-content: flex-end;
}

.careers-btn {
  padding: 14px 25px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  color: #ffffff;
  background: linear-gradient(90deg, #00f0ff, #9b00ff); /* Neon blue to purple */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,229,255,0.35);
}

.careers-btn:hover {
  background: #ffffff;
  color: #1363C6;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0,229,255,0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .careers-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 40px;
  }

  .careers-btn-container {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .careers-content h2 {
    font-size: 30px;
  }

  .careers-btn {
    padding: 12px 30px;
  }
}




/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 21px 0 !important;
    height: 120px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: #1A73E8;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #1A73E8;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
    
    .navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
	}

	.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: #ffffff;
    outline: none;
    padding:10px 10px 10px 10px;
	}
	
		


}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -120px;
    /*background: url(../img/bg-hero.png) center center no-repeat;*/
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}

.unitron-btn{
  padding: .65rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #1C82D6 0%, #0FCCDF 100%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: box-shadow .20s ease, opacity .15s ease;
  box-shadow: 0 6px 18px rgba(28,130,214,0.18);
}

/* Soft glowing effect on hover */
.unitron-btn:hover{
  box-shadow: 0 0 22px rgba(15,204,223,0.45),
              0 0 30px rgba(28,130,214,0.35);
}

/* Small press effect */
.unitron-btn:active{
  opacity: .96;
  box-shadow: 0 0 14px rgba(28,130,214,0.25);
}

/* Keyboard focus */
.unitron-btn:focus{
  outline: 3px solid rgba(15,204,223,0.25);
  outline-offset: 3px;
}


.our-story-btn{
  padding: 0.65rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #DF4AB0; /* default background */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease, opacity .15s ease;
  box-shadow: 0 6px 18px rgba(223, 74, 176, 0.25);
}

/* Hover: neon blue gradient + glow */
.our-story-btn:hover{
  background: linear-gradient(90deg, #1C82D6 0%, #0FCCDF 100%);
  box-shadow: 
      0 0 18px rgba(28,130,214,0.55),
      0 0 26px rgba(15,204,223,0.45),
      0 0 40px rgba(15,204,223,0.35);
}

/* Active click */
.our-story-btn:active{
  opacity: .96;
  box-shadow: 0 0 14px rgba(0,0,0,0.15);
}

/* Keyboard focus */
.our-story-btn:focus{
  outline: 3px solid rgba(15,204,223,0.35);
  outline-offset: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: #F4F7FE;
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** Footer ***/
.footer {
    /*background: url(../img/footer.png) center center no-repeat;*/
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #CCCCCC;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}