:root {
  --primary-dark: #0F2027;
  --primary-medium: #203A43;
  --primary-light: #2C5364;
  --accent-cyan: #00d4ff;
  --accent-blue: #2196f3;
  --accent-purple: #6a11cb;
  --text-light: #f8f9fa;
  --text-gray: #adb5bd;
  --shadow-light: rgba(0, 212, 255, 0.1);
  --shadow-medium: rgba(33, 150, 243, 0.15);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.navbar {
  background-color: rgba(15, 32, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.navbar-logo{
    height: 50px;
    width: auto;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light) !important;
  letter-spacing: 0.5px;
}

.navbar-brand span {
  color: var(--accent-cyan);
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-cyan) !important;
  background-color: rgba(0, 212, 255, 0.1);
}

.dropdown-menu {
  background-color: rgba(15, 32, 39, 0.98);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  color: var(--text-light);
  padding: 0.7rem 1.5rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
}

.contact-info {
  display: flex;
  align-items: center;
  color: var(--text-light);
  margin-right: 1.5rem;
}

.contact-info i {
  color: var(--accent-cyan);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.cta-button {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  color: white;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
  color: white;
}



/* .hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: -2;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.85) 0%, rgba(32, 58, 67, 0.8) 50%, rgba(44, 83, 100, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding-top: 5rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
} */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0b1f2a;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 25, 35, 0.9),
        rgba(8, 25, 35, 0.65)
    );
    z-index: 2;
}

/* Content */
.hero-section .container {
    position: relative;
    z-index: 3;
}
.hero-image {
    background: url('../assets/images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-content {
    max-width: 650px;
    color: #fff;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #d0e8f2;
    margin-bottom: 30px;
}

.hero-buttons .btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  border: none;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  color: white;
  display: inline-block;
}

.section-title span {
  color: var(--accent-cyan);
}

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

.section-padding {
  padding: 5rem 0;
}

.about-section {
  background-color: var(--primary-dark);
}

.about-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.features-section {
  background-color: #0a1929;
}

.feature-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.services-section {
  background-color: var(--primary-dark);
}

.service-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: white;
  transform: translateX(5px);
}

.clients-section {
  /* background-color: #0a1929; */
  background-color: #647073;
  padding: 4rem 0;
}

.clients-container {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.clients-track {
  display: flex;
  animation: scroll 25s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  width: 180px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) brightness(0.9);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.client-logo:hover {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
}

@keyframes scroll{


    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }


}

.about-hero {
  background: linear-gradient(rgba(15, 32, 39, 0.9), rgba(15, 32, 39, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

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

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-gray);
}

.our-story {
  background-color: var(--primary-dark);
}

.story-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.4rem;
  top: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 3px solid var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
}

.timeline-year {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.founder-section {
  background-color: #0a1929;
}

.founder-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.founder-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--accent-cyan);
  margin: 0 auto 2rem;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.founder-quote {
  font-style: italic;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--text-gray);
}

.values-section {
  background-color: var(--primary-dark);
}

.value-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 1.5rem;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
}

.team-section {
  background-color: #0a1929;
}

