





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


/* Google Fonts Poppins */
body {
    --section-bg: var(--section-bg-dark);
    --section-text: var(--section-text-dark);

    --container-bg: var(--container-bg-dark);
    --container-border: var(--container-border-dark);
    --container-shadow: var(--container-shadow-dark);

    --input-bg: var(--input-bg-dark);
    --input-text: var(--input-text-dark);
    --input-placeholder: var(--input-placeholder-dark);

    --title-color: var(--title-color-dark);
    --title-shadow: var(--title-shadow-dark);
}
body.light-mode {
    --section-bg: var(--section-bg-light);
    --section-text: var(--section-text-light);

    --container-bg: var(--container-bg-light);
    --container-border: var(--container-border-light);
    --container-shadow: var(--container-shadow-light);

    --input-bg: var(--input-bg-light);
    --input-text: var(--input-text-light);
    --input-placeholder: var(--input-placeholder-light);

    --title-color: var(--title-color-light);
    --title-shadow: var(--title-shadow-light);
}





/* ===== TOP BAR ===== */

.top-bar {
  width: 100%;
  background: #ffffff;
  padding: 8px 40px;  /* Desktop padding same */
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  border-bottom: 1px solid #eee;

  display: flex;
  justify-content: flex-end;  /* Right aligned */
  align-items: center;
  gap: 25px; /* Elements ke beech gap same */
}

/* Top content container */
.top-content {
  display: flex;
  justify-content: flex-end;  /* Right aligned */
  align-items: center;
  gap: 25px; /* Elements ke beech gap same */
}

/* Left section spans */
.top-left span {
  color: #333;
  font-weight: 500;
  white-space: nowrap; /* Wrap na ho */
}

/* Request button */
.request-btn {
  background: #63b3c7;
  color: white;
  padding: 6px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.request-btn:hover {
  background: #4da5bb;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .top-bar {
    padding: 8px 20px;  /* Mobile padding thoda kam */
    font-size: 13px;    /* Font thoda chhota */
    gap: 20px;          /* Gap slightly reduce */
    flex-wrap: nowrap;   /* Sab ek line me right aligned rahe */
    justify-content: flex-end;
  }

  .top-content {
    gap: 20px;          /* Mobile me gap slightly reduce */
  }

  .request-btn {
    padding: 6px 16px;  /* Mobile button slightly chhota */
  }

  .top-left span {
    font-size: 13px;    /* Mobile me text slightly chhota */
  }
}




/* LOGO STYLE */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:70px;
    height:60px;
    object-fit:contain;
}

.logo h1{
    font-size:1.8rem;
    color:#00a5e0;
    font-weight:700;
    letter-spacing:1px;
}

/* HEADER */
header{
    position:fixed;
    width:100%;
    margin-top: 45px;
    top:0;
    padding:15px 50px;
    background:rgba(0,0,0,.85);
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
}
header h1{
    color:#00a5e0;
    transform:perspective(600px) rotateX(15deg);
}
/* Navbar container */
nav.top-contact {
  display: flex;
  align-items: center;
  gap: 18px; /* Desktop gap */
  flex-wrap: wrap; /* Mobile pe wrap ho sake */
}

/* Navbar links */
nav.top-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap; /* Wrap na ho */
  transition: 0.3s;
}

nav.top-contact a:hover {
  color: #00a5e0;
}

/* Navbar contact / buttons */
.nav-contact,
#modeToggle {
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

#modeToggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
}

#modeToggle img {
  width: 24px;   /* Icon size */
  height: 24px;
  pointer-events: none;
}


/* Flex gap for button / extra links */
.top-contact {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between links and button */
}

/* Hover effects */
.nav-contact:hover,
#modeToggle:hover {
  color: #00a5e0;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  nav.top-contact {
    gap: 12px; /* Slightly reduce gap */
    font-size: 13px; /* Smaller text for mobile */
    justify-content: flex-start; /* Align links to left on small screens */
    flex-wrap: wrap; /* Wrap links if too long */
  }

  #modeToggle {
    font-size: 1rem; /* Smaller icon button */
    padding: 3px 6px;
  }
}




