/* CSS Variables */
:root {
  --primary: #4a00e0;
  --secondary: #8e2de2;
  --accent: #00c9ff;
  --light-blue: #f5f9ff;
  --dark: #1a1a2e;
  --light: #ffffff;
  --gray: #f8f9fa;
  --shadow: 0 10px 30px rgba(74, 0, 224, 0.08);
  --shadow-hover: 0 20px 40px rgba(74, 0, 224, 0.15);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius: 16px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(74, 0, 224, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--primary);
}

nav a.active::after {
  width: 100%;
}

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

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  padding: 10px 0;
  border: 1px solid rgba(74, 0, 224, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 25px;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.05)
  );
  color: var(--primary);
  padding-left: 30px;
}

.header-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline::before {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-outline:hover {
  color: white;
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(245, 249, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

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

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 5px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 25px auto 0;
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 0, 224, 0.05);
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

/* Home Page Specific */
.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background: linear-gradient(
    135deg,
    rgba(245, 249, 255, 0.8),
    rgba(255, 255, 255, 0.9)
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.05)
  );
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(0, 201, 255, 0.05),
    rgba(74, 0, 224, 0.05)
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Client Logos Animation */
.clients-section {
  padding: 80px 0;
  background-color: var(--gray);
  overflow: hidden;
}

.clients-title {
  text-align: center;
  margin-bottom: 50px;
}

.clients-title h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clients-slider {
  display: flex;
  animation: slide 30s linear infinite;
  width: calc(250px * 14);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.client-logo {
  width: 200px;
  height: 120px;
  margin: 0 25px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}

.client-logo:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.logo-placeholder {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(245, 249, 255, 0.8),
    rgba(255, 255, 255, 0.9)
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  display: flex;
  gap: 25px;
}

.feature-card .card-icon {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  font-size: 24px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  background: white;
  color: var(--primary);
}

.cta-content .btn:hover {
  background: var(--light-blue);
}

/* Services Page */
.services-page {
  padding: 40px 0 100px;
}

.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.services-intro h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-category {
  margin-bottom: 100px;
}

.service-category-title {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 3px solid rgba(74, 0, 224, 0.1);
}

.service-category-title h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  display: inline-block;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card-detailed {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(74, 0, 224, 0.1);
}

.service-card-detailed:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74, 0, 224, 0.2);
}

.service-header {
  padding: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-number {
  font-size: 24px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-large {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-header h3 {
  font-size: 24px;
  font-weight: 700;
  flex: 1;
}

.service-body {
  padding: 30px;
  flex: 1;
}

.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-cta {
  text-align: center;
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(245, 249, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: var(--border-radius);
  margin-top: 80px;
}

.service-cta h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Page */
.about-page {
  padding: 40px 0 100px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.approach-step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.approach-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.about-quick-links {
  margin-top: 100px;
  text-align: center;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.quick-link-card {
  display: block;
  padding: 40px 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
  text-align: center;
}

.quick-link-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.05),
    rgba(142, 45, 226, 0.05)
  );
}

.quick-link-card i {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Page */
.contact-page {
  padding: 40px 0 100px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition);
  background-color: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
}

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

.map-section {
  margin-top: 100px;
  text-align: center;
}

.service-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-area-card {
  padding: 40px 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.service-area-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-area-card i {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(245, 249, 255, 0.8),
    rgba(255, 255, 255, 0.9)
  );
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.8s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 50px;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 5px solid var(--primary);
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
}

.testimonial-company {
  color: #777;
  font-size: 16px;
  margin-top: 5px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: rgba(74, 0, 224, 0.1);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(74, 0, 224, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: white;
}

.carousel-arrow.prev {
  left: -70px;
}

.carousel-arrow.next {
  right: -70px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark), #0f0f1f);
  color: white;
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  margin-bottom: 25px;
  opacity: 0.8;
  line-height: 1.8;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-5px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

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

.footer-links li,
.footer-services li {
  margin-bottom: 15px;
}

.footer-links a,
.footer-services a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-links a:hover,
.footer-services a:hover {
  color: white;
  opacity: 1;
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
}

.footer-contact i {
  color: var(--accent);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 15px;
}

/* Gradient Badge */
.gradient-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(74, 0, 224, 0.2);
}
/* ==============================
   CTA HERO (Background + Animations)
============================== */

.cta-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;

  /* Background image + fallback gradient */
  background:
    linear-gradient(135deg, rgba(74, 0, 224, 0.82), rgba(142, 45, 226, 0.78)),
    url("css/assets/images/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Soft overlay + glass glow */
.cta-hero .cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 420px at 30% 40%,
      rgba(0, 201, 255, 0.18),
      transparent 65%
    ),
    radial-gradient(
      800px 380px at 70% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 70%
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.22));
  z-index: 0;
  pointer-events: none;
}

.cta-hero .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.cta-subtitle {
  font-size: 20px;
  opacity: 0.92;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 38px;
}

/* ==============================
   CTA Button (Premium Hover)
============================== */

.cta-actions {
  display: flex;
  justify-content: center;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary) !important;
  gap: 12px;
  padding: 18px 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

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

.cta-btn:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26);
  background: #ffffff !important;
}

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

