* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

/* ===== NAVBAR ===== */

header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 45px;
}

/* MENU */
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s;
  font-weight: 900;
}

.menu a:hover {
  color: #1f4ed8;
}

/* BUTTON */
.navbar .btn {
  background: #1c2c4c;
  color: #fff;
  padding: 8px 16px;
  /* border-radius: 5px; */
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #1f4ed8;
  color: white !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1c2c4c;
  transition: 0.3s;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 80px 30px 30px;
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .menu.active {
    left: 0;
  }

  .menu a {
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .menu .btn {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 33vh;
    padding: 15px;
    /* top right bottom left */
    box-sizing: border-box;
  }
}
@media (max-width: 1980px) {
  .hero {
    height: auto;
    padding: 15px;
    /* top right bottom left */
    box-sizing: border-box;
  }
}

/* ===== VIDEO SECTION ===== */

.hero {
  width: 100%;
  height: 85vh;
  margin-top: 75px;
  position: relative;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 40vh;
    margin-top: 65px;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo img {
    height: 35px;
  }
}

/* ===== SECTION ===== */
.workspace {
  width: 100%;
  padding: 70px 8%;
  text-align: center;
  background: #fff;
}

/* TOP TEXT */
.top-text {
  max-width: 950px;
  margin: auto;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}

/* HEADING */
.workspace h2 {
  font-size: 42px;
  margin: 30px 0 15px;
  font-weight: 700;
}

.workspace h2 span {
  color: #1f4ed8;
}

/* SUB TEXT */
.sub-text {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* CARDS */
.cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.card {
  border: 1px solid #1f4ed8;
  padding: 35px 25px;
  background: #fff;
  border-radius: 8px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(31, 78, 216, 0.1);
}

/* ICON BOX */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border: 2px solid #1f4ed8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.icon-box i {
  font-size: 28px;
  color: #1f4ed8;
}

/* TITLE */
.card h3 {
  font-size: 17px;
  margin: 15px 0;
  color: #0b1c3d;
  letter-spacing: 1px;
}

/* TEXT */
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .workspace {
    padding: 40px 5%;
  }

  .workspace h2 {
    font-size: 26px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
  }
}