#modeToggle {
    padding: 6px 10px;
    border-radius: 50%;   /* circular button */
    border: none;
    cursor: pointer;
    background: transparent; /* background hata diya */
    color: inherit;          /* text color inherit ho body se */
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Dark mode */
.section.dark {
    background-color: #111 !important;
    color: #fff !important;
}

/* Light mode */
body.light-mode .section.dark {
    background-color: #fff !important;   /* Pure white background */
    color: #111 !important;              /* Dark text */
    transition: background 0.5s, color 0.5s;
}

/* Cards / Boxes in light mode */
body.light-mode .cards .card {
    background-color: #fff !important;    /* Pure white card */
    color: #111 !important;               /* Dark text inside card */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Soft shadow */
    border-radius: 12px;                  /* Rounded corners */
    transition: background 0.5s, color 0.5s, box-shadow 0.3s;
}

/* Optional: Card hover effect */
body.light-mode .cards .card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}



/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  overflow: hidden;
  background-color: #111; /* dark mode default */
  color: #fff; /* text color */
  transition: background-color 0.5s, color 0.5s;
}

#threejs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* text center */
}

.hero-text {
  font-family: 'Poppins', sans-serif; /* ensure poppins */
  max-width: 700px;
  margin: 0 auto;
}

.hero-text h2 {
  font-size: 3.5rem;
  color: #00a5e0; /* dark mode headline */
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 15px;
  text-align: center;
}

.hero-btn {
  padding: 15px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 15px;
  background: linear-gradient(135deg,#00a5e0,#26017b);
  color: #fff;
  box-shadow: 0 10px 20px rgba(108,99,255,0.3);
  transition: all 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(108,99,255,0.4);
}

/* ---------- LIGHT MODE ---------- */
body.light-mode .hero {
  background-color: #fff;
  color: #111;
}

body.light-mode .hero-text h2 {
  color: #0088cc;
}

body.light-mode .hero-text p {
  color: #333;
}

body.light-mode .hero-btn {
  background: linear-gradient(135deg,#00a5e0,#0088cc);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,136,204,0.3);
}

body.light-mode .hero-btn:hover {
  box-shadow: 0 15px 30px rgba(0,136,204,0.4);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-text h2 { font-size: 3rem; }
  .hero-text p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; gap: 30px; }
  .hero-text h2 { font-size: 2.5rem; }
  .hero-text p { font-size: 1rem; }
  .hero-btn { width: 80%; margin: 10px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 0 20px; }
  .hero-text h2 { font-size: 2rem; }
  .hero-text p { font-size: 0.95rem; }
  .hero-btn { width: 100%; padding: 12px 20px; font-size: 0.95rem; }
}


/* ---------- SECTIONS ---------- */
.section {
  padding: 60px 50px;
  text-align: center; /* Center titles & subtitles */
  transition: background-color 0.5s, color 0.5s;
}

.section h3 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #00a5e0; /* Dark mode title */
}

.section p.section-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto; /* Center the subtitle */
  color: #ccc; /* Dark mode text */
}

/* ---------- CARDS CONTAINER ---------- */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center all cards horizontally */
  gap: 30px; /* Space between cards */
  margin-top: 20px;
}

/* ---------- INDIVIDUAL CARD ---------- */
.card {
  background-color: #1a1a1a; /* Dark mode card background */
  color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1 1 220px; /* responsive width: min 220px, grows */
  max-width: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border: 3px solid #00a5e0; /* Blue border */
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: #0088cc; /* hover me thoda bright blue */
}


.card h4 {
  margin-top: 15px;
  font-size: 2rem;
  color: #00a5e0; /* Dark mode heading */
}

.card p {
  font-size: 1rem;
  color: #ccc; /* Dark mode text */
  margin-top: 10px;
}

/* ---------- ICON ---------- */
.card .stat-icon {
  margin-bottom: 15px;
}

/* ---------- LIGHT MODE ---------- */
body.light-mode .section {
  background-color: #fff;
  color: #111;
}

body.light-mode .section h3 {
  color: #0088cc;
}

body.light-mode .section p.section-subtitle {
  color: #333;
}

body.light-mode .card {
  background-color: #f9f9f9;
  color: #111;
  border: 3px solid #0088cc; /* Light mode blue border */
}

