* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  color: #374151;
  line-height: 1.6;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* TOP HEADER */
.top-header {
  background: #1e3a8a;
  color: #f8f9fa;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.socials i {
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socials i:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 44px;
  width: 100%;
  z-index: 999;
  transition: 0.35s ease;
}

.navbar-inner {
  width: 92%;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  transition: 0.35s ease;
}

.navbar.scrolled {
  top: 0;
}

.navbar.scrolled .navbar-inner {
  width: 100%;
  border-radius: 0;
  padding: 8px 24px;
}

.logo img {
  height: 70px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #1e3a8a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
  
.nav-links a:hover{
  
  color: #3b82f6;

}
.contact-btn {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.contact-btn span {
  transition: transform 0.3s ease;
}

.contact-btn:hover span {
  transform: translateX(6px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #1e3a8a;
  margin: 5px 0;
  display: block;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 18px;
    gap: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  }
}
/* ... (Previous CSS up to HERO) */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 130px;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.3));
}

.content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 160px 80px;
  color: white;
}

.brand {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-50px);
  position: relative;
  padding-left: 16px;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-40px);
  text-transform: uppercase;
}

.content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  max-width: 520px;
  font-weight: 400;
}

.slide.active .brand {
  animation: slideRight 0.8s ease forwards;
}

.slide.active h1 {
  animation: slideDown 0.9s ease forwards 0.3s;
}

.slide.active p {
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.slide.active .contact-btn {
  animation: fadeUp 0.9s ease forwards 0.9s;
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.slide-status {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
}

.lines {
  display: flex;
  gap: 8px;
}

.line {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.line.active {
  background: #3b82f6;
  width: 60px;
}

.slide-text span {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

 /* WHY CHOOSE US */
        .about{padding:100px 20px;background:#f8fafc;}
        .about-content{display:flex;gap:40px;align-items:center;justify-content:center;max-width:1200px;margin:auto;}
        .about-img{width:45%;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,.1);transition:.6s ease;}
        .about-img:hover{transform:scale(1.03)}
        .about-text{width:50%}
        .about-text h2{
          text-align:left;
           font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
        }
        
.about-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

.about-text h2 span {
  color: #3b82f6;
}
        .about-text p{color:#475569;margin-top:20px;margin-bottom:15px;line-height:1.8;  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;}
        .about-text ul{list-style:none;margin-top:20px}
        .about-text li{margin-bottom:10px;font-size:17px;color:#475569;transition:all .3s ease}
        .about-text li:hover{transform:translateX(6px);color:#1e3a8a}
        .about-text li i{color:#00bcd4;margin-right:10px}

/* SERVICES */
#services_section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  animation: fadeInUp 1s ease-out;
}

#services_section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
}

#services_section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

#services_section h2 span {
  color: #3b82f6;
}

#services_section p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

#services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service_box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  cursor: pointer;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  transition: left 0.5s ease;
  z-index: -1;
}

.service_box:hover::before {
  left: 0;
}

.service_box img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service_box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #1e3a8a;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.service_box p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-width: 90%;
}

.service_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.service_box:hover img {
  transform: scale(1.1) rotate(5deg);
}

.service_box:hover h3 {
  color: #fff;
}

.service_box:hover p {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

@media (max-width: 768px) {
  #services {
    grid-template-columns: 1fr;
  }
  .service_box {
    height: 280px;
  }
}

/* WORKFLOW */
.workflow-area {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8f9fa 100%);
  color: #1a2a40;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.workflow-subtitle {
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #3a4f6b;
}

.workflow-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
  position: relative;
}

.workflow-title span {
  color: #3b82f6;
}

 

.workflow-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.workflow-card {
  background: #fff;
  border: 1px solid #dce3f0;
  flex: 1 1 240px;
  max-width: 280px;
  padding: 40px 25px 30px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.workflow-icon {
  font-size: 28px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.workflow-card:hover .workflow-icon {
  transform: rotate(15deg) scale(1);
}

.workflow-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1e3a8a;
}
/* ... (Previous CSS up to .workflow-card p) */

.workflow-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #3a4f6b;
  margin-bottom: 20px;
}

.workflow-arrow {
  display: inline-block;
  font-size: 22px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.workflow-arrow:hover {
  background-color: #3b82f6;
  color: #fff;
  transform: scale(1.2);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .workflow-cards {
    flex-direction: column;
    align-items: center;
  }
  .workflow-card {
    max-width: 100%;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 44px;
  width: 100%;
  z-index: 999;
  transition: 0.5s ease-in-out; /* Smoother transition */
}

.navbar-inner {
  width: 95%; /* Slightly wider for better centering */
  max-width: 1400px; /* Cap width for large screens */
  margin: 0 auto; /* Center the entire navbar */
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  transition: 0.5s ease-in-out; /* Smoother */
}

.navbar.scrolled {
  top: 0;
}

.navbar.scrolled .navbar-inner {
  width: 100%;
  border-radius: 0;
  padding: 8px 24px;
}

.logo img {
  height: 70px;
  transition: transform 0.4s ease-in-out; /* Smoother */
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px; /* More space for centering feel */
  flex: 1; /* Allow links to take space */
  justify-content: center; /* Center the links */
}

.nav-links a {
  color: #1e3a8a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.4s ease-in-out; /* Smoother */
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  transition: width 0.4s ease-in-out; /* Smoother */
}

.nav-links a:hover::after {
  width: 100%;
}

.contact-btn {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  transition: box-shadow 0.4s ease-in-out, transform 0.4s ease-in-out; /* Smoother */
}

.contact-btn:hover {
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.contact-btn span {
  transition: transform 0.4s ease-in-out; /* Smoother */
}

.contact-btn:hover span {
  transform: translateX(6px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #1e3a8a;
  margin: 5px 0;
  display: block;
  transition: 0.4s ease-in-out; /* Smoother */
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 18px;
    gap: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  }
}
/* SERVICES */
#services_section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  animation: fadeInUp 1s ease-out;
}

#services_section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
}

#services_section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

#services_section h2 span {
  color: #3b82f6;
}

#services_section p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

#services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service_box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease-in-out; /* Smoother */
  cursor: pointer;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service_box img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  transition: transform 0.5s ease-in-out; /* Smoother */
  margin-top: 140px;
}

