/**
 * Elite CC - About Page Styles
 * Current Date and Time (UTC): 2025-07-20 05:02:37
 * Current User's Login: Bharat27-d
 */

/* ========== GENERAL STYLES ========== */
:root {
  --primary-color: #01ddff;
  --primary-dark: #00a8c6;
  --primary-light: #7aeeff;
  --accent-color: #0055a4;
  --accent-light: #2b7bbd;
  --bg-light: #f7fdff;
  --bg-medium: #e6f9fd;
  --text-dark: #003a54;
  --text-medium: #005f7f;
  --text-on-dark: #ffffff;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #f1f1f1;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --black: #1a1a1a;
  --overlay: rgba(0, 0, 0, 0.7);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--text-dark);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(1, 221, 255, 0.2);
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 221, 255, 0.3);
}

/* ========== UNIFIED HEADER ========== */
.unified-header {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: white;
}

.unified-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/ets2_20250324_192841_00.png');
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: 0;
}

.unified-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.unified-header .navbar,
.unified-header .hero,
.unified-header .container,
.navbar-info {
  position: relative;
  z-index: 10;
}

/* ========== NAVIGATION ========== */
.navbar {
  padding: 15px 0;
}

.unified-header .navbar {
  background-color: transparent;
  box-shadow: none;
  padding: 20px 0;
}

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

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

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
}

.nav-toggle span {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

.nav-truck-indicator {
  position: absolute;
  bottom: -15px;
  left: 0;
  opacity: 0;
  font-size: 1rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
  transform: translateX(-100%);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--primary-light);
}

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

.nav-link:hover .nav-truck-indicator, 
.nav-link.active .nav-truck-indicator {
  opacity: 1;
  transform: translateX(0);
}

/* ========== HERO SECTION ========== */
.unified-header .hero {
  height: calc(100vh - 150px);
  margin-top: 0;
  background: none;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 300;
  color: white;
}

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

/* ========== STORY SECTION ========== */
.story {
  background-color: var(--white);
  padding: 100px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 2.2rem;
  margin-top: 0;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.story-text h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.5s ease;
}

.story-text:hover h2:after {
  width: 100px;
}

