:root {
  /* Color System */
  --bg-dark: #010622;
  --bg-darker: #000318;
  --primary: #4cc9f0;
  --primary-hover: #3aa8d8;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);

    --section-padding: 5rem 0;
  --card-radius: 1rem;
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  
  /* Spacing */
  --section-padding: 6rem 0;
  --container-width: min(90%, 1200px);
  
  /* Typography */
  --font-base: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', var(--font-base);
  
  /* Effects */
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Base Styles */
body {
  font-family: var(--font-base);
  background-color: var(--bg-dark);
  color: var(--text-light);
    font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

.nav {
  position: fixed;
  top: 20px; 
  left: 50%;
  transform: translateX(-50%);
  width: 90%; 
  max-width: 1000px; 
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 50, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: var(--transition);
}


.nav.scrolled {
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-heading);
  color: var(--text-light);
}
.brand-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
}

/* Hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
}

/* Dropdown menu (hidden by default) */
.menu {
  position: absolute;
  top: 70px; /* just below header */
  right: 20px;
  background: var(--bg-darker);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  min-width: 160px;
}
.menu.active {
  display: flex;
}
.menu a {
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 0;
  transition: var(--transition);
  font-family: var(--font-base);
}
.menu a.active {
  color: var(--primary);
}
.menu a:hover {
  color: var(--text-light);
}

/* Contact button inside menu */
.btn-contact {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-contact:hover {
  background: var(--primary-hover);
  color: var(--text-light);
}

@media (min-width: 1001px) {
  .menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: auto;
  }
  .menu a, .btn-contact {
    margin: 0 12px;
    color: var(--text-light);
  }
  .btn-contact {
    background: var(--primary);
    color: var(--bg-dark);
  }
  .btn-contact:hover {
    background: var(--primary-hover);
    color: var(--text-light);
  }
  .hamburger {
    display: none;
  }
}
/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding: var(--section-padding);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 6, 34, 0.9) 0%, rgba(1, 6, 34, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container-width);
  margin: 0 auto;
}

.hero-text {
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--text-light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.company-name {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #3aa8d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 600px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--bg-dark);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}


@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text > * {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.4s; }
.btn-cta { animation-delay: 0.6s; }

#services {
  padding: var(--section-padding);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
  z-index: -1;
}

#services h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#services p.text-center {
  max-width: 700px;
  margin-inline: auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(76, 201, 240, 0.1);
  border-radius: var(--card-radius);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow);
  border-color: rgba(76, 201, 240, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}
.whatweoffer{
  height: 40px;
}
.service-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .icon {
  width: 70px;
  height: 70px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  background: rgba(76, 201, 240, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover .icon {
  background: rgba(76, 201, 240, 0.2);
  transform: scale(1.1);
}

.service-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.service-card .card-text {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  opacity: 0.8;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  align-self: center;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--card-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .service-card .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .service-card {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* Animation styles */
[data-aos] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
  opacity: 0;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
}

[data-aos].aos-animate {
  transform: translateY(0);
  opacity: 1;
}
/* About Us Section */
#about {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.1) 0%, transparent 70%);
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#about h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

#about p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#about img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

#about img:hover {
  transform: scale(1.02);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border: none;
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  #about .row {
    gap: 3rem;
  }
  
  #about img {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }
  
  .btn-group .btn {
    width: 100%;
    text-align: center;
  }
  
  .project-card {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
}

/* Animations */
[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  transform: translate(0) scale(1);
  opacity: 1;
}

:root {
  --project-card-bg: rgba(10, 14, 46, 0.7);
  --project-card-border: rgba(255, 255, 255, 0.1);
  --project-card-hover-border: rgba(76, 201, 240, 0.4);
  --project-img-height: 220px;
  --project-img-width: 150px;
  --project-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#projects {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #010622, #000318);
  overflow: hidden;
}

#projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(76, 201, 240, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(76, 201, 240, 0.1) 0%, transparent 30%);
  z-index: 0;
}

#projects .container {
  position: relative;
  z-index: 1;
}

#projects h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#projects p.text-center {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.project-card {
  background: var(--project-card-bg);
  border: 1px solid var(--project-card-border) !important;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--project-transition);
  height: 100%;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--project-transition);
  z-index: -1;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--project-card-hover-border) !important;
}

.project-card:hover::before {
  opacity: 1;
}

.card-img-top {
  height: var(--project-img-height);
  width: 100%;
  object-fit: cover;
  transition: var(--project-transition);
}

.project-card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - var(--project-img-height));
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-outline-primary {
  align-self: flex-start;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--project-transition);
  margin-top: auto;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--project-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Animations */
