/*
Theme Name: Thalsamaya
Theme URI: https://example.com/
Author: Merin Antony
Description: Custom WordPress theme converted from HTML template.
Version: 1.0
Tags: bootstrap, landing-page, responsive
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Instrument Sans", Sans-serif;
  --nav-font: "Instrument Sans", Sans-serif;
  
  /* Global Colors */
  --background-color: #ffffff;
  --default-color: #4a4b64;
  --heading-color: #000;
  --accent-color: #15AAAA;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --primary-dark: #0a2540;
  --primary-teal: #00d4aa;
  --text-gray: #6b7280;
  
  /* Nav Menu Colors */
  --nav-color: #4a4b64;
  --nav-hover-color: #000;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #4a4b64;
  --nav-dropdown-hover-color: #000;
  
  /* Other */
  --card-border-radius: 20px;
  
  /* Smooth scroll */
  scroll-behavior: smooth;
}

/* Color Presets */
.light-background {
  --background-color: #f5f6ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1030;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}

.container, .containers {
  margin: auto;
}

/* Utility Classes */
.text-center {
  text-align: center !important;
  margin-top: 0;
  margin-bottom: 0;
}

.justify-content-left {
  text-align: left !important;
  margin-top: 0;
  margin-bottom: 0;
}

.margin-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.margin-zero {
  margin-top: 0 !important;
  margin-bottom: 0;
}

.mg-bottom-20 { margin-bottom: 20px; }
.mg-bottom-15 { margin-bottom: 15px; }
.mg-bottom-50 { margin-bottom: 50px; }
.mg-up-20 { margin-top: 20px; }
.margin-top-20 { margin-top: 20px; }

.mg-2 {
  margin: 20px 5px;
}

.width-auto {
  width: 50%;
  text-align: center;
}

.width-auto-about {
  width: 60%;
  text-align: center;
}

.planning {
  width: 80%;
}

.spacer {
  height: 20px;
}

.center-dskp {
  justify-content: center;
}

.full-btn {
  width: 100% !important;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background-image: url('<?php echo esc_url( get_template_directory_uri() . "/assets/img/hero-bg.png" ); ?>');
  background-size: cover;
  background-position: center left;
  padding: 12% 20px 30px;
}

.hero {
  padding: 140px 0 40px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-badge i {
  color: #FFD700;
  font-size: 0.875rem;
}

.hero .hero-content .hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.hero .hero-title, .hero-title {
  font-size: 57px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #909898 !important;
  letter-spacing: -0.02em;
}

.hero-title-paragraph {
  font-size: 17px;
  text-align: left;
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-outline {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--heading-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.hero .hero-content .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

.hero .hero-content .hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hero .hero-content .hero-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.hero .hero-content .hero-metrics .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .hero-content .hero-metrics .metric-item .metric-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-content .hero-metrics .metric-item .metric-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-metrics .metric-item .metric-content {
  text-align: left;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Typewriter Effect
--------------------------------------------------------------*/
.typewrite {
  font-size: 3em;
  font-weight: bold;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  height: 100%;
}

.wrap {
  display: inline-block;
  border-right: 3px solid #111;
  animation: blinkCursor 0.7s step-end infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.banner-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.banner-image-hero {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  background-image: url("../img/services/Background-events.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.event-solutions {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin: 60px auto;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-solutions h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.event-solutions .description {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  line-height: 1rem;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 250px;
}

.tab {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  background: none;
  color: #555;
  cursor: pointer;
  border-bottom: 1px solid #b2b2b2;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: all 0.3s ease;
}

.tab.active {
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid #000;
}

.tab:hover {
  color: #111;
}

.tab-panels {
  flex: 1;
}

.panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.panel.active {
  display: grid;
}

.events .panel.active {
  display: flex;
}

.card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  width: 300px;
  height: 400px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.card:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-4px);
}

.card:hover .event-title-h3, 
.card:hover p {
  color: #fff !important;
}

.event-title-h3 {
  margin-top: 10px;
}

.explore-btn {
  align-self: flex-start;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #000;
  color: #fff;
}

.explore-btns {
  display: flex;
  justify-content: right;
  text-align: left;
}

.event-head-tabs-coloumn {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-page #clients{
    margin-top:30px;
}
/*--------------------------------------------------------------
# Thalsamaya Difference
--------------------------------------------------------------*/
.center-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.center-image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

.difference-head-text {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  margin-top: 30px;
}

.section-title-difference {
  text-align: center;
  font-weight: 500;
  font-size: 50px;
  color: #000;
}

/*--------------------------------------------------------------
# Metrics Card Section
--------------------------------------------------------------*/
.metric-card {
  background: #000;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.metric-value {
  color: #B3F8FB;
  font-size: 40px;
  font-weight: 700;
}

.metric-label {
  font-size: 20px;
  color: #B3F8FB;
  font-weight: 700;
}
.home-page .metrics-section {
  background-color: #000;
  padding: 0px 30px !important;
  border-radius: 26px;
  margin: 0px 20px 60px 20px;
}
.metrics-section {
  background-color: #000;
  padding: 40px 30px;
  border-radius: 26px;
  margin: 0 20px;
}

/*--------------------------------------------------------------
# Case Study Carousel Section
--------------------------------------------------------------*/
.casestudy-solutions {
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.events-casestudy {
  margin-top: 30px;
  background: linear-gradient(135deg, #2c7a7b, #319795);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.events-casestudy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.casestudy-header {
  text-align: left;
  margin-bottom: 60px;
}

.casestudy-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: #fff;
}

.casestudy-header p {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  margin: 0 auto;
  line-height: 1.6;
  color: #fff;
  text-align: left;
}

/* Rewinds Section */
.rewinds-section {
  width: 100%;
  margin-top: 30px;
  padding: 2rem;
  background-color: #06585B;
}

.rewinds-container {
  align-items: center;
  display: flex;
  gap: 2rem;
 
}
.thalsamaya_choose{
    margin-bottom: 0px !important;
  padding-bottom: 1% !important;
}
.rewinds-info {
  flex: 1;
  min-width: 300px;
}

.rewinds-info h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.rewinds-info p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 350px;
  margin-bottom: 2rem;
  color: #fff;
}

.carousel-nav {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, border-color 0.3s;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #fff;
  color: #000;
}

.carousel-viewport {
  flex: 2;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: relative;
  flex: 0 0 calc((100% / 3) - 1rem);
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.slide-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: left;
  color: #fff;
}

.play-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: lowercase;
  transition: background-color 0.3s;
}

.play-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-card {
  border-radius: 26px;
  border: 1px solid #FFFFFF;
  padding: 20px;
  background-color: #fff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-card {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  text-align: center;
  word-break: break-all;
}

.testimonial-card-above {
  background-color: rgba(246, 246, 246, 1);
  margin: 0 0 10px;
  padding: 5%;
  border-radius: 25px;
  transition: background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;
}

.testimonial-card-1 {
  margin: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 10px;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-destination {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: left;
  margin-bottom: 5px;
  color: #555e72;
}

.testimonial-author {
  font-size: 10px;
  font-weight: 600;
  color: #000;
  line-height: 1.2em;
  text-align: left;
}

.author-title {
  font-size: 10px;
  margin: 0;
  line-height: 1.2em;
  color: #828282;
  text-align: left;
}

.testimonial-quote p {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  line-height: 1.2em;
  font-size: 13px;
  text-align: left;
  word-break: break-word;
}

.testimonial-quote {
  margin: 0;
}

#testimonial {
  background-color: #fff;
}

/*--------------------------------------------------------------
# Blogs/Insights Section
--------------------------------------------------------------*/
.insights-section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.home-page .insights-section {
  padding: 0px 20px 60px 20px!important;
  max-width: 1400px;
  margin: 0 auto;
}
.insights-sectionss {
  padding: 20px !important;
  max-width: 1400px;
  margin: 0 auto;
}

.insights-section-index {
  padding-top: 0 !important;
}

.section-header, .section-headers {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 20px;
}

.section-headers {
  margin-top: 0;
}

.section-title {
  flex: 1;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
}

.view-more-btn {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  border: none;
}

.view-more-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateX(5px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #333;
  gap: 8px;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(2px);
}
.card-content-comprehensive p{
    color:#fff !important;
}
.service-page .faq-item{
  border-bottom: 1px solid #000; /* Your border style */
}

.service-page .faq-answer {
  display: none;
  padding: 15px 0; /* Adds some nice spacing */
}


.service-page .faq-item.faq-active .faq-answer {
  display: block;
}

.service-page .faq-question {
  cursor: pointer;
  padding: 15px 0; /* Gives it some space */
}
.service-page .faq .faq-item {
  background-color: var(--surface-color);
  padding: 0px;
}
/* Default text values*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;

}
.service-page .wpcf7-form p {
  margin-bottom: 0px !important;
}
.service-page .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  color:#fff !important;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: #000;
  font-size: 14px;
  padding: 10px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-getstarted,
.btn-getstarted:focus {
  color: #fff;
  background: #000;
  font-size: 14px;
  padding: 8px 20px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #000;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: #fff;
  background: #000;
}

.spacer {
  height: 20px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #041a1a;
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  background-image: url(https://evobetech.com/thalnk/wp-content/uploads/2025/08/Footer-Background.png);
  background-position: 48% 75%;
  background-size: cover;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer .footer-main {
  margin-bottom: 40px;
}

.footer .brand-section .logo {
  text-decoration: none;
}

.footer-catalog {
  font-size: 18px;
}

.footer-menu-link p {
  line-height: 1.3em;
  color: #c5eeee !important;
}
.footer-menu-link a {
  color: #c5eeee !important;
  text-decoration: none !important;
}
.footer .brand-section .logo .sitename {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer .brand-section .brand-description {
  font-size: 15px;
  line-height: 1.6;
  color: #c5eeee;
  font-weight: 400;
  max-width: 380px;

}

.footer .brand-section .brand-description-title {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-menu-link a {
  color: #c5eeee !important;
}

.footer-menu-link a:hover {
  color: #c5eeee !important;
}

.border-footer-up {
  position: relative;
  padding-top: 40px;
}

.border-footer-up::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: #22d3ee;
}

.border-footer-up::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background-color: rgba(34, 211, 238, 0.3);
}

.footer .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}




.footer .nav-column {
  margin-bottom: 40px;
}

.footer .nav-column h6 {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer .footer-social .newsletter-section h5 {
  font-family: "Instrument Sans", Sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}


.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #222;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
  margin: 4px 2px;
}

.footer-social .social-link:hover {
  background: #222;
  color: #fff;
}



.footer .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  background-color: #c5eeee;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 10px;
  border-radius: 50%;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer .footer-bottom {
  padding: 30px 0;
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer .footer-bottom .copyright p .sitename {
  font-size: 14px;
  font-weight: 400;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}



.footer .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

.footer .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.footer .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #EEF9FA !important;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title-difference {
  text-align: center;
  font-weight: 500;
  font-size: 50px;
  color: #000
}

.section-title h2 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 140px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 70%);
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-badge i {
  color: #FFD700;
  font-size: 0.875rem;
}

.hero .hero-content .hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.hero .hero-title {
  font-size: 57px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #909898 !important;
  letter-spacing: -0.02em;
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}



.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}


.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-outline {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--heading-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.hero .hero-content .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

.hero .hero-content .hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hero .hero-content .hero-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.hero .hero-content .hero-metrics .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .hero-content .hero-metrics .metric-item .metric-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-content .hero-metrics .metric-item .metric-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-metrics .metric-item .metric-content {
  text-align: left;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.service-comprehensive {
  background-color: transparent;
  background-image: radial-gradient(at center left, #000000 0%, #41ADB1 100%);
  padding: 100px 20px;
  position: relative;
}


.container-service {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header-comprehensive {
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.section-title-comprehensive {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
#service-key{
      background-color: transparent;
    background-image: radial-gradient(at top left, #000000 44%, #3EA8F4 100%);
}
.key-header-service{
  text-align: center;
  color:#fff;
  font-size:45px;
  padding-bottom:30px;
}
.about-padding{
padding-top:30px;
color:#7a7a7a;
}
#service-key li{
  line-height:2.8em;
   color:#fff;
   font-size: 18px;
}
.section-subtitle-comprehensive {
  font-size: 18px;
  color: #FFFFFF;
  margin: 0 auto;
  line-height: 1.6;
}

.tabs-container-comprehensive {
  margin-bottom: 60px;
}

.tabs-comprehensive {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-comprehensive {
  background: none;
  border: none;
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-family: inherit;
}

.tab-comprehensive:hover {
  color: #94a3b8;
}

.tab-comprehensive.active {
  color: #000;
}

.tab-comprehensive.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
  border-radius: 2px;
}

.carousel-container-comprehensive {
  position: relative;
}

.cards-grid-comprehensive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
  .cards-grid-comprehensive {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .cards-grid-comprehensive {
    grid-template-columns: repeat(3, 1fr);
  
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  }
}

.solution-card-comprehensive {
background-color:#EEF9FA;
  border: 1px solid #EEF9FA !important;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.solution-card-comprehensive:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(34, 211, 238, 0.3);
}

.card-image-comprehensive {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.card-content-comprehensive {
  position: relative;
  padding-top:10px;
}

.card-header-comprehensive {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-title-comprehensive {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-arrow-comprehensive {
  width: 24px;
  height: 24px;
  color: #000;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.solution-card-comprehensive:hover .card-arrow {
  transform: translate(4px, -4px);
}

.card-description-comprehensive {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}
.form-select-textarea{
background-color: transparent !important;
    border-radius: 26px !important;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
.contact-banner{
  background-position: bottom left;
  background-repeat: no-repeat;
  margin-top:4%;
}
.contact-details{
  background-repeat: no-repeat;
  background-size: cover;
}
.navigation-buttons-comprehensive {
  position: absolute;
  right: 20px;
  top: -50px;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}
.border-radius{
    border-radius:8px !important;
}
.nav-btn-comprehensive {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn-comprehensive:hover {
  background: rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.3);
  transform: scale(1.05);
}

.nav-btn-comprehensive:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn-comprehensive:disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-btn-comprehensive svg {
  width: 20px;
  height: 20px;
}
.contact-heading{
     font-size: 45px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  text-align:left;
}
.box-border-contact{
 border-color: #EEF9FA !important;
 border:15px solid;
 border-radius: 26px !important;
}
#service-tabs.active{
   color: #fff !important;
  opacity: 0.5; 
 
}
.service-clients{
  margin-top:40px;
  padding-top:50px;
}
.service-contact{
  background-color: transparent;
    background-image: radial-gradient(at center left, #000000 0%, #41ADB1 100%);

}
.service-contact-form-control{
color:#fff !important;
}
.service-contact-form-control:focus{
color:#fff !important;
}
.service-events{
  background-repeat: no-repeat;
  background-size: cover;
}
#service-tabs{
  color:#fff;
  opacity: calc();
}
.section-title-servicecontact {
  font-size: 3.4em;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #CAE1FA;
  text-align:left;
}

.section-subtitle-servicecontact {
  font-size: 18px;
  color: #FFFFFF;
  text-align:left;
  margin: 0 auto;
  line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .navigation-buttons-comprehensive {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .event-solutions-comprehensive {
    padding: 60px 20px;
  }

  .cards-grid-comprehensive {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .tabs-comprehensive {
    gap: 24px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .tab-comprehensive {
    white-space: nowrap;
    flex-shrink: 0;
  }


  .card-title-comprehensive {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .solution-card-comprehensive {
    border-radius: 16px;
  }

  .card-image-comprehensive {
    height: 240px;
    border-radius: 16px 16px 0 0;
  }

}

/* Animation for card entrance */
.solution-card-comprehensive {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
    padding:20px;
}

.solution-card-comprehensive:nth-child(1) {
  animation-delay: 0.1s;
}

.solution-card-comprehensive:nth-child(2) {
  animation-delay: 0.2s;
}

.solution-card-comprehensive:nth-child(3) {
  animation-delay: 0.3s;
}

.solution-card-comprehensive:nth-child(4) {
  animation-delay: 0.4s;
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-section {
  position: relative;
}

.about .image-section .primary-image {
  position: relative;
  margin-bottom: 2rem;
}

.about .image-section .primary-image img {
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about .image-section .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.about .image-section .primary-image .experience-badge .years {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .image-section .primary-image .experience-badge .text {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-img {
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-img:hover {
  transform: translateY(-3px);
}

.about .content-section {
  padding-left: 2rem;
}



.about .section-intro {
  margin-bottom: 3rem;
}

.about .section-intro .company-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about .section-intro h2 {
  font-size: 2.125rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
}


.about .section-intro .intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about .achievement-list {
  margin-bottom: 3rem;
}

.about .achievement-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about .achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}

.about .achievement-list .achievement-item .achievement-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .achievement-list .achievement-item .achievement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.about .achievement-list .achievement-item .achievement-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.about .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}


.about .action-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .action-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.about .action-section .contact-info .contact-label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.about .action-section .contact-info .phone-number {
  font-size: 1.125rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .metrics-section {
  margin-top: 5rem;
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 70%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .metrics-section .metric-card {
  padding: 1.5rem 1rem;
}

.about .metrics-section .metric-card .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.75rem;
}



.about .metrics-section .metric-card .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
  margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4facfe 30%));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border: none;
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .services-grid .service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
  color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .services-tabs .nav-pills {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  padding: 8px;
  display: inline-flex;
  margin: 0 auto;
}

.services .services-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
  background: var(--surface-color);
  border-radius:  16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.services .services-tabs .tab-service-card .tab-service-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-tabs .tab-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-content h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.features .features-content .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.features .features-image {
  position: relative;
}

.features .features-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-5px);
}

.features .feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}


.features .feature-icon  {
  font-size: 24px;
  color: var(--contrast-color);
  padding-bottom: 10px;
}

.features .feature-content h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.features .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}


.event-head-tabs-coloumn{
  min-width: 300px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-list {
  margin-bottom: 30px;
}

.features-2 .features-list .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: left;
  height: 100%;
}

.features-2 .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-2 .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .features-list .feature-item .feature-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.features-2 .features-list .feature-item .feature-content {
  flex: 1;
}

.features-2 .features-list .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.features-2 .features-list .feature-item .feature-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  line-height: 1.5;
}

.features-2 .features-list .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.features-2 .features-list .feature-item .feature-content .feature-tags span {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.features-2 .cta-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.features-2 .cta-section .btn-primary,
.features-2 .cta-section .btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-2 .cta-section .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.features-2 .cta-section .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features-2 .cta-section .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-2 .cta-section .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.testimonials .testimonials-slider-wrapper {
  position: relative;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.testimonials .testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.testimonials .testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .testimonial-card.featured {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, var(--surface-color) 100%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.05);
}

.testimonials .testimonial-card.featured .featured-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #007bff 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-card.featured .featured-badge i {
  font-size: 0.875rem;
}

.testimonials .rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonials .rating i {
  color: #ffc107;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px color-mix(in srgb, #ffc107, transparent 60%));
}

.testimonials blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0 0 2rem 0;
  position: relative;
  font-style: italic;
}

