/* =========================================================
   GLOBAL CSS
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-padding-top: 110px;
}

body {
  background: #050505;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  animation: floating 8s infinite ease-in-out;
}

body::before {
  width: 500px;
  height: 500px;
  background: rgba(0, 255, 255, 0.12);
  top: -200px;
  left: -100px;
}

body::after {
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 255, 0.08);
  bottom: -100px;
  right: -100px;
  animation-duration: 10s;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
  width: 100%;
  background: cyan;
  color: #000;
  padding: 10px 0;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.top-bar marquee {
  font-size: 15px;
}

/* =========================================================
   HEADER
========================================================= */

header {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 80px;
  border-radius: 5px;
  filter: drop-shadow(0 0 10px cyan);
  animation: pulse 2s infinite;
}

.logo h2 {
  font-size: 1.5rem;
}

.logo span {
  color: cyan;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* =========================================================
   NAVBAR
========================================================= */

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

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: .3s;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: cyan;
  transition: .4s;
}

nav ul li a:hover {
  color: cyan;
}

nav ul li a:hover::after {
  width: 100%;
}


.menu-toggle {
  display: none;
  font-size: 32px;
  color: cyan;
  cursor: pointer;
  transition: 0.3s ease;
  user-select: none;
}

.menu-toggle:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px cyan;
}

/* =========================================================
   COMMON SECTION
========================================================= */

section {
  padding: 40px 8% 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: cyan;
  margin-bottom: 10px;
}

.section-title p {
  color: #bbb;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-contact {
  padding: 50px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid cyan;
  border-radius: 30px;
  color: cyan;
  margin-bottom: 25px;
  font-size: 14px;
}

.hero-left h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: cyan;
  text-shadow: 0 0 15px cyan;
}

.hero-left p {
  color: #ccc;
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-btn {
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  background: cyan;
  color: #000;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px cyan;
}

.outline-btn {
  background: transparent;
  border: 2px solid cyan;
  color: cyan;
}

.outline-btn:hover {
  background: cyan;
  color: #000;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: #ddd;
}

/* HERO FORM */

.hero-form-box {
  width: 420px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.12);
}

.hero-form-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: cyan;
}

.hero-form-box form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-form-box input,
.hero-form-box textarea,
.contact-form-box input,
.contact-form-box textarea,
input,
textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

input:focus,
textarea:focus {
  border-color: cyan;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-form-box button,
.contact-form-box button {
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: cyan;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.hero-form-box button:hover,
.contact-form-box button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px cyan;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
  padding: 40px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  color: #fff;
}

.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.img-box {
  height: 280px;
  overflow: hidden;
  border-radius: 35px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.img-box:hover img {
  transform: scale(1.08);
}

.img1 {
  grid-column: span 2;
}

/* =========================
   ABOUT CENTER LOGO ANIMATION
========================= */

.about-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 170px;
  height: 170px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);
  border: 8px solid rgba(255, 255, 255, 0.9);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.35),
    0 0 60px rgba(0, 255, 255, 0.18);

  animation:
    logoFloat 4s ease-in-out infinite,
    logoGlow 3s ease-in-out infinite;
}

/* ROTATING BORDER EFFECT */

.about-logo::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;

  background: conic-gradient(transparent,
      cyan,
      transparent,
      #00ffff,
      transparent);

  animation: rotateLogo 5s linear infinite;
}

/* INNER WHITE CIRCLE */

.about-logo::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

/* IMAGE */

.about-logo img {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;

  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.4));

  animation: logoPulse 2.5s ease-in-out infinite;
}

/* FLOAT */

@keyframes logoFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

/* GLOW */

@keyframes logoGlow {

  0%,
  100% {
    box-shadow:
      0 0 25px rgba(0, 255, 255, 0.35),
      0 0 60px rgba(0, 255, 255, 0.15);
  }

  50% {
    box-shadow:
      0 0 40px rgba(0, 255, 255, 0.6),
      0 0 90px rgba(0, 255, 255, 0.25);
  }
}

/* ROTATION */

@keyframes rotateLogo {
  100% {
    transform: rotate(360deg);
  }
}

/* IMAGE PULSE */

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* MOBILE */

