*{ 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/website-main.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 start here  */


/* ===== COMMON SECTION ===== */
.service-section {
  padding: 80px 20px;
}

.service-section.cream {
  background: #fdf6ee;
}

/* CONTAINER SAME AS SITE */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* ===== ROW ===== */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px; /* 👈 proper spacing */
}

/* ===== IMAGE ===== */
.service-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-img img {
  width: 100%;
  max-width: 420px;   /* 👈 balanced size */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT ===== */
.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}

.service-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #555;
  font-size: 15px;
}

/* LIST */
.service-content ul {
  margin: 20px 0;
  padding-left: 18px;
}

.service-content ul li {
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

/* BUTTON SAME AS SITE */
.btn-contact {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg,#00c3ff,#009ed1);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,195,255,0.3);
}

.btn-contact:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,195,255,0.4);
}

/* ===== PROCESS GRID ===== */
.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .service-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service-img img {
    max-width: 320px;
  }

  .service-content ul {
    padding-left: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .service-section {
    padding: 60px 15px;
  }

  .service-content h2 {
    font-size: 22px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 14px;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* 4th section */


/* ===== WHY CHOOSE SEO (CREAM SECTION) ===== */
.service-section.cream {
  background: #fdf6ee;
}

/* ROW SAME FLOW */
.service-section.cream .service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* IMAGE */
.service-section.cream .service-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-section.cream .service-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTENT */
.service-section.cream .service-content {
  flex: 1;
}

.service-section.cream .service-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}

.service-section.cream .service-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #555;
  font-size: 15px;
}

/* LIST */
.service-section.cream .service-content ul {
  margin: 20px 0;
  padding-left: 18px;
}

.service-section.cream .service-content ul li {
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}

/* BUTTON SAME AS SITE */
.service-section.cream .btn-contact {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg,#00c3ff,#009ed1);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,195,255,0.3);
}

.service-section.cream .btn-contact:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,195,255,0.4);
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .service-section.cream .service-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service-section.cream .service-img img {
    max-width: 320px;
  }

  .service-section.cream .service-content ul {
    padding-left: 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .service-section.cream {
    padding: 60px 15px;
  }

  .service-section.cream .service-content h2 {
    font-size: 22px;
  }

  .service-section.cream .service-content p,
  .service-section.cream .service-content ul li {
    font-size: 14px;
  }

  .service-section.cream .btn-contact {
    width: 100%;
    text-align: center;
  }
}


/* 5th section */

/* ===== SEO RESULTS SECTION (WHITE) ===== */
.seo-results-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.seo-results-section .section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

/* SUBTEXT */
.seo-results-section .section-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.result-box {
  background: #fff; /* light cream card */
  padding: 30px 20px;
  border-radius: 14px;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* HOVER */
.result-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* NUMBER */
.result-box h3 {
  font-size: 34px;
  color: #00c3ff;
  margin-bottom: 10px;
}

/* TEXT */
.result-box p {
  font-size: 14px;
  color: #555;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .seo-results-section {
    padding: 60px 15px;
  }

  .seo-results-section .section-title {
    font-size: 24px;
  }

  .seo-results-section .section-sub {
    font-size: 14px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-box h3 {
    font-size: 28px;
  }
}


/* faq section */

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.faq-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-section .section-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* CONTAINER */
.faq-container {
  max-width: 850px;
  margin: auto;
  text-align: left;
}

/* ITEM */
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 20px 22px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  color: #ff7a00;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* HOVER */
.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ===== RESPONSIVE ===== */

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
  .faq-section {
    padding: 100px 40px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 16px;
  }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .faq-question {
    font-size: 16.5px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .faq-section {
    padding: 70px 20px;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .faq-section .section-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px;
  }

  .faq-answer p {
    font-size: 14.5px;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
  .faq-section {
    padding: 50px 12px;
  }

  .faq-section h2 {
    font-size: 22px;
  }

  .faq-section .section-sub {
    font-size: 13.5px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px;
  }

  .faq-answer p {
    font-size: 13.5px;
  }
}











/* 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;
  }
}