/* Rocketconnect.ai - Premium Telecom CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Telecom Inspired */
  --primary: #240BFF;       /* Vibrant Electric Blue */
  --primary-glow: rgba(36, 11, 255, 0.45);
  --accent: #ff5f00;        /* Vibrant Telecom Orange */
  --accent-glow: rgba(255, 95, 0, 0.45);
  --accent-hover: #e05300;
  
  /* Background Hierarchy */
  --bg-deep: #060913;       /* Ultra-deep space blue */
  --bg-surface: #0c1122;    /* Dark navy surface card */
  --bg-card: rgba(18, 25, 48, 0.65);
  
  /* Text Colors */
  --text-main: #f8fafc;     /* Slate 50 */
  --text-body: #cbd5e1;     /* Slate 300 */
  --text-muted: #64748b;    /* Slate 500 */
  --border-light: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(36, 11, 255, 0.5);
  
  /* Animation Timings */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(36, 11, 255, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255, 95, 0, 0.07) 0%, transparent 50%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 4rem 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Typography Helpers */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-telecom {
  background: linear-gradient(135deg, var(--primary) 0%, #7085ff 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Header & Navigation */
.header {
  background: rgba(6, 9, 19, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--accent);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.025rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-smooth);
}

.nav-link:hover::after, 
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-main);
  font-weight: 600;
}

/* Centered Navigation Menu for Desktop Views */
@media (min-width: 992px) {
  .nav {
    position: relative;
    justify-content: center;
  }
  
  .nav .logo-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Ensure logo is clickable and stacked above other content */
  }
  
  .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 160px; /* Prevent menu links from overlapping the logo or Join button */
    width: 100%;
  }
  
  .nav-list li:last-child {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Ensure button is clickable and stacked above other content */
  }
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #0b0f1d;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 250px;
  padding: 0.75rem 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #0b0f1d;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(36, 11, 255, 0.1);
  color: #ffffff;
  padding-left: 1.75rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  display: block;
  position: relative;
  transition: var(--transition-smooth);
}