@media(max-width:600px) {

  .about-logo {
    width: 120px;
    height: 120px;
  }

  .about-logo img {
    width: 68px;
    height: 68px;
  }

}

.about-content {
  flex: 1;
}

.about-tag {
  color: cyan;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.about-content h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-content p {
  color: #fff;
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}

.about-btn {
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  background: cyan;
  color: #000;
  font-weight: 600;
  transition: .3s;
}

.about-btn:hover {
  background: fff;
  color: #000;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 15px;
}

.call-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #08131d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* =========================================================
   SERVICES
========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: .4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: cyan;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.25);
}

.service-icon {
  font-size: 3rem;
}

.service-card h3 {
  margin: 20px 0 15px;
  color: cyan;
}

.service-card p {
  color: #ccc;
  line-height: 1.7;
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section {
  position: relative;
  padding: 40px 8%;
  overflow: hidden;
}

.testimonial-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.testimonial-heading h2 {
  font-size: 3rem;
  color: cyan;
  margin-bottom: 25px;
}

.testimonial-heading p {
  color: #bbb;
  line-height: 1.8;
}

.testimonial-wrapper {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.testimonial-box {
  width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 80px 30px 40px;
  text-align: center;
  position: relative;
  transition: .4s;
}

.testimonial-box:hover {
  transform: translateY(-10px);
  border-color: cyan;
}

.testimonial-box img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #050505;
}

.testimonial-box h3 {
  color: cyan;
  margin-bottom: 10px;
}

.testimonial-box p {
  color: #ccc;
  line-height: 1.9;
}

/* =========================
FAQ SECTION
========================= */

.faq-section {
  position: relative;
  padding: 40px 8%;
  background: transparent;
  /* YOUR WEBSITE COLOR SAME */
  overflow: hidden;
}

/* DOT BACKGROUND */

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: 22px 22px;
  opacity: 0.3;
  z-index: 0;
}

/* ANIMATED BACKGROUND */

.faq-bg-circle,
.faq-bg-circle2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.faq-bg-circle {
  width: 320px;
  height: 320px;
  background: rgba(0, 255, 255, 0.08);
  top: -100px;
  left: -100px;
  animation: faqFloat 7s infinite ease-in-out;
}

.faq-bg-circle2 {
  width: 260px;
  height: 260px;
  background: rgba(0, 255, 255, 0.05);
  bottom: -100px;
  right: -100px;
  animation: faqFloat 9s infinite ease-in-out;
}

@keyframes faqFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

/* MAIN CONTAINER */

.faq-container-main {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* LEFT SIDE */

.faq-left {
  width: 40%;
}

.faq-left span {
  color: #ff8c42;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 600;
}

.faq-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 20px 0;
  color: #fff;
}

.faq-left p {
  color: #bbb;
  line-height: 2;
  font-size: 17px;
  margin-bottom: 40px;
}

.faq-btn {
  display: inline-block;
  padding: 15px 38px;
  background: cyan;
  color: #000;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.faq-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px cyan;
}

/* RIGHT SIDE */

.faq-right {
  width: 60%;
}

/* FAQ BOX */

.faq-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
  backdrop-filter: blur(10px);
}

.faq-box.active {
  border-color: cyan;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.12);
}

/* QUESTION */

.faq-question {
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

.faq-question span {
  color: cyan;
  font-size: 2rem;
  font-weight: 500;
  min-width: 25px;
  text-align: center;
}

/* ANSWER */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.faq-answer p {
  color: #bbb;
  line-height: 1.9;
  padding: 0 28px 28px;
  font-size: 15px;
}

/* ACTIVE */

.faq-box.active .faq-answer {
  max-height: 300px;
}


/* =========================
CONTACT SECTION UPDATED
MATCHING YOUR LANDING PAGE
========================= */

.contact-section {
  position: relative;
  padding: 40px 8%;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.88)),
    url('images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* GLOW EFFECT */

.contact-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 255, 255, 0.12);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(120px);
  animation: floating 8s infinite ease-in-out;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(120px);
  animation: floating 10s infinite ease-in-out;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* =========================
LEFT SIDE
========================= */

.contact-left h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-left h2 span {
  color: cyan;
  text-shadow: 0 0 15px cyan;
}

