/* index.css - Red and White Theme for Shibotics Lab - Door-to-Door Advertising */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary: #dc2626; /* Vibrant red */
  --primary-dark: #b91c1c; /* Darker red for depth */
  --secondary: #ffffff; /* Clean white */
  --accent: #ef4444; /* Brighter red for highlights */
  --dark: #0f0f0f;
  --dark-gray: #1a1a1a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--primary));
  --card-gradient: linear-gradient(135deg, #ffffff, #fef2f2);
  --text-dark: #1f2937;
}

body {
  background-color: var(--primary); /* Changed from var(--white) to red */
  color: var(--white); /* Changed from var(--text-dark) to white */
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(220, 38, 38, 0.95); /* Changed to red with transparency */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

header.scrolled {
  padding: 15px 0;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
  background: rgba(220, 38, 38, 0.98); /* Changed to red with transparency */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  position: relative;
}

.logo img {
  width: 160px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

/* .logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-gray);
  transition: width 0.3s ease;
} */

.logo:hover::after {
  width: 100%;
}

.menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
  color: var(--white); /* Changed from var(--text-dark) to white */
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 8px 0;
}

.menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-gray);
  transition: width 0.3s ease;
}

.menu ul li a:hover::before,
.menu ul li a.active::before {
  width: 100%;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: var(--white); /* Changed from var(--primary) to white */
}

.readmore_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn_1 {
  display: inline-block;
  padding: 14px 32px;
  background: var(--light-gray);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 55, 55, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn_1:hover::before {
  left: 100%;
}

.btn_1:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.bar-icon {
  display: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  color: var(--light-gray);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  border-radius: 8px;
}

.bar-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

/* Hero Section - Updated for Advertising */
.hero_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background: var(--primary-dark);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero_section .container {
  position: relative;
  z-index: 2;
}

.hero-box {
  position: relative;
  z-index: 2;
}

.hero_section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Ensure content stays above everything */
.hero_section .container {
  position: relative;
  z-index: 3;
}

.hero-box {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.animated-title {
  margin-bottom: 30px;
}

.word {
  display: inline-block;
  overflow: hidden;
}

.word span {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  background: var(--light-gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bounceIn 1s ease-out;
  animation-delay: calc(0.1s * var(--i));
  transform-origin: bottom;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  70% {
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.8;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-btn {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.cta-btn.secondary {
  background: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: slideInRight 1s ease-out;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  backdrop-filter: blur(10px);
  animation: float3D 6s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.element:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
}

.element img {
  width: 35px;
  height: 35px;
  filter: brightness(0.8);
}

@keyframes float3D {
  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  33% {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
  }
  66% {
    transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg);
  }
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.element-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

.element-4 {
  bottom: 15%;
  right: 20%;
  animation-delay: 3s;
}

.element-5 {
  top: 50%;
  right: 5%;
  animation-delay: 4s;
}

.main-hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  animation: floatPulse 4s ease-in-out infinite;
}

.main-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.2));
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -52%) scale(1.05) rotate(2deg);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--light-gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--light-gray);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Breadcrumb Section */
.about_breadcrumb {
  background: var(--primary); /* Changed from gradient to red */
  padding: 100px 0 60px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.about_breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.breadcrump_content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrump_content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins", sans-serif;
}

.breadcrump_content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrump_content ul li {
  color: var(--white); /* Changed from var(--text-dark) to white */
  font-weight: 600;
}

.breadcrump_content ul li a {
  color: var(--white); /* Changed from var(--primary) to white */
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrump_content ul li a:hover {
  color: rgba(255, 255, 255, 0.8); /* Changed from var(--primary-dark) to white */
}

/* About Section - Updated for Advertising Team */
.about-section {
  padding: 100px 0;
  background: var(--primary); /* Changed from var(--white) to red */
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

.about_img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.about_img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.2);
}

.about_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
}

.about_img:hover img {
  transform: scale(1.05);
}

.about-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  line-height: 1.3;
}

