*{
  font-family: sans-serif;
   /* box-sizing: border-box; */
}
body{
    margin: 0;
}

/* section 2  */
.section2-navbar {
  margin-top: 60px;
  color:  #253512 ;
  padding: 20px;
  font-weight: bolder;
  text-align: center;
  animation: fadeInTop 1.3s ease-in-out;
  font-size: 30px;
  text-shadow: 0 0 10px rgb(139, 253, 139);
}

.section2-rotator {
  position: relative;
  height: 35px;
  perspective: 1000px;
}

.section2-sentence {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotateX(90deg);
  opacity: 0;
  transition: all 0.9s ease;
}

.section2-sentence.active {
  transform: translateX(-50%) rotateX(0deg);
  opacity: 1;
}
/* Responsive Breakpoints */
@media (max-width: 1025px) {
  .section2-navbar {
    font-size: 1.1rem;
    padding: 14px 10px;
  }

  .section2-sentence {
    font-size: 1rem;
    margin-top: 10px;
    
  }
}

@media (max-width: 769px) {
  .section2-navbar {
    font-size: 1rem;
    padding: 12px 10px;
  }

  .section2-rotator {
    height: 35px;
  }

  .section2-sentence {
    font-size: 0.95rem;
    margin-top: 15px;
  }
}

@media (max-width: 426px) {
  .section2-navbar {
    font-size: 0.95rem;
    padding: 30px 8px;
  }

  .section2-sentence {
    font-size: 0.9rem;
    margin-top:0;
  }
}

/* ================= SECTION 1 - CENTERED CONTENT ================= */
.section1-hero {
    width: 100%;
    min-height: 85vh;              
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;                  
    align-items: center;
    justify-content: center;
    padding: 40px 20px;             
    box-sizing: border-box;
    animation: section1-changeBg 12s infinite;
}

/* background keyframes (keep your six images) */
@keyframes section1-changeBg {
    0%   { background-image: url('images/img3.jpg'); }
    16%  { background-image: url('images/img5.jpg'); }
    33%  { background-image: url('images/img2.jpg'); }
    50%  { background-image: url('images/img1.jpg'); }
    66%  { background-image: url('images/img4.jpg'); }
    83%  { background-image: url('images/img6.jpg'); }
    100% { background-image: url('images/img7.jpg'); }
}

/* overlay stays full-cover */
.section1-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 5;
}

/* CENTERED CONTENT - now flexbox-centered */
.section1-content {
    position: relative;             /* above overlay (z-index) */
    z-index: 10;
    color: #fff;
    text-align: center;             /* centered text now */
    max-width: 900px;
    width: 100%;
    padding: 20px 28px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(.2,.9,.2,1);
}

/* when scrolled into view */
.section1-content.show {
    opacity: 1;
    transform: translateY(0);
}

/* Heading styles */
.section1-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem); /* responsive */
    line-height: 1.02;
    margin: 0 0 18px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section1-content h1 span {
    color: #63ff99;
}

/* Paragraph */
.section1-content p {
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    max-width: 780px;
}

/* Button */
.section1-btn {
    display: inline-block;
    margin-top: 26px;
    padding: 12px 30px;
    background: #63ff99;
    color: #0b0b0b;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    text-decoration: none;
}

/* SMALL SCREEN ADJUSTMENTS */
@media (max-width: 900px) {
    .section1-hero { padding: 30px 18px; }
    .section1-content { padding: 18px; }
    .section1-content h1 { margin-bottom: 14px; }
    .section1-btn { padding: 10px 22px; }
}

@media (max-width: 480px) {
    .section1-content { padding: 14px; }
    .section1-content p { font-size: 0.95rem; }
    .section1-content h1 { font-size: 1.9rem; }
}

/* SECTION 4 – Unlock Your Future  */