.contact-left p {
  color: #cfcfcf;
  line-height: 1.9;
  font-size: 17px;
  max-width: 650px;
  margin-bottom: 35px;
}

/* POINTS */

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-points .point {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/* REVIEW CARDS */

.review-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.4s;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: cyan;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.25);
}

.review-card h3 {
  color: cyan;
  font-size: 2rem;
  margin-bottom: 15px;
}

.review-card .stars {
  color: #ffb400;
  font-size: 28px;
  margin-bottom: 18px;
}

.review-card p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* COUNTRY BOX */

.country-box {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  color: cyan;
  font-size: 24px;
  font-weight: 700;
}

.country-box span {
  display: block;
  margin-top: 10px;
  color: #bbb;
  font-size: 15px;
  font-weight: 400;
}

/* =========================
FORM BOX
========================= */

.contact-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 40px;
  transition: 0.4s;
}

.contact-form-box:hover {
  border-color: cyan;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.18);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* INPUTS */

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #bbb;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: cyan;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* PHONE FIELD */

.phone-field {
  display: flex;
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.country-code {
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 500;
}

.phone-field input {
  border: none;
  background: transparent;
}

/* BUTTON */

.contact-form-box button {
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: cyan;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
}

.contact-form-box button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px cyan;
}

/* =========================
FOOTER SECTION
========================= */

.main-footer {
  background: #000514;
  padding: 40px 8% 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */

.main-footer::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

.main-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(120px);
}

/* CONTAINER */

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* BOX */

.footer-box {
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-box:last-child {
  border-right: none;
}

.footer-box h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
}


/* ABOUT */

.footer-box p {
  color: #bbb;
  line-height: 1.9;
  font-size: 15px;
}

/* CALL BUTTON */

.footer-call-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: cyan;
  color: #000;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.footer-call-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px cyan;
}

/* CONTACT */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-contact p {
  color: #ddd;
  font-size: 17px;
  line-height: 1.8;
}

/* NEWSLETTER */

.newsletter-text {
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  padding: 16px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.newsletter-form button {
  padding: 16px 28px;
  border: none;
  background: cyan;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s;
}

.newsletter-form button:hover {
  background: #00d9d9;
}

/* SOCIAL */

.footer-social {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.4s;
  color: #fff;
}

.footer-social a:hover {
  background: cyan;
  color: #000;
  transform: translateY(-5px);
}

/* COPYRIGHT */

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #fff;
  font-size: 16px;
}


/* =========================================================
   FLOATING BUBBLE EFFECT
   BODY KE ANDAR ADD KARO
========================================================= */

.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bubbles span {
  position: absolute;
  bottom: -150px;
  display: block;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.12);
  animation: animateBubble linear infinite;
  box-shadow:
    0 0 10px rgba(0, 255, 255, 0.4),
    0 0 20px rgba(0, 255, 255, 0.25),
    0 0 40px rgba(0, 255, 255, 0.15);
}

/* DIFFERENT BUBBLE SIZES & SPEED */

.bubbles span:nth-child(1) {
  left: 5%;
  width: 40px;
  height: 40px;
  animation-duration: 15s;
}

.bubbles span:nth-child(2) {
  left: 15%;
  width: 25px;
  height: 25px;
  animation-duration: 10s;
  animation-delay: 2s;
}

.bubbles span:nth-child(3) {
  left: 28%;
  width: 60px;
  height: 60px;
  animation-duration: 18s;
}

.bubbles span:nth-child(4) {
  left: 40%;
  width: 18px;
  height: 18px;
  animation-duration: 9s;
  animation-delay: 1s;
}

.bubbles span:nth-child(5) {
  left: 55%;
  width: 50px;
  height: 50px;
  animation-duration: 14s;
}

.bubbles span:nth-child(6) {
  left: 68%;
  width: 22px;
  height: 22px;
  animation-duration: 11s;
  animation-delay: 3s;
}

.bubbles span:nth-child(7) {
  left: 78%;
  width: 70px;
  height: 70px;
  animation-duration: 20s;
}

.bubbles span:nth-child(8) {
  left: 88%;
  width: 30px;
  height: 30px;
  animation-duration: 13s;
  animation-delay: 2s;
}

