﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Nunito:wght@400;900&display=swap");

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-color: #0055d4;
  --primary-gradient: linear-gradient(to right, #0055d4, #0037a1);
  --accent-color: #000000;
  --dark-bg: #111111;
  --light-bg: #ffffff;
  --subtle-bg: #fcfcfc;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --text-main: #111111;
  --text-muted: #666666;
  --text-light: #ffffff;
  --primary-bg: #050A18;
  --secondary-bg: #0A1229;
  --card-bg: rgba(10, 18, 41, 0.8);
  --accent: #00E5FF;
  --accent-secondary: #7B2CBF;
  --glow: #10B981;
  --heading-color: #FFFFFF;
  --body-color: #D1D5DB;
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(0, 229, 255, 0.2);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --gradient-main: linear-gradient(135deg, #7B2CBF 0%, #00B48F 100%);
  --section-padding: 3rem 0;
  --section-padding-mobile: 2rem 0;
  --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 30px 60px rgba(0, 85, 212, 0.15);
  --transition-base: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Navigation Logo --- */
.logo-container {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  width: auto;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



/* ==========================================================================
   CLEAN FAQ SECTION - REDESIGN BASED ON REFERENCE
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

/* Decorative Background Elements */
.faq-decor-circle {
  position: absolute;
  top: 50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background-color: rgba(0, 85, 212, 0.05);
  /* Light blue tint */
  border-radius: 50%;
  z-index: 1;
}

.faq-decor-triangle-1 {
  position: absolute;
  bottom: 20%;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(0, 85, 212, 0.2);
  /* Semi-transparent blue */
  transform: rotate(-120deg);
  z-index: 1;
}

.faq-decor-triangle-2 {
  position: absolute;
  top: 30%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid rgba(0, 85, 212, 0.15);
  transform: rotate(150deg);
  z-index: 1;
}

/* --- FAQ Section Modern (Minimalist & Professional) --- */
.faq-section-modern {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section-modern .container {
  position: relative;
  z-index: 2;
}

.faq-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
}

.faq-chat-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
}

.faq-item-minimal {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-trigger-minimal {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-weight: 600;
  text-align: left;
}

.faq-ans-inner {
  padding: 0 25px 25px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-search-input {
  background: #f1f1f1;
  border: 1px solid #ddd;
  color: #000;
}

.faq-chat-box .sub-title {
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.faq-chat-icon-btn {
  display: inline-block;
  position: relative;
}

.chat-icon-circle {
  width: 55px;
  height: 55px;
  background-color: #3b82f6;
  border-radius: 50% 50% 50% 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.chat-icon-circle:hover {
  transform: scale(1.05);
}

.chat-arrow {
  position: absolute;
  right: -50px;
  top: 5px;
}

@keyframes arrowFloat {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(10px) translateY(-5px);
  }
}

/* Search Wrapper */
.faq-search-wrapper {
  position: relative;
  margin-bottom: 40px !important;
}

.search-input-group {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 2px solid #ddd;
}

.search-icon {
  font-size: 1.3rem;
  color: #000;
  opacity: 0.5;
  margin-right: 15px;
}

.faq-search-input {
  width: 100%;
  border: none !important;
  outline: none !important;
  font-size: 1.1rem;
  color: #000;
  background: transparent;
}

.faq-search-input::placeholder {
  color: #999;
}

.faq-list-modern {
  border: none;
}

.faq-q-text-minimal {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  flex: 1;
}

.faq-chevron {
  font-size: 1.2rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.faq-item-minimal.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-item-minimal:hover .faq-q-text-minimal {
  color: #3b82f6;
}

.faq-content-minimal {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item-minimal.active .faq-content-minimal {
  max-height: 1000px;
  transition: all 0.4s cubic-bezier(1, 0, 1, 0);
  padding-bottom: 20px;
}

.faq-ans-inner {
  color: #aaa;
  line-height: 1.7;
  font-size: 0.9rem;
  padding-left: 30px;
  max-width: 90%;
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .faq-main-title {
    font-size: 3.5rem;
  }

  .faq-chat-box {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .faq-main-title {
    font-size: 2.8rem;
  }

  .faq-q-text-minimal {
    font-size: 1.2rem;
  }
}



body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  margin: 0;
}

/* Standard Section Utility */
.section-standard {
  padding: var(--section-padding);
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .section-standard {
    padding: var(--section-padding-mobile);
  }
}

/* Standard Button Styles */
.btn-premium {
  background: var(--primary-gradient);
  color: var(--text-light) !important;
  border: none;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 85, 212, 0.2);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 85, 212, 0.3);
  /* opacity: 0.95; */
}

.btn-outline-premium {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  padding: 13px 43px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition-base);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 85, 212, 0.2);
}

.btn-outline-premium:hover {
  background: var(--primary-color);
  color: var(--text-light) !important;
  box-shadow: 0 15px 30px rgba(0, 85, 212, 0.3);
  transform: translateY(-2px);
}

.btn-circle-premium {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-circle-premium:hover {
  transform: scale(1.1);
  box-shadow: var(--hover-shadow);
}

/* Standard Text Utilities */
.text-highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sub-title {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-main);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}


.hero-gradient {
  background: radial-gradient(circle at 10% 20%,
      rgba(0, 85, 212, 0.1) 0%,
      rgba(0, 0, 0, 0) 40%);
}

.btn-outline-light:hover {
  background-color: var(--light-bg) !important;
  color: var(--primary-color) !important;

}

/* The Wave Bottom Shape */
.wave-container {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

#tsparticles,
.tsparticles-dark {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.content-layer {
  position: relative;
  z-index: 10;
}

.portfolio-strategy {
  background-color: var(--light-bg);
  color: var(--text-main);
}

.strategy-card {
  background: var(--light-bg);
  color: var(--text-main);
  border-radius: 150px;
  padding: 60px 30px;
  height: 100%;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--premium-shadow);
}

.strategy-card.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.strategy-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.strategy-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--hover-shadow);
}

.strategy-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.arrow-box {
  font-size: 1.0rem;
  margin-top: auto;
}

.text-danger {
  color: #ff4d4d !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .strategy-card {
    border-radius: 100px;
    padding: 40px 20px;
  }

  .strategy-card img {
    width: 80px;
  }
}

.arrow-box .hover-icon {
  display: none;
}

.strategy-card:hover .default-icon {
  display: none;
}

.strategy-card:hover .hover-icon {
  display: inline-block;
}

.arrow-box i {
  transition: transform 0.3s ease;
}

.strategy-card:hover .arrow-box i {
  transform: translateX(4px);
}


/* ==========================================================================
          OUR STORY SECTION - VIP REDESIGN
   ========================================================================== */
.our-story-vip {
  padding: 120px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.z-index-2 {
  z-index: 2;
}

/* Visual Container - Left */
.story-visual-container {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dots-bg {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(rgba(0, 85, 212, 0.2) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
}

.oval-img-wrap {
  position: absolute;
  overflow: hidden;
  border-radius: 1000px;
  /* Force oval shape */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 8px solid #fff;
}

.primary-oval {
  width: 320px;
  height: 480px;
  z-index: 2;
  left: 0;
  top: 0;
}

.secondary-oval {
  width: 280px;
  height: 420px;
  z-index: 1;
  right: 50px;
  bottom: 0;
}

.oval-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 10%;
  left: 40%;
  z-index: 3;
  filter: blur(40px);
  animation: glowPulse 8s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  from {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  to {
    transform: scale(1.3) translate(20px, -20px);
    opacity: 0.8;
  }
}

/* Content Wrap - Right */
.section-tag {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag .line {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 10px;
}

.story-text {
  line-height: 1.8;
  font-size: 1.05rem;
}

.rating-badge {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}

.rating-info .score {
  font-size: 1.2rem;
  color: #111;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 85, 212, 0.08);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .primary-oval {
    width: 280px;
    height: 420px;
  }

  .secondary-oval {
    width: 240px;
    height: 360px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .story-visual-container {
    height: 450px;
    margin-bottom: 40px;
    overflow: visible;
  }

  .primary-oval {
    left: 5%;
    width: 260px;
    height: 390px;
  }

  .secondary-oval {
    right: 5%;
    width: 220px;
    height: 330px;
  }
}

@media (max-width: 768px) {
  .story-visual-container {
    height: 400px;
    max-width: 450px;
    margin: 0 auto 50px;
  }

  .primary-oval {
    width: 230px;
    height: 345px;
    left: 0;
  }

  .secondary-oval {
    width: 200px;
    height: 300px;
    right: 0;
  }
}

@media (max-width: 576px) {
  .story-visual-container {
    height: 320px;
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .primary-oval {
    width: 180px;
    height: 270px;
    left: 10%;
    top: 0;
  }

  .secondary-oval {
    width: 160px;
    height: 240px;
    right: 10%;
    bottom: 0;
  }

  .story-metrics {
    flex-direction: column;
    align-items: center !important;
  }
}

@media (max-width: 400px) {
  .story-visual-container {
    height: 280px;
  }

  .primary-oval {
    width: 150px;
    height: 225px;
    left: 5%;
  }

  .secondary-oval {
    width: 140px;
    height: 210px;
    right: 5%;
  }
}

@media (max-width: 400px) {
  .story-visual-container {
    height: 320px;
  }

  .primary-oval {
    width: 160px;
    height: 240px;
  }

  .secondary-oval {
    width: 140px;
    height: 210px;
  }
}


/* Services Section */
.services-section {
  background-color: var(--light-bg);
}

/* Gradient Text for Primary theme */
.text-gradient-primary {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-color);
}

/* Site Primary Theme */
.service-card {
  background: var(--light-bg);
  border: 1px solid #f2f2f2 !important;
  border-radius: 20px;
  padding: 45px 35px !important;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 85, 212, 0.08);
  /* Transparent Primary Color */
  line-height: 1;
  transition: all 0.5s ease;
}

.service-card i {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  /* Standard Site Gradient */
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.6rem !important;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 85, 212, 0.2);
  -webkit-text-fill-color: white !important;
  transition: all 0.5s ease;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2d3436;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.service-tag {
  background: rgba(0, 85, 212, 0.08);
  /* Light Orange Tint */
  color: var(--primary-color);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.learn-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.learn-more-link i {
  width: auto !important;
  height: auto !important;
  background: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  font-size: 0.9rem !important;
  color: inherit !important;
}

/* VIP Hover Effect - Orange Glow */
.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-color) !important;
  box-shadow: 0 40px 80px rgba(0, 85, 212, 0.15);
}

.service-card:hover .card-number {
  transform: scale(1.1);
  color: rgba(0, 85, 212, 0.12);
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0, 85, 212, 0.3);
}

.service-card:hover .learn-more-link {
  gap: 12px;
  letter-spacing: 0.3px;
}

/* Arrow Button */
.arrow-btn {
  position: absolute;
  bottom: -25px;
  /* Overlap the bottom border */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  /* Slightly larger than icon visualization */
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, #0055d4, #0037a1);
  /* Gradient background */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.arrow-btn:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 77, 109, 0.4);
}

.btn-subscribe:hover {
  opacity: 0.9;
  color: #fff;
}

/* ==========================================================================
   PREMIUM TESTIMONIALS CAROUSEL
   ========================================================================== */
/* ==========================================================================
         TESTIMONIALS SECTION - MODERN REDESIGN
         ========================================================================== */
/* ==========================================================================
          TESTIMONIALS SECTION - VIP ORBIT REDESIGN
   ========================================================================== */
.testimonial-vip-section {
  background-color: var(--light-bg);
  /* padding: 120px 0; */
  overflow: hidden;
  position: relative;
}

.testimonial-visual-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: containerPulse 10s infinite ease-in-out;
}

