@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* overflow-x: hidden; */
}

.nav-wrapper{
  display:none;
}

/* WebKit Scrollbar */
::-webkit-scrollbar {
  width: 15px;
  /* height: 300px; */
}

::-webkit-scrollbar-track {
  background-color: #121212;
}

::-webkit-scrollbar-thumb {
  background-color: #00bfff;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 10px;
  border: 2px solid #121212;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1ed1ff;
}


html {
  scroll-behavior: smooth;
}

.fa-bars {
  display: none !important;
  transition: transform 0.4s ease-in-out!important;
}

.fa-times{
  /* color: red !important; */
  font-size: 35px !important;
  color: var(--white) !important;
}

#menuIcon.animate {
  animation: rotateIcon 0.5s ease;
}

@keyframes rotateIcon {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(90deg) scale(1.3);
  }

  100% {
    transform: rotate(180deg) scale(1);
  }
}

:root {
  --main-font: "Poppins", sans-serif;
  --text-primary: #ccd6f6;
  --text-secondary: #8892b0;
  --text-accent: #64ffda;
  --background-primary: #0a192f;
  --background-secondary: #112240;
  --background-light: #1a2b42;
  --white: #ffffff;
  --light-bg: #f0f4f8;
  --border-color: #233554;
  --shadow-color: rgba(2, 12, 27, 0.7);
  --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #8b5cf6 100%);
  --gradient-accent: linear-gradient(135deg, #00bcd4 0%, #64ffda 100%);
  --primary-color: #0f172a;
  /* deep navy blue */
  --accent-color: #38bdf8;
  /* bright sky blue */
  --accent-hover: #0ea5e9;
  /* darker sky blue */
  --text-color: #e2e8f0;
  /* light gray-blue */
  --bg-color: #020617;
  /* near-black */
  --surface-color: #1e293b;
  /* mid navy blue */
  --muted-text: #94a3b8;
  /* soft blue-gray */
  --white: #ffffff;
  --transition: 0.3s ease-in-out;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --font-size-small: 0.875rem;
  /* 14px */
  --font-size-base: 0.95rem;
  /* 16px */
  --font-size-large: 1.25rem;
  /* 20px */
  --font-size-xlarge: 45px;
  /* 24px */

  --primary: #0f172a;
  --secondary: #1e293b;
  --accent1: #00f0ff;
  --accent2: #8b5cf6;

  --bg-dark: #0f172a;
  --blue-deep: #1e3a8a;
  --blue-bright: #2563eb;
  --cyan-accent: #38bdf8;
  --text-muted: #94a3b8;
  --white: #ffffff;

  --bg-dark: #0f172a;
  /* Dark background */
  --bg-medium: #1e2a3a;
  /* Medium dark blue-gray for sections */
  --bg-light: #2a3a4a;
  /* Slightly lighter blue for form inputs/accordion headers */
  --text-light: #e0e0e0;
  /* Light gray for general text */
  --text-highlight: #ffffff;
  /* Pure white for headings/important text */
  --accent-blue: #38bdf8;
  /* Cyan highlight */
  --accent-deep-blue: #2563eb;
  /* Bright blue (accent) */
  --border-color: #1e3a8a;
  /* Deep blue for borders */
  --shadow-color: rgba(0, 0, 0, 0.4);
  /* Darker shadows */
  --focus-ring: #00e5ff;
  /* Electric blue for focus states */
}

.fa-circle-user,
.fa-bell,
.fa-code,
.fa-laptop,
.fa-computer,
.fa-chalkboard-user,
.fa-person-chalkboard,
.fa-mobile-screen {
  font-size: 35px;
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
}

body {
  font-family: var(--main-font);
  width: 100%;
  min-height: 100vh;
  font-size: .9em;
}

#main-content {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in, visibility 0.7s ease-in;
  /* Smooth fade in */
}

#main-content.visible {
  width: 100%;
  opacity: 1;
  visibility: visible;
  overflow: auto;
}

/* section styles default */
section {
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

/* Header styles starts here */
/* Scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #8b5cf6, #00f0ff);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

header {
  width: 100%;
  height: 75px;
  background-color: var(--background-primary);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: fixed;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  top: 0;
}

/* Glassmorphism effect on scroll */
header.scrolled {
  height: 65px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

header.scrolled .logo {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* Logo styling and effects */
.logo {
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05) rotate(3deg);
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.6));
}

/* navigation styles */
header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

header nav .navLinks {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

header nav a {
  font-size: 0.85em;
  color: var(--text-primary);
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

header nav a:hover {
  color: #38bdf8;
  transform: translateY(-2px);
}

header nav a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  bottom: -3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

header nav a:hover::before {
  width: 100%;
}

/* Social media icons in header */
.social-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-right: 10px;
}

.social-nav a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-nav a:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
}

.social-nav a:hover::before {
    opacity: 1;
}

.social-nav a i {
    position: relative;
    z-index: 1;
}

header nav a:nth-child(1)::before {
  width: 100%;
}

/* Active section indicator */
header nav a.active {
  color: #38bdf8;
}

header nav a.active::before {
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #8b5cf6);
}

/* nav button */
header .navBtn button {
  width: 150px;
  height: 45px;
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

header .navBtn button i {
  transition: transform 0.3s ease;
}

header .navBtn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

header .navBtn button:hover i {
  transform: translateX(5px);
}

header .navBtn button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

header .navBtn button:hover::before {
  width: 300px;
  height: 300px;
}

/* Header styles ends here */

/* ========================================== */
/* Mobile Bottom Navigation */
/* ========================================== */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 3px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  max-width: 65px;
  min-height: 58px;
  border-radius: 50%;
}

.mobile-bottom-nav-item i {
  font-size: 1.3rem;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: inherit;
}

.mobile-bottom-nav-item span {
  font-size: 0.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-bottom-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 3px 3px;
  transition: transform 0.3s ease;
  display: none; /* Hide the top gradient bar */
}

.mobile-bottom-nav-item.active::before,
.mobile-bottom-nav-item:active::before {
  transform: translateX(-50%) scaleX(1);
  display: none; /* Ensure gradient stays hidden */
}

.mobile-bottom-nav-item.active {
  color: #38bdf8;
}

.mobile-bottom-nav-item.active i {
  transform: translateY(-3px) scale(1.15);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.4));
}

.mobile-bottom-nav-item.active span {
  color: #38bdf8;
  font-weight: 600;
}

.mobile-bottom-nav-item:active {
  transform: scale(0.95);
}

/* Ripple effect for touch feedback */
.mobile-bottom-nav-item {
  overflow: hidden;
}

.mobile-bottom-nav-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.mobile-bottom-nav-item:active::after {
  width: 60px;
  height: 60px;
}

/* Show bottom nav on mobile */
@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
  }

  /* Hide the entire header on mobile */
  #header {
    display: none !important;
  }

  /* Hide the hamburger menu icon */
  .fa-bars {
    display: none !important;
  }

  /* Adjust sections to account for no header */
  #Home {
    padding-top: 0;
    min-height: 100vh;
  }

  /* Add padding to bottom of sections to account for fixed nav */
  section:last-of-type {
    padding-bottom: 80px;
  }

  footer {
    padding-bottom: 120px !important;
  }

  /* Floating action button adjustment */
  .fab-button {
    bottom: 80px !important;
  }

  /* Team section mobile - Swipeable Carousel */
  .Team {
    padding: 60px 0 80px 0;
  }

  .team-carousel {
    overflow: hidden;
    padding: 0 10px;
    margin-top: 40px;
    position: relative;
    touch-action: pan-y pinch-zoom;
  }

  .team-carousel::before,
  .team-carousel::after {
    display: none;
  }

  .team-track {
    display: flex;
    gap: 20px;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .team-card {
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    flex-shrink: 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(15, 30, 55, 0.95) 100%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
    transition: all 0.3s ease;
  }

  /* Pagination dots - positioned below cards */
  .team-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px 0;
  }

  .team-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .team-pagination-dot.active {
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    transform: scale(1.2);
  }

  /* Swipe indicators */
  .team-swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.85rem;
    animation: pulse 2s ease-in-out infinite;
  }

  .team-swipe-hint i {
    font-size: 1.2rem;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }

  /* Ensure buttons are visible below carousel */
  .Team .butns {
    display: flex !important;
    margin-top: 50px;
    flex-direction: column;
    gap: 15px;
  }

  .Team .butns button {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav-item {
    padding: 5px 2px;
    max-width: 60px;
    min-height: 52px;
  }

  .mobile-bottom-nav-item i {
    font-size: 1.2rem;
  }

  .mobile-bottom-nav-item span {
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .mobile-bottom-nav-item {
    padding: 4px 2px;
    max-width: 55px;
    min-height: 48px;
    gap: 2px;
  }

  .mobile-bottom-nav-item i {
    font-size: 1.1rem;
  }

  .mobile-bottom-nav-item span {
    font-size: 0.52rem;
  }

  /* Team section - Smaller screens */
  .Team h2 {
    font-size: 1.3rem;
  }

  .Team h1 {
    font-size: 1.8rem;
  }

  .Team .para {
    font-size: 0.95rem;
  }

  .team-pagination {
    margin-top: 18px;
    padding: 10px 0;
    gap: 10px;
  }

  .team-pagination-dot {
    width: 8px;
    height: 8px;
  }

  .team-swipe-hint {
    font-size: 0.75rem;
    margin-top: 10px;
  }

  .team-swipe-hint i {
    font-size: 1rem;
  }
}

/* ========================================== */
/* Mobile Navigation Overlay Styles */
/* ========================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    position: relative;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    margin-bottom: 40px;
}

.close-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(56, 189, 248, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-nav:hover {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(90deg);
}

.mobile-nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 18px;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    transform: translateX(10px);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    transform: scaleY(1);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.mobile-nav-footer {
    padding: 20px 0;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-cta-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

.mobile-cta-btn i {
    transition: transform 0.3s ease;
}

.mobile-cta-btn:hover i {
    transform: translateX(5px);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.mobile-social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
    border-color: transparent;
}

/* Animation for mobile nav links */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-overlay.active .mobile-nav-link {
    animation: slideInRight 0.4s ease forwards;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(7) { animation-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(8) { animation-delay: 0.45s; }

/* ========================================== */
/* Home section styles */

#Home {
  background-color: var(--background-secondary);
  position: relative;
  overflow: hidden;
  /* Dot grid pattern */
  background-image: 
    radial-gradient(circle, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

/* Floating Bubbles Background */
.floating-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(56, 189, 248, 0.15), 
    rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 
    0 0 20px rgba(56, 189, 248, 0.1),
    inset 0 0 20px rgba(139, 92, 246, 0.05);
  animation: float linear infinite;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 25%;
  animation-duration: 25s;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 40%;
  animation-duration: 18s;
  animation-delay: 4s;
}

.bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 60%;
  animation-duration: 22s;
  animation-delay: 1s;
}

.bubble:nth-child(5) {
  width: 90px;
  height: 90px;
  left: 75%;
  animation-duration: 24s;
  animation-delay: 3s;
}

.bubble:nth-child(6) {
  width: 70px;
  height: 70px;
  left: 15%;
  animation-duration: 19s;
  animation-delay: 5s;
}

.bubble:nth-child(7) {
  width: 110px;
  height: 110px;
  left: 85%;
  animation-duration: 23s;
  animation-delay: 2.5s;
}

.bubble:nth-child(8) {
  width: 65px;
  height: 65px;
  left: 50%;
  animation-duration: 21s;
  animation-delay: 4.5s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) scale(1.2) rotate(360deg);
    opacity: 0;
  }
}

