*{ margin:0; padding:0; box-sizing:border-box; font-family:Arial, sans-serif; }
/* body{ background:#f5f5f5; } */

header{
  width:100%;
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(10px); /* GLASS EFFECT */
  background:rgba(255,255,255,0.8);
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.navbar{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 25px;
}

.logo img{
  height:80px;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:40px;
  align-items:center;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  text-decoration:none;
  color:#000;
  font-size:16px;
  font-weight:500;
  padding:8px 10px;
  transition:0.3s;
  border-radius:8px;
}

/* MODERN HOVER EFFECT */
.nav-links a:hover{
  background:rgba(0,195,255,0.1);
  color:#00c3ff;
  transform:translateY(-2px);
}

/* ACTIVE STYLE */
.nav-links a.active{
  background:#00c3ff;
  color:#fff;
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  display:none;
  flex-direction:column;
  min-width:240px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  opacity:0;
  transform:translateY(10px);
  transition:0.3s;
}

.dropdown a{
  padding:12px 16px;
  border-bottom:1px solid #eee;
  font-size:14px;
  color:#000;
}

.dropdown a:hover{
  background:#f5f5f5;
  color:#00c3ff;
}

@media(min-width:769px){
  .nav-links li:hover .dropdown{
    display:flex;
    opacity:1;
    transform:translateY(0);
  }
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:20px;
}

.social-icons a{
  color:#000;
  font-size:18px;
  transition:0.3s;
}

.social-icons a:hover{
  color:#00c3ff;
  transform:scale(1.2) rotate(5deg);
}

/* BUTTON STYLE (OPTIONAL CTA) */
.cta-btn{
  padding:8px 18px;
  background:#00c3ff;
  color:#fff;
  border-radius:20px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.cta-btn:hover{
  background:#009ed1;
  transform:scale(1.05);
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:22px;
  cursor:pointer;
  color:#000;
}

/* MOBILE */
@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{ display:flex; }

  .dropdown{
    position:static;
    width:100%;
    display:none;
    box-shadow:none;
    opacity:1;
    transform:none;
  }

  .nav-links li.open .dropdown{ display:flex; }

  .social-icons{ display:none; }
  .hamburger{ display:block; }

  
}





@media(max-width:480px){
  .logo img{ height:50px; }
  .navbar{ padding:12px; }
}

/* second section */

/* HERO */
.hero {
  height: 70vh;
  background:  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),url('../images/servicemn1.jpg') no-repeat center/cover;
  position: relative;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* display: flex; */
  justify-content: center;
  align-items: center;
  text-align: center;
  
  width: 90%;
  padding: 0 15px;
  color: #fff;
}

.overlay h1 {
  font-size: 38px;
  line-height: 1.3;
}

.hero-subtext {
  margin-top: 12px;        /* H1 ke neeche gap */
  font-size: 16px;
  line-height: 1.5;
  color: #f1f1f1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact{
  display:inline-block;
  padding:12px 28px;
  background:linear-gradient(135deg,#00c3ff,#009ed1);
  color:#fff;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  border-radius:30px;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,195,255,0.3);
}

/* Hover Effect */
.btn-contact:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,195,255,0.4);
}

/* Click Effect */
.btn-contact:active{
  transform:scale(0.95);
}


/* Tablet */
@media(max-width:1024px){
  .btn-contact{
    padding:11px 24px;
    font-size:13px;
  }
}