.about-content h3 span {
  background: var(--light-gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.feature-list li {
  position: relative;
  padding: 15px 0 15px 40px;
  margin-bottom: 15px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  font-size: 1.1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 25px;
  height: 25px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Roadmap Section - Updated for Advertising Process */
.roadmap-section {
  background: var(--primary); /* Changed from gradient to red */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

.roadmap-row {
  position: relative;
}

.roadmap-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--light-gray);
  border-radius: 2px;
}

.roadmap-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.roadmap-box {
  position: relative;
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.roadmap-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.roadmap-icon {
  width: 90px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.roadmap-box:hover .roadmap-icon {
  transform: scale(1.1) rotate(10deg);
}

.roadmap-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.roadmap-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.roadmap-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-content ul li {
  position: relative;
  padding: 8px 0 8px 20px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.8;
  line-height: 1.5;
}

.roadmap-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--white); /* Changed from var(--primary) to white */
  font-weight: bold;
  font-size: 1.2rem;
}

/* Values Section */
.service-card {
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  transition: left 0.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.service-card p {
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

/* Subscribe Section */
.subscribe-section {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.subscribe-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.subscribe-image {
  text-align: center;
  position: relative;
  z-index: 2;
}

.subscribe-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.subscribe-content {
  position: relative;
  z-index: 2;
  color: white;
}

.subscribe-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.subscribe-content h3 span {
  color: rgba(255, 255, 255, 0.9);
}

.subscribe-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form {
  max-width: 500px;
}

.newsletter-form form {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  padding: 15px 35px;
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: var(--white); /* Changed from var(--white) to darker red */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  transition: left 0.3s ease;
}

.stat:hover::before {
  left: 0;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.stat h4 {
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat p {
  font-size: 1rem;
  margin: 0;
  color: var(--text-dark); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  font-weight: 600;
}

.mission-highlights {
  margin-top: 50px;
}

.highlight {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 15px;
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--white);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.highlight:hover::before {
  transform: scaleY(1);
}

.highlight:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.highlight i {
  font-size: 2.5rem;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
  flex-shrink: 0;
}

.highlight-content h5 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white); /* Changed from var(--text-dark) to white */
}

.highlight-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  line-height: 1.6;
}

.about_img {
  position: relative;
  animation: fadeInRight 1s ease;
}

.about_img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.about_img:hover img {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}

/* Services Section - Updated for Advertising */
.services-hero-section {
  padding: 80px 0;
  background: var(--primary); /* Changed from gradient to red */
  position: relative;
  overflow: hidden;
}

.services-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.services-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.services-hero-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.2);
}

.services-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
}

.services-hero-image:hover img {
  transform: scale(1.05);
}

.services-hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  line-height: 1.3;
}

.services-hero-content h2 span {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.8;
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.highlight-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.highlight-content h5 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  font-weight: 700;
}

.highlight-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  line-height: 1.6;
}

/* Services Section - Enhanced for Advertising */
.services-section {
  padding: 100px 0;
  background: var(--primary); /* Changed from var(--white) to red */
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

/* Service Cards with Images */
.service-card {
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  margin-bottom: 30px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  opacity: 0.05;
  transition: left 0.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 3px solid var(--white);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.service-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  position: relative;
  z-index: 2;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}

.service-link {
  color: var(--white); /* Changed from var(--primary) to white */
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}

.service-link:hover {
  gap: 12px;
  color: rgba(255, 255, 255, 0.8); /* Changed from var(--primary-dark) to white */
}

.service-link i {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Benefits Section */
.services-section[style*="background-color: #f8f9fa"] {
  background: var(--primary) !important; /* Changed to red */
}

.services-section[style*="background-color: #f8f9fa"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

/* Technology/Approach Section for Services */
.technology-section {
  padding: 100px 0;
  background: var(--primary); /* Changed from gradient to red */
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

.tech-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  line-height: 1.3;
}

.tech-content h3 span {
  background: var(--light-gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.8;
}

.tech-features {
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 15px;
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--white);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature:hover::before {
  transform: scaleY(1);
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.feature i {
  font-size: 1.8rem;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.feature h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white); /* Changed from var(--text-dark) to white */
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.7;
  line-height: 1.6;
}

.tech-visual {
  position: relative;
  animation: fadeInRight 1s ease;
}

.tech-graphic {
  position: relative;
  width: 100%;
  height: 400px;
}

.tech-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.2));
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: var(--primary); /* Changed from gradient to red */
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.08);
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
  border-color: var(--white); /* Changed from var(--primary) to white */
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--white); /* Changed from var(--text-dark) to white */
  font-weight: 600;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--white); /* Changed from var(--primary) to white */
  transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--white); /* Changed from var(--text-dark) to white */
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--primary);
  padding: 80px 0 0;
  color: var(--white);
}

.footer_logo img {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer_logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.quick_links h5 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--white);
}

.quick_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick_links ul li {
  margin-bottom: 12px;
}

.quick_links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.quick_links ul li a:hover {
  color: var(--white);
  padding-left: 5px;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 60px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(220, 38, 38, 0.2);
  border-left: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15);
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Sidebar Styles - Fixed */
.sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: var(--primary); /* Changed from var(--white) to red */
  z-index: 1002;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(220, 38, 38, 0.15);
  border-left: 1px solid rgba(220, 38, 38, 0.1);
}