.service_box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #1e3a8a;
  margin-bottom: 1px;
  transition: all 0.5s ease-in-out; /* Smoother */
}

.service_box p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out; /* Smoother */
  max-width: 90%;
}

/* Hover Effect (Back to Original) */
.service_box:hover {
  background: linear-gradient(135deg, #1a73e8, #009688);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service_box:hover img {
  transform: scale(0.9) rotate(-3deg);
  margin-top: 30px;
  margin-bottom: 2px;
  height: 90px;
}

.service_box:hover h3 {
  color: #fff;
  transform: translateY(-10px);
  margin-top: 10px;
}

.service_box:hover p {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 768px) {
  #services {
    grid-template-columns: 1fr;
  }
  .service_box {
    height: 280px;
  }
}

.workflow-arrow {
  display: inline-block;
  font-size: 22px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a); /* Matching gradient */
  color: #fff; /* White arrow for contrast */
  text-decoration: none;
  transition: all 0.4s ease-in-out; /* Smoother, longer transition */
  position: absolute;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); /* Subtle shadow */
  border: none; /* Removed border for cleaner look */
}

.workflow-arrow:hover {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6); /* Reverse gradient on hover */
  transform: scale(1) rotate(3deg); /* Scale and slight rotate for fun */
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5); /* Glowing shadow */
  color: #fff; /* Ensure arrow stays white */
}

/* ... (Your existing CSS up to the end) */

/* QUICK BYTES / FROM DAY ONE TO BIG WINS */
#quick-bytes-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8f9fa 100%);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.quick-bytes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-bytes-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
}

.quick-bytes-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

.quick-bytes-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
  line-height: 1.6;
}

.blocks-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.block {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  width: calc(25% - 30px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  transition: left 0.5s ease-in-out;
  z-index: -1;
}

.block:hover::before {
  left: 0;
}

.block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 20px;
  transition: color 0.4s ease-in-out;
}

.block .counter {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3b82f6;
  transition: color 0.4s ease-in-out;
}

.block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.block:hover h3 {
  color: #fff;
}

.block:hover .counter {
  color: #fff;
}

.block.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.block.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

@media (max-width: 768px) {
  .blocks-container {
    flex-direction: column;
    align-items: center;
  }

  .block {
    width: 100%;
    max-width: 400px;
  }

  .quick-bytes-title {
    font-size: 2rem;
  }

  .quick-bytes-subtitle {
    font-size: 1rem;
  }
}
/* ... (Your existing CSS up to the end) */

/* QUICK BYTES / FROM DAY ONE TO BIG WINS */
#quick-bytes-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8f9fa 100%);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.quick-bytes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-bytes-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
}

.quick-bytes-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

.quick-bytes-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
  line-height: 1.6;
}