[data-aos="fade-down"] {
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  transform: translate(0) scale(1);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  :root {
    --project-img-height: 200px;
  }
  
  .project-card {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  #projects {
    padding: 4rem 0;
  }
  
  :root {
    --project-img-height: 180px;
  }
  
  .btn-outline-primary,
  .btn-outline-light {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Profile Section Styles */
#profile {
    position: relative;
    overflow: hidden;
}

#profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.profile-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.profile-badge {
    transform: translateY(50%);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
    white-space: nowrap;
}

.quick-facts {
    background: rgba(10, 14, 46, 0.7);
    border: 1px solid rgba(76, 201, 240, 0.2);
    backdrop-filter: blur(10px);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(76, 201, 240, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 1rem;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: rgba(10, 14, 46, 0.5);
    border-left: 3px solid #4cc9f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-item .progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.skill-item .progress-bar {
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-image-container {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .quick-facts {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .profile-badge h5 {
        font-size: 1rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}
/* Enhanced Profile Card Styles */
.profile-card {
    border: 1px solid rgba(76, 201, 240, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.4);
}

.profile-card img {
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 201, 240, 0.3);
}

.profile-details h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    padding-bottom: 0.3rem;
}

.profile-details p.small {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

/* Skills Badges */
.badge.bg-primary-transparent {
    background-color: rgba(76, 201, 240, 0.15);
    color: #4cc9f0;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 4px;
}

/* Availability Dot */
.availability-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.availability-dot.available {
    background-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* Contact Button */
.btn.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-card img {
        width: 90px;
    }
}
.top-gap{
  margin-top: 30px;
}
.text-muted{
  color: #8a8a8a !important;
}


/* ===== Section Background with Gradient ===== */
.testimonials {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  padding: var(--section-padding);
  color: var(--text-light);
  font-family: var(--font-base);
  text-align: center;
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonials p.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* ===== Testimonial Card Styling ===== */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.testimonial-col {
  flex: 1 1 300px;
  max-width: 350px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* ===== Client Image ===== */
.client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(76, 201, 240, 0.6);
}

/* ===== Testimonial Text ===== */
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ===== Stars ===== */
.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ===== Client Name ===== */
.testimonial-card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
}

.testimonial-card h6 span {
  font-weight: 700;
}

/* ===== Scroll Animation ===== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.testimonial-card[data-animate="true"] {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #010622, #000318);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(76, 201, 240, 0.1) 0%, transparent 30%);
  z-index: 0;
}

footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4cc9f0, #3aa8d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

footer p.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
  max-width: 300px;
}
.col-md-6 small, li {
  color: rgba(139, 139, 139, 0.7) !important;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #4cc9f0;
  transform: translateY(-3px);
}

footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #4cc9f0 !important;
}

footer ul.list-unstyled li {
  margin-bottom: 0.75rem;
}

footer ul.list-unstyled a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

footer ul.list-unstyled a:hover {
  color: #4cc9f0 !important;
  padding-left: 5px;
}

footer ul.list-unstyled li i {
  width: 20px;
  text-align: center;
}

.form-control.bg-dark {
  background-color: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.form-control.bg-dark::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.btn-outline-primary {
  border: 2px solid #4cc9f0;
  color: #4cc9f0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #4cc9f0;
  color: #010622;
}

hr.border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  footer .row > div {
    margin-bottom: 2rem;
  }
  
  footer p.text-muted {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-brand h4 {
    font-size: 1.3rem;
  }
  
  footer h5 {
    font-size: 1.1rem;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer > * {
  animation: fadeIn 0.6s ease-out forwards;
}


  :root {
    --bot-primary: #4cc9f0; /* fallback if --primary not in main CSS */
    --bot-primary-hover: #38bdf8;
    --bot-bg: #0f172a;
    --bot-text: #f1f5f9;
    --bot-radius: 1rem;
    --bot-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--bot-primary);
    color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--bot-shadow);
    z-index: 9999;
    transition: background 0.3s ease;
  }
  .chat-toggle:hover { background: var(--bot-primary-hover); }

  .chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: min(90%, 360px);
    max-height: 75vh;
    display: none;
    flex-direction: column;
    background: var(--bot-bg);
    color: var(--bot-text);
    border-radius: var(--bot-radius);
    box-shadow: var(--bot-shadow);
    z-index: 10000;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }
  .chat-window.open { display: flex; }

  .chat-header {
    background: var(--bot-primary);
    color: #fff;
    padding: 10px 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .chat-body {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    font-size: 14px;
  }
  .chat-footer {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .chat-footer textarea {
    flex: 1;
    padding: 10px;
    background: #1e293b;
    color: var(--bot-text);
    border: none;
    outline: none;
    resize: none;
  }
  .chat-footer button {
    background: var(--bot-primary);
    color: #fff;
    padding: 0 14px;
    border: none;
    cursor: pointer;
  }
#chatBody a {
  color: #4cc9f0 !important;
  font-weight: bold;
  text-decoration: none;
}

#chatBody a:hover {
  text-decoration: underline;
  color: #0096c7 !important;
}