/* =========================================
   Offernext — Premium Web Solutions
   Designed & Developed by Offernext
   https://offernext.in
========================================= */

/* Font */
@font-face {
  font-family: 'MyFont';
  src: url('../fonts/poppins.regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: 'MyFont', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

a, button, .faq-item, .hamburger {
  user-select: none;
}

body {
  background: #0b0b1a;
  overflow-x: hidden;
  color: white;
  user-select: auto;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 26, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ring-wrap {
  position: relative;
  width: 54px;
  height: 54px;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.r1 {
  border-top: 5px solid rgba(45, 216, 96, 0.9);
  border-right: 2px solid rgba(112, 233, 148, 0.733);
  animation: spin 0.9s linear infinite;
}

.r2 {
  inset: 6px;
  border-bottom: 5px solid rgba(12, 209, 101, 0.5);
  border-left: 2px solid rgba(91, 233, 145, 0.616);
  animation: spinReverse 1.4s linear infinite;
}

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

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

.preloader-hide {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
/* End Preloader */

/* Text Design */
.text-gradient-green {
  background: linear-gradient(90deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 13px;
  color: #4ade80;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.section-desc {
  color: #9ca3af;
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
}
/* End Text Design */

/* Nav Design */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: 0.3s ease;
  background: transparent;
  transform: translateZ(0);
}

header.scrolled {
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0; 
}

.logo {
  display: flex;
  align-items: center;
  height: 40px; 
  margin-left: 18px;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
  
}

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

.nav-links a {
  position: relative;
  color: #9aa0a6;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #22c55e;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #22c55e;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 10px;
}

/* Mobile Nav */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px) scale(0.96);
  display: flex;
  width: 92%;
  max-width: 400px;
  padding: 20px;
  border-radius: 18px; 
  gap: 12px;
  background: rgba(5, 10, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  transition: all 0.35s ease;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(34,197,94,0.15), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.mobile-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  display: block;
  font-weight: 500;
  padding: 12 14px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #22c55e;
  transform: translateX(6px);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}
/* End Mobile Nav */
/* End Nav Design */

/* Hero Section*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  z-index: 1;
}

#hero {
  background: radial-gradient(circle at center, #022c22, #020617);
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.26),
    rgba(2, 6, 23, 0.308)
  );

  z-index: 1;
}

.vanta-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.vanta-bg .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: block;
  text-align: center;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
  gap: 50px;
}

.badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.hero-text {
  max-width: 750px;
  margin: auto;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  text-align: center;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc {
  margin-top: 20px;
  color: #9ca3af;
  font-size: 17px;
  margin: 20px auto 0;
  line-height: 1.7;
  max-width: 550px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn1 {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #02130a;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.6s;
}

.btn1:hover::before {
  left: 100%;
}

.btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
}

.btn2 {
  background: rgba(255, 255, 255, 0.164);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.6s;
}

.btn2:hover::before {
  left: 100%;
}

.btn2:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn1,
.btn2 {
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#changing-text {
  color: #4ade80;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 BASE (desktop hidden) */
.offer-box {
  display: none;
}

/* 🔥 TABLET + MOBILE (PREMIUM VERSION) */
@media (max-width: 900px) {
  .offer-box {
    display: block;

    margin: 18px auto 0;
    padding: 16px 18px;

    width: 100%;
    max-width: 340px;

    text-align: left;

    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(2,6,23,0.7));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(74,222,128,0.35);
    border-radius: 16px;

    box-shadow: 
      0 10px 40px rgba(34,197,94,0.15),
      inset 0 0 20px rgba(74,222,128,0.08);

    position: relative;
    overflow: hidden;
  }

  .offer-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(74,222,128,0.25), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
  }

  .offer-box p {
    font-size: 12px;
    color: #4ade80;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }

  .offer-box span {
    display: block;
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 10px;
  }

  .offer-box a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #22c55e;
    font-weight: 600;
    transition: 0.3s;
  }

  .offer-box a:hover {
    transform: translateX(4px);
  }
}

/* 🔥 MOBILE PERFECT SPACING */
@media (max-width: 600px) {
  .hero-buttons {
    margin-bottom: 14px;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .offer-box {
    margin: 0 auto;
    max-width: 300px;
    padding: 14px;
    text-align: left;
  }

  .offer-box p {
    font-size: 11px;
  }

  .offer-box span {
    font-size: 11px;
    line-height: 1.4;
  }

  .offer-box a {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    padding-top: 140px; 
    padding-bottom: 40px;
    display: flex;
    align-items: flex-start; 
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .desc {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    padding-top: 80px; 
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start; 
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn1,
  .btn2 {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 10px;
    white-space: nowrap; 
  }

  .hero h1 {
    font-size: 32px;
  }

  .desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
  }

  .badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  #hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}

/* OPTIONAL SMALL ANIMATION (kept from your code) */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* End Hero Section */

/* Service Section */
.service {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(circle at top, #020617, #000814);
  position: relative;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74,222,128,0.4);
}

.icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
  font-size: 28px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: #9ca3af;
  font-size: 15px;
}

@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  text-align: center;
  background: #020617;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 13px;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.pricing-desc {
  color: #9ca3af;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  transition: 0.3s;
  position: relative;
}

.price-card h4 {
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

.price-card .sub {
  color: #9ca3af;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.price-card ul li {
  margin-bottom: 8px;
  color: #9ca3af;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.356);
}

.price-card.active {

  background: linear-gradient(
    135deg,
    rgba(34,197,94,0.15),
    rgba(74,222,128,0.08)
  );
  border: 1px solid rgba(34,197,94,0.7);
  position: relative;
  z-index: 2;
}

.price-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    circle at top,
    rgba(34,197,94,0.25),
    transparent 70%
  );
  opacity: 0.7;
  pointer-events: none;
}

.popular {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #02130a;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* End Pricing Section */

/* Why Choose Us Section */
.whyus {
  padding: 120px 0;
  text-align: center;
  background: #020617;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.whyus-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whyus-card:hover::before {
  opacity: 1;
}

.whyus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.4);
}

.icon-circle {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #4ade80;
}

.whyus-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.whyus-card p {
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 900px) {
  .whyus-grid {
    grid-template-columns: 1fr;
  }
}
/* End Why Choosing Us */

/* FAQ */
.faq {
  padding: 120px 0;
  background: #020617;
  text-align: center;
}

.faq-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 13px;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-desc {
  color: #9ca3af;
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.faq-question span {
  font-size: 22px;
  color: #4ade80;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: 
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px; 
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

.faq-question span {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active {
  border-color: rgba(34,197,94,0.3);
}
/* End FAQ */

/* Contact */
.contact {
  padding: 120px 0;
  background: #020617;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 13px;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-desc {
  color: #9ca3af;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.contact-box i {
  font-size: 20px;
  color: #4ade80;
}

.whatsapp-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
  box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

/* RIGHT */
.chat-card {
  width: 100%;
  max-width: 420px;
  height: 380px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: #aaa;
}

.chat-header .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
}

.chat-body {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.chat-body::-webkit-scrollbar {
  width: 9px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
}

.msg {
  max-width: 75%;
  word-wrap: break-word;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.msg.bot {
  background: rgba(255,255,255,0.05);
  align-self: flex-start;
}

.msg.user {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
  align-self: flex-end;
}

.chat-input {
  display: flex;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 10px;
}

.chat-input input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px;
  color: white;
  outline: none;
}

.chat-input button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.chat-input button:hover {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
  box-shadow: 0 10px 30px rgba(34,197,94,0.3);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .contact {
    padding: 70px 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-desc {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .contact-box {
    padding: 10px 12px;
    font-size: 14px;
  }

  .contact-box i {
    font-size: 16px;
  }

  .whatsapp-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .chat-card {
    max-width: 100%;
    height: 300px; 
    margin-top: 20px;
  }

  .chat-header {
    font-size: 12px;
    padding: 10px 14px;
  }

  .chat-body {
    padding: 12px;
    gap: 8px;
  }

  .msg {
    font-size: 12px;
    padding: 8px 10px;
    max-width: 85%;
  }

  .chat-input {
    padding: 8px;
  }

  .chat-input input {
    padding: 8px;
    font-size: 12px;
  }

  .chat-input button {
    padding: 8px 10px;
    font-size: 12px;
  }

}
/* End Contact */

/* Footer Section */
.footer {
  background: #050510;
  margin-top: 120px;
  position: relative;
}

.footer-cta {
  max-width: 1100px;
  margin: auto;
  transform: translateY(-60px);
  padding: 0 20px;
}

.cta-content {
  background: linear-gradient(135deg, #074628c7, #020617);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-content h2 {
  font-size: 28px;
}

.cta-content p {
  color: #aaa;
  margin-top: 5px;
}

.cta-content button {
  background: #4ade80;
  color: black;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 40px;
  padding: 60px 20px;
}

.footer-brand h2 {
  margin-bottom: 10px;
}

.footer-brand p {
  color: #aaa;
  max-width: 300px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-links h4 {
  margin-bottom: 10px;
}

.footer-links p {
  color: #aaa;
  margin-bottom: 6px;
  cursor: pointer;
}

.footer-contact p {
  color: #aaa;
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #666;
}

@media (max-width: 900px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .cta-content {
    padding: 25px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-brand p {
    margin: auto;
  }
}
/* End Footer */

/* Scroll to top / Whatsapp Icon */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  color: white;
  text-align: center;
  justify-content: center;
  line-height: 0
}

.fab.whatsapp {
  background: linear-gradient(135deg, #25D366, #22c55e);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(34,197,94,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; 
  line-height: 1;  
}

.fab.whatsapp:hover {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

.fab.whatsapp i {
  font-size: 22px;
  line-height: 1;
  display: block; 
}
.fab.top {
  opacity: 0;
  pointer-events: none;
}

.fab.top.show {
  opacity: 1;
  pointer-events: auto;
}

.fab.top:hover {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: black;
}
/* End Scroll to top / Whatsapp Icon */

/* Section BG */
.premium-bg {
  position: relative;
  overflow: hidden;
  background: #020617; /* keep DARK base */
}

.premium-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(34,197,94,0.15),
    transparent 70%
  );
  filter: blur(120px);
  z-index: 0;
}

.premium-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #020617,
    #022c22,
    #063b2d,
    #020617
  );
  opacity: 0.6;
  z-index: 0;
}

.premium-bg .container {
  position: relative;
  z-index: 2;
}
/* End Section BG */

/* =========================================
   Offernext — Premium Web Solutions
   Designed & Developed by Offernext
   https://offernext.in
========================================= */