/* Gradient Orbs Background */
.gradient-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #38bdf8, #8b5cf6);
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6, #00f0ff);
  bottom: -10%;
  right: -5%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00f0ff, #38bdf8);
  top: 40%;
  right: 20%;
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Floating Tech Icons */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-icon {
  position: absolute;
  font-size: 3rem;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconFloat 8s ease-in-out infinite;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
  opacity: 0.7;
}

.tech-icon:nth-child(1) { animation-duration: 7s; animation-delay: 0s; }
.tech-icon:nth-child(2) { animation-duration: 9s; animation-delay: 1s; }
.tech-icon:nth-child(3) { animation-duration: 8s; animation-delay: 2s; }
.tech-icon:nth-child(4) { animation-duration: 10s; animation-delay: 0.5s; }
.tech-icon:nth-child(5) { animation-duration: 7.5s; animation-delay: 1.5s; }
.tech-icon:nth-child(6) { animation-duration: 9.5s; animation-delay: 0.8s; }
.tech-icon:nth-child(7) { animation-duration: 8.5s; animation-delay: 2.5s; }
.tech-icon:nth-child(8) { animation-duration: 11s; animation-delay: 1.2s; }

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
  }
  50% {
    transform: translateY(-35px) rotate(-5deg) scale(1.15);
    opacity: 0.9;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
  }
  75% {
    transform: translateY(-20px) rotate(3deg) scale(1.1);
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
  }
}

.home {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.home001 h1 {
  font-weight: bold;
  font-size: var(--font-size-xlarge);
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
  line-height: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 2s ease-in-out, opacity 2s;
  /* Neon glow effect */
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
  /* transition-delay: 3s; */
}

.home001 h1:hover {
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.6)) 
          drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
  transition: filter 0.3s ease;
}

#Home.showonX h1{
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

#Home.showonX h1:nth-child(1){
  transition-delay: 2s;
}

#Home.showonX h1:nth-child(2){
  transition-delay: 2.5s;
}

#Home.showonX h1:nth-child(3){
  transition-delay: 3s;
}

/* #Home.showonX h1:nth-child(3){
  
} */



.hero {
  /* position: relative; */
  width: max-content;
}

.hero::before {
  content: "";
  color: red;
  width: 23%;
  position: absolute;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 50px;
}

.hero-text {
  color: var(--text-primary);
}

.work p{
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 2s ease-in-out, opacity 2s;

} 

#Home.showonX .work p:nth-child(1){
  /* background-color: red; */
  visibility: visible;
  opacity: 1;
  transition-delay: 2s;
  transform: translateY(0%);
}

#Home.showonX .work p:nth-child(2){
  /* background-color: red; */
  visibility: visible;
  opacity: 1;
  transition-delay: 2.5s;
  transform: translateY(0%);
}

#Home.showonX .work p:nth-child(3){
  /* background-color: red; */
  visibility: visible;
  opacity: 1;
  transition-delay: 3s;
  transform: translateY(0%);
}

.btns {
  display: flex;
  gap: 10px;
}

.btns button:nth-child(1) {
  background: var(--gradient-primary);
  color: var(--white);
  font-size: var(--font-size-base);
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 2s ease-in-out, opacity 2s;
}


.btns button:nth-child(2) {
  color: #fff;
  position: relative;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  z-index: 999;
  border-radius: 2px;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 2s ease-in-out, opacity 2s;
}

#Home.showImg .btns button:nth-child(1){
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 2s;
}

#Home.showImg .btns button:nth-child(2){
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 3s;
}

.btns button:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  left: 2px;
  bottom: 2px;
  background-color: var(--background-light);
  border-radius: 2px;
  z-index: -1;
  border-radius: 50px;
}

.btns button {
  width: 150px;
  border-radius: none;
  height: 45px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* border-radius: 50px; */
}

/* Enhanced button hover effects */
.btns button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.btns button:nth-child(1):hover {
  box-shadow: 0 10px 35px rgba(0, 240, 255, 0.5);
}

.btns button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btns button:hover::after {
  width: 300px;
  height: 300px;
}

.btns button:active {
  transform: translateY(-1px);
}

.box {
  width: 500px;
  height: 400px;
  /* background-color: red; */
  /* border-bottom: 2px solid var(--accent-deep-blue); */
  /* transform: scale(1.1); */
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 2s ease-in-out, opacity 2s;
  transition-delay: 3s;
  filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.3));
}

#Home.showImg .box{
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  animation: heroFloat 6s ease-in-out infinite;
  /* background-color: red; */
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  animation: fadeInScroll 1s ease-in-out 4s forwards;
}

.scroll-indicator span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(56, 189, 248, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  position: relative;
}