/* Orbit Rings with Slow Rotation */
.orbit-ring {
  position: absolute;
  border: 1.5px solid rgba(0, 85, 212, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.ring-1 {
  width: 450px;
  height: 450px;
  animation: slowRotate 40s linear infinite;
}

.ring-2 {
  width: 320px;
  height: 320px;
  background-color: rgba(0, 85, 212, 0.02);
  animation: slowRotate 30s linear infinite reverse;
}

.ring-3 {
  width: 180px;
  height: 180px;
  background-color: rgba(0, 85, 212, 0.05);
  animation: slowRotate 20s linear infinite;
}

/* Orbit Profiles */
.orbit-profile {
  position: absolute;
  border-radius: 50%;
  padding: 5px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  z-index: 5;
}

/* Profiles now "stay" while rings rotate, or we can just leave them as is with float */
/* I'll adjust the floatOrbit to be smoother */

@keyframes slowRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes containerPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes floatOrbit {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.03);
  }
}

.orbit-profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-1 {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 15%;
  animation: floatOrbit 6s infinite ease-in-out;
}

.profile-2 {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 10%;
  animation: floatOrbit 8s infinite ease-in-out reverse;
}

.profile-3 {
  width: 85px;
  height: 85px;
  top: 55%;
  left: -5%;
  animation: floatOrbit 7s infinite ease-in-out;
}

