/* Fonts */
:root {
  --default-font: "Crimson Text", serif;
  --heading-font: "Crimson Text", serif;
  --nav-font: "Crimson Text", serif;
}

/* Global Colors - Modern Professional Color Scheme */
:root {
  --background-color: #ffffff; /* Clean white background */
  --default-color: #2d3748; /* Professional dark gray for text */
  --heading-color: #1a202c; /* Darker gray for headings */
  --accent-color: #3182ce; /* Professional blue */
  --surface-color: #ffffff; /* White surface for cards */
  --contrast-color: #ffffff; /* White text on colored backgrounds */
  --secondary-color: #38a169; /* Professional green */
  --success-color: #38a169; /* Success green */
  --warning-color: #d69e2e; /* Warning yellow */
  --info-color: #3182ce; /* Info blue */
  --light-bg: #f7fafc; /* Light background for sections */
  --border-color: #e2e8f0; /* Light border color */
  --shadow-color: rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Nav Menu Colors */
:root {
  --nav-color: #2d3748; /* Navigation text color */
  --nav-hover-color: #3182ce; /* Navigation hover color */
  --nav-mobile-background-color: #ffffff; /* Mobile nav background */
  --nav-dropdown-background-color: #ffffff; /* Dropdown background */
  --nav-dropdown-color: #2d3748; /* Dropdown text color */
  --nav-dropdown-hover-color: #3182ce; /* Dropdown hover color */
}

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

.dark-background {
  --background-color: #2d3748;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4a5568;
  --contrast-color: #ffffff;
}

.hero-background {
  --background-color: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
  --surface-color: rgba(255, 255, 255, 0.1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

.services-background {
  --background-color: #f7fafc;
  --surface-color: #ffffff;
}

.about-background {
  --background-color: #ffffff;
  --surface-color: #f7fafc;
}

.pricing-background {
  --background-color: #2d3748;
  --surface-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

.team-background {
  --background-color: #f7fafc;
  --surface-color: #ffffff;
}

.contact-background {
  --background-color: #2d3748;
  --surface-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active .header {
  background-color: rgba(255, 255, 255, 0.98);
}

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

a:hover {
  color: #2c5282;
  text-decoration: none;
  transform: translateY(-1px);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Header Styling
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  margin: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
  color: var(--accent-color);
}

.navmenu .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  color: var(--heading-color);
}

.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
  color: var(--accent-color);
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-getstarted, .btn-get-started, .cta-btn, .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--accent-color);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.btn-getstarted:hover, .btn-get-started:hover, .cta-btn:hover, .buy-btn:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

.btn-get-started, .cta-btn {
  padding: 15px 35px;
  font-size: 16px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(49, 130, 206, 0.95) 0%, rgba(44, 82, 130, 0.95) 100%);
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .animated {
  animation: float 6s ease-in-out infinite;
}

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

/*--------------------------------------------------------------
# Service Items
--------------------------------------------------------------*/
.service-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(49, 130, 206, 0.15);
  border-color: var(--accent-color);
}

.service-item .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.service-item .icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.service-item h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.service-item h4 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.service-item:hover h4 a {
  color: var(--accent-color);
}

.service-item p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Items
--------------------------------------------------------------*/
.pricing-item {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-item:hover::before {
  transform: scaleX(1);
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(49, 130, 206, 0.2);
  border-color: var(--accent-color);
}

.pricing-item.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.pricing-item.featured::before {
  transform: scaleX(1);
}

.pricing-item.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-header h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.pricing-header h4 sup {
  font-size: 24px;
  font-weight: 500;
}

.pricing-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-item ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.pricing-item ul li:last-child {
  border-bottom: none;
}

.pricing-item ul li i {
  margin-right: 12px;
  color: var(--success-color);
  font-size: 18px;
}

.pricing-item ul li.na i {
  color: var(--warning-color);
}

.pricing-item ul li span {
  color: var(--default-color);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Team Members
--------------------------------------------------------------*/
.team-member {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(49, 130, 206, 0.2);
  border-color: var(--accent-color);
}

.member-img {
  position: relative;
  overflow: hidden;
}

.member-img img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.team-member:hover .member-img img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.php-email-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--surface-color);
  width: 100%;
}

.php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
  outline: none;
}

.php-email-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.php-email-form button[type="submit"]:hover {
  background: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

/*--------------------------------------------------------------
# FAQ Section - Completely Redesigned
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq .section-title h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq .section-title h2::after {
  background: linear-gradient(90deg, #feca57, #ff9ff3);
  width: 120px;
  height: 6px;
  border-radius: 3px;
}

.faq .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.faq .faq-list li:last-child {
  border-bottom: none;
}

.faq .faq-list .faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq .faq-list .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #feca57, #ff9ff3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq .faq-list .faq-item:hover::before {
  transform: scaleX(1);
}

.faq .faq-list .faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.faq .faq-list .faq-item.faq-active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #feca57;
}

.faq .faq-list .faq-item.faq-active::before {
  transform: scaleX(1);
}

.faq .faq-list .faq-item h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding-right: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  color: #feca57;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq .faq-list .faq-item:hover .faq-toggle {
  background: rgba(255, 255, 255, 0.3);
  border-color: #feca57;
  transform: scale(1.1);
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  background: #feca57;
  color: #2d3748;
  border-color: #feca57;
  transform: rotate(45deg);
}

.faq .faq-list .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.faq .faq-list .faq-item.faq-active .faq-content {
  max-height: 200px;
  margin-top: 20px;
}

.faq .faq-list .faq-item .faq-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #feca57;
}

.faq .faq-list .faq-item .faq-content ul {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 20px 20px 20px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #feca57;
}

.faq .faq-list .faq-item .faq-content li {
  margin-bottom: 10px;
  border: none;
}

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

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

.section-title h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

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

.section-title p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #ffffff;
  padding: 60px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  margin-bottom: 30px;
}

.footer h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #feca57, #ff9ff3);
  border-radius: 2px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #feca57, #ff9ff3);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-about .logo {
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about .sitename {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact strong {
  color: #feca57;
  font-weight: 600;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 14px;
}

.footer-bottom a {
  color: #feca57;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff9ff3;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #2c5282;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

.scroll-top i {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#preloader::after {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid var(--accent-color);
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Mobile Navigation - Completely New Design
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--heading-color);
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 9999;
}

.mobile-nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent-color);
}

.mobile-nav-toggle.active {
  color: var(--accent-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 9999;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-container.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  padding: 30px;
}

.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav li {
  margin-bottom: 15px;
}

.mobile-menu-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  display: block;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-menu-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-menu-nav a:hover::before {
  left: 100%;
}

.mobile-menu-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
}

.mobile-menu-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #feca57;
  color: #feca57;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.mobile-menu-cta {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  color: #2d3748;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(254, 202, 87, 0.4);
}

.mobile-menu-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(254, 202, 87, 0.6);
  color: #2d3748;
}

/* Mobile Menu Social */
.mobile-menu-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-menu-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-social a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: #feca57;
}

/* Mobile Menu Responsive */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .navmenu {
    display: none !important;
  }
  
  .btn-getstarted {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .mobile-menu-container {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 20px;
  }
  
  .mobile-menu-nav {
    padding: 20px;
  }
  
  .mobile-menu-footer {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Additional Enhancements
--------------------------------------------------------------*/
.section {
  padding: 80px 0;
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--accent-color), var(--secondary-color)) 1;
}

.shadow-custom {
  box-shadow: 0 20px 40px rgba(49, 130, 206, 0.15);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/*--------------------------------------------------------------
# Cookie Popup
--------------------------------------------------------------*/
#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: #ffffff;
  padding: 20px;
  font-family: var(--default-font);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
  min-height: 100px;
  font-size: 14px;
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  z-index: 10000;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

#cookie-popup .popup-message {
  flex: 1;
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #ffffff;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 120px;
}

#cookie-popup button:hover {
  background: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

@media (max-width: 768px) {
  #cookie-popup .popup-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  #cookie-popup .popup-message {
    max-width: 100%;
  }
  
  #cookie-popup button {
    width: 100%;
    max-width: 200px;
  }
}