.section4.unlock-future-section {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.section4.unlock-future-section.section4-visible {
  opacity: 1;
  transform: translateY(0);
}

.section4.unlock-future-section {
  background: linear-gradient(135deg, #f3fff0, #e9ffe7);
  padding: 70px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
}

.section4.unlock-future-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: #1e3120;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section4 .subheading {
  font-size: 1.15rem;
  text-align: center;
  color: #333;
  font-weight: 500;
  margin-bottom: 35px;
}

.section4 .points-grid {
  display: grid;
  gap: 20px;
  padding: 10px 0;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.section4 .points-grid ul {
  background: rgba(255,255,255,0.45);
  padding: 18px 25px;
  border-radius: 14px;
  list-style: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.6);
}

.section4 .points-grid ul li {
  font-size: 1.05rem;
  color: #1e1e1e;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section4 .cta-buttons {
  text-align: center;
  margin-top: 30px;
}

.section4 .btn-primary {
  background: #1d3316;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.section4 .btn-primary:hover {
  transform: translateY(-6px);
  background: #2e4d27;
  box-shadow: 0 12px 22px rgba(0,0,0,0.25);
}

/* Responsive adjustments */
@media (max-width: 769px) {
  .section4.unlock-future-section {
    padding: 50px 20px;
  }

  .section4 .points-grid ul {
    padding: 15px 18px;
  }

  .section4 .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 426px) {
  .section4 h2 {
    font-size: 1.9rem;
  }

  .section4 .subheading {
    font-size: 1.05rem;
  }

  .section4 .points-grid ul li {
    font-size: 0.95rem;
  }

  .section4 .btn-primary {
    font-size: 1rem;
    
    padding: 13px 10px;
  }
}

/* SECTION 5 FUTURISTIC */
.section5-future {
  padding: 80px 20px;
  background:rgb(255, 255, 255);
  text-align: center;
  position: relative;
}

.section5-title {
  font-size: 2.8rem;
  color: #10561b;
  margin-bottom: 70px;
  font-weight: 700;
}

.section5-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.section5-item {
  width: 300px;
  padding: 30px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

/* HOVER EFFECT */
.section5-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.2);
}

/* HEXAGON IMAGE */
.section5-hex {
  width: 160px;
  height: 140px;
  margin: auto;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  overflow: hidden;
  border: px solid rgba(0, 255, 170, 0.5);
  box-shadow: 0 0 20px rgba(0,255,150,0.4);
  animation: floatHex 4s ease-in-out infinite;
}

.section5-hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Animation */
@keyframes floatHex {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* TEXT */
.section5-item h3 {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #10561b;
  font-weight: 600;
}

.section5-item p {
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
}

/* MOBILE */
@media(max-width:769px){
  .section5-item { width: 85%; }
  .section5-title { font-size: 2.2rem; }
}

/* section 6  */
/* Section 6 - Premium Split Layout */
.section6-new {
  padding: 90px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.section6-new-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: #204a1f;
}

/* Feature Row */
.section6-feature {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px auto;
  max-width: 1100px;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.09);
  transform: translateY(60px);
  opacity: 0;
  transition: all 1s ease;
}

/* Reverse (image-right text-left) */
.section6-feature.reverse {
  flex-direction: row-reverse;
}

/* Left Image */
.sec6-img {
  flex: 1;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

/* Right Text */
.sec6-content {
  flex: 1.2;
}

.sec6-content h3 {
  font-size: 1.8rem;
  color: #1a3c18;
  margin-bottom: 10px;
  font-weight: 700;
}

.sec6-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Reveal Animation */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .section6-feature,
  .section6-feature.reverse {
    flex-direction: column;
    text-align: center;
  }
  .sec6-img {
    width: 100%;
    height: 220px;
  }
  .section6-feature {
    padding: 20px;
  }
}

/* Section Background */
.section7-slider {
  background:rgb(249, 255, 248);
  padding: 90px 0;
  overflow: hidden;
}

/* Title */
.section7-slider-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 800;
  color: #107218;
  margin-bottom: 50px;
}

/* Horizontal Scroll */
.testimonial-track {
  display: flex;
  gap: 40px;
  padding: 20px 60px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }

/* Card Default (before animation) */
.testimonial-card {
  min-width: 330px;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  box-shadow: 0 0 22px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  background-clip: padding-box;

  opacity: 0;
  transform: translateY(50px);
}

/* Card on hover */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* Neon Border Animation */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #00ffd2, #0077ff, #00ff88);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: neonflow 5s linear infinite;
}
@keyframes neonflow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* Corner Floating Image */
.corner-img {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #00ffd2, #0069ff);
  box-shadow: 0 0 18px rgba(0,150,255,0.3);
}

.corner-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Text Content */
.content {
  margin-top: 40px;
}

.content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.content h4 {
  color: #0077ff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.content p {
  color: #555;
  line-height: 1.5;
  font-size: 1rem;
}

/* Reveal Animation */
.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Mobile Responsive */
@media (max-width: 426px) {
  .testimonial-card {
    min-width: 260px;
    padding: 28px;
  }
  .corner-img {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
  }
}

/* section 8  */

.section8-neo {
  padding: 100px 30px;
  background: white;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.s8-main-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  animation: fadeDown 1s ease forwards;
}

.s8-main-title span {
  background: linear-gradient(90deg, #078d2e, #022a11);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.s8-sub {
  text-align: center;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 60px;
  animation: fadeDown 1.3s ease forwards;
}

.s8-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.s8-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  padding: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 150, 10, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(60px) scale(0.95);
  opacity: 0;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden; 
}