/* subtle animated shine */
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(74, 0, 224, 0.1) 35%,
    rgba(0, 201, 255, 0.12) 55%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: 0;
}

.cta-btn:hover::after {
  transform: translateX(120%);
}

/* ensure text stays above shine */
.cta-btn {
  position: relative;
  overflow: hidden;
}

.cta-btn > * {
  position: relative;
  z-index: 1;
}

/* ==============================
   Scroll Animations (works with animate-on-scroll)
============================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger timing inside CTA */
.cta-title.visible {
  transition-delay: 0.05s;
}
.cta-subtitle.visible {
  transition-delay: 0.18s;
}
.cta-actions.visible {
  transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 40px;
  }
  .cta-subtitle {
    font-size: 17px;
  }
  .cta-hero {
    padding: 95px 0;
  }
}
<!-- industries.html -->
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Industries Served | ReImagine HR</title>

    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
    />
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
    />

    <!-- Site styles -->
    <link rel="stylesheet" href="css/style.css" />
    <link rel="stylesheet" href="css/responsive.css" />
    <link rel="stylesheet" href="css/animations.css" />

    <!-- Page-specific styles -->
    <style>
      /* =========================
         NAV: make About Us align with other nav buttons
      ========================= */
      nav ul {
  align-items: center;
}
nav a.nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  line-height: 1;
  padding: 0;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dropdown-toggle i {
  font-size: 12px;
  transform: translateY(1px);
  transition: var(--transition);
}
.dropdown:hover .dropdown-toggle i {
  transform: translateY(1px) rotate(180deg);
}

/* =========================
         PAGE WRAP
      ========================= */
.industries-page {
  padding: 40px 0 110px;
  background: linear-gradient(
    135deg,
    rgba(245, 249, 255, 0.92),
    rgba(255, 255, 255, 0.98)
  );
  position: relative;
  overflow: hidden;
}

.industries-page::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(74, 0, 224, 0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.industries-page::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: -170px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 201, 255, 0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.industries-page .container {
  position: relative;
  z-index: 1;
}

/* =========================
         TOP SECTION: UIVERSE (Prince4fff) — adapted to website colors
      ========================= */
.industries-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  margin-top: 10px;
  margin-bottom: 70px;
  align-items: stretch;
}

.card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
  margin-top: 10px;
}
.card p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 34px;
  height: 34px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-image: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0 14px 0 34px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
  font-weight: 900;
}

.card1 {
  display: block;
  position: relative;
  background-color: #f2f8f9;
  border-radius: 18px;
  padding: 34px 28px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(74, 0, 224, 0.08);
  box-shadow: 0 18px 60px rgba(74, 0, 224, 0.08);
  transition: var(--transition);
}

.card1 h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  height: 38px;
  width: 38px;
  border-radius: 38px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(74, 0, 224, 0.14);
}

.card1:hover:before {
  transform: scale(26);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.92);
}

.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

/* small top-right highlight card */
.card2 {
  display: block;
  position: relative;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 34px 28px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(74, 0, 224, 0.1);
  box-shadow: 0 18px 60px rgba(74, 0, 224, 0.06);
  transition: var(--transition);
}

.card2 h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
}

.card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  height: 34px;
  width: 34px;
  border-radius: 34px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
  opacity: 0.35;
}

.card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(74, 0, 224, 0.14);
  border-color: rgba(74, 0, 224, 0.18);
}

.card2:hover:before {
  transform: scale(2.25);
  opacity: 0.6;
}

.top-right-stack {
  display: grid;
  gap: 22px;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;

  /* ✅ match navbar background */
  background: transparent; /* was #fff */
  box-shadow: none; /* remove shadow “box” */
  border-radius: 0; /* remove rounded tile look */
  padding: 0; /* remove any padding */
}