.profile-4 {
  width: 75px;
  height: 75px;
  bottom: 5%;
  right: 20%;
  animation: floatOrbit 9s infinite ease-in-out reverse;
}

.profile-5 {
  width: 90px;
  height: 90px;
  bottom: 15%;
  left: 35%;
  animation: floatOrbit 6.5s infinite ease-in-out;
}

.profile-center {
  width: 130px;
  height: 130px;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 85, 212, 0.2);
  border: 4px solid #fff;
}

/* Content Styles */
.testimonial-content-wrapper .sub-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.vip-star-rating {
  color: #ffb400;
  font-size: 1.1rem;
  display: flex;
  gap: 5px;
}

.quote-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.vip-testimonial-body {
  position: relative;
  padding-bottom: 100px;
  /* Space for fixed navigation at bottom */
}

.testimonial-desc-container {
  min-height: 180px;
  /* Fixed height for the quote area to prevent jumping */
  display: flex;
  align-items: flex-start;
}

.testimonial-desc {
  font-style: normal;
  line-height: 1.8;
  color: #444;
  transition: opacity 0.3s ease;
  margin: 0;
}

.author-box h5 {
  font-size: 1.3rem;
  color: #111;
}

/* Luxury Minimalist Navigation Buttons */
.testimonial-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 20px;
}

.nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #111;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nav-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.nav-btn i {
  transition: transform 0.3s ease;
}

.prev-btn:hover i {
  transform: translateX(-5px);
}

.next-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .testimonial-visual-container {
    height: 400px;
    margin-bottom: 50px;
    transform: scale(0.8);
  }
}

@media (max-width: 576px) {
  .testimonial-visual-container {
    transform: scale(0.6);
  }
}


/*  Choose Us Section */
.choose-us-section {
  /* background-color: var(--subtle-bg); */
  padding: var(--section-padding);
  overflow: hidden;
}

/* Decorative Curve Background */
.decorative-curve {
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: rgba(0, 85, 212, 0.02);
  border-radius: 50%;
  z-index: 1;
  border-left: 2px solid rgba(0, 85, 212, 0.1);
}

.info-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
}

.info-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--hover-shadow);
}

.info-card h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 900;
}

