/* Base Reset */

body {
  padding-top: 160px; /* Only if you have a fixed header */
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
  
  /* 🔄 Top Marquee Bar */
  .top-marquee {
    position: fixed;
    top: 0;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
    height: 64px;
    background: linear-gradient(to right, #00b2eb, #02396a);
    border-radius: 999px;
    z-index: 1000;
    padding: 0 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .top-marquee-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    gap: 20px;
  }
  
  .marquee-wrapper {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
  }
  
  .marquee-wrapper marquee {
    font-weight: 400;
    font-size: 20px;
    color: rgb(255, 255, 255);
  }
  @media (max-width: 768px) {
    body {
      padding-top: 140px;
    }
  
    .top-marquee {
      height: 52px;
      padding: 0 16px;
      font-size: 0.9rem;
    }
  
    .top-marquee-inner {
      gap: 10px;
    }
  
    .marquee-wrapper marquee {
      font-size: 14px;
    }
  }
  
  /* 🚨 Reduce icon size + spacing */
  .social-icons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-right: 40px;
  }
  .zoom-icon {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
  }
  
  .zoom-icon:hover {
    transform: scale(1.15);
  }
  
  .icon-circle {
    border-radius: 50%;
    padding: 4px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media (max-width: 768px) {
    .social-icons {
      gap: 6px;
      padding-right: 10px;
    }
  
    .zoom-icon {
      width: 32px;
      height: 32px;
    }
  
    .icon-circle {
      padding: 2px;
    }
  }


  /* 🧭 Navbar */
/* 🔒 Fixed Glassy Navbar */
.navbar {
  display:flex;
  position: fixed;
  top: 60px; /* same as .uc-top-marquee height */
  z-index: 99;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
}
.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
  
  .uc-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
  }
  
  .nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-left: 300px;
  }
  .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-menu li a {
    font-weight: 500; /* 👈 Slightly lighter */
    font-size: 20px;
    color: #000000 !important;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-menu li a:hover {
    color: #0097D9;
  }
  .nav-menu li a::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #007bff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .nav-menu li a:hover::after {
    transform: scaleX(1);
  }
  
  .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 60px;
  }
  .tagline-glassbox {
    padding: 10px 20px;
    background: linear-gradient(to right, #24aedd, #01225e); /* 🎨 UC Gradient */
    border-radius: 45px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    max-width: 600px;
  }
  
  .tagline-container {
    text-align: center;
    font-size: 23px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.3;
    color: white; /* ✅ Make text white */
  }
  
  /* Optional shimmer if previously added */
  .tagline-line .char {
    display: inline-block;
    animation: floatBounce 2.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
    background: linear-gradient(to right, #ffffff, #d0f0ff);
    background-size: 200%;
    background-position: left center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  @keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  

  
  /* 🔗 Navbar Links */
  .uc-nav-links {
    display: flex;
    gap: 40px;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
    flex: 1;

  }
  
  .uc-nav-links a {
    text-decoration: none;
    color: #002855;
    font-size: 18px;     /* 👈 Bigger text */
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .uc-nav-links a:hover {
    color: #00b2eb;
  }
  
  .uc-nav-links a:hover {
    color: #007acc;
  }
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      height: auto;
      padding: 16px;
      top: 64px; /* ensure it doesn't overlap marquee */
    }
  
    .nav-left, .nav-center, .nav-right {
      width: 100%;
      justify-content: center;
      text-align: center;
      margin: 10px 0;
      padding-right: 0;
    }
  
    .nav-menu,
    .uc-nav-links {
      flex-direction: column;
      gap: 20px;
      padding: 0;
      margin: 0;
    }
  
    .nav-menu li,
    .uc-nav-links a {
      width: 100%;
      color:white !important;
    }
  
    .uc-logo {
      height: 100px;
    }
  
    .tagline-container {
      font-size: 16px;
    }
  
    .tagline-glassbox {
      border-radius: 16px;
      padding: 8px 12px;
      max-width: 90%;
      margin: 0 auto;
    }
  }
    @media (max-width: 768px) {
      .nav-center {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 320px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 5000;
        opacity: 1;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
    
      .nav-center.active {
        transform: translateX(0);
        pointer-events: all;
      }
    
      .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        align-items: center;
        padding: 0;
        margin: 0;
      }
    
    .nav-menu li a {
      color: white !important;
      font-size: 22px;
    }
    }
  
  /* 🍔 Hamburger Icon – Mobile Only */
  .uc-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 6000 !important;
    width: 40px;
    height: 28px;
    background-color: #000;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .uc-hamburger span {
    width: 24px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  
  .uc-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .uc-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .uc-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 768px) {
    .uc-hamburger {
      display: flex;
      position: fixed;
      top: 1rem;
      right: 2.5rem;
      z-index: 3001;
      width: 40px;
      height: 28px;
      background-color: #000;
      border-radius: 6px;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease-in-out;
    }
  
    .uc-hamburger span {
      width: 24px;
      height: 3px;
      background-color: #fff;
      margin: 3px 0;
      border-radius: 2px;
      transition: 0.4s ease;
    }
  
    .uc-hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(7px);
    }
  
    .uc-hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .uc-hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-7px);
    }
  
    /* ✅ Yeh alag likhna tha */
    .nav-center {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 320px;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transform: translateX(100%);
      transition: transform 0.4s ease-in-out;
      z-index: 5000;
      opacity: 1;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
  
    .nav-center.active {
      transform: translateX(0);
      pointer-events: all;
    }
  
    .nav-menu {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      align-items: center;
      padding: 0;
      margin: 0;
    }
  
    .nav-menu li {
      width: 100%;
      text-align: center;
    }
  
    .nav-menu li a {
      font-size: 20px;
      color: #ffffff;
      text-decoration: none;
      padding: 10px 0;
      display: block;
      transition: 0.3s;
    }
  
    .nav-menu li a:hover {
      color: #00b2eb;
    }
  }