body.light-mode .card:hover {
  border-color: #00a5e0; /* Hover me blue thoda dark */
}


body.light-mode .card h4 {
  color: #0088cc;
}

body.light-mode .card p {
  color: #555;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .cards {
    gap: 20px;
  }

  .card {
    flex: 1 1 100%; /* Stack cards vertically on small screens */
    max-width: 100%;
  }
}


/* ================= CLIENTS SECTION ================= */

.clients-section{
  padding:120px 0;
  background:#000; /* PURE BLACK */
  overflow:hidden;
}


.clients-title{
  text-align:center;
  font-size:3rem;
  margin-bottom:60px;
  color:#00a5e0;
}

.clients-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.clients-track{
  display:flex;
  width:max-content;
  animation:scrollClients 25s linear infinite;
}

.client-logo{
  width:220px;
  height:160px;
  margin:0 40px;
  background:#fff;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 40px rgba(0,0,0,.3);
  transition:.4s;
}

.client-logo img{
  max-width:80%;
  max-height:80%;
  object-fit:contain;
}

.client-logo:hover{
  transform:scale(1.1);
  box-shadow:0 25px 60px rgba(0,0,0,.4);
}

@keyframes scrollClients{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* LIGHT MODE */
body.light-mode .clients-section{
  background:#fff;
}

body.light-mode .clients-title{
  color:#26017b;
}



/* ================= CONTACT FORM POPUP & AI CHATBOT ================= */




/* ================= CONTACT CONTAINER ================= */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    gap: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: background-color 0.5s, color 0.5s, border 0.5s;
}

/* Dark Mode Container */
body:not(.light-mode) .contact-container {
    background-color: #000;
    border: 5px solid #00aaff;
}

/* Light Mode Container */
body.light-mode .contact-container {
    background-color: #fff;
    border: 5px solid #ccc;
}

/* Contact Image */
.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Lead Form */
.lead-form {
    flex: 1;
    max-width: 400px;
}

/* Headings */
.lead-form h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.2em;
}

/* Inputs & Textarea */
.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s;
}

/* Dark Mode Inputs */
body:not(.light-mode) .lead-form input,
body:not(.light-mode) .lead-form textarea {
    background-color: #111;
    color: #fff;
    border: 3px solid #444;
}

/* Light Mode Inputs */
body.light-mode .lead-form input,
body.light-mode .lead-form textarea {
    background-color: #fff;
    color: #111;
    border: 3px solid #ccc;
}

/* Placeholder Colors */
body:not(.light-mode) .lead-form input::placeholder,
body:not(.light-mode) .lead-form textarea::placeholder {
    color: #aaa;
}
body.light-mode .lead-form input::placeholder,
body.light-mode .lead-form textarea::placeholder {
    color: #666;
}

/* Focus Styles */
.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 15px rgba(0,170,255,0.3);
}

/* Textarea */
.lead-form textarea {
    height: 130px;
    resize: vertical;
}

/* Submit Button */
.lead-form button {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

/* Dark Mode Button */
body:not(.light-mode) .lead-form button {
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: #fff;
}

/* Light Mode Button */
body.light-mode .lead-form button {
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: #fff;
}

/* Button Hover */
.lead-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,170,255,0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        margin: 20px;
        padding: 30px 20px;
        gap: 30px;
    }
    .contact-image img {
        height: 300px;
    }
    .lead-form h3 {
        font-size: 1.8em;
    }
}




/* AI CHATBOT */
#chatbotToggle{
position:fixed;
bottom:90px;
right:25px;
background:#00a5e0;
color:#fff;
border:none;
border-radius:50%;
width:60px;height:60px;
cursor:pointer;
font-size:24px;
z-index:9999;
box-shadow:0 15px 30px rgba(0,0,0,.4);
}

#aiChatbot{
position:fixed;
bottom:170px;
right:25px;
width:320px;
background:#0c0c0c;
border-radius:20px;
display:none;
flex-direction:column;
z-index:9999;
box-shadow:0 25px 60px rgba(0,0,0,.6);
overflow:hidden;
}

#aiHeader{
background:linear-gradient(135deg,#00a5e0,#26017b);
padding:15px;
font-weight:600;
}