/* Circular Visuals Styling */
.circular-visual-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.circle-main {
  width: 450px;
  height: 450px;
  z-index: 5;
  /* border: 2px solid rgba(0, 85, 212, 0.2); */
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

.circle-sub-1 {
  width: 200px;
  height: 200px;
  z-index: 6;
  top: 10%;
  right: -5%;
  animation: floatAnim 6s infinite ease-in-out;
}

.circle-sub-2 {
  width: 150px;
  height: 150px;
  z-index: 7;
  bottom: 5%;
  left: 15%;
  animation: floatAnim 8s infinite ease-in-out reverse;
}

.circle-main:hover {
  transform: translate(-50%, -50%) scale(1.03) !important;
}

.circle-sub-1:hover {
  animation-play-state: paused;
}

.circle-sub-2:hover {
  animation-play-state: paused;
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Floating Dots Decoration */
.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: #0055d4cb;
  opacity: 0.3;
}

.dot-1 {
  width: 40px;
  height: 40px;
  top: 15%;
  left: 10%;
  animation: floatAnim 10s infinite;
}

.dot-2 {
  width: 25px;
  height: 25px;
  bottom: 20%;
  right: 5%;
  background: var(--accent-orange);
  animation: floatAnim 7s infinite reverse;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-15px, 20px);
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .circle-main {
    width: 380px;
    height: 380px;
  }

  .circle-sub-1 {
    width: 180px;
    height: 180px;
  }

  .circle-sub-2 {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 991px) {
  .choose-us-section {
    padding: 80px 0;
  }

  .circular-visual-wrapper {
    height: 400px;
    margin-top: 50px;
  }

  .circle-main {
    width: 300px;
    height: 300px;
  }

  .circle-sub-1 {
    width: 140px;
    height: 140px;
    right: 0;
  }

  .circle-sub-2 {
    width: 110px;
    height: 110px;
    left: 5%;
  }
}

@media (max-width: 768px) {
  .circular-visual-wrapper {
    height: 350px;
  }

  .circle-main {
    width: 250px;
    height: 250px;
  }

  .circle-sub-1 {
    width: 120px;
    height: 120px;
  }

  .circle-sub-2 {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .info-card h3 {
    font-size: 2rem;
  }

  .circular-visual-wrapper {
    height: 300px;
  }

  .circle-main {
    width: 200px;
    height: 200px;
  }

  .circle-sub-1 {
    width: 100px;
    height: 100px;
  }

  .circle-sub-2 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 400px) {
  .circular-visual-wrapper {
    height: 250px;
  }

  .circle-main {
    width: 160px;
    height: 160px;
  }

  .circle-sub-1 {
    width: 80px;
    height: 80px;
  }

  .circle-sub-2 {
    width: 60px;
    height: 60px;
  }
}


/* Blog Section */
.blog-section {
  background-color: var(--light-bg);
  padding: var(--section-padding);
}

.blog-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 85, 212, 0.1) 0%, transparent 70%);
  z-index: 1;
  filter: blur(50px);
}

.decor-1 {
  top: -50px;
  left: -50px;
}

.decor-2 {
  bottom: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(0, 85, 212, 0.05) 0%, transparent 70%);
}

.blog-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 3;
}

.blog-meta {
  font-size: 0.8rem;
  color: #888;
}

.blog-content h4 {
  transition: color 0.3s ease;
  font-size: 1.25rem;
  line-height: 1.4;
}

.read-more-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-base);
  margin-top: auto;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}


.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

.blog-card:hover .blog-content h4 {
  color: #0055d4;
}

.blog-card:hover .read-more-btn {
  letter-spacing: 1px;
  color: #0037a1;
}

.blog-card:hover .read-more-btn i {
  transform: translateX(5px);
}

@keyframes floatBlog {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive grid adjustments */
@media (max-width: 991px) {
  .blog-section {
    padding: 80px 0;
  }
}


/* ==========================================================================
         PREMIUM CONTACT SECTION - MODERN REDESIGN
         ========================================================================== */
.contact-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

/* Floating Decorative Blobs */
.contact-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 85, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(60px);
  animation: blobFloat 15s infinite ease-in-out;
}

.blob-1 {
  top: -100px;
  right: -100px;
}

.blob-2 {
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(0, 85, 212, 0.05) 0%, transparent 70%);
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.contact-split-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Info Panel - Premium Glassmorphism */
.contact-info-panel {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 85, 212, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.contact-info-panel .z-2 {
  position: relative;
  z-index: 2;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.info-item:hover .icon-circle {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Social Buttons */
.social-icons-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 85, 212, 0.3);
}

/* Form Styling - Clean & Modern */
.contact-form-panel {
  padding: 30px 40px;
  background: #fff;
}

.form-group-custom {
  margin-bottom: 12px;
  position: relative;
}

.form-label-custom {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #999;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.form-input-clean {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #eee;
  padding: 6px 0;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.form-input-clean:focus {
  border-color: var(--primary-color);
}

.form-input-clean:focus+.form-label-custom {
  color: var(--primary-color);
}

/* Select Services Radios */
.service-selection-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.radio-group-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.radio-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.radio-label input {
  display: none;
}

.radio-label:has(input:checked) {
  background: rgba(0, 85, 212, 0.1);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Premium Submit Button */
.btn-send-premium {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 18px 45px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(0, 85, 212, 0.2);
  cursor: pointer;
  width: fit-content;
}

.btn-send-premium:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 85, 212, 0.4);
}

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 40px;
  }

  .btn-send-premium {
    width: 100%;
  }
}