.scroll-arrow i {
  color: #38bdf8;
  font-size: 14px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@keyframes fadeInScroll {
  to {
    opacity: 1;
  }
}


/* About section */
.about {
  padding: 100px;
  width: 100%;
  min-height: 120vh;
  background-color: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background-color: red; */
  /* display:none; */
}

.about001 {
  display: grid;
  grid-template-columns: 400px 400px;
  gap: 20px;
}

.about001 p {
  font-size: var(--font-size-small);
  width: 300px;
  color: var(--text-secondary);
}

.about001 h3 {
  font-size: var(--font-size-large);
  width: 300px;
  color: var(--white);
}

.main001 {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: var(--background-secondary);
  width: 100%;
  height: 85%;
  border-radius: 5px;
  padding: 0px 50px;
  /* background-color: red; */
}

.heading {
  font-size: 35px;
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
}

.aboutBtn button {
  width: 150px;
  height: 45px;
  float: right;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  transition-delay: .5s !important;
}

.counter-container {
  width: 100%;
  display: flex;
  gap: 10px;
  /* background-color: red; */
}

.counter-card {
  width: 100px;
  height: 100px;
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.counter-card div {
  font-size: var(--font-size-xlarge);
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
  font-weight: 400;
}

.counter-container .counter-card:nth-child(2) {
  color: var(--text-accent);
  margin-top: 50px;
}

.about-main002 {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 100%;
  height: 400px;
  background-color: var(--background-secondary);
  padding: 0 50px;
}

/* 
.counter-card div{
    font-size: var(--font-size-xlarge);
} */

/* section services */
.services {
  width: 100%;
  min-height: 100vh;
  background: var(--background-secondary);
  padding: 100px;
}

.title {
  font-size: 35px;
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
  text-align: center;
}

.sub-title {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

.serviceCards {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* background-color: blue; */
  height: 100%;
  width: 100%;
}

.img {
  width: 100%;
  height: 90%;
  /* background-color: red; */
  border-radius: 5px;
}

.img img {
  width: 100%;
  height: 100%;
}

.serviceCards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
  gap: 20px;
  width: 100%;
  /* max-width: 1000px; */
  /* background-color: red; */
}

.serviceCard-grid {
  width: 100%;
  background-color: var(--background-primary);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.serviceCard-grid h3 {
  color: var(--text-primary);
}

.serviceCard-grid p {
  font-size: 0.8em;
  width: 300px;
  color: var(--text-secondary);
}

.paragraph {
  color: var(--text-secondary);
  font-size: 0.8em;
  margin-top: 7px;
}

.butns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.butns button {
  min-width: 180px;
  height: 45px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 25px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.butns button:nth-child(1) {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.butns button:nth-child(2) {
  color: #fff;
  position: relative;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  z-index: 999;
  border-radius: 50px;
}

.butns button:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  left: 2px;
  bottom: 2px;
  background-color: var(--background-light);
  border-radius: 50px;
  border-radius: none;
  z-index: -1;
}

.serviceCard001 h3 {
  color: var(--text-primary);
}

/* process section */
.process {
  padding: 100px;
  width: 100%;
  min-height: 100vh;
  background-color: var(--background-light);
}

.process h1 {
  font-size: 30px;
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
  /* text-align: center; */
}

.ourProcess {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.process002 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.processCard {
  width: 100%;
  padding: 30px;
  background: var(--background-secondary);
}

.processCard h3 {
  color: var(--text-primary);
}

/* why choose us */
.whyChooseUs {
  width: 100%;
  min-height: 100vh;
  background-color: var(--background-secondary);
  padding: 100px;
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.geometric-shape {
  position: absolute;
  opacity: 0.05;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #60d5ff, #38bdf8);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 60%;
  right: 8%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #60d5ff, #38bdf8);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 30%;
  right: 15%;
  animation-delay: 8s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  bottom: 15%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(20px) rotate(-5deg);
  }
}

.Blog1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.Blog001 {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.BlogCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Remove the centered 4th card rule since we now have 2 columns */
.BlogCards .blogCard:nth-child(4) {
  grid-column: auto;
}

@media (max-width: 768px) {
  .BlogCards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .BlogCards .blogCard:nth-child(4) {
    grid-column: auto;
  }
}

.blogCard {
  background: #0a192f;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 
              0 0 20px rgba(56, 189, 248, 0.1);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.blogCard.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.blogCard:nth-child(1).card-visible {
  transition-delay: 0.1s;
}

.blogCard:nth-child(2).card-visible {
  transition-delay: 0.2s;
}

.blogCard:nth-child(3).card-visible {
  transition-delay: 0.3s;
}

.blogCard:nth-child(4).card-visible {
  transition-delay: 0.4s;
}

.blogCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.3),
              0 0 30px rgba(56, 189, 248, 0.2);
}

.blogCard h4 {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 15px 0 10px;
}

.blogCard p {
  font-size: 0.85em;
  text-align: center;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.6;
}

.iconz {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
  background: rgba(56, 189, 248, 0.15);
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.blogCard:hover .iconz {
  background: rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.5);
  transform: scale(1.1);
}

.fa-handshake,
.fa-clock,
.fa-ranking-star,
.fa-users-line {
  font-size: 1.8rem;
  color: #60d5ff;
  filter: drop-shadow(0 0 10px rgba(96, 213, 255, 0.3));
}

.Blog001 h1 {
  background: linear-gradient(90deg, #60d5ff 0%, #38bdf8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.Blog001 h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #60d5ff, transparent);
  border-radius: 2px;
}

.Blog001 p {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin: 5px 0;
  opacity: 0.9;
}

/* Statistics Section */
.why-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stat-box {
  background: rgba(56, 189, 248, 0.05);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  color: #60d5ff;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(96, 213, 255, 0.4));
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #60d5ff, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Flip Card Effect */
.flip-card {
  background: transparent;
  perspective: 1000px;
  height: 350px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Mobile tap to flip */
@media (max-width: 768px) {
  .flip-card.mobile-flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 30px;
  background: #0a192f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 
              0 0 20px rgba(56, 189, 248, 0.1);
}

.flip-card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #0a192f 0%, #0d1f3a 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-hint {
  margin-top: auto;
  font-size: 0.75rem;
  color: rgba(96, 213, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.flip-hint i {
  font-size: 0.8rem;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Progress Bars */
.skill-bar {
  margin-bottom: 20px;
  text-align: left;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #fff;
}

.progress {
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #60d5ff, #38bdf8);
  border-radius: 10px;
  width: 0;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(96, 213, 255, 0.5);
}

.flip-card:hover .progress-fill {
  width: var(--width) !important;
}

/* Back Card Stats */
.flip-card-back h4 {
  margin-bottom: 25px;
  color: #60d5ff;
  font-size: 1.2rem;
}

.back-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.back-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 8px;
  border-left: 3px solid #60d5ff;
  transition: all 0.3s ease;
}

.back-stat-item:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateX(5px);
}

.back-stat-item i {
  color: #60d5ff;
  font-size: 1.2rem;
  min-width: 20px;
}

.back-stat-item span {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
}

/* Mini Testimonial in Cards */
.mini-testimonial {
  margin-top: 20px;
  padding: 15px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 8px;
  border-left: 3px solid #60d5ff;
  text-align: left;
}

.mini-testimonial i {
  color: #60d5ff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.mini-testimonial p {
  color: rgba(148, 163, 184, 0.95);
  font-size: 0.8rem;
  font-style: italic;
  margin: 8px 0;
  line-height: 1.4;
}

.mini-testimonial span {
  color: #60d5ff;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Social Proof Section */
.social-proof-section {
  margin: 60px auto;
  max-width: 1200px;
}

.social-proof-section h3 {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #60d5ff 0%, #38bdf8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Client Logos Horizontal Scroll */
.client-logos-scroll {
  overflow: hidden;
  padding: 20px 0;
  background: rgba(56, 189, 248, 0.03);
  border-radius: 12px;
  margin-bottom: 30px;
  position: relative;
}

.client-logos-scroll::before,
.client-logos-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logos-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--background-secondary), transparent);
}

.client-logos-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--background-secondary), transparent);
}

.logos-track {
  display: flex;
  gap: 50px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  padding: 20px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.client-logo:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
}

.client-logo i {
  font-size: 2.5rem;
  color: #60d5ff;
  filter: drop-shadow(0 0 10px rgba(96, 213, 255, 0.3));
}

.client-logo span {
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Trust Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(5px);
}

.trust-item i {
  font-size: 2rem;
  color: #60d5ff;
  filter: drop-shadow(0 0 10px rgba(96, 213, 255, 0.3));
}

.trust-item span {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
}

.trust-item strong {
  color: #60d5ff;
  font-size: 1.1rem;
}

/* Certifications Horizontal Scroll */
.badges-scroll-container {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.badges-scroll-container::before,
.badges-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.badges-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, var(--background-secondary), transparent);
}

.badges-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, var(--background-secondary), transparent);
}

.badges-scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll-badges 40s linear infinite;
  width: max-content;
}

.badges-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-badges {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.badges-scroll-track .badge-item {
  min-width: 150px;
  flex-shrink: 0;
}

/* Certifications Section */
.certifications-section {
  margin: 60px auto 40px;
  max-width: 100%;
  overflow: hidden;
}

.certifications-section h3 {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #60d5ff 0%, #38bdf8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.badge-item {
  background: rgba(56, 189, 248, 0.05);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.badge-item:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.badge-item i {
  font-size: 2.5rem;
  color: #60d5ff;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(96, 213, 255, 0.3));
}

.badge-item span {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
}

/* CTA Buttons */
.why-cta-section {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #60d5ff;
  background: linear-gradient(135deg, rgba(96, 213, 255, 0.15), rgba(56, 189, 248, 0.15));
  color: #60d5ff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(96, 213, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.why-cta-btn:hover::before {
  left: 100%;
}

.why-cta-btn:hover {
  background: linear-gradient(135deg, rgba(96, 213, 255, 0.25), rgba(56, 189, 248, 0.25));
  border-color: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
  color: #fff;
}

.why-cta-btn.secondary {
  background: transparent;
  border-color: rgba(96, 213, 255, 0.5);
}

.why-cta-btn.secondary:hover {
  background: rgba(96, 213, 255, 0.1);
}

.why-cta-btn i {
  transition: transform 0.3s ease;
}

.why-cta-btn:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  /* Why Choose Us Section */
  .whyChooseUs {
    padding: 40px 20px;
    min-height: auto;
    overflow-x: hidden;
  }
  
  .Blog1 {
    padding: 0 10px;
    gap: 15px;
  }
  
  .Blog001 {
    margin-bottom: 40px;
  }
  
  .Blog001 h1 {
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .Blog001 p {
    font-size: 0.95rem;
  }
  
  .why-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
  }
  
  .stat-box {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .flip-card {
    height: 300px;
  }
  
  /* Responsive icon sizes */
  .iconz {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    max-width: 55px;
    max-height: 55px;
    aspect-ratio: 1 / 1;
  }
  
  .fa-handshake,
  .fa-clock,
  .fa-ranking-star,
  .fa-users-line {
    font-size: 1.3rem;
  }
  
  .badge-item i,
  .client-logo i {
    font-size: 1.8rem;
  }
  
  .trust-item i {
    font-size: 1.5rem;
  }
  
  .badges-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Certifications Section */
  .certifications-section {
    margin: 40px auto 30px;
  }
  
  .certifications-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .badges-scroll-track .badge-item {
    min-width: 130px;
    padding: 20px 12px;
  }
  
  .badge-item i {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .badge-item span {
    font-size: 0.75rem;
  }
  
  /* CTA Buttons */
  .why-cta-section {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  
  .why-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  
  /* Mobile: Cards stacked vertically, no horizontal scroll */
  .BlogCards {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    gap: 20px;
    padding: 0 20px;
    margin-top: 30px;
    width: 100%;
  }
  
  .BlogCards::-webkit-scrollbar {
    display: none;
  }
  
  .blogCard {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: none;
    flex-shrink: 0;
  }
  
  .blogCard h4 {
    font-size: 1rem;
  }
  
  .blogCard p {
    font-size: 0.8rem;
  }
  
  .flip-hint {
    font-size: 0.7rem;
  }
  
  /* Flip card back content */
  .flip-card-back h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .back-stat-item {
    padding: 10px;
    font-size: 0.8rem;
  }
  
  .back-stat-item i {
    font-size: 1rem;
  }
  
  .skill-bar {
    margin-bottom: 15px;
  }
  
  .skill-info {
    font-size: 0.8rem;
  }
  
  .mini-testimonial {
    padding: 12px;
    margin-top: 15px;
  }
  
  .mini-testimonial p {
    font-size: 0.75rem;
  }
  
  /* Scroll indicator for mobile */
  .BlogCards::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(96, 213, 255, 0.3);
    border-radius: 2px;
  }
  
  /* Trust stats responsive */
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Social proof */
  .client-logos-scroll {
    padding: 15px 0;
  }
  
  .logos-track {
    gap: 30px;
  }
  
  .client-logo {
    min-width: 100px;
    padding: 15px;
  }
}

.Blog2 {
  margin-top: 70px;
}

.Blog002 {
  display: flex;
  justify-content: space-between;
}

.Blog002 h1 {
  color: var(--text-primary);
}

.Blog002 p {
  width: 300px;
  font-size: 0.85em;
  color: var(--text-secondary);
}

.Blog003 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  place-items: center;
  gap: 30px;
  padding: 0 20px;
}

.BlogCard {
  width: 100%;
  max-width: 380px;
  height: auto;
  background: #0a192f;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.1);
}

.BlogCard:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.3);
}