.card.animate {
  animation: bellShake 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* Bell Shake Animation */
@keyframes bellShake {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(5deg);
  }

  30% {
    transform: rotate(-5deg);
  }

  45% {
    transform: rotate(4deg);
  }

  60% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Jab scroll pe dikhe tab */
.card.animate {
  animation: bellShake 0.6s ease-in-out;
}

/* MAIN SECTION */
.benefits {
  width: 100%;
  background: linear-gradient(to right, #0b0710, #1a0f1f, #0b0710);
  padding: 80px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  color: #fff;
}

/* LEFT */
.b-left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BIG IMAGE */
.big-img {
  width: 360px;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 5px solid #00aaff;
  overflow: hidden;
  position: relative;
}

.big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLUE RING */
.big-img::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 7px solid #00aaff;
  border-radius: 50%;
  top: -25px;
  right: 0;
  transform: translateX(30%);
}

/* SMALL IMAGE */
.small-img {
  width: 160px;
  max-width: 45%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 4px solid #ffb400;
  overflow: hidden;
  position: absolute;
  bottom: -30px;
  right: 15%;
  background: #000;
}

.small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GALLERY BOX */
.gallery-box {
  margin-top: 60px;
  background: #fff;
  color: #000;
  width: 260px;
  max-width: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.gallery-box h4 {
  margin-bottom: 12px;
}

.gallery-box button {
  background: #183a6b;
  color: #fff;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.gallery-box button:hover {
  background: #1f4ed8;
}

/* RIGHT */
.b-right {
  flex: 1;
}

/* TITLE */
.b-right small {
  color: #00aaff;
  letter-spacing: 1px;
}

.b-right h2 {
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.2;
}

.b-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}

/* LIST */
.b-list {
  margin-top: 35px;
}

.b-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  margin-bottom: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.b-item:hover,
.b-item.active {
  background: #fff;
  color: #000;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .big-img {
    width: 320px;
  }

  .b-right h2 {
    font-size: 36px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .benefits {
    flex-direction: column;
    text-align: center;
    padding: 70px 5%;
    gap: 40px;
  }

  .small-img {
    position: static;
    margin: 25px auto;
    width: 140px;
  }

  .gallery-box {
    margin-top: 25px;
  }

  .b-left {
    order: 2;
    width: 100%;
  }

  .b-right {
    order: 1;
    width: 100%;
  }

  .b-right h2 {
    font-size: 32px;
  }

  .b-list {
    max-width: 500px;
    margin: 35px auto 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .benefits {
    padding: 50px 4%;
    gap: 30px;
  }

  .big-img {
    width: 260px;
  }

  .big-img::after {
    width: 90px;
    height: 90px;
    top: -15px;
    right: -15px;
  }

  .small-img {
    width: 120px;
  }

  .gallery-box {
    margin-top: 25px;
    width: 100%;
  }

  .b-right h2 {
    font-size: 26px;
  }

  .b-right p {
    font-size: 14px;
  }

  .b-item {
    font-size: 14px;
    padding: 14px;
  }
}

/* SECTION */
.mission {
  width: 100%;
  background: #f6fbff;
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
}

/* TOP TEXT */
.mission-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.mission-top span {
  color: #1da1f2;
  font-weight: 600;
}

.mission-top h2 {
  font-size: 38px;
  margin: 15px 0;
  line-height: 1.3;
}

.mission-top p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* CONTENT */
.mission-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

/* IMAGE */
.mission-img {
  flex: 1;
}

.mission-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* BOX */
.mission-box {
  flex: 1;
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  left: -80px;
  z-index: 5;
  border-radius: 8px;
}

.mission-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.mission-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* DECORATION CIRCLE */
.circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 20px solid #1da1f2;
  border-radius: 50%;
  bottom: -110px;
  right: -110px;
  opacity: 0.9;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 900px) {
  .mission-content {
    flex-direction: column;
  }

  .mission-box {
    margin-top: -40px;
    left: 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .mission {
    padding: 60px 4%;
  }

  .mission-top h2 {
    font-size: 26px;
  }

  .mission-box {
    padding: 25px;
  }

  .mission-box h3 {
    font-size: 22px;
  }
}

/* SECTION */
.vision {
  width: 100%;
  background: #f6fbff;
  padding: 100px 6% 140px;
  position: relative;
  overflow: hidden;
}

/* MAIN ROW */
.vision-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 5;
}

/* LEFT BOX */
.vision-box {
  flex: 1;
  background: #fff;
  padding: 45px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  left: 80px;
  z-index: 5;
  border-radius: 8px;
}

.vision-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.vision-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* RIGHT IMAGE */
.vision-img {
  flex: 1.3;
}

.vision-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* DECORATION CIRCLES */
.circle1 {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 16px solid #2aa8ff;
  border-radius: 50%;
  top: 40px;
  right: 50px;
  animation: floatCircle 6s ease-in-out infinite;
}

.circle2 {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #2aa8ff;
  border-radius: 50%;
  bottom: 40px;
  left: 40%;
  opacity: 0.9;
  animation: floatCircle 9s ease-in-out infinite reverse;
}

.circle3 {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 28px solid #dff2ff;
  border-radius: 50%;
  bottom: -140px;
  right: -140px;
  animation: floatCircle 12s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 992px) {
  .vision-row {
    flex-direction: column;
    text-align: center;
  }

  .vision-box {
    left: 0;
    margin-top: -50px;
  }

  .vision-img {
    width: 100%;
  }

  .circle2 {
    left: 20%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .vision {
    padding: 70px 4% 100px;
  }

  .vision-box {
    padding: 25px;
  }

  .vision-box h3 {
    font-size: 24px;
  }

  .circle1 {
    width: 90px;
    height: 90px;
    border-width: 10px;
  }

  .circle2 {
    width: 180px;
    height: 180px;
  }

  .circle3 {
    width: 220px;
    height: 220px;
    border-width: 18px;
  }
}

/* Floating Animation */
@keyframes floatCircle {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* SECTION */
.gallery {
  width: 100%;
  background: #fff;
  padding: 80px 6%;
  text-align: center;
}

/* HEADING */
.gallery span {
  color: #2aa8ff;
  font-weight: 600;
}

.gallery h2 {
  font-size: 36px;
  margin: 15px 0 10px;
}

.gallery p {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 14px;
  color: #555;
}

/* GRID MAIN */
.gallery-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 22px;
}

/* IMAGE BOX */
.item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.item:hover img {
  transform: scale(1.05);
}

/* CUSTOM POSITIONS (Like Screenshot) */

/* Top Big */
.item1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

/* Right Tall */
.item2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

/* Middle Left */
.item3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

/* Middle Center Tall */
.item4 {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

/* Bottom Left */
.item5 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

/* Bottom Right */
.item6 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery {
    padding: 60px 4%;
  }

  .gallery h2 {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .item {
    height: 200px;
  }
}

/* SECTION */
.parallax {
  width: 100%;
  min-height: 80vh;
  background-image: url("img/imgi_21_G1c-2-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px
}

/* DARK OVERLAY */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 50px;
  color: #fff;
}

/* MAIN IMAGE */
.main-img {
  flex: 1;
}

.main-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* TEXT */
.parallax-text {
  flex: 1;
}

.parallax-text h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.parallax-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 25px;
}

/* BUTTON */
.parallax-text a {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #2aa8ff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.parallax-text a:hover {
  background: #2aa8ff;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .parallax-content {
    flex-direction: column;
    text-align: center;
  }

  .parallax {
    background-attachment: scroll;
  }

  .parallax-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .parallax-text h2 {
    font-size: 26px;
  }
}

/* SECTION */
.faq {
  width: 100%;
  background: #f6fbff;
  padding: 90px 6%;
}

/* MAIN */
.faq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.faq-left span {
  color: #2aa8ff;
  font-weight: 600;
}

.faq-left h2 {
  font-size: 42px;
  margin: 15px 0;
}

.faq-left h2 span {
  color: #2aa8ff;
}

.faq-left p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
  margin-bottom: 25px;
}