.team-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-cyan);
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.stats-section {
  background: linear-gradient(rgba(15, 32, 39, 0.9), rgba(15, 32, 39, 0.9)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
  background-color: var(--primary-dark);
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-text {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.9) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.service-hero {
  background: linear-gradient(rgba(15, 32, 39, 0.9), rgba(15, 32, 39, 0.9)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

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

.service-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-hero p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-title.center {
  text-align: center;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.overview-section {
  background-color: var(--primary-dark);
}

.overview-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-grid-section {
  background-color: #0a1929;
}

.service-feature-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.benefits-section {
  background-color: var(--primary-dark);
}

.benefit-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 1.5rem;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.tech-stack-section {
  background-color: #0a1929;
}

.tech-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

.tech-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: grayscale(1) brightness(0.9);
  transition: all 0.3s ease;
}

.tech-card:hover .tech-logo {
  filter: grayscale(0) brightness(1.2);
}

.process-section {
  background-color: var(--primary-dark);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  z-index: 1;
}

.case-studies-section {
  background-color: #0a1929;
  padding: 5rem 0;
}

.case-study-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.case-study-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.case-study-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.faq-section {
  background-color: #0a1929;
  padding: 5rem 0;
}

.accordion-button {
  background-color: rgba(32, 58, 67, 0.5);
  color: white;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
  border-color: var(--accent-cyan);
}

.accordion-body {
  background-color: rgba(15, 32, 39, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-top: none;
  color: var(--text-gray);
}

.testimonials-section {
  background-color: var(--primary-dark);
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  height: 100%;
  margin: 1rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-cyan);
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
}

.stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-section {
  background-color: #0a1929;
  padding-bottom: 0;
}

.contact-form {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
  color: white;
}

.form-control:focus::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  height: 100%;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail i {
  color: var(--accent-cyan);
  font-size: 1.3rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.map-section {
  width: 100%;
  padding: 0;
  margin-top: 3rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.map-container {
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: 400px;
  border: none;
  box-shadow: none;
}

.footer {
  background-color: var(--primary-dark);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

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

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--accent-cyan);
}

.footer-links h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  font-size: 0.9rem;
}

@keyframes fadeInUp{


    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }


}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.testimonials-hero-section {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.85) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

.testimonials-hero-content {
  max-width: 800px;
}

.testimonials-hero-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-gray);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.testimonials-main-section {
  padding: 5rem 0;
  background-color: #0a1929;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(0, 212, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.client-details h5 {
  color: white;
  margin-bottom: 0.3rem;
}

.client-details p {
  color: var(--text-gray);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.video-testimonials-section {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.video-testimonial-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.video-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

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

.video-testimonial-card:hover .video-container img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 212, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: var(--accent-cyan);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
  padding: 1.5rem;
}

.clients-logo-section {
  padding: 4rem 0;
  /* background-color: #0a1929; */
  background-color: var(--text-gray);
}

.client-logo-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(1) brightness(0.9);
  transition: all 0.4s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0) brightness(1.2);
}

.testimonial-filter {
  margin-bottom: 3rem;
  text-align: center;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.testimonials-cta-section {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.9) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
}

.testimonials-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-hero-section {
  position: relative;
  height: 50vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.85) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}
.contact-hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.contact-hero-content {
     max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.contact-hero-content .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}