.pic {
  width: 100%;
  /* height: 220px; */
  padding: 0;
  position: relative;
  overflow: hidden;
}

.pic img {
  max-width: 100%;
  /* height: 100%; */
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.BlogCard:hover .pic img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.85) 0%, rgba(14, 165, 233, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.BlogCard:hover .project-overlay {
  opacity: 1;
}

.project-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.BlogCard:hover .project-icon {
  transform: scale(1);
}

.project-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.project-content {
  padding: 18px 20px 20px;
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.project-tags .tag {
  padding: 4px 10px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 20px;
  font-size: 0.7rem;
  color: #60d5ff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-tags .tag:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}

.BlogCard h3 {
  background-image: linear-gradient(90deg, #60d5ff 0%, #38bdf8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0;
  margin: 8px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.BlogCard p {
  font-size: 0.8em;
  color: rgba(148, 163, 184, 0.9);
  width: 100%;
  padding: 0;
  margin: 10px 0;
  line-height: 1.5;
}

.project-stats {
  display: flex;
  gap: 16px;
  margin: 14px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.project-stats .stat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #60d5ff;
  font-size: 0.8rem;
}

.project-stats .stat i {
  font-size: 0.85rem;
  color: #38bdf8;
}

.view-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  color: #60d5ff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.view-project-btn:hover {
  background: rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.7);
  color: #fff;
  transform: translateX(5px);
}

.view-project-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.view-project-btn:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments for project cards */
@media (max-width: 768px) {
  .BlogCard {
    max-width: 100%;
  }
  
  .pic {
    height: 200px;
  }
  
  .project-content {
    padding: 16px 18px 18px;
  }
  
  .project-tags .tag {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
  
  .BlogCard h3 {
    font-size: 1.1rem;
  }
  
  .BlogCard p {
    font-size: 0.75em;
  }
  
  .project-stats {
    gap: 12px;
  }
  
  .project-stats .stat {
    font-size: 0.75rem;
  }
  
  .view-project-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* Team Section */
.Team {
  width: 100%;
  min-height: 80vh;
  background-color: var(--background-light);
  padding: 100px;
}

.Team h2 {
  text-align: center;
  color: var(--text-primary);
}

.Team h1 {
  font-size: 30px;
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
  font-weight: 400;
  text-align: center;
}

.Team .para {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  font-size: 0.85em;
  color: var(--text-secondary);
  text-align: center;
}

.flex002 {
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.flexing {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* flex-direction: column; */
  width: 100%;
  /* background-color: red; */
  margin-top: 30px;
}

/* Team carousel styles */
.team-carousel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin-top: 50px; /* spacing from heading */
  position: relative;
}

/* Fade indicators on sides */
.team-carousel::before,
.team-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 10;
}

.team-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--background-light), transparent);
}

.team-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--background-light), transparent);
}

.team-track {
  display: flex;
  gap: 26px; /* increased breathing room */
  align-items: stretch;
  will-change: transform;
}

/* Desktop infinite scroll animation */
@media (min-width: 992px) {
  .team-track {
    display: flex;
    gap: 26px;
  }
  
  .team-carousel {
    overflow: hidden;
  }
  
  .team-carousel::before,
  .team-carousel::after {
    display: block;
  }
}

.team-card {
  min-width: 240px;
  max-width: 280px;
  background: #0a192f;
  padding: 20px 18px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
  position: relative;
  overflow: visible;
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: all 0.3s ease;
}

.team-card .avatar {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 3px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.avatar-wrap {
  position: relative;
  width: 85px;
  height: 85px;
  margin-bottom: 8px;
}

.exp-badge {
  position: relative;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(14, 165, 233, 0.3) 100%);
  color: #60d5ff;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.exp-badge i { 
  font-size: 0.65rem;
  color: #60d5ff;
}

/* Hover effects - desktop only */
@media (min-width: 992px) {
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(56, 189, 248, 0.35), 0 0 30px rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.5);
    background: #0d1f3a;
  }

  .team-card:hover .avatar {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
    transform: scale(1.05);
  }

  .team-card:hover .exp-badge {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.4) 0%, rgba(14, 165, 233, 0.45) 100%);
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    color: #fff;
  }
}

/* Focus state for keyboard accessibility */
.team-card:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.6);
  outline-offset: 4px;
  transform: translateY(-8px);
}

/* Remove the glowing pseudo-element */
.team-card::after {
  display: none;
}

.team-socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.15);
  border-radius: 8px;
  color: #60d5ff;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.1);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  transform: translateY(-3px);
  background: rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.7);
  color: #fff;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Focus state for social icons */
.team-socials a:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.6);
  outline-offset: 2px;
}

.team-socials a i { 
  font-size: 0.95rem;
}

/* improve contrast for small screens */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }
  
  /* Why Choose Us - Small Mobile */
  .whyChooseUs {
    padding: 25px 15px;
    overflow-x: hidden;
  }
  
  /* Scale down geometric shapes on mobile */
  .shape-1 {
    width: 180px;
    height: 180px;
  }
  
  .shape-2 {
    width: 120px;
    height: 120px;
  }
  
  .shape-3 {
    width: 90px;
    height: 90px;
  }
  
  .shape-4 {
    width: 150px;
    height: 150px;
  }
  
  .Blog1 {
    padding: 0 5px;
    gap: 10px;
  }
  
  .Blog001 {
    margin-bottom: 30px;
  }
  
  .Blog001 h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .Blog001 p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .why-stats-container {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 25px 0;
  }
  
  .stat-box {
    padding: 18px 12px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .flip-card {
    height: 280px;
  }
  
  .iconz {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    aspect-ratio: 1 / 1;
  }
  
  .fa-handshake,
  .fa-clock,
  .fa-ranking-star,
  .fa-users-line {
    font-size: 1.2rem;
  }
  
  .blogCard h4 {
    font-size: 0.95rem;
  }
  
  .blogCard p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .flip-hint {
    font-size: 0.65rem;
  }
  
  .flip-hint i {
    font-size: 0.7rem;
  }
  
  .BlogCards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }
  
  .blogCard {
    width: 100%;
    min-width: 100%;
  }
  
  .flip-card-back h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .progress-container {
    gap: 10px;
  }
  
  .progress-item span {
    font-size: 0.75rem;
  }
  
  .progress-bar {
    height: 6px;
  }
  
  .back-stat-item {
    padding: 8px;
    font-size: 0.75rem;
  }
  
  .back-stat-item i {
    font-size: 0.9rem;
  }
  
  .mini-testimonial {
    padding: 10px;
    margin-top: 12px;
  }
  
  .mini-testimonial p {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  .mini-testimonial cite {
    font-size: 0.65rem;
  }
  
  .certifications-section {
    margin: 30px auto 20px;
  }
  
  .certifications-section h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .badges-scroll-track .badge-item {
    min-width: 110px;
    padding: 15px 10px;
  }
  
  .badge-item i {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .badge-item span {
    font-size: 0.7rem;
  }
  
  .why-cta-btn {
    max-width: 100%;
    padding: 12px 25px;
    font-size: 0.85rem;
  }
  
  .why-cta-btn span {
    font-size: 0.85rem;
  }
  
  .why-cta-btn i {
    font-size: 0.8rem;
  }
  
  /* Team cards */
  .exp-badge { font-size: 0.65rem; padding: 3px 8px; }
  .team-card { padding: 18px 15px 16px; }
  .team-card .avatar { width: 80px; height: 80px; }
  .avatar-wrap { width: 80px; height: 80px; }
  
  /* Location section icons */
  .card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    font-size: 1rem;
  }
  
  .card-icon i {
    font-size: 1rem !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
  }
  
  /* Team buttons small mobile */
  .butns {
    margin: 25px 15px;
    gap: 12px;
  }
  
  .butns button {
    width: 100%;
    max-width: 100%;
    height: 48px;
    font-size: 0.9rem;
  }
  
  /* Footer logo small mobile */
  .footer-about .footer-logo {
    width: 70px;
    margin-bottom: 12px;
  }
  
  /* Contact form small mobile */
  .contact-container {
    padding: 10px;
    gap: 25px;
  }
  
  .contact-info {
    padding: 10px;
  }
  
  .contact-form {
    padding: 20px 10px;
  }
  
  form {
    padding: 0 5px;
  }
  
  .form-group {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  .send-message-btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 1rem;
    justify-content: center;
  }
}