.bubbles span:nth-child(9) {
  left: 95%;
  width: 45px;
  height: 45px;
  animation-duration: 16s;
}

@keyframes animateBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(-50vh) translateX(40px) scale(1.1);
  }

  100% {
    transform: translateY(-120vh) translateX(-40px) scale(0.8);
    opacity: 0;
  }
}


/* =========================
   FLOATING BUTTONS
========================= */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* COMMON BUTTON */

.float-btn {
  width: 62px;
  height: 62px;

  border-radius: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
  color: #fff;

  font-size: 24px;
  font-weight: 600;

  position: relative;
  overflow: hidden;

  transition: 0.35s ease;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);

  animation: floatBtn 3s ease-in-out infinite;
}

/* TEXT */

.float-btn span {
  position: absolute;
  right: 70px;

  background: #111;
  color: #fff;

  padding: 10px 16px;
  border-radius: 30px;

  font-size: 14px;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;
}

/* HOVER */

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn:hover span {
  opacity: 1;
  visibility: visible;
}

/* CALL */

.call-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.45);
}

/* WHATSAPP */

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* FLOAT ANIMATION */

@keyframes floatBtn {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left {
    text-align: center;
  }

  .contact-points {
    align-items: center;
  }
}

@media(max-width:991px) {

  header {
    padding: 15px 5%;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #08131d;
    display: none;
    padding: 20px 0;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }


  nav ul li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    width: 100%;
    padding: 15px;
  }

  .hero-contact,
  .about-section,
  .faq-container-main {
    flex-direction: column;
  }

  .hero-contact {
    text-align: center;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

  .hero-buttons,
  .hero-features,
  .about-bottom {
    justify-content: center;
  }

  .hero-form-box,
  .testimonial-box {
    width: 100%;
    max-width: 500px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

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

@media(max-width:768px) {

  .contact-section {
    padding: 80px 5%;
  }
  
  .about-btn {
    width: 100%;
}


  .contact-left h2 {
    font-size: 2.5rem;
  }

  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .contact-form-box {
    padding: 15px;
  }
}


/* MOBILE */

@media(max-width:600px) {

  .floating-buttons {
    right: 14px;
    bottom: 18px;
  }

  .float-btn {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .float-btn span {
    display: none;
  }

}

@media(max-width:600px) {

  section,
  .hero-contact,
  .about-section,
  .testimonial-section,
  .faq-section,
  .contact-section,
  .main-footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .logo img {
    width: 50px;
  }

  .logo h2 {
    font-size: 1.5rem;
  }

  nav {
    top: 70px;
  }

  .hero-left h1 {
    font-size: 1.7rem;
  }

  .hero-contact {
    padding: 30px 8%;
  }

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

  .hero-btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .section-title h2,
  .testimonial-heading h2,
  .faq-left h2,
  .contact-left h2 {
    font-size: 2rem;
  }

  .hero-form-box {
    padding: 15px;
  }


  .about-section {
    padding: 30px 8%;
    gap: 30px;
  }

  .about-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .contact-section {
    padding: 30px 5%;
  }

  .about-call {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 34px;
    justify-content: center;
  }

  .contact-form-box {
    padding: 15px;
  }

  .footer-box {
    padding: 0px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-call-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
  }

  .main-footer {
    background: #0b0f19;
    padding: 30px 8% 25px !important;
  }

  .faq-section {
    position: relative;
    padding: 20px 8%;
  }

  .faq-left {
    text-align: center;
  }

  .faq-container-main {
    gap: 40px;
      
  }


    .faq-btn {
      width: 100%;
      text-align: center;
    }


    .services-grid {
      grid-template-columns: 1fr;
    }

    .about-images {
      grid-template-columns: 1fr;
    }

    .img1 {
      grid-column: span 1;
    }

    .img-box {
      height: 230px;
    }

    .about-logo {
      width: 120px;
      height: 120px;
    }

    .about-logo img {
      width: 70px;
    }

    .about-content h2 {
      font-size: 2.1rem;
    }

    .faq-question {
      padding: 20px 18px;
    }

    .faq-answer p {
      padding: 0 18px 22px;
    }

    .footer-social {
      justify-content: center;
    }


  }