/* ==========================================================================
   ADDITIONAL RESPONSIVENESS FIXES (HAT Tech Media Agency)
   ========================================================================== */

@media (max-width: 1200px) {
  #hero h1 {
    font-size: 4rem !important;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 180px !important;
    padding-bottom: 120px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
  }

  #hero h1 {
    font-size: 3rem !important;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  #hero p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  #hero .flex {
    justify-content: center;
    width: 100%;
  }

  #hero .relative {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #hero .overflow-hidden {
    max-width: 500px;
  }

  #hero .overflow-hidden img {
    height: 450px !important;
  }
}

.main-heading {
  font-size: 2rem !important;
}

.our-story-section {
  padding: 60px 0 !important;
}

.our-story-section .ps-5 {
  padding-left: 0.75rem !important;
  margin-top: 30px;
}

.contact-info-panel {
  min-height: auto;
}

@media (max-width: 768px) {
  #navbar-inner {
    padding: 10px 15px !important;
  }

  #hero h1 {
    font-size: 2.5rem !important;
  }

  #hero .overflow-hidden img {
    height: 300px !important;
  }

  .strategy-card {
    border-radius: 80px !important;
    padding: 30px 15px !important;
  }

  .strategy-card h5 {
    font-size: 1.1rem !important;
  }

  .display-5 {
    font-size: 2rem !important;
  }

  .display-4 {
    font-size: 1.75rem !important;
  }

  .display-3 {
    font-size: 1.5rem !important;
  }

  .circular-visual-wrapper {
    height: 350px !important;
    transform: scale(0.9);
  }

  .circle-main {
    width: 280px !important;
    height: 280px !important;
    left: 50% !important;
  }

  .circle-sub-1 {
    width: 120px !important;
    height: 120px !important;
    top: 0 !important;
    right: 0 !important;
  }

  .circle-sub-2 {
    width: 100px !important;
    height: 100px !important;
    bottom: 0 !important;
    left: 5% !important;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 2.2rem !important;
  }

  #hero .flex {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  #hero .flex a {
    width: 100%;
    margin-top: 0 !important;
  }

  #hero .overflow-hidden {
    border-width: 4px !important;
  }

  .section-header p {
    padding: 0 15px;
  }

  .stats-row h3 {
    font-size: 1.5rem !important;
  }

  .stats-row small {
    font-size: 0.7rem !important;
  }

  .contact-split-card {
    margin: 0 10px;
  }

  .contact-info-panel,
  .bg-white.p-5 {
    padding: 30px 20px !important;
  }
}

/* ==========================================================================
         PREMIUM FOOTER SECTION - MODERN REDESIGN
         ========================================================================== */
.premium-footer {
  background-color: #000000;
  color: #fff;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-desc {
  max-width: 320px;
}

.footer-logo-desc p {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact-details p {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-contact-details ul li i {
  color: var(--primary-color);
  width: 18px;
  margin-top: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-contact-details ul li span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-contact-details ul li:hover i {
  color: #fff;
  transform: scale(1.1);
}

.footer-contact-details ul li:hover span {
  color: var(--primary-color) !important;
  opacity: 1 !important;
}

/* Newsletter Subscription */
.newsletter-box {
  position: relative;
  margin-top: 10px;
}

.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

.btn-subscribe-premium {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 15px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 85, 212, 0.2);
}

.btn-subscribe-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 85, 212, 0.3);
}

/* Copyright Area */
.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 85, 212, 0.3);
}

@media (max-width: 768px) {
  .premium-footer {
    padding-top: 50px !important;
  }

  .footer-top {
    padding-bottom: 20px !important;
  }

  .footer-top .col-lg-3,
  .footer-top .col-md-6 {
    margin-bottom: 30px !important;
    text-align: left !important;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    padding: 20px 0 !important;
  }

  .footer-logo-desc {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-title::after {
    left: 0;
  }
}

/* Global Fixes */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* --- Mobile Menu Styles --- */
#mobile-menu {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: top;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  pointer-events: none;
  display: flex !important;
}

#mobile-menu:not(.hidden) {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#mobile-menu.hidden {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  pointer-events: none;
}

/* Global Responsive Utilities */
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .section-standard {
    padding: 60px 0 !important;
  }
}

* {
  box-sizing: border-box;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* --- Marketing Section Refinement --- */
.marketing {
  background: linear-gradient(rgba(5, 10, 24, 0.92), rgba(5, 10, 24, 0.92)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.marketing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .grid-two {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.feature-list {
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #fff;
}

@media (max-width: 991px) {
  .feature-list li {
    justify-content: center;
  }
}

.feature-list i {
  color: var(--accent);
  font-size: 1.4rem;
}

.marketing-visual {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 991px) {
  .marketing-visual {
    height: 350px;
    margin-top: 40px;
  }
}

.floating-icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icons i {
  position: absolute;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.6;
  animation: floating 4s infinite ease-in-out;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.2));
  z-index: 5;
}

.floating-icons i:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
  font-size: 4.5rem;
}

.floating-icons i:nth-child(2) {
  top: 55%;
  left: 25%;
  animation-delay: 1s;
  font-size: 3.5rem;
  filter: blur(2px);
}

.floating-icons i:nth-child(3) {
  top: 25%;
  left: 65%;
  animation-delay: 2.5s;
  font-size: 5rem;
}

.floating-icons i:nth-child(4) {
  bottom: 15%;
  left: 75%;
  animation-delay: 1.5s;
  font-size: 4rem;
  filter: blur(3px);
}

/* ==========================================================================
   MARKETING STRATEGY SECTION
   ========================================================================== */

/* ==========================================================================
   MARKETING STRATEGY SECTION (Replaces Portfolio)
   ========================================================================== */
.marketing-strategy-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  overflow: visible;
}