.contact-hero-content .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.contact-hero-content .breadcrumb-item {
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-hero-content .breadcrumb-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-hero-content .breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-hero-content .breadcrumb-item.active {
    color: var(--text-light);
}

.contact-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-gray);
    content: "/";
}
.contact-main-section {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.contact-form-container {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
}

.form-label {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.contact-detail-icon {
  color: var(--accent-cyan);
  font-size: 1.3rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.contact-detail-content h5 {
  color: white;
  margin-bottom: 0.3rem;
}

.contact-detail-content p {
  color: var(--text-gray);
  margin-bottom: 0;
}

.faq-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background-color: rgba(0, 212, 255, 0.05);
}

.faq-header h5 {
  margin-bottom: 0;
  color: white;
}

.faq-header i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-body.show {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.contact-cta-section {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.9) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
}

.contact-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.server-types-section {
  background-color: #0a1929;
}

.server-type-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.server-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.server-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.server-type-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.server-specs {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.server-specs li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.server-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.virtualization-section {
  background-color: #0a1929;
}

.virtualization-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.comparison-section {
  background-color: var(--primary-dark);
}

.comparison-table {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.table-header {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  color: white;
  padding: 1.5rem;
  font-weight: 600;
}

.table-row {
  display: flex;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

.feature-name {
  flex: 2;
  font-weight: 500;
}

.feature-value {
  flex: 1;
  text-align: center;
}

.check-icon {
  color: var(--accent-cyan);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-icon-small {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.infrastructure-section {
  background-color: var(--primary-dark);
}

.component-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.component-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

.component-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
}

.tier-standards-section {
  background-color: #0a1929;
}

.tier-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.tier-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  color: white;
  padding: 0.5rem 1.5rem;
  border-bottom-left-radius: 15px;
  font-weight: 700;
}

.tier-specs {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.tier-specs li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.tier-specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.colocation-section {
  background-color: var(--primary-dark);
}

.colocation-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.tech-partners-section {
  background-color: #0a1929;
}

.stat-item-small {
  text-align: center;
}

.stat-value-small {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.storage-types-section {
  background-color: #0a1929;
}

.storage-type-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.storage-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.storage-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.storage-type-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.storage-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.storage-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.storage-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.solutions-section {
  background-color: var(--primary-dark);
}

.solution-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.solution-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.solution-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.data-management-section {
  background-color: #0a1929;
}

.management-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.management-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.management-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.management-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.cross-icon {
  color: #ff6b6b;
}

.backup-types-section {
  background-color: #0a1929;
}

.backup-type-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.backup-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.backup-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.backup-type-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.backup-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.backup-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.backup-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.disaster-recovery-section {
  background-color: #0a1929;
}

.dr-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dr-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.dr-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.dr-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.rto-rpo-section {
  background-color: var(--primary-dark);
}

.chart-container {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.chart-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.chart-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

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

.camera-types-section {
  background-color: #0a1929;
}

.camera-type-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.camera-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.camera-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.camera-type-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.camera-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.camera-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.camera-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.analytics-section {
  background-color: #0a1929;
}

.analytics-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.analytics-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.analytics-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.analytics-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.security-services-section {
  background-color: #0a1929;
}

.security-service-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(255, 65, 108, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.security-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.security-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 65, 108, 0.15);
}

.security-service-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.security-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.security-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.security-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

.threat-protection-section {
  background-color: #0a1929;
}

.protection-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(255, 65, 108, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.protection-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.protection-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.protection-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

.security-layers-section {
  background-color: var(--primary-dark);
}

.layer-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 65, 108, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.layer-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-red);
  box-shadow: 0 10px 25px rgba(255, 65, 108, 0.1);
}

.layer-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.compliance-section {
  background-color: #0a1929;
}

.compliance-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(255, 65, 108, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.compliance-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.compliance-icon {
  font-size: 2rem;
  color: var(--accent-red);
  margin-right: 1.5rem;
  min-width: 50px;
}

.solutions-hero-section {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.85) 100%), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

.solutions-hero-content {
  max-width: 800px;
}

.solutions-hero-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solutions-intro-section {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.industry-solutions-section {
  padding: 5rem 0;
  background-color: #0a1929;
}

.industry-card {
  background: linear-gradient(145deg, rgba(32, 58, 67, 0.5), rgba(15, 32, 39, 0.7));
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

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

.industry-card h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.industry-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.solutions-categories {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.category-tabs {
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.tab-button {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  color: var(--accent-cyan);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 3px 3px 0 0;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn{

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.enterprise-solutions {
  padding: 5rem 0;
  background-color: #0a1929;
}

.solutions-cta-section {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.9) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
}

.solutions-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .contact-info {
    margin-right: 1rem;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .navbar .contact-info span {
    display: none;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .map-container {
    height: 250px;
  }
}

/* Firewall Solutions Specific Styles */
.firewall-brands-section {
    background-color: #0a1929;
    padding: 5rem 0;
}

.firewall-brand-card {
    background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 65, 108, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.firewall-brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c70c0c, #ed1c24, #0072ce);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.firewall-brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 65, 108, 0.15);
}

.firewall-brand-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.firewall-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.firewall-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.firewall-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.security-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.security-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.security-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.deployment-section {
    background-color: var(--primary-dark);
    padding: 5rem 0;
}

.deployment-card {
    background: linear-gradient(145deg, rgba(32, 58, 67, 0.7), rgba(15, 32, 39, 0.9));
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.deployment-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: white;
}

.deployment-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.deployment-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.deployment-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Light Mode Styles for Firewall Section */
body.light-mode .firewall-brand-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .firewall-features li::before {
    color: var(--accent-red);
}

body.light-mode .deployment-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .deployment-card ul li::before {
    color: var(--accent-blue);
}










/* ==================== */
/* DARK/LIGHT MODE STYLES */
/* ==================== */

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.theme-toggle i {
    position: absolute;
    font-size: 1.2rem;
    transition: all 0.3s ease;
      color: #2ed1f3;
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0deg);

}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(180deg);
}

/* Light Mode Active State */
body.light-mode .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-180deg);
}

body.light-mode .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0deg);
}

/* ==================== */
/* LIGHT MODE STYLES */
/* ==================== */
body.light-mode {
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar in Light Mode */
body.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .navbar-nav .nav-link {
    color: #333 !important;
}

body.light-mode .navbar-nav .nav-link:hover,
body.light-mode .navbar-nav .nav-link.active {
    color: var(--accent-blue) !important;
    background-color: rgba(33, 150, 243, 0.1);
}

body.light-mode .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Cards in Light Mode */
body.light-mode .about-card,
body.light-mode .feature-card,
body.light-mode .service-card,
body.light-mode .story-card,
body.light-mode .value-card,
body.light-mode .team-card,
body.light-mode .stat-card,
body.light-mode .contact-form,
body.light-mode .contact-info-card,
body.light-mode .benefit-card,
body.light-mode .tech-card,
body.light-mode .case-study-card,
body.light-mode .testimonial-card,
body.light-mode .solution-card,
body.light-mode .industry-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #333;
}

body.light-mode .service-card::before,
body.light-mode .server-type-card::before,
body.light-mode .storage-type-card::before,
body.light-mode .solution-card::before {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
}

/* Text Colors in Light Mode */
body.light-mode .hero-title,
body.light-mode .section-title h2,
body.light-mode .about-hero h1,
body.light-mode .service-hero h1,
body.light-mode .solutions-hero-title,
body.light-mode .testimonials-hero-title,
body.light-mode .contact-hero-title,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 {
    color: #333;
}

body.light-mode .hero-subtitle,
body.light-mode .hero-content p,
body.light-mode .section-description,
body.light-mode p {
    color: #666;
}

/* Sections Background in Light Mode */
body.light-mode .about-section,
body.light-mode .services-section,
body.light-mode .values-section,
body.light-mode .process-section,
body.light-mode .contact-main-section,
body.light-mode .overview-section,
body.light-mode .benefits-section,
body.light-mode .rto-rpo-section,
body.light-mode .infrastructure-section,
body.light-mode .colocation-section,
body.light-mode .solutions-intro-section,
body.light-mode .solutions-categories,
body.light-mode .comparison-section {
    background-color: #ffffff;
}

body.light-mode .features-section,
body.light-mode .team-section,
body.light-mode .solutions-section,
body.light-mode .services-grid-section,
body.light-mode .tech-stack-section,
body.light-mode .case-studies-section,
body.light-mode .faq-section,
body.light-mode .testimonials-main-section,
body.light-mode .clients-section,
body.light-mode .clients-logo-section,
body.light-mode .server-types-section,
body.light-mode .virtualization-section,
body.light-mode .storage-types-section,
body.light-mode .data-management-section,
body.light-mode .backup-types-section,
body.light-mode .disaster-recovery-section,
body.light-mode .camera-types-section,
body.light-mode .analytics-section,
body.light-mode .security-services-section,
body.light-mode .threat-protection-section,
body.light-mode .compliance-section,
body.light-mode .enterprise-solutions,
body.light-mode .industry-solutions-section,
body.light-mode .tier-standards-section {
    background-color: #f8f9fa;
}

/* Footer in Light Mode */
body.light-mode .footer {
    background-color: #f1f3f5;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .footer-logo,
body.light-mode .footer-links h5 {
    color: #333;
}

body.light-mode .footer-links a {
    color: #666;
}

body.light-mode .footer-links a:hover {
    color: var(--accent-blue);
}

body.light-mode .social-icons a {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

body.light-mode .social-icons a:hover {
    background-color: var(--accent-blue);
    color: white;
}

body.light-mode .copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
}

/* Form Elements in Light Mode */
body.light-mode .form-control {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #333;
}

body.light-mode .form-control::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .form-control:focus {
    background-color: rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.25rem rgba(33, 150, 243, 0.25);
}

/* Accordion in Light Mode */
body.light-mode .accordion-button {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .accordion-button:not(.collapsed) {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--accent-blue);
}

body.light-mode .accordion-body {
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
}

/* Client Logos in Light Mode */
body.light-mode .client-logo {
    filter: grayscale(1) brightness(0.8);
}

body.light-mode .client-logo:hover {
    filter: grayscale(0) brightness(1);
}

/* Stats Section in Light Mode */
body.light-mode .stats-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

/* CTA Sections in Light Mode */
body.light-mode .cta-section,
body.light-mode .testimonials-cta-section,
body.light-mode .contact-cta-section,
body.light-mode .solutions-cta-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

body.light-mode .cta-title,
body.light-mode .testimonials-cta-title,
body.light-mode .contact-cta-title,
body.light-mode .solutions-cta-title {
    color: #333;
}

/* Hero Overlays in Light Mode */
body.light-mode .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.65)
    );
}

body.light-mode .about-hero,
body.light-mode .service-hero,
body.light-mode .solutions-hero-section,
body.light-mode .testimonials-hero-section,
body.light-mode .contact-hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

/* Dropdown Menu in Light Mode */
body.light-mode .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .dropdown-item {
    color: #333;
}

body.light-mode .dropdown-item:hover {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--accent-blue);
}

/* Timeline in Light Mode */
body.light-mode .timeline::before {
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
}

/* Client Testimonials in Light Mode */
body.light-mode .testimonial-text {
    color: #333;
}

body.light-mode .client-details h5 {
    color: #333;
}

body.light-mode .client-details p {
    color: #666;
}


/* Responsive Theme Toggle */
@media (max-width: 992px) {
    .theme-toggle {
        width: 45px;
        height: 45px;
        margin-right: 0.5rem;
    }
}

@media (max-width: 740px) {
    .theme-toggle {
        order: -1;
        margin-right: auto;
        margin-left: 1rem;
    }

    .navbar-collapse.show .theme-toggle {
        margin: 1rem auto;
        order: 1;
    }
}