.blocks-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.block {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  width: calc(25% - 30px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.block .counter {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3b82f6;
}

.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.block.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.block.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

@media (max-width: 768px) {
  .blocks-container {
    flex-direction: column;
    align-items: center;
  }

  .block {
    width: 100%;
    max-width: 400px;
  }

  .quick-bytes-title {
    font-size: 2rem;
  }

  .quick-bytes-subtitle {
    font-size: 1rem;
  }
}
/* ... (Your existing CSS up to the end) */

/* QUICK BYTES / FROM DAY ONE TO BIG WINS */
#quick-bytes-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8f9fa 100%);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.quick-bytes-container {
  max-width: 1200px;
  margin: 0 auto;
}


.quick-bytes-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
  position: relative;
}

.quick-bytes-title  span {
  color: #3b82f6;
}


.quick-bytes-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

.quick-bytes-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
  line-height: 1.6;
}

.blocks-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.block {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  width: calc(25% - 30px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.block .counter {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3b82f6;
}

@media (max-width: 768px) {
  .blocks-container {
    flex-direction: column;
    align-items: center;
  }

  .block {
    width: 100%;
    max-width: 400px;
  }

  .quick-bytes-title {
    font-size: 2rem;
  }

  .quick-bytes-subtitle {
    font-size: 1rem;
  }
}
/* ... (Your existing CSS up to the end) */
/* ... (Your existing CSS up to the end) */

/* OUR PARTNERS */
#partners-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
}

.partners-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

.partners-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.partners-slider {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: calc(200px * 20); /* 20 logos for infinite effect */
  animation: slideLeft 30s linear infinite;
}

.partner-logo {
  flex: 0 0 200px;
  margin: 0 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* 
.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
} */

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partners-track {
    width: calc(150px * 20);
  }
  .partner-logo {
    flex: 0 0 150px;
    margin: 0 10px;
    height: 60px;
    padding: 15px;
  }
  .partners-title {
    font-size: 2rem;
  }
  .partners-subtitle {
    font-size: 1rem;
  }
}

/* OUR PARTNERS */
#partners-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
}

.partners-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  margin: 8px auto 0;
  border-radius: 2px;
}

.partners-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.partners-slider {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: calc(200px * 20); /* 20 logos for infinite effect */
  animation: slideLeft 30s linear infinite;
}

.partner-logo {
  flex: 0 0 200px;
  margin: 0 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px; /* Increased from 80px for more rectangular height */
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Removed hover effects */
/* .partner-logo:hover { ... } */

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partners-track {
    width: calc(150px * 20);
  }
  .partner-logo {
    flex: 0 0 150px;
    margin: 0 10px;
    height: 90px; /* Increased from 60px for mobile, keeping rectangular */
    padding: 15px;
  }
  .partners-title {
    font-size: 2rem;
  }
  .partners-subtitle {
    font-size: 1rem;
  }
}
#services_section .service_box p{
  color: white;
}


.testimonials {
  padding: 100px 20px;
  text-align: center;
  font-family: Poppins, sans-serif;
   background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  margin: 0 auto;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.small-title {
  font-size: 13px;
  letter-spacing: 6px;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.t-slide {
  flex: 0 0 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  box-sizing: border-box;
  padding: 0 40px;
}

.t-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.quote {
  font-size: 90px;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 20px;
}

.t-slide p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.t-slide h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
}

.t-slide span {
  font-weight: 400;
  color: #666;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 14px;
  letter-spacing: 3px;
  cursor: pointer;
  color: #1e3a8a;
  transition: color 0.3s;
}

.nav-btn:hover {
  color: #3b82f6;
}

.prev {
  margin-right: 20px;
}

.next {
  margin-left: 20px;
}

.indicators {
  margin-top: 40px;
}

.dot {
  display: inline-block;
  width: 18px;
  height: 3px;
  background: #ddd;
  margin: 0 5px;
  transition: background 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #00bcd4;
}
.testimonials .t-slide {
  flex: 0 0 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  box-sizing: border-box;
  padding: 0 40px;
}

.testimonials .t-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.testimonials .t-slide {
  flex: 0 0 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  box-sizing: border-box;
  padding: 0 40px;
}

.testimonials .t-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.testimonials .t-slide {
  flex: 0 0 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  box-sizing: border-box;
  padding: 0 40px;
  position: absolute; /* Ensures stacking works properly */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials .t-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1; /* Bring to front */
}

.testimonials .slider-window {
  position: relative; /* Contain absolutely positioned slides */
  overflow: hidden;
  width: 100%;
  min-height: 250px; /* Keeps height stable when slides change */
}



.footer {
  background: #f8fafc;
  padding: 90px 20px 40px;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 280px;
}

/* Logo */
.footer-logo {
  width: 180px;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}
.footer-logo:hover {
  transform: translateY(-4px);
}

/* Text */
.footer-tagline {
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
  max-width: 420px;
}

/* Headings */
.footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1e3a8a;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 36px;
  height: 2px;
  background: #3b82f6;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
  color: #475569;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #3b82f6;
}