/* BUTTON */
.faq-left a {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid #2aa8ff;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 4px;
}

.faq-left a:hover {
  background: #2aa8ff;
  color: #fff;
}

/* RIGHT */
.faq-right {
  flex: 1;
  background: #fff;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  color: #2aa8ff;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ff4d4d;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left h2 {
    font-size: 34px;
  }

  .faq-left p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 70px 4%;
  }

  .faq-left h2 {
    font-size: 26px;
  }

  .faq-right {
    padding: 25px;
  }
}

/* ----FOOTER------ */

/* ================= FINAL FOOTER CSS ================= */

.footer {
  width: 100%;
  background: linear-gradient(to right, #0e0c0c, #1a0f1f, #0b0710);
  color: #fff;
  padding: 60px 6% 20px;
}

/* MAIN GRID */
.footer-main {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 50px;
}

/* LEFT */
.footer-left img {
  width: 170px;
  margin-bottom: 18px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #dcdcdc;
  max-width: 420px;
  margin-bottom: 22px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* CENTER + RIGHT HEADINGS */
.footer-center h3,
.footer-right h3 {
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-center h3::after,
.footer-right h3::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #2aa8ff;
  display: block;
  margin-top: 6px;
}

/* CONTACT INFO */
.footer-contact {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-contact i {
  color: #2aa8ff;
  margin-top: 4px;
  font-size: 15px;
}

/* QUICK LINKS */
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-right a:hover {
  color: #2aa8ff;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-right {
    grid-column: span 2;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-left p {
    max-width: 100%;
  }
}

/* ================= MOBILE (THIS FIXES EVERYTHING) ================= */
@media (max-width: 480px) {
  .footer {
    padding: 45px 4% 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
  }

  .footer-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-center h3::after,
  .footer-right h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* OVERLAY FOR MOBILE MENU */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.menu-overlay.active {
  display: block;
}

/* WHATSAPP CONTAINER */
.wa-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* FLOAT BUTTON */
.wa-float {
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* POPUP */
.wa-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 280px;
  background: #dfffd6;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

  display: none;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CLOSE */
.wa-close {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

/* TEXT */
.wa-popup p {
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 12px;
}

/* BUTTON */
.wa-btn {
  display: block;
  text-align: center;
  background: #ff6b57;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 8px;
}

/* STATUS */
.wa-status {
  font-size: 12px;
  text-align: center;
  color: #333;
}

.wa-status span {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

/* ===== FINAL OVERFLOW FIX ===== */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Fix pseudo-element overflow */
@media (max-width: 480px) {
  .big-img::after {
    right: -10px;
  }
}

/* Fix mobile menu overflow */
@media (max-width: 900px) {
  .menu {
    overflow-x: hidden;
  }
}
/* ===== FORCE FOOTER STACK ON MOBILE (FINAL FIX) ===== */

@media (max-width: 480px) {
  /* Kill grid completely */
  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  /* Each section full width */
  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    text-align: center;
  }

  /* Center logo */
  .footer-left img {
    margin: 0 auto 15px;
  }

  /* Reduce paragraph dominance */
  .footer-left p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 auto 15px;
  }

  /* Social icons centered */
  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }

  /* Contact info centered */
  .footer-contact {
    justify-content: center;
  }

  /* Headings centered with spacing */
  .footer-center h3,
  .footer-right h3 {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-center h3::after,
  .footer-right h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  /* Links spacing */
  .footer-right ul {
    margin-top: 10px;
  }
}

/* ===== NAVBAR DROPDOWN ===== */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  width: 280px;
  max-height: 580px; /* controls dropdown height */
  overflow-y: auto; /* enables vertical scrollbar */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 15px 24px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: #f6fbff;
  color: #1f4ed8;
}

/* DESKTOP HOVER */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* ===== MOBILE DROPDOWN ===== */
@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f6fbff;
    border-radius: 4px;
    margin-top: 8px;
    padding: 5px 0;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 14px;
    padding: 10px 15px;
  }

  .nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }
}
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------- */

/* ================= MODERN PRODUCT PAGE - AFFORDABLE COWORKING SPACE ================= */
/* Scoped to .product-page – no global leakage */
.product-page {
  --primary: #e10600;
  --primary-dark: #b30000;
  --deep-dark-1: #0e0913;
  --deep-dark-2: #1a0f1f;
  --pure-white: #ffffff;
  --off-white: #f8f7fc;
  --text-dark: #2d2a3a;
  --text-muted: #5a5766;
  --border-light: #e8e6f0;
  --card-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.15);
  --hover-shadow: 0 30px 50px -20px rgba(225, 6, 0, 0.25);

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--pure-white);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&display=swap");