.hamburger::before, 
.hamburger::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--text-main);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Active mobile menu hamburger transformation */
.nav-toggle.open .hamburger {
  background: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Glassmorphism General Utility */
.glass {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.25rem;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.45);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #513aff 100%);
  color: #ffffff;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--primary-glow);
  background: linear-gradient(135deg, #371eff 0%, #634eff 100%);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8239 100%);
  color: #ffffff;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #ff711f 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text-main);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-light);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Hero Section & Slider Banner */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: 85vh;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-text {
  flex: 1.1;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(36, 11, 255, 0.12);
  border: 1px solid rgba(36, 11, 255, 0.3);
  color: #8fa0ff;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-slider {
  flex: 0.9;
  position: relative;
  height: 450px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Page Headers & Breadcrumbs */
.page-header {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(12, 17, 34, 0.75) 0%, rgba(6, 9, 19, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--primary);
  border-radius: 1.25rem;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(36, 11, 255, 0.15) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.15rem;
  user-select: none;
}

.breadcrumbs span.current-page {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
  font-size: clamp(2.25rem, 5vw, 3.15rem);
  margin-bottom: 0.75rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.page-header p {
  color: var(--text-body);
  max-width: 750px;
  font-size: 1.125rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .page-header {
    padding: 2.5rem 2rem;
    margin-top: 1rem;
  }
}


/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards Grid (Home Page) */
.features {
  background: radial-gradient(circle at 50% 10%, rgba(255, 95, 0, 0.04) 0%, transparent 60%);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 11, 255, 0.3);
  box-shadow: 0 15px 35px rgba(6, 9, 19, 0.5), 0 0 30px rgba(36, 11, 255, 0.15);
}

.card:hover::before {
  opacity: 0.05;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  background: rgba(36, 11, 255, 0.15);
  border-color: rgba(36, 11, 255, 0.4);
  transform: scale(1.05);
}

.card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--text-body);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Infrastructure Gallery Section */
.infra-section {
  background: radial-gradient(circle at 10% 50%, rgba(36, 11, 255, 0.05) 0%, transparent 60%);
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.infra-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.infra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.infra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 9, 19, 0.95) 0%, rgba(6, 9, 19, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.infra-card:hover img {
  transform: scale(1.08);
}

.infra-overlay h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.infra-overlay p {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.85;
}

/* Services Detailed Content */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-col-text {
  flex: 1;
}

.service-col-image {
  flex: 1;
}

.service-col-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 95, 0, 0.1);
  border: 1px solid rgba(255, 95, 0, 0.25);
  color: #ff914d;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-col-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.service-col-text p {
  color: var(--text-body);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.service-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.service-features-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* Accordion for Detailed Services */
.service-accordion-section {
  padding-top: 4rem;
  border-top: 1px solid var(--border-light);
  margin-top: 4rem;
}

.service-accordion-title {
  text-align: center;
  margin-bottom: 3rem;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: var(--text-body);
  font-size: 0.95rem;
  margin-top: 0;
}

.accordion-item.active .accordion-content {
  margin-top: 1rem;
  /* dynamic height handled in JS */
}

/* Industries Layout Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-card {
  padding: 3rem 2rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.industry-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.industry-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.industry-stats {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 1rem;
}

.industry-stats span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* About Us Layout Extensions */
.about-intro {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.about-intro-text {
  flex: 1;
}

.about-intro-image {
  flex: 1;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-intro-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.about-block {
  padding: 3rem;
}

.about-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-block h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.about-block p {
  color: var(--text-body);
}

.why-choose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-choose-list li {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  transition: var(--transition-smooth);
}

.why-choose-list li:hover {
  background: rgba(36, 11, 255, 0.03);
  border-color: rgba(36, 11, 255, 0.2);
  transform: translateX(5px);
}

.why-choose-list strong {
  color: var(--accent);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* Contact Us Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  padding: 3rem;
}

.form-title {
  margin-bottom: 2rem;
}

.form-title h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-title p {
  color: var(--text-body);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: rgba(6, 9, 19, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(36, 11, 255, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-box {
  padding: 2.5rem 2rem;
}

.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background: rgba(255, 95, 0, 0.1);
  border: 1px solid rgba(255, 95, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-text p,
.info-text a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}

.info-text a:hover {
  color: var(--accent);
}

.map-placeholder {
  height: 250px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  position: relative;
  background: #0f172a;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Premium Footer Section - Corporate Style */
.footer-wrap {
  border-top: 1px solid var(--border-light);
  background: #03050c;
  position: relative;
}

.footer-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) 0.7fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 5rem 0 3rem;
}

.footer-desc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-desc p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.85rem;
}

.footer-links ul li a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent);
  font-weight: bold;
  flex-shrink: 0;
}

.footer-contact-item p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive CSS */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-top: 3rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-slider {
    width: 100%;
    max-width: 600px;
    height: 380px;
    margin: 0 auto;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .service-row,
  .service-row:nth-child(even) {
    flex-direction: column;
    gap: 3rem;
  }
  .about-intro {
    flex-direction: column;
    gap: 3rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 75px);
    background: #080c16;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-light);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-list.open {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    padding: 0.4rem 0;
  }

  .dropdown-item:hover {
    padding-left: 0.5rem;
    background: transparent;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Timeline Styles */
.timeline-container {
  margin-top: 3rem;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.timeline-item {
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* AI Virtual Agents Page Additions */
.virtual-agents-details {
  margin-top: 5rem;
}

/* Chat Mockup component */
.chat-mockup {
  max-width: 750px;
  margin: 3rem auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.chat-header {
  background: rgba(12, 17, 34, 0.95);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.chat-bot-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px var(--primary-glow);
}

.chat-status {
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.chat-status::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.chat-lang-select {
  background: rgba(6, 9, 19, 0.8);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.chat-body {
  background: rgba(8, 12, 24, 0.7);
  padding: 2rem 1.5rem;
  height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.chat-msg {
  max-width: 80%;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  line-height: 1.5;
  position: relative;
  animation: floatUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--primary) 0%, #442eff 100%);
  color: #fff;
  border-bottom-right-radius: 0.25rem;
  box-shadow: 0 5px 15px rgba(36, 11, 255, 0.2);
}

.chat-msg.agent {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-bottom-left-radius: 0.25rem;
  border: 1px solid var(--border-light);
}

.chat-system {
  align-self: center;
  background: rgba(255, 95, 0, 0.07);
  border: 1px solid rgba(255, 95, 0, 0.2);
  color: #ffa47a;
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  max-width: 90%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-system-indicator {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.chat-footer {
  background: rgba(12, 17, 34, 0.95);
  padding: 1rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.chat-input-mock {
  flex: 1;
  background: rgba(6, 9, 19, 0.8);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.chat-btn-mock {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8239 100%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 10px var(--accent-glow);
}

/* Architecture Pipeline Flow Component */
.pipeline-flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  margin: 4rem auto;
  position: relative;
}

.pipeline-step {
  flex: 1;
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.pipeline-step:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 11, 255, 0.3);
  box-shadow: 0 15px 30px rgba(6, 9, 19, 0.5), 0 0 25px rgba(36, 11, 255, 0.12);
}

.pipeline-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.pipeline-step:hover .pipeline-badge {
  background: rgba(255, 95, 0, 0.15);
  border-color: rgba(255, 95, 0, 0.4);
  transform: scale(1.08);
  box-shadow: 0 0 15px var(--accent-glow);
}

.pipeline-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.pipeline-step p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

.pipeline-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.75rem;
  font-weight: 300;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 992px) {
  .pipeline-flow {
    flex-direction: column;
    gap: 2.5rem;
  }
  .pipeline-step:not(:last-child)::after {
    content: '↓';
    top: auto;
    bottom: -1.75rem;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Features Checklist Grid */
.features-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item-box {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.feature-item-box:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 11, 255, 0.3);
  box-shadow: 0 10px 20px rgba(36, 11, 255, 0.08);
}

.feature-icon-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(36, 11, 255, 0.15);
  border: 1px solid rgba(36, 11, 255, 0.3);
  color: #8fa0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-item-box h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-item-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Dialer Dashboard Component */
.dialer-mockup {
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.dialer-header {
  background: rgba(12, 17, 34, 0.95);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.dialer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(8, 12, 24, 0.6);
  border-bottom: 1px solid var(--border-light);
}

.dialer-stat-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  text-align: center;
}

.dialer-stat-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.dialer-stat-card strong {
  font-size: 1.4rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.dialer-table-wrap {
  background: rgba(8, 12, 24, 0.8);
  padding: 1rem 1.5rem;
  overflow-x: auto;
}

.dialer-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.dialer-table th {
  padding: 0.75rem 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}

.dialer-table td {
  padding: 1rem 0.5rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dialer-status-pill {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dialer-status-pill.active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.dialer-status-pill.slowdown {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* Omnichannel Shared Inbox Component */
.inbox-mockup {
  max-width: 850px;
  margin: 3rem auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 480px;
}

.inbox-sidebar {
  background: rgba(12, 17, 34, 0.95);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.inbox-sidebar-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.inbox-channel-list {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.inbox-channel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.inbox-channel-item:hover,
.inbox-channel-item.active {
  background: rgba(36, 11, 255, 0.08);
}

.inbox-channel-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.channel-badge {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.channel-badge.whatsapp { background: #10b981; }
.channel-badge.sms { background: var(--accent); }
.channel-badge.webchat { background: var(--primary); }

.inbox-main {
  background: rgba(8, 12, 24, 0.75);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.inbox-main-header {
  background: rgba(12, 17, 34, 0.9);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inbox-chat-area {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.inbox-note {
  align-self: center;
  background: rgba(36, 11, 255, 0.07);
  border: 1px solid rgba(36, 11, 255, 0.2);
  color: #a5b4fc;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inbox-ai-draft {
  background: rgba(255, 95, 0, 0.06);
  border: 1px dashed rgba(255, 95, 0, 0.3);
  padding: 1rem;
  border-radius: 0.75rem;
  margin: 0 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inbox-ai-draft p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}

.inbox-ai-draft-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8239 100%);
  border: none;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 992px) {
  .dialer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .inbox-mockup {
    grid-template-columns: 1fr;
  }
  .inbox-sidebar {
    display: none;
  }
  .dialer-grid {
    grid-template-columns: 1fr;
  }
}

/* Join Us Nav Button */
.btn-join-us {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem !important;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8239 100%);
  color: #ffffff !important;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: var(--transition-smooth);
}

.btn-join-us:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #ff711f 100%);
}

.btn-join-us::after {
  display: none !important; /* Remove indicator underline */
}

/* Join Iframe Layout */
.join-iframe-container {
  margin-top: 2rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  background: rgba(8, 12, 24, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.join-iframe {
  width: 100%;
  height: 900px;
  border: none;
  border-radius: 0.75rem;
  background: #ffffff; /* White background to match the external form */
}

/* Join Us Modal Overlay Styling */
.join-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out forwards;
}

.join-modal-overlay.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

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

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.join-modal-wrapper {
  width: min(950px, 95%);
  height: 85vh;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.join-modal-header {
  background: rgba(12, 17, 34, 0.95);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.join-modal-header h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.join-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.join-modal-close:hover {
  color: var(--accent);
}

.join-modal-body {
  flex: 1;
  background: #ffffff; /* White background to match external form */
  position: relative;
  overflow: hidden;
}

.join-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Side-by-Side Mockup & Form Grid */
.mockup-form-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-top: 3rem;
}

.mockup-form-grid > div {
  max-width: none !important;
  margin: 0 !important;
}

@media (max-width: 992px) {
  .mockup-form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Services Slider Section Styling */
.services-slider-section {
  padding: 6rem 0;
  overflow: hidden;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.slider-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-2px);
}

.slider-btn:active {
  transform: translateY(0);
}

.services-slider-wrapper {
  overflow: visible;
  padding: 1.5rem 0;
  margin: 0 -1.5rem;
}

.services-slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 0 1.5rem;
}

.service-slide-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-light);
  position: relative;
}

.service-slide-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 11, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(36, 11, 255, 0.15);
}

.service-slide-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-slide-card:hover .service-slide-image img {
  transform: scale(1.08);
}

.service-slide-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8239 100%);
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-slide-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.service-slide-content h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-slide-card:hover .service-slide-content h3 {
  color: var(--accent);
}

.service-slide-content p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.service-slide-link svg {
  transition: transform 0.3s ease;
}

.service-slide-link:hover {
  color: var(--accent);
}

.service-slide-link:hover svg {
  transform: translateX(5px);
}

/* Dots navigation */
.services-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.services-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-dot.active {
  background: var(--accent);
  width: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-slide-card {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
  .section-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .slider-controls {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .service-slide-card {
    flex: 0 0 100%;
  }
  .services-slider-section {
    padding: 4rem 0;
  }
}

/* Testimonial Cards Styling */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 11, 255, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(36, 11, 255, 0.15) !important;
}

/* Lightbox Modal Zoom Styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 12, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out forwards;
}

.lightbox-overlay.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

.lightbox-wrapper {
  max-width: min(1000px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(36, 11, 255, 0.1);
  object-fit: contain;
  animation: scaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lightbox-caption {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFade 0.4s ease-out 0.15s forwards;
}

.lightbox-caption span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent);
  transform: scale(1.08);
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enable pointer cursor on zoomable elements */
.infra-card,
.team-image-container {
  cursor: zoom-in;
}






