/*
Theme Name: Syllora
Theme URI: http://syllora.edu.lk
Author: SmartAI Solutions
Description: Custom WordPress Theme for Syllora Education Consultants.
Version: 1.0.8
Text Domain: syllora
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap');

:root {
  /* Premium Vibrant Color Palette */
  --primary-color: #38bdf8; /* Sky Blue */
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --secondary-color: #1e1b4b; /* Deep Indigo */
  --accent-color: #f59e0b; /* Amber/Gold */
  
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --text-light: #9ca3af;
  --bg-color: #f9fafb;
  --white: #ffffff;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(56, 189, 248, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.23);
  color: var(--white);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
  z-index: 1001;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

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

.top-bar-socials {
  display: flex;
  gap: 15px;
}

.top-bar-socials a {
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.top-bar-socials a:hover {
  color: var(--accent-color);
}

.top-bar-contact {
  display: flex;
  gap: 15px;
}

.contact-pill {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 4px 16px 4px 4px;
  gap: 8px;
}

.contact-pill .icon-circle {
  background-color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.contact-pill .pill-text {
  font-weight: 500;
}

/* Header */
.header {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-normal);
  padding: 20px 0;
}

.header.scrolled, .header.inner-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.header.scrolled {
  top: 0;
}

.header.scrolled .nav-link, .header.inner-header .nav-link {
  color: var(--secondary-color);
}

.header.scrolled .logo-text, .header.inner-header .logo-text {
  color: var(--primary-color);
}

.header.scrolled .btn-outline, .header.inner-header .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header.scrolled .btn-outline:hover, .header.inner-header .btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  transition: var(--transition-normal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition-normal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background-color: #0f172a;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.25) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3 !important;
  max-width: 650px;
  color: var(--white);
}

.hero-subtitle {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 16px;
  background: rgba(56, 189, 248, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--primary-color);
}

.hero-desc {
  font-size: 1.2rem;
  color: #e5e7eb;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

/* Section Common */
.section {
  padding: 100px 0;
}

.section-bg-light {
  background-color: var(--bg-color);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.service-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-img-wrap {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-experience-num {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.about-experience-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.2;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.about-desc {
  color: var(--text-gray);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.about-list {
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-weight: 500;
}

.about-list i {
  color: var(--primary-color);
  background-color: var(--primary-light);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-card:hover .dest-img {
  transform: scale(1.1);
}

.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(30, 27, 75, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  transition: var(--transition-normal);
}

.dest-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.dest-link {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transform: translateY(20px);
  transition: var(--transition-normal);
  transition-delay: 0.1s;
}

.dest-card:hover .dest-title {
  transform: translateY(0);
}

.dest-card:hover .dest-link {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  color: #9ca3af;
  margin-bottom: 24px;
}

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

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

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links a {
  color: #9ca3af;
  transition: var(--transition-normal);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: #9ca3af;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Animations */
.reveal {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    position: static;
  }
  .about-experience {
    right: 20px;
    bottom: -20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: var(--shadow-lg);
    transition: 0.4s ease;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-link {
    color: var(--secondary-color);
    font-size: 1.2rem;
  }
  .header .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  .mobile-menu-btn {
    display: block;
  }
  .header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    top: 0;
    position: fixed;
  }
  .top-bar {
    display: none;
  }
  .logo-text {
    color: var(--primary-color);
  }
  .hero-title {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Events Section Styles */
.section-events {
  background-color: var(--white);
}

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

.event-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

.event-img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.event-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.event-date-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 14px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.event-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.event-location {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-location i {
  color: var(--primary-color);
}

.event-excerpt {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.event-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  transition: gap var(--transition-normal);
  align-self: flex-start;
}

.event-link:hover {
  gap: 10px;
  color: var(--secondary-color);
}

/* Dark Section Styles */
.section-dark {
  background-color: var(--secondary-color);
}

.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark .no-posts-msg {
  color: var(--white);
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 40px 30px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.testimonial-quote-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.6;
}

.testimonial-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 25px;
  position: relative;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--primary-light);
}

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

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

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.05rem;
}

.testimonial-status {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}


.no-posts-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-gray);
  padding: 40px 0;
  font-style: italic;
}

/* Logo Image Styles */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

.footer-logo-img {
  height: 70px;
  width: auto;
}

.logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo .logo-text {
  color: var(--white);
  margin-bottom: 0;
}


/* Premium Consultation Form Styles */
.section-contact {
  background-color: var(--bg-light, #f8fafc);
  padding: 80px 0;
}

.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.consultation-form {
  width: 100%;
}

.form-group {
  margin-bottom: 22px;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary-color, #0f172a);
}

.form-control {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  padding: 12px 16px !important;
  height: 50px;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  font-family: var(--font-body, 'Inter', sans-serif) !important;
  font-size: 1rem !important;
  color: #1e293b !important;
  background-color: #ffffff !important;
  transition: all 0.3s ease !important;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 40px !important;
}

.form-control:focus {
  outline: none !important;
  border-color: var(--primary-color, #38bdf8) !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15) !important;
  background-color: #ffffff !important;
}

textarea.form-control {
  height: auto !important;
  min-height: 120px !important;
  resize: vertical !important;
}

.form-row {
  display: flex !important;
  gap: 20px !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .contact-form-wrap {
    padding: 30px 20px !important;
  }
}

/* Dark Themes for About and Testimonials Sections */
#about, .section-testimonials {
  background-color: var(--secondary-color, #1e1b4b) !important;
  color: var(--white) !important;
}

#about .section-title, 
.section-testimonials .section-title {
  color: #ffffff !important;
}

#about .section-subtitle, 
.section-testimonials .section-subtitle {
  color: var(--primary-color, #38bdf8) !important;
}

#about .about-desc, 
#about .about-desc p {
  color: #cbd5e1 !important;
}

#about .about-list li {
  color: #f1f5f9 !important;
}

#about .about-list li i {
  color: var(--primary-color, #38bdf8) !important;
}

.section-testimonials .no-posts-msg {
  color: #94a3b8 !important;
}

.testimonial-card {
  background-color: #292567 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.testimonial-body {
  color: #e2e8f0 !important;
}

.testimonial-name {
  color: #ffffff !important;
}

.testimonial-status {
  color: var(--primary-color, #38bdf8) !important;
}

/* Floating WhatsApp Button (Right Side - High Elevation above Tidio) */
.floating-whatsapp {
    position: fixed;
    bottom: 155px;
    right: 25px;
    left: auto;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    left: auto;
    background: #111827;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 72px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 140px;
        right: 20px;
        left: auto;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}