.s8-card::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: linear-gradient(120deg, rgba(5, 237, 125, 0.18), transparent);
  top: -120%;
  left: -30%;
  transform: rotate(25deg);
  z-index: 0;
  animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
  0% { transform: translateX(0) rotate(25deg); }
  100% { transform: translateX(150px) rotate(25deg); }
}

.s8-img-box {
  flex: 1;
  position: relative;
}

.s8-img-box img {
  width: 170px;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 120, 55, 0.2);
  transition: transform 0.5s ease;
}

.s8-card:hover img {
  transform: scale(1.1) rotateX(10deg);
}

.s8-content {
  flex: 2;
  position: relative;
  z-index: 2;
}

.s8-content h3 {
  font-size: 1.6rem;
  color: #157a3d;
  margin-bottom: 10px;
  font-weight: 700;
}

.s8-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1025px) {
  .s8-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 769px) {
  .s8-card {
    flex-direction: column;
    text-align: center;
  }

  .s8-img-box img {
    width: 230px;
    height: 180px;
  }
}

@media (max-width: 426px) {
  .section8-neo {
    padding: 70px 20px;
  }

  .s8-img-box img {
    width: 100%;
    height: 200px;
  }
}

/* toppers section  */
.toppers-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #0e7a0e;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.toppers-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.topper-card {
  background: #e8fae9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topper-card img{
  width: 24vw;
  height: 400px;
  border-radius: 10px;
}
.topper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.topper-video video {
  width: 100%;
  border-radius: 8px;
  outline: none;
}

.topper-card h3 {
  font-size: 20px;
  margin: 15px 0 5px;
  color: #10620a;
}

.topper-card p {
  font-size: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
.topper-card img{
  width: 34vw;
  height: 400px;
  border-radius: 10px;
}
}

@media (max-width: 768px) {
  .toppers-grid {
    flex-direction: column;
    align-items: center;
  }
.topper-card img{
  width: 52vw;
  height: 400px;
  border-radius: 10px;
}
  .topper-card {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 426px) {
.topper-card img{
  width: 80vw;
  height: 280px;
  border-radius: 10px;
}
}


/* section 9  */
/* Section 9: Futuristic Stream Selector */
.section9-streamselect {
  padding: 80px 20px;
  font-family: sans-serif;
  justify-content: center;
  border-radius:40% 0 40% 0;
  background: linear-gradient(135deg, #091621, #0c2033);
  background-size: 400% 400%;
  animation: backgroundFlow 15s ease infinite;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@keyframes backgroundFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section9-stream-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  animation: fadeSlideUp 1s ease;
}

.section9-stream-title span {
  background: linear-gradient(90deg, #00d1ff, #00ffad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section9-stream-description {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #ccdef0;
  animation: fadeSlideUp 1.3s ease;
}

.section9-stream-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section9-stream-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.15);
  font-weight: 600;
  transform: perspective(800px) translateZ(0);
}

.section9-stream-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00ffe7 0%, transparent 60%);
  opacity: 0.3;
  z-index: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.section9-stream-btn:hover::before {
  transform: scale(1.5);
  opacity: 0.6;
}

.section9-stream-btn:hover {
  transform: scale(1.05) translateZ(20px);
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.online-btn {
  border: 1px solid #00d9ff;
}

.offline-btn {
  border: 1px solid #00ff8c;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section9-stream-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .section9-stream-btn {
    width: 50%;
    font-size: 1rem;
  }
}

/* Section 10: FAQ */
.section10-faq {
  padding: 100px 30px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-title span {
  background: linear-gradient( rgb(7, 243, 7),rgb(46, 71, 46));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.1);
  transition: box-shadow 0.4s ease;
  border: 1px solid rgba(0, 200, 255, 0.15);
}

.faq-item:hover {
  box-shadow: 0 15px 35px rgba(0, 200, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 30px;
  font-size: 1.1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  font-weight: 600;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: #333;
  font-size: 1rem;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 30px 20px 30px;
}

.faq-item {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInFAQ 1s forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.3s; }
.faq-item:nth-child(2) { animation-delay: 0.5s; }
.faq-item:nth-child(3) { animation-delay: 0.7s; }
.faq-item:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeInFAQ {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px 25px;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* section 11  */
/* Section 11: Talk to Our Expert */
.section11-container {
     perspective: none !important;
  position: relative;
  background: radial-gradient(circle at 20% 30%, #0f2027, #203a43, #2c5364);
  padding: 100px 5%;
  overflow: hidden;
  animation: fadeInUp 1.2s ease-in-out;
  perspective: 1200px;
}

.section11-bg-blur {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: #00bcd4;
  opacity: 0.08;
  filter: blur(120px);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite alternate;
  z-index: 0;
}

.section11-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  animation: cardPop 1.3s ease;
}

.section11-content {
  flex: 1;
  min-width: 300px;
  color: #fff;
  transform: translateZ(40px);
}

.section11-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  animation: slideRight 1s ease forwards;
}

.section11-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d9d9d9;
  margin-bottom: 30px;
  animation: slideRight 1.2s ease forwards;
}