/*--------------------------------------------------------------
# About Section - Completely Redesigned
--------------------------------------------------------------*/
.about {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about .section-title h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about .section-title h2::after {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  width: 120px;
  height: 6px;
  border-radius: 3px;
}

.about .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
}

.about .about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}

.about .about-img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about .about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(254, 202, 87, 0.3));
  z-index: 1;
}

.about .about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

.about h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about .nav-pills {
  border: none;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
}

.about .nav-pills li + li {
  margin-left: 0;
}

.about .nav-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  margin: 0 5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.about .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.about .tab-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about .tab-content .fst-italic {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-style: normal;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #ff6b6b;
}

.about .tab-content .d-flex {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about .tab-content .d-flex:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  border-color: #ff6b6b;
}

.about .tab-content .d-flex i {
  color: #ff6b6b;
  font-size: 24px;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .tab-content h4 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.about .tab-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Call To Action Section - Completely Redesigned
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .content h3 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-to-action .content h3 em {
  font-style: normal;
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.call-to-action .content h3 em::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  border-radius: 2px;
}

.call-to-action .content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 600px;
}

/* CTA Features */
.cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-features .feature-item i {
  font-size: 20px;
  width: 30px;
  text-align: center;
}

.cta-features .feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-outline:hover {
  background: #ffffff;
  color: #ff6b6b;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.cta-btn i {
  font-size: 20px;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.95);
  color: #2d3748;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 2s;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #ff6b6b;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #4a5568;
  margin-top: 5px;
}