.marketing-strategy-section .stat-percent {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.marketing-strategy-section .text-purple {
  color: #8b5cf6;
}

.marketing-strategy-section .stat-desc {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.text-primary-blue {
  color: #2563eb;
}

.text-blue-custom {
  color: #1e3a8a;
}

/* 3D Pie Chart Simulation */
.chart-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.pie-chart-3d {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: conic-gradient(#a855f7 0deg 32.4deg,
      /* Purple slice 9% */
      #3b82f6 32.4deg 360deg
      /* Blue slice 91% */
    );
  transform: rotate(-50deg);
  /* Position purple slice at top-left */
  box-shadow:
    inset 10px 10px 40px rgba(255, 255, 255, 0.4),
    /* Highlight */
    inset -10px -10px 40px rgba(0, 0, 0, 0.2),
    /* Depth */
    0 30px 60px rgba(0, 85, 212, 0.3);
  /* Drop Shadow */
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.pie-chart-3d:hover {
  transform: rotate(-50deg) scale(1.05);
}

/* Pseudo-element for 3D thickness (Side) - simplified */
.chart-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

/* Labels positioned absolutely relative to the chart wrapper */
.pie-slice-purple {
  position: absolute;
  top: 70px;
  left: 80px;
  z-index: 10;
  transform: rotate(50deg);
  /* Counteract chart rotation */
}

.percentage-label {
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pie-slice-blue {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%) rotate(50deg);
  z-index: 10;
}

.percentage-label-large {
  color: white;
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .pie-chart-3d {
    width: 300px;
    height: 300px;
  }

  .pie-slice-purple {
    top: 60px;
    left: 60px;
  }

  .marketing-strategy-section .stat-percent {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .pie-chart-3d {
    width: 260px;
    height: 260px;
  }

  .pie-slice-purple {
    top: 50px;
    left: 50px;
  }
}

/* ==========================================================================
   MARKETING STRATEGY SECTION (Enhanced)
   ========================================================================== */
.marketing-strategy-section {
  background: radial-gradient(circle at 10% 20%, #f7f9fc 0%, #ffffff 80%);
  overflow: hidden;
}

.marketing-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 212, 0.05) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  z-index: 0;
  pointer-events: none;
}

/* Glass Stat Cards */
.stat-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  cursor: default;
}

.stat-glass-card:hover {
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 85, 212, 0.1);
  border-color: rgba(0, 85, 212, 0.1);
}

.stat-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.25);
  flex-shrink: 0;
}

.stat-icon-box.box-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
}

.stat-percent {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.text-gradient-purple {
  background: linear-gradient(to right, #a855f7, #6b21a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(to right, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Modern Chart */
.chart-wrapper-modern {
  position: relative;
  display: inline-block;
}

.chart-back-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.pie-chart-3d-modern {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: conic-gradient(#a855f7 0deg 32.4deg,
      #3b82f6 32.4deg 360deg);
  position: relative;
  box-shadow:
    inset 0 0 50px rgba(0, 0, 0, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.5s ease;
}

/* Inner Hole to make it a donut chart for modern look */
.pie-chart-3d-modern::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    inset 0 10px 20px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.1);
}

.pie-chart-3d-modern:hover {
  transform: scale(1.03);
}

.slice-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.chart-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.chart-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-top: 5px;
}

/* Floating Badge */
.floating-stat-badge {
  position: absolute;
  bottom: 20px;
  right: 0px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
  max-width: 220px;
  text-align: left;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-text span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  line-height: 1.2;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .pie-chart-3d-modern {
    width: 300px;
    height: 300px;
  }

  .pie-chart-3d-modern::before {
    width: 180px;
    height: 180px;
  }

  .floating-stat-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -30px;
  }
}

/* ==========================================================================
   FINAL COMPREHENSIVE RESPONSIVENESS (Mobile, Tablet, Laptop)
   ========================================================================== */

/* 1. Global Typography & Spacing Scaling */
@media (max-width: 991px) {

  h1,
  .h1 {
    font-size: 2.5rem !important;
  }

  h2,
  .h2,
  .display-4 {
    font-size: 2rem !important;
  }

  h3,
  .h3,
  .display-5 {
    font-size: 1.75rem !important;
  }

  .section-standard {
    padding: 60px 0 !important;
  }
}

@media (max-width: 576px) {

  h1,
  .h1 {
    font-size: 2.2rem !important;
  }

  h2,
  .h2,
  .display-4 {
    font-size: 1.8rem !important;
  }

  h3,
  .h3,
  .display-5 {
    font-size: 1.5rem !important;
  }

  .sub-title {
    font-size: 0.75rem !important;
    letter-spacing: 1px !important;
  }
}

/* 2. Marketing Strategy Section Fixes */
@media (max-width: 768px) {
  .stat-glass-card {
    padding: 20px !important;
    text-align: center;
  }

  .stat-glass-card .d-flex {
    flex-direction: column !important;
  }

  .stat-icon-box {
    margin: 0 auto 15px !important;
  }

  .stat-percent {
    justify-content: center;
  }

  .chart-wrapper-modern {
    margin-top: 50px;
    transform: scale(0.9);
  }
}

/* 3. Testimonial Orbit Scaling */
@media (max-width: 991px) {
  .testimonial-visual-container {
    height: 350px !important;
    transform: scale(0.8);
  }

  .orbit-ring {
    opacity: 0.5;
  }
}

@media (max-width: 576px) {
  .testimonial-visual-container {
    height: 300px !important;
    transform: scale(0.65);
    margin-bottom: 20px !important;
  }

  .testimonial-content-wrapper {
    text-align: center;
  }

  .vip-star-rating,
  .testimonial-nav {
    justify-content: center !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .quote-icon {
    display: none;
  }

  .testimonial-desc {
    font-size: 1rem !important;
    min-height: auto !important;
    margin-bottom: 20px !important;
  }
}

/* 4. Contact Section Mobile Refinement */
@media (max-width: 768px) {

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 20px !important;
  }

  .contact-split-card {
    border-radius: 20px !important;
  }
}

/* 5. Team Grid Layout Fixes */
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 20px !important;
  }

  .team-item {
    aspect-ratio: 1/1 !important;
  }
}

