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

body {
  font-family: 'Lato', sans-serif;
  color: #fff;
  line-height: 1.6;
  background: #0b1220;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* LEFT = light, RIGHT = dark */
  background: linear-gradient(
    90deg,
    #1CB5E0 0%,
    #3A7BD5 39%,
    #3A7BD5 55%,
    #3A7BD5 100%
     );

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}



.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #22F3B7;
  text-decoration: none;
}

.logo {
  position: relative;
}

#dco_logo{
  height: auto;
  width: 160px;
  }



.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #22F3B7;
}

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

.social-icons a {
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #22F3B7;
  transform: translateY(-3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}



/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1CB5E0, #3A7BD5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 520px;
  animation: slideIn 0.8s ease forwards;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  line-height: 1.2;
}

.hero h1 span {
  color: #22F3B7;
}

.hero p {
  font-size: 1.15rem;
  color: #E2F6FF;
}

.section {
  padding: 80px 0;
}

/* ================= GLOW BLOBS ================= */
.glow-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 18s infinite alternate ease-in-out;
}

.blob.one {
  background: #E02020;
  top: -120px;
  left: -120px;
}

.blob.two {
  background: #E06020;
  bottom: -120px;
  right: -100px;
  animation-delay: 4s;
}

.blob.three {
  background: #22F3B7;
  top: 40%;
  left: 55%;
  animation-delay: 8s;
}

.hero > *:not(.glow-bg) {
  position: relative;
  z-index: 2;
}

/* ================= FORM (GLASS) ================= */
.lead-form {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 42px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35),
              inset 0 0 0 1px rgba(255,255,255,0.3);
  animation: fadeUp 1s ease forwards;
}

.lead-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

/* Inputs */
.input-group {
  position: relative;
  margin-bottom: 22px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: 0.3s;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 16px 16px 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.input-group textarea {
  min-height: 110px;
  resize: none;
}

/* Floating labels */
.input-group label {
  position: absolute;
  top: 50%;
  left: 44px;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #E06020;
  box-shadow: 0 0 0 3px rgba(224,96,32,0.3);
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.7rem;
  background: linear-gradient(135deg, #E02020, #E06020);
  padding: 2px 8px;
  border-radius: 8px;
  color: #fff;
}

.input-group input:focus ~ i,
.input-group textarea:focus ~ i {
  color: #E06020;
  transform: translateY(-50%) scale(1.1);
}

/* Button */
.lead-form button {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #E02020, #E06020);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lead-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(224,32,32,0.5);
}

/* Loader */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

/* Success message */
.form-msg {
  margin-top: 12px;
  text-align: center;
  color: #22F3B7;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.form-msg.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= SERVICES ================= */
.services {
  padding: 90px 8%;
  background: #F5F7FB;
  color: #0F172A;
  text-align: center;
}

.services h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  border: 1px solid #EEF2F7;
  transition: 0.3s ease;
}

.service-desc{
  text-align: left;
  li {
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
}
li:hover {
  transform: translateX(5px);
}
li:hover::marker {
  color: #28A745;
  content: "✓"; /* Switch icon on hover */
}
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  color: #3A7BD5;
  margin-bottom: 10px;
}

.service-card p {
  color: #475569;
}

/* CLIENT SLIDER ============================*/
/* ================= CLIENTS SECTION FIX ================= */
#clients {
  background: #ffffff;
  color: #0f172a;
  text-align: center;
}

#clients h2 {
  color: #0f172a;
  font-family: 'Montserrat', sans-serif;
}

#clients p {
  color: #475569;
}


.client-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.client-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollClients 25s linear infinite;
}

.client-track img {
  height: 60px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Pause animation on hover */
.client-slider:hover .client-track {
  animation-play-state: paused;
}

/* KEYFRAMES */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .client-track {
    gap: 40px;
  }

  .client-track img {
    height: 45px;
  }
}

/* Clients / Logos --ends--===========================*/





/* ================= CTA (GLASS) ================= */
.cta-glass {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0f2027, #203a43);
  display: flex;
  justify-content: center;
}

.cta-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 60px;
  max-width: 720px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25),
              inset 0 0 0 1px rgba(255,255,255,0.3);
}

.cta-btn-glass {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E02020, #E06020);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(224,32,32,0.5);
}

/* ================= FOOTER ================= */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(135deg, #0b0b0b, #141414);
  color: #cbd5e1;
  padding-top: 60px;
}

.map-container{
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-info h4 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #b8c1cc;
}

.footer-info i {
  color: #22F3B7;
  font-size: 1rem;
}

.footer-info a {
  color: inherit;
  text-decoration: none;
}

.footer-info a:hover {
  color: #22F3B7;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #E02020, #E06020);
  transform: translateY(-4px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8f98;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}


/* ================= ANIMATIONS ================= */
@keyframes float {
  from { transform: translate(0,0); }
  to { transform: translate(40px,-60px); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .nav-links,
  .social-icons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    position: absolute;
    top: 70px;
    right: 0;
    background: #203a43;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: flex;
    gap: 15px;
  }
}