.call-to-action .content .cta-btn {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  color: #2d3748;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 30px rgba(254, 202, 87, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.call-to-action .content .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.call-to-action .content .cta-btn:hover::before {
  left: 100%;
}

.call-to-action .content .cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(254, 202, 87, 0.6);
}

.call-to-action .img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.call-to-action .img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(254, 202, 87, 0.2));
  z-index: 1;
}

.call-to-action .img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.call-to-action .img:hover img {
  transform: scale(1.05);
}

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

/*--------------------------------------------------------------
# Enhanced Tab Animations
--------------------------------------------------------------*/
.about .tab-pane {
  animation: fadeInUp 0.6s ease-out;
}

.about .tab-pane.active {
  animation: fadeInUp 0.6s ease-out;
}

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

/*--------------------------------------------------------------
# Responsive Design for New Sections
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .about .section-title h2 {
    font-size: 2.5rem;
  }
  
  .about h3 {
    font-size: 2rem;
  }
  
  .about .nav-pills {
    flex-direction: column;
    padding: 5px;
  }
  
  .about .nav-link {
    margin: 2px 0;
    text-align: center;
  }
  
  .about .tab-content {
    padding: 25px;
  }
  
  .call-to-action .content h3 {
    font-size: 2.2rem;
  }
  
  .call-to-action .content p {
    font-size: 1.1rem;
  }
  
  .call-to-action .content .cta-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about .section-title h2 {
    font-size: 2rem;
  }
  
  .about h3 {
    font-size: 1.8rem;
  }
  
  .about .tab-content {
    padding: 20px;
  }
  
  .call-to-action .content h3 {
    font-size: 1.8rem;
  }
  
  .call-to-action .content .cta-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Pricing Section - Completely Redesigned
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon id="hex" points="25,0 50,14.4 50,28.9 25,43.3 0,28.9 0,14.4" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing .section-title h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing .section-title h2::after {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  width: 120px;
  height: 6px;
  border-radius: 3px;
}

.pricing .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
}

.pricing .row {
  margin-top: 50px;
}

.pricing .col-lg-4 {
  margin-bottom: 30px;
}

.pricing .pricing-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #ff9ff3);
  z-index: 1;
}

.pricing .pricing-item:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing .pricing-item.featured {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(254, 202, 87, 0.2));
  border-color: #feca57;
  transform: scale(1.05);
}

.pricing .pricing-item.featured::before {
  background: linear-gradient(90deg, #feca57, #ff9ff3, #ff6b6b);
}

.pricing .pricing-item.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing .pricing-item .pricing-header {
  margin-bottom: 30px;
}

.pricing .pricing-item h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing .pricing-item .price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #feca57;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing .pricing-item .price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 5px;
}

.pricing .pricing-item .price .period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.pricing .pricing-item .pricing-features {
  margin: 30px 0;
  text-align: left;
}

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

.pricing .pricing-item .pricing-features li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.pricing .pricing-item .pricing-features li:last-child {
  border-bottom: none;
}

.pricing .pricing-item .pricing-features li i {
  color: #4ade80;
  font-size: 18px;
  background: rgba(74, 222, 128, 0.2);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing .pricing-item .pricing-features li .feature-text {
  flex: 1;
}

.pricing .pricing-item .pricing-features li .feature-highlight {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: #2d3748;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

.pricing .pricing-item .pricing-footer {
  margin-top: 30px;
}

.pricing .pricing-item .buy-btn {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  color: #2d3748;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 30px rgba(254, 202, 87, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.pricing .pricing-item .buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.pricing .pricing-item .buy-btn:hover::before {
  left: 100%;
}

.pricing .pricing-item .buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(254, 202, 87, 0.6);
}

.pricing .pricing-item .popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: #2d3748;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Pricing Info Section */
.pricing-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-info h4 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-info .info-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-info .info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-info .info-item i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.pricing-info .info-item h5 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-info .info-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Responsive Design for Pricing
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .pricing .section-title h2 {
    font-size: 2.5rem;
  }
  
  .pricing .pricing-item {
    padding: 30px 20px;
  }
  
  .pricing .pricing-item h3 {
    font-size: 1.8rem;
  }
  
  .pricing .pricing-item .price {
    font-size: 3rem;
  }
  
  .pricing .pricing-item .buy-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .pricing .section-title h2 {
    font-size: 2rem;
  }
  
  .pricing .pricing-item {
    padding: 25px 15px;
  }
  
  .pricing .pricing-item h3 {
    font-size: 1.6rem;
  }
  
  .pricing .pricing-item .price {
    font-size: 2.5rem;
  }
  
  .pricing .pricing-item .buy-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# FAQ Section - Completely Redesigned
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq .section-title h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq .section-title h2::after {
  background: linear-gradient(90deg, #feca57, #ff9ff3);
  width: 120px;
  height: 6px;
  border-radius: 3px;
}

.faq .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.faq .faq-list li:last-child {
  border-bottom: none;
}

.faq .faq-list .faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq .faq-list .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #feca57, #ff9ff3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq .faq-list .faq-item:hover::before {
  transform: scaleX(1);
}