/* Hero Section Wrapper */
.hero-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 7%;
    background: radial-gradient(circle at top left, #e6e6e6, #d0d0d0);
    gap: 60px;
  
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate; /* ensures ::before glow stays under content */
  }
  
  /* ✨ Animated light gradient background */
  .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #c3f4ff, #f9f9f9, #d0f0f0, #f5f5f5);
    background-size: 400% 400%;
    animation: animatedBg 12s ease-in-out infinite;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.05), rgba(0,0,0,1) 60%);
  }
  
  @keyframes animatedBg {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* LEFT SIDE */
  .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    height: 100%;
    z-index: 1;
    animation: fadeInLeft 1.2s ease forwards;
    transform: translateX(-20px);
    opacity: 0;
  }
  
  @keyframes fadeInLeft {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .uc-hero-logo {
    height: 450px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1)); /* soft punch */
    transition: transform 0.3s ease;
  }
  .uc-hero-logo:hover {
    transform: scale(1.05); /* slight hover pulse */
  }
  
  .hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  }
  
  .hero-left .tagline {
    font-size: 20px;
    color: #111;
    margin: 0;
    opacity: 0.95;
  }
  
  .hero-left .sub {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  filter: blur(4px);
  animation: fadeSettle 1.6s ease-out 1.3s forwards;
  font-weight: 500;
  font-size: 23px;
  text-align: center;
  color: #444;
}