.team-card h4 {
  margin: 5px 0 3px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.team-card .role {
  color: #60d5ff;
  font-size: 0.85rem;
  margin-top: 2px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.star-rating {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.star-rating i {
  color: #fbbf24;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.star-rating .far {
  color: rgba(251, 191, 36, 0.3);
  text-shadow: none;
}

.team-card .bio {
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.8);
  margin-top: 6px;
  line-height: 1.5;
}

/* Animation: we'll translate the track left by 50% (we duplicate content to create seamless loop) */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.team-track.scrolling {
  animation: scrollLeft var(--team-scroll-duration, 30s) linear infinite;
}

.team-carousel:hover .team-track.scrolling,
.team-track.scrolling.pause {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  /* Team section - Swipeable carousel optimizations */
  .Team {
    padding: 60px 0 80px 0;
  }

  .team-carousel {
    padding: 0 8px;
  }

  .team-card {
    min-width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }

  .team-pagination {
    margin-top: 20px;
    padding: 12px 0;
  }

  .team-swipe-hint {
    font-size: 0.8rem;
    margin-top: 12px;
  }

  /* Team section buttons */
  .Team .butns {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 20px 20px 20px;
  }

  .Team .butns button {
    width: 100%;
    max-width: 320px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Contact form tablet responsive */
  .contact-container {
    flex-direction: column;
    gap: 30px;
    padding: 15px;
  }
  
  .contact-info {
    min-width: 100%;
    padding: 15px;
  }
  
  .contact-form {
    padding: 25px 20px;
  }
  
  .form-group {
    width: 95%;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
  }
  
  .send-message-btn {
    width: 100%;
    padding: 13px 25px;
    font-size: 1rem;
    justify-content: center;
  }
}

.flex001 {
  width: 50%;
  height: 400px;
}

.flexCard {
  width: 100%;
  background-color: var(--background-secondary);
  padding: 20px;
  border-radius: 5px;
  /* max-height: 53px; */
  /* overflow: hidden; */
}

.flexCard:hover {
  /* transform: translateX(10px); */
  /* box-shadow: 0 4px 20px var(--shadow-color); */
  max-height: 110px;
  /* transition: transform var(--transition), box-shadow var(--transition); */
}

.flexCard h3 {
  color: var(--text-primary);
  text-align: left;
}

.flexCard p {
  font-size: 0.85em;
  color: var(--text-secondary);
}

/* ------------------------------------------ */
/* Contact Section Styles                     */
/* ------------------------------------------ */

.contact-section {
  padding: 60px 20px;
  /* Top/bottom padding for the section */
  display: flex;
  /* Use flexbox to center content vertically */
  justify-content: center;
  align-items: center;
  /* Center vertically if section height allows */
  min-height: 100vh;
  /* Make section take full viewport height for centering */
  background-color: var(--background-primary);
  /* background-color: red; */
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  /* Allow columns to wrap on smaller screens */
  gap: 40px;
  /* Space between the two main columns */
  max-width: 1100px;
  /* Max width of the entire contact section content */
  width: 100%;
  background-color: transparent;
  /* Main container has no background */
  padding: 20px;
  /* Padding for the inner content from edges */
}

/* ------------------------------------------ */
/* Left Column: Contact Info                 */
/* ------------------------------------------ */

.contact-info {
  flex: 1;
  /* Allow to grow */
  min-width: 300px;
  /* Minimum width before wrapping */
  padding: 20px;
}

.contact-info h2 {
  font-size: 2em;
  /* "Let's Connect" heading size */
  color: #ffffff;
  margin-bottom: 5px;
  text-align: left;
  /* Align heading to the left as in image */
}

.contact-info p {
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #cccccc;
}

.info-card {
  /* background-color: #241D44; */
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  /* Space between icon and text */
  background: var(--background-secondary);
}

.info-card .icon-wrapper {
  width: 40px;
  /* Fixed size for icon background */
  height: 40px;
  /* background-color: rgba(144, 98, 240, 0.2);  */
  background: var(--accent-color);
  border-radius: 50%;
  /* Circle shape */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
}

.info-card .icon-wrapper i {
  color: white;
  /* Purple icon color */
  font-size: 1em;
}

.info-card h3 {
  font-size: 1em;
  color: #ffffff;
  margin-bottom: 5px;
  text-align: left;
  /* Align text left */
  font-weight: 500;
}

.info-card a {
  margin: 0;
  font-size: 1em;
  color: #cccccc;
}

.social-links {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  /* Space between social icons */
}

.social-links a {
  width: 45px;
  height: 45px;
  background-color: #241d44;
  /* Darker social icon background */
  border-radius: 8px;
  /* Slightly rounded corners */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cccccc;
  font-size: 1.3em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: var(--accent-color);
  color: var(--white);
}

.social-links a:hover {
  background-color: #9062f0;
  /* Purple on hover */
  color: #ffffff;
  background-color: var(--accent-color);
}

.fa-map-marker-alt {
  color: var(--white);
}

/* ------------------------------------------ */
/* Right Column: Contact Form                */
/* ------------------------------------------ */

.contact-form {
  flex: 1;
  /* Allow form to take more space */
  width: 100%;
  /* Minimum width before wrapping */
  min-height: 450px;
  background-color: var(--background-secondary);
  border-radius: 10px;
  padding: 30px 20px;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
  /* background: red; */
}

.form-group {
  width: 100%;
  margin-bottom: 15px;
}

form {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0 10px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95em;
  color: #cccccc;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--background-light);
  /* Input background */
  border: 1px solid var(--accent-color);
  /* Input border color */
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  /* Purple border on focus */
  box-shadow: 0 0 0 3px --accent-hover;
}

/* Placeholder color */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
  font-size: 0.9em;
}

/* Send Message Button */
.send-message-btn {
  width: 100%;
  /* Button width */
  padding: 12px 25px;
  /* background: linear-gradient(to right, #6F42C1, #9062F0);  */
  background: var(--accent-hover);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  /* Space between icon and text */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: auto;
  /* Push button to the right */
  margin-right: 0;
  text-align: center;
}

.send-message-btn:hover {
  transform: translateY(-2px);
  /* Slight lift effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.send-message-btn i {
  font-size: 1em;
  /* Adjust icon size within button */
}

.fa-phone-alt,
.fa-envelope,
.fa-comment {
  color: var(--background-primary);
}

/* ========================================== */
/* Gallery Section Styles */
/* ========================================== */

.gallery-section {
  padding: 80px 20px;
  background-color: var(--background-primary);
  overflow: hidden;
  position: relative;
}

/* Add subtle background pattern */
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(144, 98, 240, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px; /* Add container padding for better spacing */
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: block;
}

.gallery-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.gallery-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  border-radius: 2px;
}

.gallery-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 15px auto 0;
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  padding: 0 15px;
}

.filter-btn {
  padding: 10px 22px;
  background-color: var(--background-secondary);
  color: var(--text-primary);
  border: 2px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 20px;
  transition: transform 0.3s ease;
  z-index: -1;
}

.filter-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.filter-btn:hover {
  color: var(--white);
  border-color: var(--accent-color);
}

.filter-btn.active {
  background: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}

/* Horizontal Scrolling Gallery */
.gallery-scroll-wrapper {
  position: relative;
  padding: 0 60px;
  margin: 0 20px; /* Add side margins to prevent edge cutoff */
}

/* Scroll arrows - reduced width to prevent covering images */
.gallery-scroll-wrapper::before,
.gallery-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px; /* Reduced from 50px to 30px */
  z-index: 2;
  pointer-events: none;
}

.gallery-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-primary), transparent);
}

.gallery-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-primary), transparent);
}

.gallery-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 15px; /* Increased padding to prevent cutoff */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--background-secondary);
}

/* Custom scrollbar */
.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: var(--background-secondary);
  border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

.gallery-item {
  flex: 0 0 320px;
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}

.gallery-item.hide {
  flex: 0 0 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.gallery-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  background: var(--background-secondary);
  cursor: pointer;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: left;
}

.gallery-info h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.3;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info h3 {
  transform: translateY(0);
}

.gallery-info p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 8px;
  line-height: 1.5;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.15s;
}

.gallery-item:hover .gallery-info p {
  transform: translateY(0);
}

.gallery-date {
  color: var(--accent-color);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-date {
  transform: translateY(0);
}

.view-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .view-btn {
  opacity: 1;
  transform: scale(1);
}

.view-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
}

/* Load More Button */
.gallery-load-more {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

.load-more-btn {
  padding: 12px 35px;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: var(--accent-hover);
  border-radius: 25px;
  transition: transform 0.3s ease;
  z-index: -1;
}

.load-more-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(144, 98, 240, 0.4);
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateY(3px);
}

/* Desktop/Laptop Responsive Styles */
@media (min-width: 1400px) {
  .gallery-scroll-wrapper {
    padding: 0 80px;
    margin: 0 40px;
  }
}

@media (max-width: 1200px) {
  .gallery-scroll-wrapper {
    padding: 0 40px;
    margin: 0 15px;
  }
  
  .gallery-item {
    flex: 0 0 280px;
  }

  .gallery-image {
    height: 210px;
  }
}