/* ----- container ----- */
.product-page .product-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 80px;
}

.product-page .section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .product-page .section-padding {
    padding: 4rem 0;
  }
}

/* ----- headings ----- */
.product-page h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  text-transform: capitalize;
  color: var(--deep-dark-1);
}

.product-page h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  color: var(--deep-dark-1);
}

.product-page h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 90px;
  height: 5px;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 0 10px var(--primary);
}

.product-page .text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.product-page h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--deep-dark-2);
}

/* ----- buttons ----- */
.product-page .btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2.3rem;
  border-radius: 60px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.25s ease;
  box-shadow: 0 10px 25px -5px rgba(225, 6, 0, 0.4);
  cursor: pointer;
  font-size: 1rem;
}

.product-page .btn-primary:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -8px rgba(225, 6, 0, 0.5);
}

/* ===== HERO – split with diagonal shape ===== */
.product-page .product-hero {
  background: var(--off-white);
  padding: 3rem 0 5rem;
  position: relative;
  isolation: isolate;
}

.product-page .product-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(145deg, var(--deep-dark-1), var(--deep-dark-2));
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
  opacity: 0.04;
}

.product-page .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.product-page .hero-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.product-page .hero-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transform: rotate(1deg) scale(0.98);
  transition: 0.4s ease;
}

.product-page .hero-image:hover {
  transform: rotate(0) scale(1);
  box-shadow: var(--hover-shadow);
}

.product-page .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SERVICE PROVIDER – glass card with red edge ===== */
.product-page .service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(225, 6, 0, 0.2);
  transition: 0.3s;
  position: relative;
  border-left: 8px solid var(--primary);
}

.product-page .service-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-5px);
}

.product-page .service-card p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