.story-text p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.story-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(1, 221, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.story-image:hover:before {
  opacity: 1;
}

.story-image img {
  display: block;
  width: 100%;
  transition: transform 0.7s ease;
}

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

/* ========== MISSION SECTION ========== */
.mission {
  background-color: var(--bg-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 25% 25%, rgba(1, 221, 255, 0.03) 0%, transparent 15%),
      radial-gradient(circle at 75% 75%, rgba(1, 221, 255, 0.03) 0%, transparent 15%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(1, 221, 255, 0.15);
}

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

.mission-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(1, 221, 255, 0.2);
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: rotateY(180deg);
}

.mission-icon i {
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon i {
  transform: rotateY(180deg);
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.mission-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.mission-card:hover h3::after {
  width: 100%;
}

.mission-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.mission-card:hover p {
  color: #333;
}

/* ========== TEAM SECTION ========== */
.team {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(1, 221, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(1, 221, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Team Cards CSS */
.team-cards-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 280px));
    gap: 30px;
    justify-content: center;
    max-width: 900px; /* Controls the overall width of the cards container */
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(1, 221, 255, 0.15);
}

.card-image {
    width: 100%;
    height: 260px;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.crown-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.card-info {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.card-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.card-info .position {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .team-cards {
        grid-template-columns: repeat(3, minmax(200px, 260px));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .team-cards {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .team-cards {
        grid-template-columns: minmax(260px, 1fr);
        gap: 30px;
    }
}
/* Legacy team member styles - keeping for backward compatibility */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(1, 221, 255, 0.15);
}

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

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.member-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member:hover .member-image::after {
  opacity: 1;
}

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

.member-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}

.team-member:hover .member-info::before {
  width: 50px;
}

.member-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.member-info .position {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-info .bio {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.team-member:hover .member-info .bio {
  color: #444;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.social-links a i {
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2);
}

/* ========== TIMELINE SECTION ========== */
.timeline {
  padding: 80px 0;
  background-color: var(--bg-light);
  position: relative;
}

.timeline .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
}

.timeline .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.timeline-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #e0e0e0;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn 0.8s ease forwards;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(1, 221, 255, 0.1);
}

.timeline-date {
  position: absolute;
  top: 13px;
  left: calc(50% - 80px);
  width: 70px;
  text-align: right;
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}

.timeline-content {
  width: calc(50% - 40px);
  margin-left: auto;
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* ========== CTA SECTION ========== */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern.png');
  opacity: 0.1;
  pointer-events: none;
}

.cta h2 {
  font-size: 2.5rem;
  margin: 0 0 20px;
  animation: fadeInDown 1s ease;
}

.cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.cta .btn {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  animation: pulse 2s infinite;
}

.cta .btn:hover {
  background-color: #f1f1f1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER ========== */
.footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 60px 0 30px;
  position: relative;
  font-family: 'Inter', 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      linear-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: rotate(5deg);
}

.footer-logo h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 10px;
  color: #fff;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.footer-links:hover h4,
.footer-contact:hover h4,
.footer-social:hover h4 {
  border-color: var(--primary-color);
}

.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.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

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

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  align-items: flex-start;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--primary-color);
}

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

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 10px 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

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

/**
 * Elite CC - Feedback CTA Section
 * Current Date and Time (UTC): 2025-07-20 05:02:37
 * Current User's Login: Bharat27-d
 */

.feedback-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fdff 0%, #e6f9fd 100%);
    position: relative;
    overflow: hidden;
}

/* Dynamic background pattern */
.feedback-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(1, 221, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(1, 221, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Animated truck silhouettes in background */
.feedback-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 60px;
    background-image: url('../images/truck-silhouette.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.05;
    animation: driveAcross 60s linear infinite;
    z-index: 1;
}

@keyframes driveAcross {
    0% {
        transform: translateX(-300px) scale(0.8);
    }
    100% {
        transform: translateX(calc(100vw + 300px)) scale(0.8);
    }
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cta-icon {
    margin-bottom: 25px;
}

.cta-icon i {
    font-size: 3rem;
    color: #01ddff;
    background: linear-gradient(135deg, #01ddff 0%, #7aeeff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cta-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #01ddff, #7aeeff);
    border-radius: 3px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background-color: #01ddff;
    color: white;
    box-shadow: 0 5px 15px rgba(1, 221, 255, 0.3);
}

.btn-primary:hover {
    background-color: #00b8d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 221, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #01ddff;
    border: 2px solid #01ddff;
}

.btn-secondary:hover {
    background-color: rgba(1, 221, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(1, 221, 255, 0.1);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-radius: 50px;
    display: inline-flex;
}

.cta-note i {
    color: #01ddff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .feedback-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 40px 25px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-note {
        flex-direction: column;
        padding: 15px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .feedback-cta {
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
}

/* ========== 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 fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ========== FADE IN ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE STYLES ========== */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .story-content {
    gap: 80px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .section {
    padding: 70px 0;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .mission-icon {
    width: 80px;
    height: 80px;
  }
  
  .mission-icon i {
    font-size: 2rem;
  }
  
  .footer-content {
    gap: 30px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }
  
  .story, .mission, .team {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .story-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .story-text, .story-image {
    width: 100%;
  }
  
  .mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .team-grid, 
  .team-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  
  .cta h2 {
    font-size: 2.2rem;
  }
  
  .cta p {
    font-size: 1.1rem;
  }
}

/* Mobile Navigation - Tablet and below */
@media (max-width: 991px) {
  .navbar .container {
    padding-top: 0;
  }
  
  .nav-toggle {
    display: flex;
    position: relative;
    top: 0;
    right: 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 99;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .story-text h2 {
    font-size: 1.8rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .team-grid,
  .team-cards {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-info h3 {
    font-size: 1.4rem;
  }
  
  .member-image {
    height: 220px;
  }
  
  /* Timeline adjustments */
  .timeline-container::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-date {
    left: 70px;
    top: -25px;
    width: auto;
    text-align: left;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .cta p {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 15px;
    justify-content: center;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  .section {
    padding: 40px 0;
  }
  
  .unified-header {
    height: auto;
    min-height: 100vh;
  }
  
  .unified-header .hero {
    height: auto;
    min-height: calc(100vh - 80px);
  }
  
  .hero-content {
    padding: 40px 15px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .story-text p, 
  .timeline-content p,
  .mission-card p {
    font-size: 0.95rem;
  }
  
  .mission-icon {
    width: 70px;
    height: 70px;
  }
  
  .mission-icon i {
    font-size: 1.8rem;
  }
  
  .mission-card h3 {
    font-size: 1.3rem;
  }
  
  .team-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .cta {
    padding: 50px 0;
  }
  
  .cta h2 {
    font-size: 1.6rem;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-logo img {
    width: 60px;
    height: 60px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Fix for Safari and iOS */
@supports (-webkit-touch-callout: none) {
  .unified-header {
    background-attachment: scroll;
  }
}