@media (max-width: 1024px) {
  .gallery-scroll-wrapper {
    padding: 0 30px;
    margin: 0 10px;
  }
  
  .gallery-grid {
    padding: 20px 10px;
  }
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 50px 10px 80px 10px; /* Extra bottom padding for mobile nav */
  }

  .gallery-header {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .gallery-header h2 {
    font-size: 1.6rem;
  }

  .gallery-header p {
    font-size: 0.9rem;
    padding: 0 5px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Hide filter buttons on mobile */
  .gallery-filters {
    display: none;
  }

  .gallery-scroll-wrapper {
    overflow: hidden;
    padding: 0 10px;
    position: relative;
  }

  .gallery-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .gallery-item {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 0;
    flex-shrink: 0;
  }

  .gallery-image {
    height: 220px;
  }

  .gallery-image {
    height: 220px;
  }

  /* Gallery Pagination dots */
  .gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px 0;
  }

  .gallery-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .gallery-pagination-dot.active {
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    transform: scale(1.2);
  }

  /* Gallery Swipe hint */
  .gallery-swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.85rem;
    animation: pulse 2s ease-in-out infinite;
  }

  .gallery-swipe-hint i {
    font-size: 1.2rem;
  }

  .gallery-load-more {
    margin-top: 20px;
    padding: 20px 10px;
  }

  .load-more-btn {
    padding: 12px 30px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 10px 90px 10px;
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .gallery-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .gallery-header p {
    font-size: 0.9rem;
    padding: 0 5px;
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 8px;
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
    min-width: 90px;
    max-width: 130px;
  }

  .gallery-scroll-wrapper {
    padding: 0 10px;
  }

  .gallery-scroll-wrapper::before,
  .gallery-scroll-wrapper::after {
    width: 15px;
  }

  .gallery-grid {
    gap: 18px;
    padding: 0;
  }

  .gallery-item {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    flex-shrink: 0;
  }

  .gallery-image {
    height: 195px;
  }

  .gallery-info {
    text-align: left;
  }

  .gallery-info h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .gallery-info p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .gallery-date {
    font-size: 0.7rem;
  }

  .view-btn {
    width: 35px;
    height: 35px;
    top: 12px;
    right: 12px;
  }

  .load-more-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

/* Duplicate 480px gallery rule removed - using consolidated version below */

/* ========================================== */
/* Gallery Mobile Enhancement - Match Desktop Appearance */
/* ========================================== */

/* Enhanced Gallery Header - Always visible and centered */
.gallery-section .gallery-header {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  margin: 0 auto 2rem;
  padding: 20px;
}

.gallery-section .gallery-header h2 {
  text-align: center;
  margin: 0 auto 15px;
  font-size: 2.2rem;
  font-weight: 700;
}

.gallery-section .gallery-header p {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  display: block !important;
  visibility: visible !important;
}

/* Ensure gallery header is centered on all devices */
@media (max-width: 991px) {
  .gallery-section .gallery-header {
    padding: 15px 20px;
    margin-bottom: 25px;
  }
  
  .gallery-section .gallery-header h2 {
    font-size: 1.8rem;
  }
  
  .gallery-section .gallery-header p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}

/* Enhanced Mobile Gallery - Visual and Responsive */
@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 15px 120px 15px;
  }
  
  /* Force gallery container to start from left */
  .gallery-container {
    overflow-x: visible !important;
  }
  
  .gallery-section .gallery-header {
    margin-bottom: 30px;
    padding: 10px 15px;
  }
  
  .gallery-section .gallery-header h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .gallery-section .gallery-header p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 10px;
    max-width: 400px;
  }
  
  /* Mobile gallery scroll wrapper - ensure first image visible */
  .gallery-scroll-wrapper {
    padding: 0 5px 0 15px !important; /* Left padding to ensure first image shows */
    margin: 0 -5px 0 0 !important;
    overflow: visible !important;
    position: relative !important;
  }
  
  /* Ensure scroll arrows don't interfere on mobile */
  .gallery-scroll-wrapper::before,
  .gallery-scroll-wrapper::after {
    display: none !important;
  }
  
  /* Enhanced gallery grid - ensure first image is visible */
  .gallery-grid {
    display: flex !important;
    gap: 15px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 15px 5px 15px 15px !important; /* More left padding to show first image fully */
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-left: 15px !important; /* Ensure scroll starts from first item */
  }
  
  /* Mobile gallery items - ensure first image is visible */
  .gallery-item {
    flex: 0 0 260px !important; /* Consistent width for all items */
    min-width: 260px !important;
    max-width: 260px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }
  
  /* Ensure the first gallery item is always visible */
  .gallery-item:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  /* Perfect image display */
  .gallery-image {
    height: 180px !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }
  
  .gallery-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Disable hover effects on mobile */
  .gallery-item:hover .gallery-image img,
  .gallery-item:active .gallery-image img {
    transform: none !important;
  }
  
  /* Enhanced scrollbar */
  .gallery-grid::-webkit-scrollbar {
    height: 6px !important;
  }
  
  .gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 3px !important;
  }
  
  .gallery-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color) !important;
    border-radius: 3px !important;
  }
  
  /* Ensure gallery starts at first item - override any default positioning */
  .gallery-grid {
    scroll-left: 0 !important;
    scroll-position: 0 !important;
  }
  
  /* Additional positioning fixes */
  .gallery-item:first-child {
    scroll-snap-align: start !important;
  }
  
  /* Hide filter buttons on small mobile */
  .gallery-filters {
    display: none !important;
  }
  
  /* Force gallery to start from the beginning on mobile */
  .gallery-grid {
    scroll-snap-align: start !important;
  }
  
  /* Reset any transforms that might offset the gallery */
  .gallery-grid,
  .gallery-item {
    transform: none !important;
  }

  /* Mobile: show a single card per viewport and let it fill available width */
  .gallery-scroll-wrapper {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin: 0 !important;
    overflow-x: auto !important;
  }

  .gallery-grid {
    gap: 12px !important;
    padding-left: 0 !important;
    scroll-padding-left: 12px !important; /* ensures first item starts fully visible */
    justify-content: flex-start !important;
  }

  /* Single card per viewport, occupying full available width */
  .gallery-item {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  /* Ensure first item is not offset or clipped */
  .gallery-item:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .footer-social{
    display:none;
  }
}

/* ========================================== */
/* SweetAlert Mobile Responsive Styles */
/* ========================================== */

/* Mobile-friendly SweetAlert customization */
@media (max-width: 768px) {
  .swal2-popup.mobile-friendly-popup {
    max-width: 95% !important;
    width: 95% !important;
    padding: 1.2em !important;
    border-radius: 15px !important;
  }

  .swal2-title.mobile-friendly-title {
    font-size: 1.2rem !important;
    padding: 0 0.5em !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5em !important;
  }

  .swal2-html-container.mobile-friendly-text {
    font-size: 0.8em !important;
    padding: 0 0.5em !important;
    line-height: 1.5 !important;
    margin: 0.5em 0 !important;
  }

  .swal2-image.mobile-friendly-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: contain !important;
    margin: 1em auto !important;
    border-radius: 10px !important;
  }

  .swal2-confirm.mobile-friendly-button {
    font-size: 0.9rem !important;
    padding: 10px 25px !important;
    min-width: 100px !important;
  }

  /* Icon sizing for mobile */
  .swal2-icon {
    width: 55px !important;
    height: 55px !important;
    margin: 1em auto 0.5em !important;
  }

  .footer-social{
    display:none;
  }
}

@media (max-width: 480px) {

  .footer-social{
    display:none;
  }


  .swal2-popup.mobile-friendly-popup {
    padding: 1em !important;
    border-radius: 12px !important;
  }

  .swal2-title.mobile-friendly-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.4em !important;
  }

  .swal2-html-container.mobile-friendly-text {
    font-size: 0.8em !important;
    margin: 0.4em 0 !important;
    line-height: 1.4 !important;
  }

  .swal2-image.mobile-friendly-image {
    max-height: 250px !important;
    margin: 0.8em auto !important;
    border-radius: 8px !important;
  }

  .swal2-confirm.mobile-friendly-button {
    font-size: 0.85rem !important;
    padding: 9px 22px !important;
  }

  .swal2-icon {
    width: 45px !important;
    height: 45px !important;
    margin: 0.8em auto 0.4em !important;
  }

  .gallery-section {
    padding: 40px 10px;
  }

  .gallery-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .gallery-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .gallery-header p {
    font-size: 0.85rem;
    padding: 0 10px;
    line-height: 1.5;
  }

  .gallery-filters {
    gap: 6px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 5px;
  }

  .filter-btn {
    padding: 7px 15px;
    font-size: 0.75rem;
  }

  .gallery-scroll-wrapper {
    padding: 0 10px;
  }

  .gallery-scroll-wrapper::before,
  .gallery-scroll-wrapper::after {
    width: 10px;
  }

  .gallery-grid {
    gap: 15px;
    padding: 15px 5px;
  }

  .gallery-item {
    flex: 0 0 240px;
  }

  .gallery-image {
    height: 180px;
    border-radius: 10px;
  }

  .gallery-overlay {
    padding: 15px;
  }

  .gallery-info h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .gallery-info p {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .gallery-date {
    font-size: 0.65rem;
  }

  .view-btn {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
  }

  .load-more-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }

  /* Hide scrollbar on mobile for cleaner look */
  .gallery-grid::-webkit-scrollbar {
    height: 4px;
  }
}

.testimonials {
  width: 100%;
  min-height: 100vh;
  background-color: var(--background-light);
  padding: 100px;
}

/* Main Container */
.main-container {
  display: flex;
  width: 100%;
  /* flex-direction: column; flex-col */
  min-height: 100vh;
  /* min-h-screen */
  color: #ffffff;
  /* text-white */
  border-radius: 0.5rem;
  /* rounded-lg */
  margin: 1rem;
  /* m-4 */
  /* background: var(--background-secondary); */
}

/* Responsive adjustments for large screens (lg:flex-row) */
/* Left Section: What our clients say */
.left-section {
  width: 100%;
  /* w-full */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  /* flex-col */
  justify-content: center;
  /* justify-center */
  align-items: flex-start;
  /* items-start */
  position: relative;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  /* rounded-l-lg */
  border-top-right-radius: 0.5rem;
  /* rounded-l-lg */
}

/* Responsive adjustments for large screens (lg:w-1/2) */
@media (min-width: 1024px) {
  .left-section {
    width: 50%;
    /* lg:w-1/2 */
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
}

/* Decorative dots background */
.bg-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 20px 20px;
  color: rgba(255, 255, 255, 0.1);
  /* Light dots for dark background */
  position: absolute;
  inset: 0;
  /* top:0, right:0, bottom:0, left:0 */
  opacity: 0.2;
}

.left-section .content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  /* max-w-md */
}