/* Contact */
.footer-contact p {
  font-size: 15px;
  margin: 8px 0;
  color: #475569;
}
.footer-contact i {
  color: #3b82f6;
  margin-right: 8px;
}

/* Socials */
.footer-socials {
  margin-top: 18px;
}
.footer-socials i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e0e7ff;
  color: #1e3a8a;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-socials i:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-4px);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 60px auto 20px;
  max-width: 1200px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

/* Animation */
[data-anim] {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-tagline {
    margin: auto;
  }
}


.about-text h2 , #services_section h2 , .quick-bytes-title , .partners-title, .workflow-title{
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* animated underline */
.about-text h2::after , #services_section h2::after , .quick-bytes-title::after , .partners-title::after , .workflow-title::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* hover effect */
.about-text h2:hover , #services_section h2:hover , .quick-bytes-title:hover , .partners-title:hover, .workflow-title:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}

.about-text h2:hover::after , #services_section h2:hover::after , .quick-bytes-title:hover::after , .partners-title:hover::after ,.workflow-title:hover::after{
  width: 100%;
}

/* span highlight */
.about-text h2 span , #services_section h2 span, .quick-bytes-title span , .partners-title span, .workflow-title span {
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
}

.about-text h2:hover span , #services_section h2:hover span  , .quick-bytes-title:hover span  , .partners-title:hover span , .workflow-title:hover span {
  opacity: 0.85;
}

.get-in-touch{
  background:#f8fafc;
  padding:100px 7%;
  font-family:'Poppins',sans-serif;
}

.git-container{
  display:flex;
  gap:70px;
  align-items:center;
}

.git-left{
  flex:1;
}

.git-tag{
  letter-spacing:6px;
  font-size:13px;
  color:#64748b;
}

.git-heading{
  font-size:3rem;
  font-weight:700;
  color:#0f172a;
  margin:18px 0 10px;
  position:relative;
  display:inline-block;
}

.git-heading::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-10px;
  width:0%;
  height:4px;
  background:linear-gradient(90deg,#3b82f6,#1e3a8a);
  border-radius:3px;
  transition:0.4s ease;
}

.git-heading span{
  background:linear-gradient(90deg,#3b82f6,#1e3a8a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.git-desc{
  color:#475569;
  max-width:420px;
  line-height:1.7;
  margin-top:30px;
}

.git-details{
  margin-top:35px;
}

.git-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
  color:#334155;
}

.dott{
  width:8px;
  height:8px;
  background:#3b82f6;
  border-radius:50%;
}

.git-right{
  flex:1;
  background:#ffffff;
  padding:45px;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(15,23,42,0.08);
}

/* floating label inputs */
.field{
  position:relative;
  margin-bottom:30px;
}

.field input,
.field textarea{
  width:100%;
  border:none;
  border-bottom:2px solid #cbd5e1;
  padding:10px 0;
  font-size:15px;
  outline:none;
  background:transparent;
}

.field textarea{
  resize:none;
  height:90px;
}

.field label{
  position:absolute;
  left:0;
  top:10px;
  color:#94a3b8;
  font-size:14px;
  transition:0.3s ease;
  pointer-events:none;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label{
  top:-12px;
  font-size:12px;
  color:#3b82f6;
}

.field-group{
  display:flex;
  gap:20px;
}

.get{
  background:linear-gradient(90deg,#3b82f6,#1e3a8a);
  color:#fff;
  border:none;
  padding:14px 34px;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  transition:0.3s ease;
}

.get:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(59,130,246,0.4);
}

.arrow{
  transition:0.3s ease;
}

.get:hover .arrow{
  transform:translateX(6px);
}

.footer {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #f1f5ff 100%
  );
  padding: 70px 20px 40px;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  box-shadow: 0 -12px 30px rgba(30, 58, 138, 0.08);
  position: relative;
}
.footer-tagline {
  font-size: 15.8px;
  line-height: 1.9;
  color: #1e3a8a; /* deep blue */
  max-width: 420px;
}
.footer-divider {
  height: 1px;
  background: rgba(30, 58, 138, 0.15);
  margin: 60px auto 20px;
  max-width: 1200px;
}
[data-anim] {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  transition: width 0.35s ease;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-links a:hover::after {
  width: 100%;
}