@keyframes fadeSettle {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(4px);
  }
  60% {
    opacity: 0.7;
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}
  .stomp-line {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 28px;
    margin-top: 20px;
  }
  
  .stomp-line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-150px) scale(1.2);
    animation: dropIn 0.9s cubic-bezier(0.23, 1.12, 0.32, 1);
    animation-fill-mode: forwards; /* 💡 THIS keeps final state */
  }
  
  .stomp-line span:nth-child(1) { animation-delay: 1s; }
  .stomp-line span:nth-child(2) { animation-delay: 2s; }
  .stomp-line span:nth-child(3) { animation-delay: 3s; }
  .stomp-line span:nth-child(4) { animation-delay: 4s; }
  .stomp-line span:nth-child(5) { animation-delay: 5s; }
  
  @keyframes dropIn {
    0% {
      opacity: 0;
      transform: translateY(-150px) scale(1.2);
    }
    60% {
      opacity: 1;
      transform: translateY(15px) scale(0.97);
    }
    100% {
      opacity: 1; /* 🛡️ ensure it stays visible */
      transform: translateY(0) scale(1);
    }
  }
  
  .cta-button {
    background-color: #007bff;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
  }
  
  .cta-button:hover {
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
  }
  
  /* RIGHT SIDE */
  .hero-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: fadeInRight 1.2s ease forwards;
    transform: translateX(20px);
    opacity: 0;
  }
  
  @keyframes fadeInRight {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .hero-right lottie-player {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
    transform: scale(1);
    transition: transform 0.3s ease;
  }
  
  .hero-right:hover lottie-player
  {
    transform: scale(1.03); /* subtle lift on hover */
  }
  @media (max-width: 768px) {
    .hero-banner {
      flex-direction: column;
      padding: 140px 20px 40px; /* ✅ extra top padding to prevent overlap */
      gap: 40px;
      text-align: center;
    }
  
    .hero-left {
      order: 1;
      transform: none !important;
      opacity: 1 !important;
      animation: none !important;
    }
  
    .uc-hero-logo {
      height: 220px;
    }
  
    .hero-left h1 {
      font-size: 1.8rem;
    }
  
    .hero-left .sub {
      font-size: 16px;
    }
  
    .stomp-line {
      font-size: 18px;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }
  
    .hero-right {
      order: 2;
      transform: none !important;
      opacity: 1 !important;
      animation: none !important;
    }
  
    .hero-right lottie-player {
      max-width: 100vw;
      width: 100%;
      height: auto;
      transform: scale(1.5); /* 👈 Slight upscale for stronger impact */
    }
  }
/* 🌟 Core Services Layout Styling (TTD Style) */
.uc-core-services {
    padding: 100px 20px;
    background: #f8f9fa;
    margin-top: 0;
    padding-top: 20px;

  }

  .core-heading-wrapper {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .core-heading {
    font-size: 50px;
    font-weight: 600;
    color: #004b76;
    position: relative;
    animation: shimmer-text 2s infinite;
  }
  
  .core-divider {
    height: 4px;
    width: 600px;
    margin: 16px auto 0;
    background: linear-gradient(to right, transparent, #005f6b, transparent);
    background-size: 200% auto; /* ✨ important for shimmer */
    background-position: left center;
    animation: shimmer-line 2s infinite linear;
    border-radius: 2px;
  }
  
  /* ✨ Animation Keyframes */
  @keyframes shimmer-line {
    0% {
      background-position: 200% center;
    }
    100% {
      background-position: -200% center;
    }
  }
  
  /* 🌟 Block Container */
  .uc-zigzag-services {
    background: linear-gradient(135deg, #f5f7fa, #e4ecf5, #f5f7fa);
    background-size: 600% 600%;
    animation: gradientMove 10s ease infinite;
    padding: 80px 20px;
    border-radius: 30px;
  }
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
 /* 💎 Glass Look + Padding + Shadow */
 .service-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1200px; /* 💡 Fixes your width issue too */
  transition: all 2s ease;
}
.service-card:hover {
  transform: scale(1.015);
}

/* 📐 Layout Flex */
.service-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* ⬅️ Icon and Heading on Left */
.service-left {
  flex: 1;
  text-align: center;
}
  
  .icon-box lottie-player {
    width: 360px;
    height: 360px;
    margin-bottom: 30px;
  }
  
  .service-left h3 {
    font-size: 40px;
    color: #002855;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .service-brief {
    font-size: 16px;
    color: #222;
    font-weight: 600;
  }
  
  /* Right Description */
  .service-right {
    flex: 2;
    font-size: 25px;
    color: #222;
    line-height: 1.8;
  }
  
/* ✨ Alternate Blocks: fade-in scroll effect */
[data-aos="fade-left"] {
  transform: translateX(500px);
  opacity: 0;
}

[data-aos="fade-right"] {
  transform: translateX(-500px);
  opacity: 0;
}

[data-aos].aos-animate {
  transform: translateX(0);
  opacity: 1;
}  
  /* ✨ Animations */
  @keyframes shimmerText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  
  @keyframes shimmerLine {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
  }
  
  /* 📱 Responsive */
  @media (max-width: 992px) {
    .service-inner {
      flex-direction: column;
      text-align: center;
    }
  
    .service-card.reverse .service-inner {
      flex-direction: column;
    }
  
    .service-left, .service-right {
      flex: unset;
      max-width: 100%;
    }
  
    .service-left lottie-player {
      width: 100px;
      height: 100px;
    }
  
    .service-right {
      text-align: left;
      padding-top: 12px;
    }
  }
  @media (max-width: 768px) {
    /* Common stack layout for all blocks */
    .service-inner {
      flex-direction: column;
      text-align: center;
    }
  
    .service-card.reverse .service-inner {
      flex-direction: column-reverse;
    }
  
    /* 🎯 Special fix only for 4th block */
    .service-card:nth-of-type(4) .service-inner {
      flex-direction: column-reverse;
    }
  
    .service-left,
    .service-right {
      width: 100%;
      flex: none;
      max-width: 100%;
      padding: 0 10px;
    }
  
    .service-left .icon-box lottie-player {
      width: 280px !important;
      height: 280px !important;
      margin: 0 auto 20px;
    }
  
    .service-right {
      font-size: 18px;
      text-align: center;
      padding-top: 15px;
    }
  
    .service-left h3 {
      font-size: 28px;
      margin-top: 15px;
    }
  
    .service-brief {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
  .uc-hardware-showcase {
    padding: 100px 20px;
    background: linear-gradient(135deg, #96d2f8, #fcb9af, #efee9d, #bdabff);
    background-size: 600% 600%;
    animation: gemGradientMove 5s ease infinite;
  }
  @keyframes gemGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .uc-hardware-heading {
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  }

  .uc-hardware-heading h2 {
    font-size: 45px;
    color: #002855;
    margin-bottom: 5px;
  }

  .uc-hardware-heading p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }

  .uc-hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .uc-hardware-card {
    width: 350px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25%;
    background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
    backdrop-filter: blur(12px); /* glass blur */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2); /* frosty border */
  }
  


  /* Pseudo-element for the blur effect */
  .uc-hardware-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f9f9f9; /* Match card background */
    z-index: -1; /* Place it behind the content */
    border-radius: 25%; /* Inherit card's border-radius */
    transition: filter 0.3s ease, background-color 0.3s ease; /* Transition for blur and color */
  }

  /* Apply blur to the pseudo-element on hover */
  .uc-hardware-card:hover::before {
    filter: blur(5px); /* Increased blur for more noticeable effect */
    background-color: rgba(249, 249, 249, 0.7); /* Optional: slight transparency for background */
  }

  .uc-hardware-card:not(.laptop-card) {
      position: relative;
      z-index: 5;
  }

  /* Container for the main card content (Lottie, H3, P) */
  .card-content-wrapper {
    position: relative; /* Needed for z-index */
    z-index: 1; /* Keep content above the blur pseudo-element */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 75%;
    height: 75%;
    transition: opacity 0.3s ease;
  }
  

  .laptop-card:hover .card-content-wrapper {
      opacity: 0; /* Fade out content on hover */
  }


  .brand-burst {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    /* Removed overflow:hidden from here, now handled by .uc-hardware-card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 15; /* Ensure icons are above blurred background */
    /* No blur filter here, icons will remain sharp */
  }

  .brand-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 3px 8px rgba(247, 220, 220, 0.1);
    opacity: 0;
    transform: translate(0, 50px) scale(0.5); /* Start from below and smaller */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transform-origin: top center; /* ✅ Rotate from top like a real pendulum */
    padding: 3px;
    pointer-events: auto;
    flex-shrink: 0;
    will-change: transform, opacity;
  }

  /* Hover effect for activating the slider */
  .laptop-card:hover .brand-burst {
    pointer-events: auto; /* Enable pointer events on hover */
  }

  /* Specific animations for each icon on hover to create a staggered slide-in effect */
  .laptop-card:hover .icon1 {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.1s;
    animation: pendulumFloat 3s infinite ease-in-out;
  }
  
  .laptop-card:hover .icon2 {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.3s;
    animation: pendulumFloat 3s infinite ease-in-out;
    animation-delay: -3.5s; /* ❗Opposite phase */
  }
  
  .laptop-card:hover .icon3 {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.6s;
    animation: pendulumFloat 3s infinite ease-in-out;
  }
  
  .laptop-card:hover .icon4 {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.9s;
    animation: pendulumFloat 3s infinite ease-in-out;
    animation-delay: -3.5s; /* ❗Alternate swing */
  }
  
  .laptop-card:hover .icon5 {
    transform: scale(1);
    opacity: 1;
    transition-delay: 1.2s;
    animation: pendulumFloat 3s infinite ease-in-out;
  }
  @keyframes pendulumFloat {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-6deg); }
    50%  { transform: rotate(6deg); }
    75%  { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }


  /* Media Query for Responsiveness (hide on mobile) */
  @media (max-width: 768px) {
    .uc-hardware-grid {
      grid-template-columns: 1fr;       /* Show 1 card per row */
      gap: 30px;                         /* Vertical space between cards */
      padding: 0 15px;
    }
  
    .uc-hardware-card {
      margin: 0 auto;                   /* Center the cards */
      width: 90%;                       /* Make width responsive */
    }
  }


  .brandwall-section {
    padding: 100px 40px;
    background: linear-gradient(145deg, #f2f8ff, #e7f1ff);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .brandwall-heading {
    text-align: center;
    font-size: 45px;
    color: #002a4e;
    margin-bottom: 60px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
  }
  
  .brandwall-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    justify-items: center;
    padding: 60px 20px;
    position: relative;
    perspective: 1000px;
  }
  
  .brand-logo {
    width: 125px;
    height: 125px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(-800px) scale(0.3) rotateX(70deg);
    transition: transform 0.5s ease, opacity 1s ease-in-out;
    will-change: transform, opacity;
    position: relative;
    backface-visibility: hidden;

  }
  .brand-logo:hover {
    transform: scale(2) !important;
    z-index: 5;
  }
  
  .brand-logo.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
  

  
  /* Subtle floating motion */
  @keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
  }
  /* 🌌 Enable perspective for entire brand wall */
