*{ 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/1.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;
  }
}

/* third-section */

.our-solutions{
  padding:80px 20px;
  background:#fff;
  text-align:center;
}

.our-solutions h2{
  font-size:36px;
  margin-bottom:10px;
}

.our-solutions p{
  color:#666;
  margin-bottom:40px;
}

/* GRID */
/* GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* LINK RESET */
.solution-link {
  text-decoration: none;
  list-style: none;
  color: inherit;
  display: block;
}

/* CARD */
.solution-card {
  background: #fffaf5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  color: #222;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* HOVER EFFECT */
.solution-card:hover {
  transform: translateY(-5px);

  color: #fff;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    font-size: 14px;
    padding: 15px;
  }
}

/* CARD */
.solution-card{
  background:#fdf6ec;
  padding:30px 20px;
  border-radius:15px;
  transition:0.3s;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  font-weight:500;
}

/* HOVER EFFECT */
.solution-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
  color:#00c3ff;
}

/* Tablet */
@media(max-width:1024px){
  .solutions-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .our-solutions{
    padding:60px 15px;
  }

  .our-solutions h2{
    font-size:28px;
  }

  .solutions-grid{
    grid-template-columns:1fr;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .our-solutions h2{
    font-size:24px;
  }

  .solution-card{
    padding:20px;
  }
}

.seo-content{
  max-width:900px;
  margin:40px auto 0;
  text-align:center;
  font-size:16px;
  line-height:1.7;
  color:#555;
  padding:0 20px;
}

/* Highlighted keywords */
.seo-content b{
  color:#00c3ff;
  font-weight:600;
}

/* Tablet */
@media(max-width:1024px){
  .seo-content{
    font-size:15px;
  }
}

/* Mobile */
@media(max-width:768px){
  .seo-content{
    font-size:14px;
    margin-top:30px;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .seo-content{
    font-size:13px;
    line-height:1.6;
  }
}


/* 4th section */

.why-choose{
  padding:80px 20px;
  background:linear-gradient(to right,#fdf6ec,#ffffff);
  text-align:center;
}

.why-choose h2{
  font-size:36px;
  margin-bottom:50px;
}

.why-choose span{
  color:#00c3ff;
}

/* GRID */
.why-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */
.why-box{
  background:#fff;
  padding:35px 25px;
  border-radius:20px;
  position:relative;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.why-box i{
  font-size:32px;
  color:#00c3ff;
  margin-bottom:15px;
  transition:0.3s;
}

/* TEXT */
.why-box h3{
  font-size:20px;
  margin-bottom:10px;
}

.why-box p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* 🔥 HOVER EFFECT */
.why-box:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* GRADIENT BORDER EFFECT */
.why-box::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#00c3ff,#009ed1);
  transition:0.4s;
}

.why-box:hover::before{
  left:0;
}

/* ICON ANIMATION */
.why-box:hover i{
  transform:scale(1.2) rotate(5deg);
}

/* LIGHT GLOW */
.why-box::after{
  content:"";
  position:absolute;
  width:150%;
  height:150%;
  background:radial-gradient(circle, rgba(0,195,255,0.1), transparent);
  top:-50%;
  left:-50%;
  opacity:0;
  transition:0.4s;
}

.why-box:hover::after{
  opacity:1;
}
@media(max-width:1024px){
  .why-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .why-container{
    grid-template-columns:1fr;
  }

  .why-choose h2{
    font-size:28px;
  }
}

/* 5th section portfolio */

.portfolio{
  padding:70px 20px;
  background:#fff;
  text-align:center;
}

.portfolio h2{
  font-size:34px;
  margin-bottom:10px;
}

.portfolio span{
  color:#00c3ff;
}

.portfolio-subtext{
  color:#666;
  margin-bottom:40px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

/* GRID */
.portfolio-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* ITEM */
.portfolio-item{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}

/* IMAGE */
.portfolio-item img{
  width:100%;
  display:block;
  transition:0.4s;
}

/* OVERLAY */
.portfolio-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:0.4s;
}

.portfolio-overlay h3{
  color:#fff;
  font-size:18px;
}

/* HOVER EFFECT */
.portfolio-item:hover img{
  transform:scale(1.1);
}

.portfolio-item:hover .portfolio-overlay{
  opacity:1;
}

@media(max-width:1024px){
  .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .portfolio-grid{
    grid-template-columns:1fr;
  }

  .portfolio h2{
    font-size:26px;
  }
}

/* 6th section testimonials */

/* SECTION */
.testimonials{
  padding:90px 20px;
  background:linear-gradient(135deg,#fdf6ec,#ffffff);
  text-align:center;
}

.testimonials h2{
  font-size:34px;
  margin-bottom:50px;
}

.testimonials span{
  color:#00c3ff;
}

/* SLIDER */
.testimonial-slider{
  max-width:1100px;
  margin:auto;
  overflow:hidden;
  position:relative;
}

/* TRACK */
.testimonial-track{
  display:flex;
  gap:20px;
  transition:0.5s ease;
}

/* CARD */
.testimonial-card{
  flex:0 0 calc(33.33% - 14px);
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  border-radius:20px;
  padding:30px 25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.3);
}

/* HOVER */
.testimonial-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.testimonial-card img{
  width:85px;
  height:85px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
  border:3px solid #00c3ff;
  transition:0.3s;
}

.testimonial-card:hover img{
  transform:scale(1.1) rotate(3deg);
}

/* TEXT */
.testimonial-card p{
  font-size:14px;
  color:#555;
  margin-bottom:15px;
  line-height:1.6;
}

.testimonial-card h4{
  color:#00c3ff;
  font-size:14px;
}

/* DOTS */
.dots{
  display:flex;
  justify-content:center;
  margin-top:30px;
  gap:10px;
}

.dots span{
  width:10px;
  height:10px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.dots span.active{
  background:#00c3ff;
  transform:scale(1.4);
}

/* ============================= */
/* 💻 LAPTOP */
/* ============================= */
@media(max-width:1024px){
  .testimonial-card{
    flex:0 0 calc(50% - 10px);
  }

  .testimonials h2{
    font-size:30px;
  }
}

/* ============================= */
/* 📱 TABLET + MOBILE FIX */
/* ============================= */
@media(max-width:768px){

  .testimonial-track{
    gap:0; /* 🔥 remove gap */
  }

  .testimonial-card{
    flex:0 0 100%;  /* 🔥 ONE CARD ONLY */
    max-width:100%;
    margin:0;
    border-radius:16px;
  }

  .testimonials{
    padding:70px 15px;
  }

  .testimonials h2{
    font-size:26px;
  }
}

/* ============================= */
/* 📱 SMALL MOBILE */
/* ============================= */
@media(max-width:480px){

  .testimonial-track{
    gap:0;
  }

  .testimonial-card{
    flex:0 0 100%;
    padding:22px 16px;
  }

  .testimonial-card img{
    width:70px;
    height:70px;
  }

  .testimonial-card p{
    font-size:13px;
  }

  .testimonial-card h4{
    font-size:13px;
  }

  .dots span{
    width:8px;
    height:8px;
  }

  .testimonials h2{
    font-size:22px;
    line-height:1.3;
  }
}

/* 7th section */
/* ===== COMMON SECTION ===== */
.about-section,
.seo-section,
.web-section,
.ppc-section {
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== IMAGE BLOCK ===== */
.about-left,
.seo-right,
.web-left,
.ppc-right {
  flex: 1;
  text-align: center;
}

/* ===== IMAGE ===== */
.about-left img,
.seo-right img,
.web-left img,
.ppc-right img {
  width: 100%;
  max-width: 420px;
  height: auto;
  transition: 0.3s ease;
}

.about-left img:hover,
.seo-right img:hover,
.web-left img:hover,
.ppc-right img:hover {
  transform: scale(1.05);
}

/* ===== TEXT BLOCK ===== */
.about-right,
.seo-left,
.web-right,
.ppc-left {
  flex: 1;
  max-width: 520px;
}

/* ===== HEADINGS ===== */
.about-right h2,
.seo-left h2,
.web-right h2,
.ppc-left h2 {
  font-size: 26px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* ===== SUB HEADING ===== */
.about-right h4,
.seo-left h4,
.web-right h4,
.ppc-left h4 {
  font-size: 17px;
  color: #444;
  margin-bottom: 8px;
}

/* ===== PARAGRAPH ===== */
.about-right p,
.seo-left p,
.web-right p,
.ppc-left p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6b00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #e65c00;
}

/* ============================= */
/* 💻 TABLET */
/* ============================= */
@media (max-width: 992px) {

  .container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  /* 🔥 TEXT FIRST */
  .about-right,
  .seo-left,
  .web-right,
  .ppc-left {
    order: 1;
  }

  .about-left,
  .seo-right,
  .web-left,
  .ppc-right {
    order: 2;
  }

  /* IMAGE SIZE */
  .about-left img,
  .seo-right img,
  .web-left img,
  .ppc-right img {
    max-width: 320px;
  }

  /* TEXT SIZE */
  .about-right h2,
  .seo-left h2,
  .web-right h2,
  .ppc-left h2 {
    font-size: 22px;
  }

  .about-right h4,
  .seo-left h4,
  .web-right h4,
  .ppc-left h4 {
    font-size: 16px;
  }

  .about-right p,
  .seo-left p,
  .web-right p,
  .ppc-left p {
    font-size: 14px;
  }
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */
@media (max-width: 576px) {

  .about-section,
  .seo-section,
  .web-section,
  .ppc-section {
    padding: 35px 15px;
  }

  .container {
    gap: 20px;
  }

  .about-left img,
  .seo-right img,
  .web-left img,
  .ppc-right img {
    max-width: 260px;
  }

  .about-right h2,
  .seo-left h2,
  .web-right h2,
  .ppc-left h2 {
    font-size: 18px;
  }

  .about-right h4,
  .seo-left h4,
  .web-right h4,
  .ppc-left h4 {
    font-size: 14px;
  }

  .about-right p,
  .seo-left p,
  .web-right p,
  .ppc-left p {
    font-size: 13px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}

/* 8th section award section  */

.elite-awards {
 background:linear-gradient(135deg,#fdf6ec,#ffffff);
  padding: 70px 20px;
  text-align: center;
}

.elite-container {
  max-width: 1200px;
  margin: auto;
}

.elite-tag {
  display: inline-block;
  /* background: #e9d8c2; */
  color: #7a5c3e;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

.elite-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.3;
}

.elite-heading span {
  color: #00c3ff;
}

.elite-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.elite-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.elite-card:hover {
  transform: translateY(-8px);
}

.elite-icon {
  font-size: 55px;
  margin-bottom: 15px;
}

.elite-card p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 992px) {
  .elite-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .elite-heading {
    font-size: 26px;
  }

  .elite-cards {
    grid-template-columns: 1fr;
  }
}

/* faq-section */

/* ===== FAQ SECTION ===== */
.faq {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.faq h2 {
  font-size: 34px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  color: #111;
}

/* ===== CONTAINER ===== */
.faq-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== ITEM ===== */
.faq-item {
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* Hover */
.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===== QUESTION ===== */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.3s;
  font-weight: 500;
}

.faq-question:hover {
  color: #00c3ff;
}

/* ===== ICON ===== */
.icon {
  font-size: 20px;
  transition: 0.3s;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== ACTIVE ===== */
.faq-item.active {
  background: #ffffff;
  border-color: #00c3ff;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  color: #00c3ff;
}

/* ============================= */
/* 💻 LAPTOP */
/* ============================= */
@media (max-width: 1024px) {
  .faq h2 {
    font-size: 30px;
  }

  .faq-container {
    max-width: 90%;
  }
}

/* ============================= */
/* 📱 TABLET */
/* ============================= */
@media (max-width: 768px) {

  .faq {
    padding: 60px 15px;
  }

  .faq h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 0 15px 15px;
  }
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */
@media (max-width: 480px) {

  .faq {
    padding: 50px 12px;
  }

  .faq h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .icon {
    font-size: 18px;
  }
}


/* ===== 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;
  }
}