.section11-button {
   transform: none !important;
    will-change: transform;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 8px 24px rgba(255, 75, 43, 0.4);
  animation: bounceBtn 2s infinite alternate;
}
 .section11-button:hover {
  transform: scale(1.08) rotateX(8deg);
  background: linear-gradient( #cac4b4, #ff5722);
  color: #000;
}
.section11-card-3d {
  flex: 1;
  min-width: 300px;
  transform: rotateY(12deg) rotateX(6deg);
  transition: transform 0.8s ease;
  animation: floatImage 4s ease-in-out infinite;
  text-align: center;
}

.section11-card-3d img {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes cardPop {
  from { transform: scale(0.95) rotateX(5deg); opacity: 0; }
  to { transform: scale(1) rotateX(0); opacity: 1; }
}

@keyframes floatImage {
  0% { transform: rotateY(12deg) translateY(0); }
  50% { transform: rotateY(12deg) translateY(-10px); }
  100% { transform: rotateY(12deg) translateY(0); }
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.08; }
  100% { transform: scale(1.2); opacity: 0.15; }
}

@keyframes bounceBtn {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .section11-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .section11-content h2 {
    font-size: 2rem;
  }

  .section11-button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }

  .section11-card-3d img {
    width: 200px;
  }
}
@media (max-width:426px){
.section11-wrapper {
    flex-direction: column;
    text-align:left;
    padding-right: 60px;
  }
}
@media (max-width:321px){
  .section11-wrapper {
    width: 70%;
  }
 .section11-content h2 {
    font-size: 1.5rem;
  }
  .section11-content p {
    width: 60%;
    font-size: .7rem;
  }
    .section11-card-3d img{
      margin-right: 80px;
    }
  }

  
/* floationg whatsapp  */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .floating-whatsapp .icon-container {
    background-color: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  @keyframes pulse {
    to {
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
  }

  @media screen and (max-width: 545px) {
  
  .floating-whatsapp .icon-container {
    width: 40px;
    height: 40px;
  }
  .floating-whatsapp {
    bottom: 15px;
    right: 15px; 
  }
}
/* overlay form  */

body.modal-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
    }
    #overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(2px);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    #popup {
      position: relative;
      width: 380px;
      background: linear-gradient(135deg, #16311c, #dff6e2);
      border-radius: 10px;
      padding: 30px 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      animation: fadeIn 0.3s ease-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    #popup .close {
      position: absolute;
      top: 12px; right: 12px;
      font-size: 24px;
      color: #121111;
      cursor: pointer;
      transition: color 0.2s;
    }
    #popup .close:hover {
       color: #555;
       }
    #popup h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #133011;
    }
    .input-group {
      position: relative;
      margin: 16px 10px;
    }
    .input-group label {
      position: absolute;
      top: -8px;
      left: 12px;
      background: #8aab8d;
      padding: 0 4px;
      font-size: 13px;
      color: #214121;
    }
    .input-group input,
    .input-group textarea {
      width: 85%;
      background-color: rgb(234, 240, 235);
      padding: 12px 40px 12px 12px;
      border: 1px solid #cccccc;
      border-radius: 6px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .input-group input:focus,
    .input-group textarea:focus {
      box-shadow: 0 0 8px rgba(90,74,255,0.2);
      outline: none;
    }
    .input-group textarea { 
      resize: vertical;
       min-height: 80px; 
      }
    .input-group .icon {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
      font-size: 18px;
    }
    .submit-btn {
      width: 100%;
      background: #2f4723;
      color: white;
      padding: 14px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 12px;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .submit-btn:hover {
      background: #4b644f;
      box-shadow: 0 4px 12px rgba(90,74,255,0.3);
    }
@media screen and (max-width: 769px) {
  #popup {
    width: 70%;
   max-width: 340px; 
    padding: 15px;
  }
  
}
@media screen and (max-width: 426px) {
  #popup {
    width: 80%;
    }
  .input-group input,
    .input-group textarea {
      width: 83%;
}
}
@media screen and (max-width: 361px) {
  #popup {
    width: 80%;
    }
    .input-group input,
    .input-group textarea {
      width: 78%;
}
}
