/* ==========================================================================
   Karna Kreative Premium Website Redesign (Vanilla CSS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Syne:wght@500..800&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-headings: 'Syne', sans-serif;
  
  /* Color Palette */
  --bg-deep: #080c16;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --bg-surface-hover: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(99, 102, 241, 0.4);
  
  --primary: #6366f1; /* Indigo */
  --primary-glow: rgba(99, 102, 241, 0.35);
  --secondary: #10b981; /* Emerald */
  --secondary-glow: rgba(16, 185, 129, 0.3);
  --accent: #ec4899; /* Pink */
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ──────────────────────────────────────────────────────────────────────────
   1. GLASSMORPHIC HEADER / NAVIGATION
   ────────────────────────────────────────────────────────────────────────── */

.menu_bar {
  background-color: rgba(8, 12, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.menu_bar img {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.menu_bar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
}

.menu_bar ul li {
  padding: 8px 16px;
  position: relative;
}

.menu_bar ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.menu_bar ul li a:hover {
  color: var(--primary);
}

/* Dropdowns */
.dropdown_menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: rgba(12, 18, 33, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.menu_bar ul li:hover .dropdown_menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: slideUp 0.3s forwards;
}

.dropdown_menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 240px;
  padding: 0;
  gap: 4px;
}

.dropdown_menu ul li {
  width: 100%;
  padding: 6px 20px;
}

.dropdown_menu ul li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text-secondary);
}

.dropdown_menu ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.dropdown_menu-1 {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: rgba(12, 18, 33, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown_menu ul li:hover .dropdown_menu-1 {
  display: block;
  animation: slideLeft 0.3s forwards;
}

.fas {
  font-size: 11px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.menu_bar ul li:hover > a .fas {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Call To Action Button */
.header-contact-btn {
  font-size: 15px;
  height: 42px;
  width: 125px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--secondary-glow);
  transition: var(--transition-smooth);
}

.header-contact-btn a {
  text-decoration: none;
  color: white;
  display: block;
  line-height: 42px;
}

.header-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  z-index: 1100;
  transition: var(--transition-smooth);
}

/* ──────────────────────────────────────────────────────────────────────────
   2. HERO SECTION
   ────────────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
}

/* Ambient glow blobs */
.hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--primary-glow);
  border-radius: 50%;
  filter: blur(120px);
  top: 15%;
  left: 10%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--secondary-glow);
  border-radius: 50%;
  filter: blur(120px);
  bottom: 15%;
  right: 10%;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 24px;
  z-index: 10;
  gap: 30px;
}

.hero .text {
  flex: 1.2;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: var(--font-headings);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  text-align: center;
}