/* 6. Footer Mobile Alignment */
@media (max-width: 768px) {
  .footer-top {
    text-align: center;
  }

  .footer-title::after {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .newsletter-box {
    max-width: 350px;
    margin: 20px auto 0;
  }
}

.content-layer {
  position: relative;
  z-index: 5 !important;
}

#navbar.content-layer {
  z-index: 9999 !important;
}

@media (max-width: 768px) {

  .tsparticles-dark,
  .marketing-bg-glow,
  .contact-blob {
    opacity: 0.4 !important;
  }
}

/* ==========================================================================
   ENHANCED MOBILE EQUAL ALIGNMENT (Added for fully responsive site)
   ========================================================================== */
@media (max-width: 768px) {

  /* Hero Section Centering */
  #hero {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-top: 20px !important;
  }

  #hero .wow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  #hero h1 {
    font-size: 2.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  #hero p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: 1rem !important;
  }

  #hero .flex.space-x-4,
  #hero .flex.space-x-2 {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    width: 100% !important;
  }

  #hero .btn-premium,
  #hero .btn-outline-premium {
    width: 80% !important;
    margin: 0 !important;
  }

  /* Marketing Section Centering */
  .marketing-strategy-section {
    text-align: center !important;
  }

  .marketing-strategy-section h2 {
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .marketing-strategy-section .sub-title {
    justify-content: center !important;
  }

  .stat-glass-card {
    text-align: center !important;
    margin-bottom: 15px !important;
  }

  .stat-glass-card .d-flex {
    flex-direction: column !important;
    align-items: center !important;
  }

  .stat-icon-box {
    margin: 0 0 15px 0 !important;
  }

  /* Our Story Section */
  .our-story-vip {
    text-align: center !important;
  }

  .our-story-vip .sub-title {
    justify-content: center !important;
  }

  .story-features .feature-item {
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Services Section */
  .services-section .section-header {
    text-align: center !important;
  }

  .services-section .sub-title {
    justify-content: center !important;
  }

  .service-card {
    text-align: center !important;
    align-items: center !important;
    padding: 30px 20px !important;
  }

  .service-card p {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  .service-card .tags-container {
    justify-content: center !important;
  }

  .service-card .learn-more-link {
    justify-content: center !important;
    width: 100% !important;
  }

  /* Blog Section */
  .blog-section .section-header {
    text-align: center !important;
  }

  .blog-section .sub-title {
    justify-content: center !important;
  }

  .blog-card {
    text-align: center !important;
  }

  .blog-meta {
    justify-content: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .read-more-btn {
    justify-content: center !important;
  }

  /* Choose Us Section */
  .choose-us-section {
    text-align: center !important;
  }

  .choose-us-section .sub-title {
    justify-content: center !important;
  }

  .contact-content-box {
    text-align: center !important;
  }

  .info-card {
    text-align: center !important;
    margin-bottom: 15px !important;
  }

  .circular-visual-wrapper {
    height: 350px !important;
    margin-top: 50px !important;
    transform: scale(0.9);
  }

  .circle-main {
    width: 250px !important;
    height: 250px !important;
  }

  .circle-sub-1 {
    width: 120px !important;
    height: 120px !important;
    right: -20px !important;
    bottom: 20px !important;
  }

  .circle-sub-2 {
    width: 100px !important;
    height: 100px !important;
    left: -20px !important;
    top: 20px !important;
  }

  /* FAQ Section */
  .faq-section-modern {
    text-align: center !important;
  }

  .faq-chat-box {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .faq-chat-text {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .faq-chat-action {
    justify-content: center !important;
    display: flex !important;
  }

  .chat-arrow {
    display: none !important;
  }

  /* Contact Section Footer */
  .contact-section .section-header {
    text-align: center !important;
  }

  .contact-info-panel {
    text-align: center !important;
    border-radius: 20px 20px 0 0 !important;
  }

  .info-list .info-item {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .info-item .icon-circle {
    margin: 0 auto !important;
  }

  .social-glass-wrap .d-flex {
    justify-content: center !important;
  }

  .contact-form-panel {
    text-align: center !important;
    border-radius: 0 0 20px 20px !important;
  }

  .radio-group-modern {
    justify-content: center !important;
  }

  /* Button Equal Width for Mobile */
  .btn-premium,
  .btn-outline-premium {
    width: 100% !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Fix for Grid Two Section (Digital Marketing) */
@media (max-width: 768px) {
  .grid-two {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .feature-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
  }

  .feature-list li {
    justify-content: center !important;
    text-align: center !important;
  }

  /* Floating Icons — Responsive Fix */
  .marketing-visual {
    height: auto !important;
    padding: 30px 0;
  }

  .floating-icons {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    width: 100% !important;
    height: auto !important;
    max-width: 280px;
    margin: 0 auto;
  }

  .floating-icons i {
    position: static !important;
    font-size: 3.5rem !important;
    filter: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 90px !important;
    height: 90px !important;
    background: rgba(0, 229, 255, 0.05) !important;
    border: 1px solid rgba(0, 229, 255, 0.15) !important;
    border-radius: 24px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .floating-icons {
    gap: 20px !important;
    max-width: 240px !important;
  }

  .floating-icons i {
    font-size: 2.8rem !important;
    width: 78px !important;
    height: 78px !important;
    border-radius: 20px !important;
  }
}

/* ==========================================================================
          GET A QUOTE PAGE - PREMIUM MULTI-STEP FORM
   ========================================================================== */
.service-option-card {
  cursor: pointer;
  display: block;
}

.service-option-card .card-inner {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-option-card input:checked+.card-inner {
  border-color: var(--primary-color);
  background: rgba(0, 85, 212, 0.02);
  transform: translateY(-5px);
}

.service-option-card .icon-box {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-option-card:hover .card-inner {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 85, 212, 0.1);
}

.service-option-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e293b;
  font-size: 1.1rem;
}

.service-option-card p {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0;
}

.selection-card {
  cursor: pointer;
  display: block;
}

.selection-card .card-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #475569;
}

.selection-card input:checked+.card-inner {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

.selection-card:hover .card-inner {
  border-color: var(--primary-color);
}

.form-group-custom {
  position: relative;
  margin-bottom: 20px;
}

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input-clean {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-input-clean:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 85, 212, 0.1);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mouse {
  width: 25px;
  height: 45px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 25px;
  }
}

.step-content {
  transition: all 0.5s ease;
}

/* Floating Labels Premium */
.floating-group {
  position: relative;
  margin-bottom: 2rem;
}

.floating-input {
  width: 100%;
  padding: 1.2rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  outline: none;
  transition: all 0.3s ease;
  color: #1e293b;
}

.floating-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 85, 212, 0.05);
}

.floating-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 4px;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  background: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Textarea adjustment */
textarea.floating-input {
  min-height: 120px;
}

/* Selection Cards Premium Hover */
.selection-card .card-inner:hover {
  border-color: var(--primary-color);
  background: rgba(0, 85, 212, 0.02);
}

/* Success Screen Premium Icon Animation */
#success-screen .w-24 {
  animation: scaleCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleCheck {
  0% {
    transform: scale(0);
    rotate: -45deg;
  }

  100% {
    transform: scale(1);
    rotate: 0;
  }
}

/* ==========================================================================
   UNIQUE PREMIUM PROJECTS - ARCHITECTURAL DESIGN
   ========================================================================== */
.projects-section {
  position: relative;
  z-index: 2;
}

.project-card {
  background: #ffffff;
  border-radius: 12px;
  /* Slightly sharper for professional look */
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  /* Sophisticated thin border */
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none !important;
  padding: 12px;
  /* Inner frame effect */
}

/* The Animated Accent Border */
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #0055d4;
  border-radius: 12px;
  opacity: 0;
  transform: scale(1.02);
  transition: all 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.project-card:hover {
  border-color: transparent;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
}

.project-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.project-image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  border-radius: 8px;
  /* Image has its own radius inside the card */
  background: #f1f5f9;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .project-image-wrap img {
  transform: scale(1.1) rotate(1deg);
}

/* Soft Decorative Glow */
.project-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 85, 212, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.project-card:hover .project-overlay-modern {
  opacity: 1;
}

.project-card .p-4 {
  padding: 24px 12px 12px !important;
  position: relative;
  z-index: 3;
}

.project-card .p-4 h4 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #0f172a;
  transition: color 0.3s ease;
}

.project-card:hover .p-4 h4 {
  color: #0055d4 !important;
}

/* Unique Category Badge */
.project-category-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0055d4;
  background: rgba(0, 85, 212, 0.05);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  border-left: 3px solid #0055d4;
  transition: all 0.3s ease;
}

.project-card:hover .project-category-tag {
  background: #0055d4;
  color: #ffffff;
}

.project-description {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* The "Explore" Arrow indicator */
.project-card::after {
  content: '→';
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-size: 1.5rem;
  color: #0055d4;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.project-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-primary-gradient {
  background: linear-gradient(to right, #0055d4, #0037a1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .footer-title::after {
    left: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
  }
}