#brandWall {
  perspective: 2000px;
  transform-style: preserve-3d;
  position: relative;
}
@media (max-width: 768px) {
  .brandwall-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 10px;
  }

  .brand-logo {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .brandwall-grid {
    grid-template-columns: repeat(3, 1fr); /* Optional tweak for very small screens */
    gap: 16px;
  }

  .brand-logo {
    width: 75px;
    height: 75px;
  }
}
.uc-section-divider {
  width: 850px;
  height: 4px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, #000000, transparent);
  border-radius: 2px;
  background-size: 200% auto;
  animation: shimmer-divider 3s infinite linear;
  opacity: 1;
}

/* Optional shimmer animation */
@keyframes shimmer-divider {
  0% {
    background-position: -200px;
  }
  100% {
    background-position: 400px;
  }
}
/* 🌟 Carousel Wrapper */
.testimonial-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 30px;
  background: #f9f9f9;
  justify-content: center;
}

/* 🌟 Track to Scroll Horizontally */
.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.testimonial-section {
  padding: 10px 0;
  background: linear-gradient(120deg, #a8cafc, #c2ffe3, #a8cafc);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
  text-align: center;
  position: relative;
}

/* ✅ Smooth animated gradient shifting */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.testimonial-heading {
  text-align: center;
  color: #000000;
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.testimonial-carousel {
  max-width: 100%;
  background: transparent !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.testimonial-track {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .testimonial-slide:hover {
    transform: scale(1.1);
    z-index: 2;
    background: transparent;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
  }
  
  /* Carousel track layout */
  .testimonial-carousel {
    overflow: hidden;
    position: relative;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
.testimonial-content {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease forwards;
  text-align: center;
  transform: scale(0.96);
  color: #fff;
  transform: scale(0.96);
}

.testimonial-content:hover {
  transform: scale(1.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.testimonial-icon {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.testimonial-text {
  font-size: 21px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 300;
}

.testimonial-name {
  font-size: 25px;
  font-weight: bold;
  color: #000000;

}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.uc-footer-container {
  display: flex;
  align-items: center;         /* ✅ Vertically center everything */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.uc-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;       /* ⬅️ center horizontally */
  justify-content: center;   /* ⬅️ center vertically */
  text-align: center;        /* ⬅️ center all text */
}

.uc-align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.uc-footer {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(12px);
  padding: 80px 60px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px 50px 0 0;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
}

.uc-footer-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.uc-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;  /* 🔁 Adjust this value for spacing */
}

.uc-footer-brand {
  display: flex;
  flex-direction: column;      /* 🔁 Stack logo and text vertically */
  align-items: center;         /* 🔁 Center them horizontally */
  text-align: center;          /* 🔁 Center text inside <div> */
  gap: 15px;                   /* Optional spacing between logo and text */
}

.uc-footer-logo {
  width: 120px;
  height: auto;
}
.uc-footer-col h4 {
  font-size: 25px;
  margin-bottom: 4px;
  color: #004b76;
}

.uc-footer-col h5 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.uc-footer-col p,
.uc-footer-col ul li,
.uc-footer-col a {
  font-size: 18px;
  color: #111;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uc-footer-col ul li {
  margin-bottom: 8px;
}

.uc-footer-col a:hover {
  color: #007cf0;
  transform: scale(1.05);
}

.uc-footer-bottom {
  background: linear-gradient(to right, #00bcd4, #004e92);
  color: #fff;
  text-align: center;
  padding: 20px 40px;

  width: 95%;                  /* ✅ Full screen width */
  max-width: none;              /* ✅ Remove restriction */
  margin: 40px auto 0;

  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  position: relative;
  left: 50%;
  transform: translateX(-50%);  /* ✅ True center with full width */
}
.uc-footer-bottom p {
  margin: 4px 0; /* ⬅️ Controls vertical spacing */
  line-height: 1.4;
  margin-bottom: 0% !important;
}
@media (max-width: 768px) {
  .uc-footer-container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  /* Align brand block at top */
  @media (max-width: 768px) {
    .uc-footer-col:nth-child(1) {
      order: -1;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }
  /* Force next two columns into same row */
  .uc-footer-col:nth-child(2),
  .uc-footer-col:nth-child(3) {
    width: 35%;
    text-align: left;
    align-items: flex-start;
  }

  .uc-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.ttd-credit {
  font-weight: normal;
  font-size: x-large;
  color: #ffffff;
}
.ttd-credit:hover {
  color: #f4b026;
}

#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 35px;
  background-color: #1366c0;
  color: white;
  border: none;
  outline: none;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #0056b3;
}
/* =========================
   Slider CSS – External File
   ========================= */
/* 🔳 Section Wrapper */
.product-photo-slider-boxed {
  background: #e8e8e8;
  padding: 40px 20px;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px auto;
  max-width: 98vw;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 📜 Scrolling Container */
.photo-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

/* 🚂 Scroll Track */
.photo-scroll-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 60s linear infinite;
  width: max-content;
}

/* 🖼️ Individual Slides */
.photo-slide-small {
  position: relative;
  flex: 0 0 auto;
  width: 850px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  background: #000;
}

.photo-slide-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* 🔍 Hover Effects */
.photo-slide-small:hover {
  transform: scale(1.05);
  z-index: 2;
}

.photo-slide-small:hover img {
  transform: scale(1.1);
}

/* 💬 Overlay on Hover */
.photo-hover-info {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 0, 170, 0.8);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: top 0.4s ease-in-out;
}

.photo-slide-small:hover .photo-hover-info {
  top: 0;
}

/* ✨ Text Styling */
.photo-hover-info h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.photo-hover-info p {
  font-size: 15px;
  line-height: 1.4;
}

/* 🔁 Keyframes for infinite scroll */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
  /* Overlay */
  .photo-overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 16px;
    transition: top 0.6s ease-in-out;
    z-index: 2;
  }
  
  .photo-slide:hover .photo-overlay {
    top: 0;
  }
  
  /* Progress bar */
  .photo-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 5;
  }
  
  .progress-fill {
    width: 0;
    height: 100%;
    background: rgb(239, 228, 185);
    transition: width 6s linear;
    border-radius: 4px;
  }
  
  /* Animations */
  .fade-in { animation: fadeIn 1s ease forwards; }
  .slide-left { animation: slideLeft 1s ease forwards; }
  .zoom-in { animation: zoomIn 1s ease forwards; }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideLeft {
    from { transform: translateX(30%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  @keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  @media (max-width: 768px) {
    .photo-slide-small {
      width: 550px !important;
      height: auto !important;
      aspect-ratio: 16 / 9 !important;
    }
  
    .photo-slide-small img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
    }
  }
  
  @media (max-width: 480px) {
    .photo-slide-small {
      width: 440px !important;
    }
  }
  
/* Contact us page */

.uc-contact-hero {
  background: radial-gradient(ellipse at center, #0d1b2a, #000c1f);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  max-width: 700px;
  margin: auto;
}

.contact-hero-content h1 {
  font-size: 48px;
  margin: 20px 0 10px;
  font-weight: 700;
  background: linear-gradient(to right, #33c1ff, #0091ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-content p {
  font-size: 20px;
  color: #ccc;
}
/* 🔹 CONTACT SPLIT SECTION */
.uc-contact-split {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 40px;
  color: white;
  z-index: 1;
  overflow: hidden;
  background-color: #010f1c; /* fallback */
}

/* 🔹 BACKGROUND LAYER - TECH FEEL */
.uc-contact-split::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background: 
    radial-gradient(circle at 10% 20%, #00ffe0 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, #0099ff 0%, transparent 30%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 10px);
  animation: moveBg 25s linear infinite;
}

@keyframes moveBg {
  0% {
    background-position: 0 0, 100% 100%, 0 0;
  }
  100% {
    background-position: -300px -300px, 300px 300px, 100px 100px;
  }
}

/* Preview Box */
.map-preview-box {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 🖱️ Centered "View" Button */
.zoom-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px 22px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.3s;
  z-index: 2;
}
.map-preview-box:hover .zoom-button {
  opacity: 1;
  pointer-events: auto;
}

.map-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.8s ease-out;
}

.map-overlay.hidden {
  display: none;
}

.map-overlay-box {
  position: relative; /* ✅ Important */
  width: 90%;
  max-width: 960px;
  height: 75vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: zoomIn 1s ease;
}
.map-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 28px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.map-close-btn:hover {
  background: rgba(255, 0, 0, 0.85);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* ✅ Animated fade and zoom */
.map-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.map-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body.lock-scroll {
  overflow: hidden;
}

/* ✨ Animated "View" Button */
.zoom-button {
  animation: viewPulse 2s infinite ease-in-out;
  box-shadow: 0 0 12px rgba(0, 183, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.7);
}

/* 💫 Keyframes */
@keyframes viewPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 183, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 183, 255, 0.8);
  }
}

/* 🔹 CONTACT DETAILS BLOCK */
.uc-contact-details {
  flex: 1 1 40%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  z-index: 1;
  position: relative;
}

/* 🔹 INDIVIDUAL CONTACT ITEM */
.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgb(232, 207, 207);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.1);
}

.detail-item:hover {
  transform: scale(1.03);
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}
/* 🌐 UC Contact Page Styling */
.uc-contact-section {
  padding: 80px 40px;
  background: radial-gradient(ellipse at center, #e6f1f8 0%, #d1e3f0 100%);
  backdrop-filter: blur(6px);
  text-align: center;
  color: #002b45;
  position: relative;
  overflow:  hidden;
  z-index: 1;
}

.uc-contact-header h2 {
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 10px;
}

.uc-contact-header p {
  font-size: 23px;
  margin-bottom: 40px;
  color: #cee9ff;
}

/* 🗺️ Map Box */
.uc-map-box {
  margin: 0 auto 60px;
  max-width: 1100px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* 📞 Contact Grid */
.uc-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 💥 Fixed to 4 in a row */
  gap: 100px !important;
  max-width: 2000px;
  justify-content: center;
  margin: 0 auto ;
  padding: 0 10px;
}

.uc-contact-card {
  background: rgba(255, 255, 255, 0.9); /* ✅ Almost fully white glass */
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  padding: 40px 30px;
  min-height: 220px;
  color: #111; /* 🖤 Black text */
  transition: all 0.3s ease;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.uc-contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.uc-contact-card lord-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.uc-contact-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000000;
}

.uc-contact-card p {
  font-size: 16px;
  color: #000000;
}
.uc-contact-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.uc-contact-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .uc-contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 16px;
  }

  .uc-contact-card {
    width: 100%;
    max-width: 420px;
  }
}

.abstract-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgb(244, 203, 132), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(172, 231, 240, 0.883), transparent 50%),
              linear-gradient(135deg, rgb(30, 241, 196) 25%, transparent 25%),
              linear-gradient(225deg, rgb(242, 228, 124) 25%, transparent 25%);
  background-size: 200% 200%;
  animation: shimmerMove 5s infinite linear;
  z-index: 1;
  filter: blur(3px);
}

@keyframes shimmerMove {
  0%    { background-position: 0% 0%; }
  5%    { background-position: 6% 6%; }
  10%   { background-position: 12% 12%; }
  15%   { background-position: 18% 18%; }
  20%   { background-position: 24% 24%; }
  25%   { background-position: 30% 30%; }
  30%   { background-position: 36% 36%; }
  35%   { background-position: 42% 42%; }
  40%   { background-position: 48% 48%; }
  45%   { background-position: 54% 54%; }
  50%   { background-position: 60% 60%; }
  55%   { background-position: 66% 66%; }
  60%   { background-position: 72% 72%; }
  65%   { background-position: 78% 78%; }
  70%   { background-position: 84% 84%; }
  75%   { background-position: 90% 90%; }
  80%   { background-position: 96% 96%; }
  85%   { background-position: 85% 85%; }
  90%   { background-position: 60% 60%; }
  95%   { background-position: 30% 30%; }
  100%  { background-position: 0% 0%; }
}
.uc-contact-overlay {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.03); /* Soft glassy */
  border-radius: 12px;
}


/* 🔹 This holds the section content over the video */
.uc-contact-overlay {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.1); /* Light tint for clarity */
}