.hero button {
  font-size: 16px;
  height: 52px;
  width: 165px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.hero .button-1 {
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  color: white;
  margin-right: 16px;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.hero .button-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.hero .button-2 {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.hero .button-2:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.banner-btn {
  font-size: 16px;
  height: 52px;
  width: 165px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.55);
}

/* Floating Images Columns */
.hero-left-visual {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-left-visual img {
  height: 320px;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}

.hero-right-visual {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-right-visual img {
  height: 380px;
  width: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  animation: float 8s ease-in-out infinite 1s;
}

/* SVG Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ──────────────────────────────────────────────────────────────────────────
   3. SERVICES SECTIONS & CARDS GRID
   ────────────────────────────────────────────────────────────────────────── */

.heading {
  padding: 100px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.heading h1,
.heading h2 {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.heading .breadcrumb {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.heading .breadcrumb a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.heading .breadcrumb a:hover {
  color: var(--primary);
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cards {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 420px;
  position: relative;
  transition: var(--transition-smooth);
}

.cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cards:hover {
  transform: translateY(-8px);
  background: var(--bg-surface-hover);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 20px 40px rgba(8, 12, 22, 0.8), 0 0 30px rgba(99, 102, 241, 0.05);
}

.cards img {
  display: block;
  height: 130px;
  width: auto;
  max-width: 80%;
  margin: 30px auto 10px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.cards:hover img {
  transform: scale(1.05) rotateY(180deg);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.card-content h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.card-content .btn {
  display: inline-block;
  align-self: center;
  padding: 10px 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
  margin-top: 15px;
}

.cards:hover .card-content .btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* ──────────────────────────────────────────────────────────────────────────
   4. PREMIUM TESTIMONIALS CAROUSEL
   ────────────────────────────────────────────────────────────────────────── */

.testimonials {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 100px 24px;
  margin: 80px auto;
  position: relative;
}

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

.testimonials .testimonials-wrapper {
  display: flex;
  transition: margin-left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.testimonials .card {
  min-width: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  padding: 48px;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonials .card-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.testimonials .card-body {
  flex-grow: 1;
}

.testimonials .review {
  font-size: 1.15rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
}

.testimonials .review::before {
  content: "“";
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  left: -20px;
  top: -30px;
}

.testimonials h3 {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonials span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.testimonials .indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}

.testimonials .indicators button {
  background: rgba(255,255,255,0.1);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonials .indicators button.active {
  width: 28px;
  border-radius: 5px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* ──────────────────────────────────────────────────────────────────────────
   5. PORTFOLIO / CREATIVE WORKS
   ────────────────────────────────────────────────────────────────────────── */

.project {
  padding: 100px 24px;
  background: radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

.project h4 {
  text-align: center;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.project h1,
.project h2 {
  text-align: center;
  font-size: 3.5rem;
  font-family: var(--font-headings);
  color: white;
  line-height: 1.15;
  margin-bottom: 50px;
}

.project .image {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project .image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.project .image img:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 25px 50px rgba(8, 12, 22, 0.9), 0 0 25px rgba(16, 185, 129, 0.08);
}

/* ──────────────────────────────────────────────────────────────────────────
   6. WHY CHOOSE US
   ────────────────────────────────────────────────────────────────────────── */

.why {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 24px;
  gap: 80px;
}

.why-left {
  flex: 1.1;
}

.why-right {
  flex: 0.9;
  position: relative;
}

.why-right::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--secondary-glow);
  filter: blur(80px);
  bottom: -20px;
  left: -20px;
  z-index: 0;
  pointer-events: none;
}

.why-right img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  animation: float 7s ease-in-out infinite;
}

.why h1,
.why h2 {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.why p.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.solution {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.sol-item:hover {
  background: var(--bg-surface-hover);
  transform: translateX(6px);
}

.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.sol-item:nth-child(1) .sol-icon {
  background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.sol-item:nth-child(2) .sol-icon {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.sol-item:nth-child(3) .sol-icon {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.sol-body h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.sol-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────────────────────
   7. CLIENT MARQUEE SLIDER
   ────────────────────────────────────────────────────────────────────────── */

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 50px 0;
  background: rgba(8, 12, 24, 0.4);
  white-space: nowrap;
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

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

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

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

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

.logos-slide {
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  display: inline-block !important;
  flex-shrink: 0;
  height: 42px;
  width: auto;
  margin: 0 45px;
  filter: invert(1) grayscale(1) brightness(1.6) contrast(1.2);
  mix-blend-mode: screen;
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.logos-slide img:hover {
  opacity: 0.95;
  transform: scale(1.08);
}

/* ──────────────────────────────────────────────────────────────────────────
   8. ABOUT PAGE LAYOUT
   ────────────────────────────────────────────────────────────────────────── */

.main-banner {
  background: radial-gradient(circle at 20% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  padding: 120px 0 60px;
  margin-top: 80px;
}

.main-banner .container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 60px;
}

.main-banner .banner-text {
  flex: 1.2;
}

.main-banner .banner-text h1 {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-banner .banner-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.main-banner .banner-img {
  flex: 0.8;
  position: relative;
}

.main-banner .banner-img img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.company-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.company-imgs {
  flex: 1;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.company-imgs img:nth-child(1) {
  position: absolute;
  left: 20px;
  top: -40px;
  z-index: 1;
  opacity: 0.7;
}

.company-imgs img:nth-child(2) {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  z-index: 2;
}

.company-content {
  flex: 1.1;
}

.company-content h2 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.company-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Checklist items with customized icons */
.company-content div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-content div > div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.company-content div > div img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  filter: brightness(1.2) sepia(1) hue-rotate(220deg) saturate(3); /* Indigo tint for checkmarks */
}

/* 4-Step Working process */
.process-section {
  background: rgba(12, 18, 33, 0.4);
  border-top: 1px solid var(--border-subtle);
  padding: 100px 24px;
}

.process-section h4 {
  text-align: center;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.process-section h2 {
  text-align: center;
  font-size: 3.2rem;
  font-family: var(--font-headings);
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  min-height: 260px;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-6px);
  background: var(--bg-surface-hover);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.process-card img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary-glow));
}

.process-card h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* ──────────────────────────────────────────────────────────────────────────
   9. SERVICE DETAIL LAYOUT (DYNAMIC)
   ────────────────────────────────────────────────────────────────────────── */

.detail-layout {
  max-width: 1200px;
  margin: 40px auto 100px;
  padding: 0 24px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.detail-main {
  flex: 2.2;
}

.detail-main img.service-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  margin-bottom: 40px;
}

.detail-main h2 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.detail-main p.intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.detail-sidebar {
  flex: 1;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
}

.sidebar-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 30px;
}

.sidebar-widget h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-links li {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.sidebar-links li a {
  display: block;
  padding: 14px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.sidebar-links li:hover,
.sidebar-links li.active {
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.sidebar-links li:hover a,
.sidebar-links li.active a {
  color: white;
  padding-left: 24px;
}

/* ──────────────────────────────────────────────────────────────────────────
   10. CONTACT FORM WIDGETS
   ────────────────────────────────────────────────────────────────────────── */

.contact-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 30px;
}

.contact-widget h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.contact-widget form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-widget input,
.contact-widget textarea,
.form input,
.form textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.contact-widget input:focus,
.contact-widget textarea:focus,
.form input:focus,
.form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--border-focus);
}

.contact-widget textarea {
  height: 100px;
  resize: none;
}

.contact-widget button {
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}

.contact-widget button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.info-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 30px;
}

.info-widget h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.info-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}

/* Accordion list details styling */
.container-faq {
  margin-top: 50px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-content p {
  padding: 0 24px 24px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 14px;
}

.accordion-item.active {
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.02);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-header {
  color: var(--primary);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-header i {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────────────────────
   11. DYNAMIC PORTFOLIO LAYOUT & SLIDER
   ────────────────────────────────────────────────────────────────────────── */

.wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 520px;
  margin: 60px auto;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.wrapper .img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.wrapper .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  clip-path: circle(0% at 0% 100%);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#one:checked ~ .img-1 img { clip-path: circle(150% at 0% 100%); }
#two:checked ~ .img-1 img, #two:checked ~ .img-2 img { clip-path: circle(150% at 0% 100%); }
#three:checked ~ .img-1 img, #three:checked ~ .img-2 img, #three:checked ~ .img-3 img { clip-path: circle(150% at 0% 100%); }
#four:checked ~ .img-1 img, #four:checked ~ .img-2 img, #four:checked ~ .img-3 img, #four:checked ~ .img-4 img { clip-path: circle(150% at 0% 100%); }
#five:checked ~ .img-1 img, #five:checked ~ .img-2 img, #five:checked ~ .img-3 img, #five:checked ~ .img-4 img, #five:checked ~ .img-5 img { clip-path: circle(150% at 0% 100%); }
#six:checked ~ .img-1 img, #six:checked ~ .img-2 img, #six:checked ~ .img-3 img, #six:checked ~ .img-4 img, #six:checked ~ .img-5 img, #six:checked ~ .img-6 img { clip-path: circle(150% at 0% 100%); }

.wrapper .sliders {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(8, 12, 22, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
}

.wrapper .sliders label {
  border: 2px solid var(--primary);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sliders label:hover {
  background: var(--primary);
}

/* ──────────────────────────────────────────────────────────────────────────
   12. CONTACT PAGE FORM
   ────────────────────────────────────────────────────────────────────────── */

.Contact {
  padding-bottom: 40px;
}

.Contact .form {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 24px;
  align-items: center;
}

.Contact .form img {
  width: 45%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: float 8s ease-in-out infinite;
}

.Contact .form .input {
  width: 55%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 48px;
}

/* Address details bar */
.Contact-details-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.Contact-details-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.Contact-details-card:hover {
  transform: translateY(-5px);
  background: var(--bg-surface-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.Contact-details-card img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.Contact-details-card h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.Contact-details-card h4 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────────────────────
   13. FOOTER SECTION
   ────────────────────────────────────────────────────────────────────────── */

footer.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 80px 8% 40px;
  color: var(--text-secondary);
  background-color: #090e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-left {
  flex: 1 1 320px;
  margin-bottom: 40px;
  max-width: 380px;
  margin-right: 40px;
}

.footer-left img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(1.1);
}

.footer-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.socials a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer h2 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

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

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

.footer a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: white;
  padding-left: 6px;
}

.footer-right {
  flex: 2 1 600px;
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
}

.footer-right > * {
  flex: 1 180px;
}

.footer-bottom {
  flex: 1 100%;
  text-align: center;
  color: #6b7280;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
}

.footer-bottom p {
  color: #6b7280 !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   14. TRANSITIONS & RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────────────────────────────────────── */

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translate(10px, 0); }
  to { opacity: 1; transform: translate(0, 0); }
}

@media (max-width: 991px) {
  /* Mobile Menu Toggle button */
  .mobile-menu-toggle {
    display: block;
    margin-left: 20px;
  }

  /* Slide-out Menu Drawer */
  .menu_bar ul.nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 20px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-top: 1px solid var(--border-subtle);
    overflow-y: auto;
  }

  .menu_bar ul.nav-links.open {
    left: 0;
  }

  .menu_bar ul.nav-links li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .menu_bar ul.nav-links li a {
    font-size: 18px;
    display: inline-block;
  }

  /* Dropdowns inside Mobile Drawer */
  .dropdown_menu {
    position: static !important;
    display: none !important;
    transform: none !important;
    width: 100% !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0 0 0 !important;
  }

  .menu_bar ul.nav-links li:hover .dropdown_menu {
    display: block !important;
  }

  .dropdown_menu ul {
    width: 100% !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .dropdown_menu ul li {
    padding: 6px 0 !important;
  }

  .dropdown_menu ul li a {
    font-size: 15px !important;
    justify-content: center !important;
  }

  .dropdown_menu-1 {
    position: static !important;
    display: none !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0 0 0 !important;
  }

  .dropdown_menu ul li:hover .dropdown_menu-1 {
    display: block !important;
  }

  .header-contact-btn {
    margin-left: auto;
  }

  /* Hero Section Responsiveness */
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    gap: 40px;
  }

  .hero .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: 2;
  }

  .hero h1 {
    font-size: 4rem;
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

  .hero-left-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    order: 1;
  }

  .hero-left-visual img {
    height: 240px;
  }

  .hero-right-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    order: 3;
  }

  .hero-right-visual img {
    height: 280px;
  }

  /* Other layout components */
  .why {
    flex-direction: column;
    gap: 50px;
  }

  .why-left, .why-right {
    width: 100%;
  }

  .why-right {
    text-align: center;
  }

  .why-right img {
    max-width: 80%;
  }

  .company-section {
    flex-direction: column;
    gap: 50px;
  }

  .company-imgs {
    width: 100%;
  }

  .main-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .main-banner .banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-banner .banner-text h1 {
    font-size: 2.8rem;
  }

  .main-banner .banner-img {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }

  .detail-layout {
    flex-direction: column;
    gap: 40px;
  }

  .detail-sidebar {
    position: static;
  }

  .Contact .form {
    flex-direction: column;
    gap: 40px;
  }

  .Contact .form img {
    width: 80%;
  }

  .Contact .form .input {
    width: 100%;
  }

  .wrapper {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .header-contact-btn {
    display: none; /* Hide header Contact button on small phones; link is inside menu drawer */
  }

  .heading h1 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  /* Hide the secondary right globe illustration on phones to prevent crowding */
  .hero-right-visual {
    display: none;
  }

  /* Prevent card heights from clipping long text on mobile */
  .cards {
    height: auto !important;
    min-height: 400px;
  }

  /* Testimonials Responsive auto height styling */
  .testimonials .card {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    text-align: center;
  }

  .testimonials .card-thumb {
    width: 110px;
    height: 110px;
    margin-right: 0;
  }

  .testimonials .review {
    font-size: 15px;
  }

  .Contact .form .input {
    padding: 24px;
  }

  .Contact .form .input div {
    flex-direction: column;
    gap: 15px;
  }

  .Contact .form .input input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .Contact-details-bar {
    grid-template-columns: 1fr;
  }

  .wrapper {
    height: 280px;
  }
}

@media (max-width: 480px) {
  /* Stack CTA buttons vertically on narrow screens */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons a,
  .hero-buttons button {
    width: 100% !important;
    max-width: 280px;
  }

  .hero .button-1 {
    margin-right: 0 !important;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-left-visual img {
    height: 180px;
  }
}