.faq .faq-list .faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.faq .faq-list .faq-item.faq-active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #feca57;
}

.faq .faq-list .faq-item.faq-active::before {
  transform: scaleX(1);
}

.faq .faq-list .faq-item h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding-right: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  color: #feca57;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq .faq-list .faq-item:hover .faq-toggle {
  background: rgba(255, 255, 255, 0.3);
  border-color: #feca57;
  transform: scale(1.1);
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  background: #feca57;
  color: #2d3748;
  border-color: #feca57;
  transform: rotate(45deg);
}

.faq .faq-list .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.faq .faq-list .faq-item.faq-active .faq-content {
  max-height: 200px;
  margin-top: 20px;
}

.faq .faq-list .faq-item .faq-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #feca57;
}

.faq .faq-list .faq-item .faq-content ul {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 20px 20px 20px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #feca57;
}

.faq .faq-list .faq-item .faq-content li {
  margin-bottom: 10px;
  border: none;
}

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

/*--------------------------------------------------------------
# Responsive Design for FAQ
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .faq .section-title h2 {
    font-size: 2.5rem;
  }
  
  .faq .faq-list .faq-item {
    padding: 25px;
  }
  
  .faq .faq-list .faq-item h3 {
    font-size: 1.2rem;
    padding-right: 40px;
  }
  
  .faq .faq-list .faq-item .faq-toggle {
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .faq .section-title h2 {
    font-size: 2rem;
  }
  
  .faq .faq-list .faq-item {
    padding: 20px;
  }
  
  .faq .faq-list .faq-item h3 {
    font-size: 1.1rem;
    padding-right: 35px;
  }
  
  .faq .faq-list .faq-item .faq-toggle {
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section - New Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials .section-title h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials .section-title h2::after {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  width: 120px;
  height: 6px;
  border-radius: 3px;
}

.testimonials .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
}

.testimonials .row {
  margin-top: 50px;
}

.testimonials .col-lg-4 {
  margin-bottom: 30px;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #ff9ff3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonial-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-item.featured {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(254, 202, 87, 0.2));
  border-color: #feca57;
  transform: scale(1.05);
}

.testimonial-item.featured::before {
  background: linear-gradient(90deg, #feca57, #ff9ff3, #ff6b6b);
}

.testimonial-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: #2d3748;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.testimonial-item:hover .client-avatar {
  border-color: #feca57;
  transform: scale(1.1);
}

.client-details h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.client-details span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #feca57;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.testimonial-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-item:hover .stat {
  background: rgba(255, 255, 255, 0.2);
  border-color: #feca57;
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #feca57;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials CTA */
.testimonials-cta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-cta h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonials-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  color: #2d3748;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 30px rgba(254, 202, 87, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(254, 202, 87, 0.6);
  color: #2d3748;
}

.cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-secondary:hover {
  background: #ffffff;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.cta-btn-primary i,
.cta-btn-secondary i {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Responsive Design for Testimonials
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .testimonials .section-title h2 {
    font-size: 2.5rem;
  }
  
  .testimonial-item {
    padding: 25px;
  }
  
  .testimonials-cta {
    padding: 30px;
  }
  
  .testimonials-cta h3 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .testimonials .section-title h2 {
    font-size: 2rem;
  }
  
  .testimonial-item {
    padding: 20px;
  }
  
  .testimonials-cta {
    padding: 25px;
  }
  
  .testimonials-cta h3 {
    font-size: 1.8rem;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.team .container {
  position: relative;
  z-index: 2;
}

.team .section-title h2 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.team .section-title h2::after {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  width: 120px;
  height: 6px;
  border-radius: 3px;
}

.team .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
}

.team .row {
  margin-top: 50px;
}

.team .col-xl-4 {
  margin-bottom: 30px;
}

.team-member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #ff9ff3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-img {
  text-align: center;
  margin-bottom: 25px;
}

.member-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.team-member:hover .member-img img {
  border-color: #feca57;
  transform: scale(1.1);
}

.member-info {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.member-info h4 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.member-info span {
  color: #feca57;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.member-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Responsive Design for Team
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .team .section-title h2 {
    font-size: 2.5rem;
  }
  
  .team-member {
    padding: 25px;
  }
  
  .member-img img {
    width: 120px;
    height: 120px;
  }
  
  .member-info h4 {
    font-size: 1.2rem;
  }
  
  .member-info span {
    font-size: 0.9rem;
  }
  
  .member-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .team .section-title h2 {
    font-size: 2rem;
  }
  
  .team-member {
    padding: 20px;
  }
  
  .member-img img {
    width: 100px;
    height: 100px;
  }
  
  .member-info h4 {
    font-size: 1.1rem;
  }
  
  .member-info span {
    font-size: 0.85rem;
  }
  
  .member-description {
    font-size: 0.85rem;
  }
}