/* Mobile */
@media(max-width:768px){
  .btn-contact{
    width:100%;
    text-align:center;
    padding:12px;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .btn-contact{
    font-size:13px;
    padding:10px;
  }
}


/* 📱 Mobile (Small devices) */
@media (max-width: 576px) {
  .overlay h1 {
    font-size: 22px;
  }
}

/* 📱 Tablet */
@media (min-width: 577px) and (max-width: 768px) {
  .overlay h1 {
    font-size: 28px;
  }
}

/* 💻 Laptop */
@media (min-width: 769px) and (max-width: 1024px) {
  .overlay h1 {
    font-size: 34px;
  }
}

/* 🖥️ Large Screens */
@media (min-width: 1025px) {
  .overlay h1 {
    font-size: 42px;
  }
}




/* main page content start here */

/* ===== SERVICES MAIN ===== */

.services-main {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.services-main .container {
  max-width: 1200px;
  margin: auto;
}

.services-main h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.services-main .section-sub {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.service-card i {
  font-size: 30px;
  color: #e63946;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card a {
  text-decoration: none;
  color: #e63946;
  font-weight: 600;
  font-size: 14px;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-main h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-main {
    padding: 60px 15px;
  }

  .services-main h2 {
    font-size: 26px;
  }

  .service-card {
    padding: 25px 15px;
  }
}




/*  2nd section start yha se h */


/* ===== PROCESS SECTION ===== */

.process-section {
  padding: 80px 20px;
  background: #fff7f2; /* cream theme */
  text-align: center;
}

.process-section .container {
  max-width: 1200px;
  margin: auto;
}

.process-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.process-section .section-sub {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.process-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #f1e3dc;
  transition: 0.3s ease;
  position: relative;
}

.step-number {
  font-size: 22px;
  font-weight: bold;
  color: #e63946;
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.process-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-section h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding: 60px 15px;
  }

  .process-section h2 {
    font-size: 24px;
  }

  .process-card {
    padding: 25px 15px;
  }
}


/* 4th section */

/* ===== RESULTS SECTION ===== */

.results-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.results-section .container {
  max-width: 1100px;
  margin: auto;
}

.results-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.results-section .section-sub {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* GRID */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.result-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.result-card h3 {
  font-size: 32px;
  color: #e63946;
  margin-bottom: 10px;
}

.result-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* HOVER */
.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-section h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-section {
    padding: 60px 15px;
  }

  .results-section h2 {
    font-size: 26px;
  }

  .result-card {
    padding: 30px 15px;
  }
}


/* 5th section */

/* ===== AI SERVICES SECTION ===== */

.ai-services {
  padding: 80px 20px;
  background: #fff7f2;
  text-align: center;
}

.ai-services .container {
  max-width: 1200px;
  margin: auto;
}

.ai-services h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.ai-services .section-sub {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* GRID */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.ai-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #f1e3dc;
  transition: 0.3s ease;
}

.ai-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.ai-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-services h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .ai-services {
    padding: 60px 15px;
  }

  .ai-services h2 {
    font-size: 26px;
  }

  .ai-card {
    padding: 20px 15px;
  }
}


/* 6th section */

/* ===== FINAL CTA ===== */

.cta-final {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.cta-final .container {
  max-width: 900px;
  margin: auto;
}

.cta-final h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.3;
}

.cta-final p {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #e63946;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #c92c3a;
}

/* SECONDARY BUTTON */
.btn-secondary {
  border: 2px solid #e63946;
  color: #e63946;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #e63946;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
  .cta-final h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cta-final {
    padding: 70px 15px;
  }

  .cta-final h2 {
    font-size: 24px;
  }

  .cta-final p {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* 7th section faq */

/* FAQ SECTION - CREAM THEME */
.faq-section {
  padding: 80px 20px;
  background: #fdf6ee; /* light cream */
  text-align: center;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.faq-section .section-sub {
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
  color: #666;
}

/* CONTAINER */
.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* HOVER EFFECT */
.faq-item:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 15px;
  }

  .faq-answer p {
    padding: 0 15px 15px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .faq-section h2 {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14px;
  }
}




/* yha tak is page ki last css h niche footer part h  */

/* ===== BASE ===== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* ↑ z-index bada kiya */
}

/* BUTTON */
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ===== CHAT BOX ===== */
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  display: none;
  animation: slideUp 0.3s ease;
}

/* HEADER */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 18px;
  color: #fff;
}

.chat-header span {
  cursor: pointer;
  font-size: 18px;
  color: #ef4444;
  transition: 0.3s;
}

.chat-header span:hover {
  color: #dc2626;
  transform: scale(1.2);
}

/* TEXT */
.chat-subtext {
  font-size: 13px;
  color: #cbd5e1;
  margin: 10px 0 15px;
}

/* OPTIONS */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ITEM */
.chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.chat-item:hover {
  transform: translateX(6px);
}

/* CALL BUTTON DEFAULT GREEN */
.chat-item:nth-child(1) {
  background: #22c55e;
}

/* COLORS */
.chat-item:nth-child(2):hover {
  background: #ea4335;
}

.chat-item:nth-child(3):hover {
  background: #25d366;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SCROLL BUTTON ===== */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 95px; /* chat se proper gap */
  z-index: 900; /* chat ke niche rakha */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  border: none;
  cursor: pointer;

  opacity: 0.85;
  transition: 0.3s;
}

/* HOVER */
#topBtn:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

/* 🔥 IMPORTANT FIX → CONTENT COVER NA HO */
body.scrolled-bottom #topBtn {
  bottom: 120px;
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {

  .chat-box {
    width: 90vw;
    right: 5%;
    bottom: 90px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  /* 🔥 TOP BUTTON → CHAT KE UPAR STACK */
  #topBtn {
    right: 20px;      /* chat ke saath align */
    bottom: 95px;     /* chat ke upar */
    width: 42px;
    height: 42px;
  }

  /* 🔥 FOOTER KE PASS AUR UPAR SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 140px;
  }
}

@media (max-width: 480px) {

  .chat-box {
    width: 92vw;
    right: 4%;
    padding: 15px;
  }

  .chat-item {
    padding: 10px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }

  /* 🔥 TOP BUTTON CHAT KE UPAR */
  #topBtn {
    right: 20px;     /* same alignment as chat */
    bottom: 85px;    /* chat ke upar */
    width: 38px;
    height: 38px;
  }

  /* 🔥 FOOTER KE PASS SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 130px;
  }
}

/* footer part */

/* ===== FOOTER MAIN ===== */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 70px 20px 20px;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* LOGO */
.footer-logo {
  font-size: 24px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
  position: relative;
}

/* underline animation */
.footer-col ul li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #38bdf8;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* ===== SOCIAL ICONS ===== */
.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.footer-socials a:hover {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ===== BOTTOM ===== */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #334155;
  font-size: 14px;
  color: #94a3b8;
}

.footer-bottom .dev {
  margin-top: 8px;
}

.footer-bottom a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}