.sidebar.open {
  right: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.overlay.show {
  display: block;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-header img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.close_sider {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: all 0.3s ease;
  border: none;
}

.close_sider:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.sibde_links {
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.sibde_links li {
  margin-bottom: 15px;
  list-style: none;
}

.sibde_links li a {
  color: var(--white); /* Changed from var(--text-dark) to white */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.sibde_links li a:hover,
.sibde_links li a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.contact-sidbar {
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.contact-sidbar h3 {
  color: var(--white); /* Changed from var(--primary) to white */
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.contact-sidbar li {
  margin-bottom: 15px;
  list-style: none;
}

.contact-sidbar li a {
  color: var(--white); /* Changed from var(--text-dark) to white */
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  line-height: 1.4;
  padding: 8px 0;
}

.contact-sidbar li a:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.contact-sidbar li a i {
  width: 20px;
  text-align: center;
  margin-top: 2px;
  color: var(--white); /* Changed from var(--primary) to white */
}

.sidebar .header_btn {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar .header_btn a {
  display: block;
  text-align: center;
  background: var(--gradient);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sidebar .header_btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.sidebar .header_btn a:last-child {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.sidebar .header_btn a:last-child:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

/* Chatbot Styles - Fixed */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

.chatbot-toggle {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid var(--white);
  position: relative;
  overflow: hidden;
}

.chatbot-toggle::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;
}

.chatbot-toggle:hover::before {
  left: 100%;
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.chatbot-toggle i {
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.chatbot-window {
  position: absolute;
  bottom: 90px;
  right: 0;
  width: 380px;
  height: 480px;
  background: var(--primary); /* Changed from var(--white) to red */
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-window.active {
  display: flex;
  transform: scale(1);
  opacity: 1;
}

.chatbot-header {
  background: var(--gradient);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--primary-dark); /* Changed from #f8fafc to darker red */
}

.message {
  max-width: 85%;
  padding: 15px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  background: var(--primary-dark); /* Changed from var(--white) to darker red */
  color: var(--white); /* Changed from var(--text-dark) to white */
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.user-message {
  background: var(--gradient);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
}

.chatbot-input {
  display: flex;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--primary); /* Changed from var(--white) to red */
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.chatbot-input input:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.chatbot-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.chatbot-input button {
  background: var(--gradient);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.chatbot-input button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.faq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.faq-option {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  color: var(--white);
  text-align: left;
  font-family: "Montserrat", sans-serif;
}

.faq-option:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.input-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  font-style: italic;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
  .sidebar {
    width: 300px;
    right: -320px;
  }

  .chatbot-window {
    width: 320px;
    height: 500px;
    right: -10px;
  }

  .chatbot-container {
    bottom: 20px;
    right: 20px;
  }

  .chatbot-toggle {
    width: 60px;
    height: 60px;
  }

  .chatbot-toggle i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sidebar {
    width: 280px;
    right: -300px;
  }

  .chatbot-window {
    width: calc(100vw - 40px);
    right: 20px;
  }
}

/* Hide sidebar login button on desktop */
@media (min-width: 992px) {
  .sidebar .header_btn {
    display: none;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
}

.contact-info {
  background: var(--primary-dark); /* Changed from #a9a9a9 to darker red */
  padding: 40px;
  border-radius: 10px;
  height: 100%;
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-content h5 {
  margin-bottom: 5px;
  color: var(--white); /* Changed from var(--dark-color) to white */
}

.contact-form {
  background: var(--primary-dark); /* Changed from white to darker red */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white); /* Changed from var(--dark-color) to white */
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--white);
}

.map-section {
  padding: 80px 0;
  background-color: var(--primary); /* Changed from #f8f9fa to red */
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-media {
  margin-top: 30px;
}

.social-media h5 {
  margin-bottom: 15px;
  color: var(--white); /* Changed from var(--dark-color) to white */
}

/* Partners Section Styles */
.partners-section {
    padding: 80px 0;
    background-color: var(--primary); /* Changed from #fff to red */
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white); /* Changed from #333 to white */
}

.partners-section .section-header h2 span {
    color: var(--white); /* Changed from var(--primary-color) to white */
}

.partners-section .section-header p {
    color: var(--white); /* Changed from #666 to white */
    max-width: 600px;
    margin: 0 auto;
}

/* Partners Slider */
.partners-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.partner-slide {
    flex: 0 0 100%;
    padding: 20px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 15px;
}

.partner-item {
    /* background: #f8f9fa; */
    /* border-radius: 10px; */
    /* padding: 20px; */
    text-align: center;
    /* box-shadow: 0 3px 10px rgba(0,0,0,0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.12); */
}

.partner-logo {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.partner-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.partner-logo a:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

.partner-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white); /* Changed from #333 to white */
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.partner-sub-list > li {
    margin-bottom: 8px;
}

.partner-sub-list > li > strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white); /* Changed from var(--primary-color) to white */
    font-size: 0.9rem;
    line-height: 1.3;
}

.partner-sub-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-sub-list ul li {
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.8); /* Changed from #666 to white */
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white); /* Changed from var(--primary-color) to white */
    color: var(--primary); /* Changed from white to red */
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.slider-nav:hover {
  color: var(--white); /* Changed from white to white */
    background: var(--primary); /* Changed from var(--primary) to red */
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-nav i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Changed from rgb(201, 200, 200) to white */
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--white); /* Changed from var(--gradient) to white */
}