.left-section h2 {
  font-size: 2.25rem;
  /* text-4xl */
  line-height: 2.5rem;
  /* leading-tight */
  font-weight: 700;
  /* font-bold */
  margin-bottom: 0.5rem;
  /* mb-4 */
  background-image: var(--gradient-accent);
  /* Orange to Peach */
  background-clip: text;
  -webkit-background-clip: text;
  /* For WebKit browsers */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* For older WebKit browsers */
}

/* Responsive adjustments for medium screens (md:text-5xl) */
@media (min-width: 768px) {
  .left-section h2 {
    font-size: 3rem;
    /* md:text-5xl */
    line-height: 1;
    /* leading-none */
  }
}

.left-section p {
  font-size: 0.9rem;
  /* text-lg */
  line-height: 1.625;
  /* leading-relaxed */
  margin-bottom: 0.5rem;
  /* mb-8 */
}

.left-section button {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  /* px-6 py-3 */
  border-radius: 9999px;
  /* rounded-full */
  font-weight: 600;
  /* font-semibold */
  border: none;
  cursor: pointer;
  width: 150px;
}

.left-section button:hover {
  background-color: #f3f4f6;
  /* hover:bg-gray-100 */
}

/* Right Section: Testimonials with animated columns */
.testimonials-columns-container {
  width: 100%;
  /* w-full */
  display: flex;
  /* Kept flex for overall layout */
  position: relative;
  height: 100vh;
  /* Ensures the container is 100% of viewport height */
  overflow: hidden;
  /* Hides content that overflows during animation */
}

/* Responsive adjustments for large screens (lg:w-1/2) */
@media (min-width: 1024px) {
  .testimonials-columns-container {
    width: 50%;
    /* lg:w-1/2 */
  }
}

/* Inner flex wrapper for the two card columns */
.testimonials-columns-container .inner-flex-wrapper {
  position: absolute;
  inset: 0;
  /* top:0, right:0, bottom:0, left:0 */
  display: flex;
  /* Display as flex to hold two columns */
  padding: 1rem;
  /* Padding for the columns */
}

/* Column Styles */
.column {
  flex: 1;
  /* flex-1: Each column takes equal width */
  display: flex;
  flex-direction: column;
  /* flex-col: Stack cards vertically */
  /* background-color: red; */
}

/* Add space between cards within a column */
.column>.card:not(:first-child) {
  margin: 0.5rem;
  /* space-y-4 */
  /* background-color: blue; */
}

/* Card Styles */
.card {
  background-color: #ffffff;
  /* bg-white */
  color: #374151;
  /* text-gray-800 */
  padding: 1rem;
  /* p-6 */
  border-radius: 0.75rem;
  /* rounded-xl */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.06);
  /* shadow-md */
  display: flex;
  flex-direction: column;
  line-height: 1.5rem;
  /* leading-relaxed */
  background-color: var(--background-secondary);
  margin: 0.5rem;
  /* space-y-4 */
}

.card p {
  font-size: 0.8em;
  /* text-base */
  margin-bottom: 0.75rem;
  /* space-y-3 */
  color: var(--text-primary);
}

.card .author-info {
  display: flex;
  align-items: center;
}

.card .avatar {
  width: 2rem;
  /* w-8 */
  height: 2rem;
  /* h-8 */
  border-radius: 9999px;
  /* rounded-full */
  margin-right: 0.75rem;
  /* mr-3 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  /* text-sm */
}

/* Avatar background colors */
.card .avatar.bg-red-500 {
  background-color: #ef4444;
}

.card .avatar.bg-blue-500 {
  background-color: #3b82f6;
}

.card .avatar.bg-green-500 {
  background-color: #22c55e;
}

.card .avatar.bg-yellow-500 {
  background-color: #eab308;
}

.card .avatar.bg-purple-500 {
  background-color: #a855f7;
}

.card .avatar.bg-orange-500 {
  background-color: #f97316;
}

.card .avatar.bg-cyan-500 {
  background-color: #06b6d4;
}

.card .avatar.bg-pink-500 {
  background-color: #ec4899;
}

.card .avatar.bg-teal-500 {
  background-color: #14b8a6;
}

.card .avatar.bg-indigo-500 {
  background-color: #6366f1;
}

.card .avatar.bg-lime-500 {
  background-color: #84cc16;
}

.card .avatar.bg-amber-500 {
  background-color: #f59e0b;
}

.card .author-name {
  font-weight: 600;
  /* font-semibold */
  font-size: 0.875rem;
  /* text-sm */
}

.card .author-title {
  font-size: 0.75rem;
  /* text-xs */
  color: #6b7280;
  /* text-gray-600 */
}

/* Keyframes for scrolling up */
@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    /* Moves the column up by a calculated distance */
    transform: translateY(var(--scroll-distance-up, 0px));
  }
}

/* Keyframes for scrolling down */
@keyframes scrollDown {
  from {
    transform: translateY(0);
  }

  to {
    /* Moves the column down by a calculated distance */
    transform: translateY(var(--scroll-distance-down, 0px));
  }
}

/* Animation classes for the columns */
.animate-scroll-up {
  animation: scrollUp var(--animation-duration, 30s) linear infinite alternate;
}

.animate-scroll-down {
  animation: scrollDown var(--animation-duration, 30s) linear infinite alternate;
}

/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #1a2a3a, #0d1a2a);
  /* Dark gradient background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure it's on top of everything */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
  /* Smooth fade out */
  /* Add subtle background animation for futuristic feel */
  animation: bg-pulse 10s infinite alternate;
  /* background: red; */
}

@keyframes bg-pulse {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Allow clicks on content after fade out */
}

/* Futuristic Spinner Animation */
.spinner-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  position: absolute;
  border: 8px solid rgba(0, 255, 255, 0.1);
  /* Cyan base */
  border-top: 8px solid #00ffff;
  /* Bright Cyan */
  border-right: 8px solid #8a2be2;
  /* Blue Violet */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1.5s linear infinite;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7), 0 0 25px rgba(138, 43, 226, 0.5);
  /* Dual color glow */
}

.spinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 255, 255, 0.3);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin-reverse 1.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(45deg) rotate(-360deg);
  }
}

/* Loading Text */
.loading-text {
  font-family: "Orbitron", sans-serif;
  /* Futuristic font */
  color: #00ffff;
  /* Bright Cyan text */
  margin-top: 40px;
  /* Increased margin */
  font-size: 1.8em;
  /* Increased font size */
  letter-spacing: 6px;
  /* Increased letter spacing */
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  /* For typing effect */
  white-space: nowrap;
  /* For typing effect */
  border-right: 3px solid #00ffff;
  /* Thicker blinking cursor */
  animation: typing 3.5s steps(18, end) infinite,
    /* Adjusted steps for new text length */
    blink-caret 0.75s step-end infinite,
    flicker 2s infinite alternate;
  /* Added flicker effect */
  text-align: center;
}

/* Typing effect */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 90%;
  }
}

/* Blinking cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #00ffff;
  }
}

/* Flicker effect for text */
@keyframes flicker {

  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    /* text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff, 0 0 45px #00ffff; */
    opacity: 1;
  }

  20%,
  24%,
  55% {
    text-shadow: none;
    opacity: 0.8;
  }
}

footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  /* Blue border */
  width: 100%;
  min-height: 55vh;
  padding: 10vh 20vh;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* 4 columns, responsive */
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  /* Blue border */
}

footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .footer-column h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
  /* Headings in accent blue */
}

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

footer .footer-column ul li {
  margin-bottom: 0.5rem;
}

footer .footer-column ul li a {
  color: var(--text-secondary);
  /* Links in light text */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  font-size: .95em;
}

footer .footer-column ul li a:hover {
  color: var(--accent-blue);
  /* Hover in accent blue */
}

footer .footer-column p {
  color: var(--text-light);
  /* Paragraph text in light text */
  margin-bottom: 0.5rem;
  font-size: 0.85em;
  color: var(--text-secondary);
}

footer .footer-column p a {
  color: var(--text-light);
  /* Links in light text */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  color: var(--text-secondary);
}

footer .footer-column p a:hover {
  color: var(--accent-blue);
  /* Hover in accent blue */
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  /* Text in light text */
}

.bottom-footer .copyright {
  margin-left: 1rem;
}

.bottom-footer .footer-links {
  display: flex;
  gap: 1rem;
  margin-right: 1rem;
}

.bottom-footer .footer-links a {
  color: var(--text-light);
  /* Links in light text */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  color: var(--text-secondary);
}

.bottom-footer .footer-links a:hover {
  color: var(--accent-blue);
  /* Hover in accent blue */
}

.fab-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-primary);
  /* Accent blue for FAB */
  color: var(--bg-dark);
  /* Dark text on FAB */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px var(--shadow-color);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  z-index: 1000;
  border: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.fab-button.show {
  opacity: 1;
}

.fab-button:hover {
  background-color: var(--focus-ring);
  /* Lighter accent on hover */
}

.footer-form {
  /* background-color: blue; */
  height: 50px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 2px solid var(--accent-color);
}

.footer-form input {
  background: transparent;
  outline: none;
  border: none;
  padding-left: 5px;
  color: var(--text-secondary);
  /* background-color: red; */
  width: 200px;
}

.footer-form button {
  width: 100%;
  border: none;
  border-radius: 5px;
  height: 40px;
  background: var(--accent-blue);
  background: var(--gradient-primary);
  color: var(--white);
  cursor: pointer;
}

/* google map */
#main-contents {
  /* Changed from .main-content to #main-content */
  padding: 2rem 0;
  background: var(--background-secondary);
  /* Medium dark blue-gray */
  text-align: center;
  /* border-radius: 0.5rem; */
  /* margin: 2rem auto; */
  width: 100%;
  min-height: 100%;
  /* Changed from max-width: 90% to width: 100% */
  /* box-shadow: 0 4px 10px var(--shadow-color); */
}