/* ===== KEY FEATURES – icon grid with red bullet ===== */
.product-page .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-page .feature-item {
  background: var(--off-white);
  border-radius: 32px;
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-page .feature-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
  opacity: 0.3;
  transition: 0.3s;
}

.product-page .feature-item:hover::after {
  opacity: 1;
  width: 8px;
}

.product-page .feature-item:hover {
  background: var(--pure-white);
  border-color: var(--primary);
  box-shadow: var(--card-shadow);
  transform: translateY(-6px);
}

.product-page .feature-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--deep-dark-2);
  margin-bottom: 0.8rem;
  font-weight: 700;
  padding-left: 0.5rem;
}

.product-page .feature-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  padding-left: 0.5rem;
}

/* ===== EXPERTISE – asymmetrical layout with list and dark card ===== */
.product-page .expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.product-page .expertise-text {
  background: var(--pure-white);
  border-radius: 40px;
  padding: 2.8rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
}

.product-page .expertise-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.product-page .expertise-list {
  list-style: none;
  margin: 2rem 0;
}

.product-page .expertise-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
}

.product-page .expertise-list li::before {
  content: "⏺";
  color: var(--primary);
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -3px;
}

.product-page .expertise-highlight {
  background: linear-gradient(145deg, var(--deep-dark-1), var(--deep-dark-2));
  border-radius: 40px;
  padding: 3rem 2.5rem;
  color: #fff;
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-page .expertise-highlight p {
  color: #e0dcee;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  position: relative;
  padding-left: 2rem;
}

.product-page .expertise-highlight p::before {
  content: "“";
  color: var(--primary);
  font-size: 3rem;
  position: absolute;
  left: -0.5rem;
  top: -1rem;
  opacity: 0.5;
}

/* ===== CTA – bold red-to-dark ===== */
.product-page .cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--deep-dark-1) 80%
  );
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 60px;
  margin: 3rem auto;
  max-width: 1000px;
  box-shadow: 0 30px 50px -20px rgba(225, 6, 0, 0.6);
}

.product-page .cta-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.product-page .cta-section h2::after {
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #fff;
}

.product-page .cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.product-page .cta-section .btn-primary {
  background: #fff;
  color: var(--deep-dark-1);
  border-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-page .cta-section .btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* ===== misc ===== */
.product-page .dark-bg {
  background: var(--off-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-page .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-page .hero-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
    transform: rotate(0);
  }

  .product-page h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .product-page .expertise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-page .product-container {
    padding: 0 1.2rem;
  }

  .product-page .service-card,
  .product-page .expertise-text,
  .product-page .expertise-highlight {
    padding: 2rem 1.5rem;
  }

  .product-page h1 {
    font-size: 2rem;
  }

  .product-page .cta-section {
    padding: 3rem 1.5rem;
  }

  .product-page .cta-section p {
    font-size: 1.1rem;
  }
}

/* ================= PRODUCT GALLERY SECTION ================= */

.product-gallery-section {
  padding: 90px 20px;
  background: #0b0b0b;
}

.product-gallery-inner {
  max-width: 1200px;
  margin: auto;
}

.product-gallery-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

/* GRID */
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ITEM */
.product-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #000000;
}

/* IMAGE */
.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.product-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: 0.4s;
}

.product-gallery-item:hover img {
  transform: scale(1.08);
}

.product-gallery-item:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-gallery-section h2 {
    font-size: 28px;
  }
}

/* Existing section classes assumed – add these new styles */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Alternate layout: even items have circle on the right */
.benefit-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Circular number style */
.benefit-circle {
  flex: 0 0 100px;
  height: 100px;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid #89868B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.benefit-item:hover .benefit-circle {
  transform: scale(1.05);
  background: rgba(255, 215, 0, 0.25);
}

/* Text content */
.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  color: #000000;
}

.benefit-text p {
  margin: 0;
  color: #000000;
  line-height: 1.6;
}

/* Responsive: stack on mobile, circle centered above text */
@media (max-width: 768px) {
  .benefit-item,
  .benefit-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .benefit-circle {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
}

.section {
  padding: 80px 0;
}

.section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

.parallax-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
body {
  overflow-x:hidden !important;
  overflow-y:hidden !important;
}

a{
  text-decoration: none;
  color: inherit;
}