/* 🔧 Optional: Remove any background from section itself */
.uc-contact-section {
  background: transparent !important; /* Overrides blue bg if any */
}

/* About Section */
.uc-about-section {
  margin-top: 50px;
  padding: 80px 60px;
  background-color: #f5f7fa;
}

.uc-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.uc-about-text {
  text-align: left;
  flex: 1 1 45%;
  font-size: 23px;
  line-height: 1.7;
  color: #000000;
}

.uc-about-text h2 {
  font-size: 35px;
  text-align: left;
  margin-bottom: 20px;
  color: #000000;
}

.uc-about-images {
  flex: 1 1 25%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  position: relative;
}

.uc-about-images img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.uc-about-images img:nth-child(odd) {
  transform: rotate(-3deg);
}

.uc-about-images img:nth-child(even) {
  transform: rotate(2deg);
}

.uc-about-images img:hover {
  transform: scale(1.03) rotate(0deg);
}
.uc-about-section {
  position: relative;
  padding: 80px 60px;
  overflow: hidden;
  z-index: 1;
}

/* ✨ Shimmer BG Animation */
.uc-about-section {
  max-width: 1550px;
  margin: 80px auto;
  position: relative;
  padding: 80px 60px;
  background: rgb(180, 217, 243); /* subtle glassy blue */
  backdrop-filter: blur(5px);
  border-radius: 30px;         /* iPhone-style corners */
  border: 2px solid #3b3838;   /* Solid black border */
  border-radius: -40px;  /* iPhone-style smooth corners */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); /* Light shadow */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  border-radius: 40px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}