.main-content-text {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
  text-align: left;
}

.more-button {
  background-color: var(--accent-blue);
  /* Accent blue for button */
  color: var(--bg-dark);
  /* Dark text on button */
  padding: 0.75rem 0.7rem;
  border-radius: 0.3rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
  display: inline-block;
  margin-bottom: 2rem;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.8em;
}

.more-button:hover {
  background-color: var(--focus-ring);
  /* Lighter accent on hover */
}

.map-section {
  position: relative;
  width: 90%;
  /* Adjust width to match image */
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 10px var(--shadow-color);
  border: 1px solid var(--border-color);
  /* Blue border for map */
}

.map-section iframe {
  width: 100%;
  height: 400px;
  /* Fixed height for the map */
  border: 0;
  display: block;
}

.find-us-overlay {
  position: absolute;
  top: 1rem;
  /* Adjust position as seen in image */
  right: 1rem;
  background-color: var(--accent-blue);
  /* Accent blue for overlay */
  color: var(--bg-dark);
  /* Dark text on overlay */
  padding: 0.75rem 1.5rem;
  border-radius: 0.3rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 10;
  transition: background-color 0.2s ease-in-out;
  color: var(--white);
}

.find-us-overlay:hover {
  background-color: var(--focus-ring);
  /* Lighter accent on hover */
}

.main-content-text {
  max-width: 1150px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
  text-align: left;
}

.main-content-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}


/* css animations */
.section{
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.section.visible{
  opacity: 1;
  transform: translateX(0);
}

/* ========================================== */
/* LOCATION SECTION STYLES */
/* ========================================== */

.location-section {
  background: var(--background-secondary);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.location-container {
  max-width: 1600px;
  margin: 0 auto;
}

.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.location-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Location Details Cards */
.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.location-card {
  background: var(--background-primary);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.location-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  min-height: auto;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.location-card:hover::before {
  height: 100%;
}

.card-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  max-width: 55px;
  max-height: 55px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
  aspect-ratio: 1 / 1;
}

.card-icon i {
  font-size: 1.3rem !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
}

.location-card:first-child .card-icon {
  margin-bottom: 0;
}

.location-card:not(:first-child) .card-icon {
  margin-bottom: 0;
}

.card-content h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
  white-space: nowrap;
}

.card-content p {
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-size: 0.9em;
  white-space: nowrap;
}

.card-content p i {
  margin-right: 10px;
  color: var(--accent-color);
}

.card-content p a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-content p a:hover {
  color: var(--accent-color);
}

/* Hours List */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.hour-item span:first-child {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9em;
}

.hour-item span:last-child {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9em;
}

/* Directions Button */
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

.directions-btn i {
  transition: transform 0.3s ease;
}

.directions-btn:hover i {
  transform: translateX(5px);
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.map-container {
  position: relative;
  width: 100%;
  height: 480px;
  background: var(--background-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.map-overlay-badge i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.map-overlay-badge span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive Location Section */
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
  }
  
  .location-details {
    grid-template-columns: 1fr;
  }
  
  .location-card:first-child {
    grid-column: 1;
  }
  
  .map-container {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 15px;
  }
  
  .location-header h2 {
    font-size: 2rem;
  }
  
  .location-card {
    padding: 20px;
  }
  
  .location-card:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    font-size: 1.1rem;
    aspect-ratio: 1 / 1;
  }
  
  .card-icon i {
    font-size: 1.1rem !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
  }
  
  .map-container {
    height: 350px;
  }
  
  .hour-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .input-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .input-icon-wrapper {
    flex: 2;
    min-width: 200px;
  }
  
  .subscribe-btn {
    flex: 1;
    min-width: 130px;
  }

  .contact-item span {
    font-size: 0.85em;
  }

  .trust-badges {
    flex-wrap: wrap;
  }
}

/* ========================================== */
/* FOOTER STYLES */
/* ========================================== */

footer {
  background: var(--background-primary);
  position: relative;
  border-top: 2px solid rgba(56, 189, 248, 0.2);
}

/* Footer CTA Banner */
.footer-cta {
  background: var(--gradient-primary);
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 20px;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-content h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn-footer {
  padding: 18px 35px;
  background: white;
  color: var(--background-primary);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.cta-btn-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn-footer i {
  transition: transform 0.3s ease;
}

.cta-btn-footer:hover i {
  transform: translateX(5px);
}

/* Footer Main Content */
.footer-container {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 80px 40px 60px;
}

.footer-column h3 {
  color: var(--accent-color);
  font-size: 0.9em;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Company Info Column */
.footer-about .footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-stats {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9em;
}

/* Footer Links */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 0.9em;
  white-space: nowrap;
}

.footer-column ul li a i {
  font-size: 0.7rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-column ul li a:hover i {
  transform: translateX(3px);
}

/* Newsletter */
.footer-newsletter p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.9em;
}

.newsletter-form {
  margin-bottom: 25px;
}

.input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-icon-wrapper {
  position: relative;
  flex: 2;
  display: flex;
  align-items: center;
  min-width: 0;
}

.input-icon-wrapper i {
  position: absolute;
  left: 15px;
  color: var(--text-secondary);
  z-index: 2;
  font-size: 0.9em;
  pointer-events: none;
}

.input-icon-wrapper input {
  width: 100%;
  flex: 1;
  min-width: 0;
  padding: 15px 15px 15px 45px;
  background: var(--background-light);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.input-icon-wrapper input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.input-icon-wrapper input::placeholder {
  color: var(--text-secondary);
}

.subscribe-btn {
  padding: 15px 25px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  flex: 0 0 auto;
  font-size: 0.9em;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

/* Quick Contact */
.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1rem;
  min-width: 20px;
}

.contact-item span {
  font-size: 0.9em;
  font-weight: 500;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  white-space: nowrap;
}

.badge-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.badge-item span {
  color: var(--text-primary);
  font-size: 0.9em;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom-left p {
  color: var(--text-secondary);
  font-size: 0.9em;
}

.footer-bottom-left strong {
  color: var(--accent-color);
}

.legal-links {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-color);
}

.legal-links .separator {
  color: var(--text-secondary);
  opacity: 0.5;
}

/* Footer Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social span {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9em;
}

.social-links-footer {
  display: flex;
  gap: 12px;
}

.social-links-footer a {
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links-footer a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
}

/* Back to Top in Footer */
.back-to-top-footer {
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 15px 25px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.back-to-top-footer:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

.back-to-top-footer i {
  transition: transform 0.3s ease;
}

.back-to-top-footer:hover i {
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 0 10px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    padding: 60px 20px 40px;
    gap: 40px;
  }
  
  /* Footer logo responsive */
  .footer-about .footer-logo {
    width: 80px;
    margin-bottom: 15px;
  }
  
  .footer-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px 30px 20px; /* Extra bottom padding */
  }
  
  .back-to-top-footer {
    position: static;
    margin: 20px auto 0;
  }
  
  .footer-social {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px; /* Extra space for mobile nav */
  }
}

/* Old footer class compatibility */
.footer-grid,
#main-contents,
.main-content-text,
.more-button,
.map-section,
.find-us-overlay,
.bottom-footer .copyright,
.social-icons {
  display: none !important;
}

/* css animations - continued */
.section{
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease;
  }
  
  #section{
    opacity: 0;
    transform: translateY(100%);
    transition: all 1s ease;
  }
  
  #section.present{
    opacity: 1;
    transform: translateY(0%);
  }
  
  .section.present{
    opacity: 1;
    transform: translateX(0%);
  }

  .BlogCard:nth-child(2){
    transition-delay: .8s !important;
  }

  .BlogCard:nth-child(3){
    transition-delay: 1.2s !important;
  }


  .footer-social {
  text-align: left;
  /* margin-top: 10px; */
}

.footer-social h4 {
  font-size: 1rem;
  color: #00bfff; /* futuristic blue tone */
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.social-icons a {
  color: #ffffff;
  background-color: var(--accent-blue);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #00bfff;
  color: #0e0e0e;
  transform: scale(1.1);
}

/* ========================================== */
/* Mobile Navigation Additional Fixes */
/* ========================================== */

@media (max-width: 768px) {
  .mobile-nav-container {
    padding: 15px;
  }

  .mobile-nav-header {
    padding: 15px 0;
    margin-bottom: 30px;
  }

  .mobile-nav-menu {
    gap: 6px;
    padding: 15px 0;
  }

  .mobile-nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    gap: 15px;
  }

  .mobile-nav-link i {
    font-size: 1.1rem;
    width: 26px;
  }

  .mobile-nav-footer {
    padding: 15px 0;
    gap: 20px;
  }

  .mobile-cta-btn {
    height: 48px;
    font-size: 0.95rem;
  }

  .mobile-social-links a {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .footer-social{
    display:none !important ;
  }
}

@media (max-width: 480px) {
  .mobile-nav-container {
    padding: 12px;
  }

  .mobile-nav-header {
    padding: 12px 0;
    margin-bottom: 25px;
  }

  .mobile-nav-header img {
    width: 50px;
    height: 42px;
  }

  .close-nav {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .mobile-nav-menu {
    gap: 5px;
    padding: 10px 0;
  }

  .mobile-nav-link {
    padding: 12px 14px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .mobile-nav-link i {
    font-size: 1rem;
    width: 24px;
  }

  .mobile-nav-footer {
    padding: 12px 0;
    gap: 18px;
  }

  .mobile-cta-btn {
    height: 45px;
    font-size: 0.9rem;
  }

  .mobile-social-links {
    gap: 12px;
  }

  .mobile-social-links a {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .footer-social{
    display:none !important ;
  }
}