#aiMessages{
padding:15px;
height:240px;
overflow-y:auto;
font-size:14px;
}

.bot{color:#00a5e0;margin-bottom:10px}
.user{color:#fff;text-align:right;margin-bottom:10px}

#aiOptions{
display:flex;
flex-wrap:wrap;
gap:8px;
padding:12px;
border-top:1px solid rgba(255,255,255,.1);
}

#aiOptions button{
flex:1;
padding:8px;
border:none;
border-radius:12px;
cursor:pointer;
background:#00a5e0;
color:#000;
font-weight:600;
}




/* ================= ULTRA PREMIUM FOOTER (NO TOP LINE) ================= */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 90px 60px 35px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 55px;
  max-width: 1350px;
  margin: auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.footer-logo {
  color: #00a5e0;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 22px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 8px;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #00a5e0;
}

.site-footer p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 20px;
}

.site-footer a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 13px;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: 0.35s ease;
}

.site-footer a:hover {
  color: #00a5e0;
  transform: translateX(7px);
  opacity: 1;
}

.footer-address {
  margin-top: 25px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #26017b;
  color: #00a5e0;
  font-size: 17px;
  transition: 0.35s ease;
  background: #000;
}

.footer-social a:hover {
  background: #00a5e0;
  color: #000000;
  border-color: #00a5e0;
  box-shadow: 0 0 18px rgba(0,165,224,0.6);
}

.map-box iframe {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,165,224,0.3);
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.6;
}

/* Purple Glow Effect */
.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #26017b;
  opacity: 0.18;
  filter: blur(90px);
  z-index: 1;
}


/* FUZZADS IMAGE LOGO */
.footer-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,165,224,0.3);
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-logo-img {
    width: 100px;
  }
}



/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-logo {
    font-size: 2rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 20px 25px;
  }
}





/* ================= GLOBAL LIGHT MODE FIX ================= */

/* FORCE ALL TEXT COLOR CHANGE */
body.light-mode,
body.light-mode p,
body.light-mode span,
body.light-mode strong,
body.light-mode li,
body.light-mode a,
body.light-mode label,
body.light-mode input,
body.light-mode select,
body.light-mode textarea{
    color:#111 !important;
}

/* HEADINGS DARK PURPLE */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5{
    color:#26017b !important;
}

/* PARAGRAPH SECONDARY TEXT */
body.light-mode p{
    color:#333 !important;
}

/* HERO SECTION TEXT FIX */
body.light-mode .hero p{
    color:#444 !important;
}

/* CARDS TEXT */
body.light-mode .card p,
body.light-mode .card strong{
    color:#111 !important;
}

/* FOOTER TEXT */
body.light-mode .site-footer,
body.light-mode .site-footer p,
body.light-mode .site-footer a{
    color:#222 !important;
}

body.light-mode .site-footer{
    background:#f5f7fb;
}

/* CHATBOT */
body.light-mode #aiChatbot{
    background:#ffffff;
}
body.light-mode .bot{
    color:#26017b !important;
}
body.light-mode .user{
    color:#111 !important;
}

/* FORM POPUP */
body.light-mode .popup-box{
    background:#ffffff;
}
body.light-mode .popup-box input,
body.light-mode .popup-box select{
    background:#f0f0f0;
    color:#111;
}




/* Terms & Condition*/


.legal-section{
  padding:120px 20px 80px;
  background:#050505;
  color:#fff;
}

.legal-container{
  max-width:900px;
  margin:auto;
  text-align:left;
}

.legal-container h1{
  font-size:3rem;
  margin-bottom:15px;
  color:#00a5e0;
}

.effective-date{
  font-size:.9rem;
  opacity:.7;
  margin-bottom:40px;
}

.legal-block{
  margin-bottom:35px;
  padding:25px;
  border-radius:15px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.legal-block h2{
  font-size:1.4rem;
  margin-bottom:12px;
  color:#00f2fe;
}

.legal-block p{
  line-height:1.7;
  color:#ddd;
}

body.light-mode .legal-section{
  background:#f5f7fb;
  color:#111;
}

body.light-mode .legal-block{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
}

body.light-mode .legal-block p{
  color:#333;
}