.testimonials blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 4rem;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  font-family: "Instrument Sans", Sans-serif;
  line-height: 1;
}

.testimonials .user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.testimonials .user-info {
  flex: 1;
}

.testimonials .user-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
}

.testimonials .user-info .title {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonials .user-info .company {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.testimonials .navigation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.testimonials .nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .dots-indicator {
  display: flex;
  gap: 0.75rem;
}

.testimonials .dots-indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials .dots-indicator .dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}




/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

/* This hides the answer by default */
.faq-item .faq-content {
  display: none;
  padding: 10px 20px;
}

/* This SHOWS the answer when the .faq-active class is added */
.faq-item.faq-active .faq-content {
  display: block;
}

/* This makes the header clickable */
.faq-item .faq-header {
  cursor: pointer;
}

/* Optional: This rotates the little arrow icon */
.faq-item .faq-toggle {
  transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}
.faq-question-text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.faq-answer {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq .faq-item {
  background-color: var(--surface-color);
  padding: 20px;

}

.faq-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
  text-align: center
}

.faq-icon {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

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

.faq .faq-item .question-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.faq .faq-item .icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.faq .faq-item .icon-wrapper i {
  color: var(--accent-color);
  font-size: 24px;
}

.faq .faq-item .content-wrapper {
  flex: 1;
  min-width: 0;
}

.faq .faq-item .question {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: "Instrument Sans", Sans-serif;
}

.faq .faq-item .answer p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
/* Add this to your main style.css file */

.faq-question {
  cursor: pointer; /* Shows the user it's clickable */
}

/* This hides the answer by default */
.faq-item .faq-answer {
  display: none;
  padding: 15px 0;
}

/* This SHOWS the answer when the .faq-active class is added */
.faq-item.faq-active .faq-answer {
  display: block;
}

/* This handles the + / - icon */
.faq-icon {
  font-size: 20px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-panel {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  height: 100%;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.contact .contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/misc/misc-1.webp") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.contact .contact-info-panel .panel-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}


.contact .contact-info-panel .info-header {
  margin-bottom: 50px;
}

.contact .contact-info-panel .info-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact .contact-info-panel .info-header p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact .contact-info-panel .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
  flex: 1;
}

.contact .contact-info-panel .info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact .contact-info-panel .info-card:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  transform: translateX(10px);
}

.contact .contact-info-panel .info-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-panel .info-card .card-icon i {
  font-size: 22px;
}

.contact .contact-info-panel .info-card .card-content {
  flex: 1;
}

.contact .contact-info-panel .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.contact .contact-info-panel .info-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact .contact-info-panel .social-section {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding-top: 30px;
}

.contact .contact-info-panel .social-section h5 {
  font-size: 16px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.contact .contact-info-panel .social-section .social-icons {
  display: flex;
  gap: 15px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-info-panel .social-section .social-icons .social-icon i {
  font-size: 18px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 80px 60px;
  height: 100%;
  min-height: 650px;
}
.form-label {
  font-weight: 500;
  color:#fff;
  font-size:14px;
}
.full-btn{
  width:100% !important;
}
.form-control{
  background-color: transparent !important;
  border-radius: 26px !important;
}
.form-control:focus {
  color:#000 !important;
  border-color:#EEF9FA !important;
}
.form-select {
  background-color:transparent !important;
  color:#fff !important;
  border-radius: 26px !important;
}
.form-select {
  color:#000 !important;
}
.contact .contact-form-wrapper .form-header {
  margin-bottom: 50px;
}

.contact .contact-form-wrapper .form-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-header .header-line {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

.contact .contact-form-wrapper .modern-form .form-group .form-control {
  width: 100%;
  padding: 18px 25px;
  font-size: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .form-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .modern-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper .modern-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.contact .contact-form-wrapper .modern-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .modern-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover::before {
  left: 100%;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-text,
.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
  position: relative;
  z-index: 2;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon i {
  font-size: 16px;
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  margin-bottom: 4rem;
}
.center-dskp{
justify-content: center;
}
.service-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-details .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.service-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.service-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
  transform: scale(1.02);
}

.service-details .service-narrative {
  margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.service-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .timeline-section {
  margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
  position: relative;
}

.service-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-details .service-sidebar {
  padding-left: 2rem;
}



.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
  text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

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

.service-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

.service-details .consultation-form input[type=text]::placeholder,
.service-details .consultation-form input[type=email]::placeholder,
.service-details .consultation-form input[type=tel]::placeholder,
.service-details .consultation-form select::placeholder,
.service-details .consultation-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.margin-top-20{
  margin-top:20px;
}
.service-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

/* dropdown: black background, white text (inside contact form box) */
.contact-form-box .form-select {
  color: #fff;
  padding-right: 2.5rem; /* keep space for native caret */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
   background-color:transparent !important;
  border-radius: 26px !important;
}

/* options styling (browser support varies) */
.contact-form-box .form-select option {
  background-color: #000;
  color: #fff;
  
}

/* lighter placeholder color for the empty option */
.contact-form-box .form-select option[value=""] {
  color: #bbb;
}

/* remove strong focus glow if undesired */
.contact-form-box .form-select:focus {
  box-shadow: none;
  outline: 1px solid rgba(255,255,255,0.16);
}
/*
--- Callback Popup Modal Styles ---
*/

.modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    overflow: hidden;
    max-height: auto; /* Prevents overflow on small screens */
    overflow-y: auto; /* Adds scrollbar if content is too tall */
}

.modal-wrapper.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}
.modal-close-btn:hover {
    background-color: rgba(0,0,0,0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-title {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ff007f, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.popup-subtitle {
    font-weight: 500;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.popup-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Styling for Contact Form 7 fields */
.modal-body .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-body .wpcf7-form-control-wrap {
    width: 100%;
}
.modal-wrapper .wpcf7-form p {
     margin-bottom: 5px !important; 
}
.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="tel"] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.modal-body .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(to right, #ff007f, #8a2be2);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
}

.modal-body .wpcf7-submit:hover {
    background: linear-gradient(to right, #e20072, #7a25cc);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
}
/* 404 Section */
        ..error-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .error-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
          
            height: 800px;
            background: radial-gradient(circle, rgba(0,212,170,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .error-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(10,37,64,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .error-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .error-number {
            font-size: 10rem;
            font-weight: 900;
            color: var(--primary-dark);
            line-height: 1;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .error-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .error-description {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

       .error-section .btn-home {
            background: var(--primary-dark);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            font-size: 1.1rem;
        }

       .error-section .btn-home:hover {
            background: #051a2e;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .error-section.btn-secondary-link {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
            margin-left: 1.5rem;
            transition: all 0.3s;
            margin-left:20px;
        }

       .error-section .btn-secondary-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

       .error-section .helpful-links {
            margin-top: 4rem;
        }

       .error-section .link-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 1.5rem;
            text-decoration: none;
            display: block;
            border: 2px solid transparent;
        }

        .error-section .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-color: var(--primary-teal);
        }

        .error-section .link-card i {
            font-size: 2.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        .error-section .link-card h3 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .error-section .link-card p {
            color: var(--text-gray);
            margin: 0;
        }
/*
------------------------------------------------
--- Privacy Policy Page ---
------------------------------------------------
*/

/* --- 1. Hero Section (Title) --- */
.privacy-policy-page .privacy-hero {
  padding: 60px 20px 40px;
  text-align: center;
 
}

.privacy-policy-page .privacy-hero .privacy-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222; /* Set to your title color */
}

.privacy-policy-page .privacy-hero .last-updated {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* --- 2. Main Content Section (White Box) --- */
.privacy-policy-page .privacy-content {
  background-color: #ffffff;
  padding: 50px 0;
}

/* We set a max-width for readability */
.privacy-policy-page .privacy-content .container {
  max-width: 800px; 
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy-page .privacy-content .intro {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 500;
}

.privacy-policy-page .privacy-content .policy-section {
  margin-bottom: 30px; /* Space between each numbered section */
}

.privacy-policy-page .privacy-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111;
  margin-top: 40px;
  margin-bottom: 15px;
}

.privacy-policy-page .privacy-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.privacy-policy-page .privacy-content ul {
  padding-left: 25px;
  margin-bottom: 15px;
  list-style-type: disc;
}

.privacy-policy-page .privacy-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.privacy-policy-page .privacy-content .contact-details {
  font-style: normal;
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 4px solid #eee;
}

.privacy-policy-page .privacy-content .contact-details p {
  margin-bottom: 5px;
  line-height: 1.6;
}

/*
------------------------------------------------
--- Cookie Consent Modal ---
------------------------------------------------
*/

/* 1. The Full-Screen Overlay */
.cookie-consent-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  padding: 20px;
  overflow-y: auto; /* Allows scrolling on small screens */
}

/* 2. The Modal Box */
.cookie-consent-modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 700px; /* Max width as per your design */
  margin: 5vh auto; /* 5% from top, centered */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

/* 3. Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

/* Your theme's logo inside the modal */
.modal-header .custom-logo {
  max-height: 30px; /* Adjust as needed */
  width: auto;
}

.modal-header .close-btn {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: #888;
  cursor: pointer;
  line-height: 1;
}
.modal-header .close-btn:hover {
  color: #000;
}

/* 4. Modal Content */
.modal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-content .intro-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.modal-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* 5. Buttons (matches your design) */
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px; /* Fully rounded */
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cookie-btn i {
  margin-left: 8px;
}
.cookie-btn:hover {
  background-color: #333;
}
.allow-all-btn {
  border-radius: 8px !important; /* Matches image */
}
.save-prefs-btn {
  width: auto;
  float: right;
  border-radius: 8px !important; /* Matches image */
}
.modal-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  overflow: hidden; /* Clear the float */
}

/* 6. Cookie Categories & Accordion */
.cookie-categories {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.cookie-category {
  border-bottom: 1px solid #eee;
}
.cookie-category:last-child {
  border-bottom: none;
}
.category-header {
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}
.category-header .category-icon {
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 12px;
  transition: transform 0.3s ease;
}
/* Accordion 'open' state */
.category-header .category-icon.open {
  transform: rotate(45deg);
}
.category-header .category-title {
  flex-grow: 1;
  font-weight: 600;
  color: #333;
}
.category-header .category-status {
  font-size: 0.9rem;
  color: #777;
  margin-right: 10px;
}
.category-details {
  display: none; /* Hidden by default */
  background: #f9f9f9;
  padding: 20px;
  border-top: 1px solid #eee;
}
/* Accordion 'active' state */
.category-details.active {
  display: block;
}
.category-details p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.cookie-details-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}


/* 7. CSS Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px; /* Total width */
  height: 28px; /* Total height */
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 28px; /* Makes it round */
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px; /* Circle height */
  width: 20px; /* Circle width */
  left: 4px; /* Padding from left */
  bottom: 4px; /* Padding from bottom */
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #000; /* Your brand's "on" color */
}
input:checked + .slider:before {
  transform: translateX(22px); /* Moves the circle to the right */
}
.home-page .cards-wrapper {

    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;

}

.home-page .cards-wrapper::-webkit-scrollbar {

    height: 8px;

}

.home-page .cards-wrapper::-webkit-scrollbar-track {

    background: #f1f1f1;

    border-radius: 10px;

}

.home-page .cards-wrapper::-webkit-scrollbar-thumb {

    background: #888;

    border-radius: 10px;

}

.home-page .cards-wrapper::-webkit-scrollbar-thumb:hover {

    background: #555;

}

.home-page .panel .card {

    min-width: calc(50% - 10px);

    flex-shrink: 0;

    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    text-decoration: none;

    color: inherit;

    display: block;

}

.home-page .panel .card:hover {

    transform: translateY(-5px);

    box-shadow: 0 5px 20px rgba(0,0,0,0.15);

}

.home-page .panel .card img {

    width: 100%;

    height: 200px;

    object-fit: cover;

    display: block;

    border-radius: 8px 8px 0 0;

}

.home-page .panel .card h3 {

    margin: 15px 0 10px;

}

.home-page .panel .card p {

    margin: 0;

    line-height: 1.6;

}

/* Hide inactive panels */

.home-page .panel {

    display: none;

}

.home-page .panel.active {

    display: block;

}

/* Tab styling */

.home-page .tabs {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;

}

.home-page .tab {

    padding: 12px 20px;

    background: transparent;

  

    cursor: pointer;

    transition: all 0.3s ease;

    text-align: left;

    font-size: 16px;

}


/* Responsive adjustments */

@media (max-width: 768px) {
    .home-page .row {
        flex-direction: column;
    }

    .home-page .col-lg-5,
    .home-page .col-lg-6,
    .home-page .col-lg-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100%;
    }

    .home-page .event-head-tabs-coloumn h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .home-page .cards-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .home-page .panel .card {
        min-width: 85%;
        width: 85%;

    }

    .home-page .tabs {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .home-page .tab {
        width: 100%;
        text-align: left;
    }

    .home-page .event-head-tabs-coloumn {

        padding: 20px;

    }

}