.years-counter-box {
  text-align: center;
  width: 100%;
  margin-top: 30px;
}

.years-counter-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
}

#yearsCounter {
  color: #007cf0;
}
.experience-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #007cf0;
  padding: 20px 30px;
  border-radius: 16px;
  font-size: 35px;
  font-weight: bold;
  color: #003366;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.2);
  opacity: 0;
  z-index: 9999;
  transition: all 0.4s ease;
  pointer-events: none;
}

.experience-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.experience-popup.hide {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
} 
@media (max-width: 768px) {
  /* About Text */
  .uc-about-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
  }

  .uc-about-text h2 {
    font-size: 26px;
    text-align: center;
  }

  /* Images one by one */
  .uc-about-images {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .uc-about-images img {
    max-width: 90%;
  }

  /* 22 Years Text */
  .years-counter-box h2 {
    font-size: 22px;
    text-align: center;
  }

  /* Popup */
  .experience-popup {
    max-width: 300px;
    padding: 18px 24px;
    font-size: 20px;
    border-radius: 12px;
  }
}

    h2 {
      margin-bottom: 40px;
      font-size: 2.2rem;
      color: #333;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      width: 100%;
      max-width: 1300px;
    }

    .support-card {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      position: relative;
      transition: transform 0.3s ease;
    }

    .support-card:hover {
      transform: scale(1.03);
    }

    .support-logo {
      height: 75px;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .brand-name {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #0b5ed7;
    }

    .digit-line {
      font-size: 20px;
      font-weight: 700;
      color: #000;
      display: inline-block;
      overflow: hidden;
      letter-spacing: 1px;
    }

    .digit {
      display: inline-block;
      transform: translateY(40px);
      opacity: 0;
      animation: slideIn 0.5s forwards;
    }

    @keyframes slideIn {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
.support-section {
  padding: 60px 20px;
  background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.support-section h1 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #333;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  text-align: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.icon-wrapper {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrapper:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .support-section {
    padding-top: 200px; /* Adjust if your navbar is taller/shorter */
  }
}

@media (max-width: 768px) {
  .uc-core-services {
    display: none !important;
  }
}
  @media (max-width: 768px) {
  .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .icon-circle:hover {
    transform: scale(1.05);
  }

  .icon-wrapper lord-icon {
    width: 40px !important;
    height: 40px !important;
  }
} 






























body.lock-scroll {
  overflow: hidden;
}
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}