 html, body {
  overflow-x: hidden;
  width: 100%;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           }

     /* Floating Instagram Button */
.floating-instagram {
  position: fixed;
  bottom: 90px;   /* WhatsApp ke upar dikhayega */
  right: 20px;
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
  color: #fff;
  font-size: 30px;
  padding: 3px 12px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}



    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      /* niche se gap */
      right: 20px;
      /* right side gap */
      z-index: 1000;
    }

    .whatsapp-float img {
      width: 50px;
      /* size change karna ho to */
      height: 50px;
    }     
  .hero-section {
background-color:#003d80;
background: linear-gradient(135deg, #c8e6c9, #003d80, #9ff1a3);


    color: #fff;
    padding: 4rem 1rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  .hero-title {
    font-weight: 700;
    line-height: 1.2;
  }

  /* bada text: adjust as needed */
  .hero-title .line1 { font-size:50px;  }
  .hero-title .line2 { font-size: 35px;  font-family:cursive; margin-top: 20px; }

  
  
  .hero-image {
    width: 90%; /* Or 100% if you want full width */
    max-width: 1200px; /* Optional: prevent it from getting too large */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(223, 196, 196, 0.35);
    display: block;
    margin: 0 auto; /* Centers the image */
}


  /* Ensure iframe video covers modal */
  .modal-body {
    padding: 0;
    background: #000;
  }
  .video-iframe {
    width: 100%;
    height: 100vh;
    border: 0;
  }
@media (max-width: 480px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-title .line1 { font-size: 26px; }
  .hero-title .line2 { font-size: 22px; margin-top: 10px; }

  .hero-image {
    max-width: 85%;
    margin-top: 20px;
  }

  .video-iframe {
    height: 60vh;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .hero-title .line1 { font-size: 32px; }
  .hero-title .line2 { font-size: 26px; margin-top: 15px; }

  .hero-image {
    max-width: 70%;
    margin-top: 25px;
  }

  .video-iframe {
    height: 70vh;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem;
  }

  .hero-title .line1 { font-size: 36px; }
  .hero-title .line2 { font-size: 30px; }

  .hero-image {
    max-width: 90%;
  }

  .video-iframe {
    height: 80vh;
  }
}


@media (min-width: 1201px) {
  .hero-section {
    justify-content: space-between;
    padding: 5rem 8rem;
  }

  .hero-title .line1 { font-size: 48px; }
  .hero-title .line2 { font-size: 38px; }

  .hero-image {
    max-width: 45%;
  }

  .video-iframe {
    height: 100vh;
  }
}

      /* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f0fe, #d2e3fc);
}

.hero .position-relative {
  min-height: 400px;
}

/* Dark Blue Gradient Boxes with Blur */
.boxes {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(187, 208, 235, 0.7), rgba(216, 105, 247, 0.7));
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite alternate;
  z-index: 1;
}

.boxes.one {
  width: 200px;
  height: 100px;
  top: -40px;
  left: -60px;
  animation-delay: 0s;
}
.boxes.two {
  width: 150px;
  height: 80px;
  bottom: -30px;
  right: -40px;
  animation-delay: 2s;
}
.boxes.three {
  width: 180px;
  height: 90px;
  top: 60px;
  right: 100px;
  animation-delay: 4s;
}
.boxes.five {
  width: 180px;
  height: 90px;
  top: 200px;
  left: 70px;
  animation-delay: 4s;
  clip-path: polygon(
    25% 6.7%, 75% 6.7%,
    100% 50%,
    75% 93.3%, 25% 93.3%,
    0% 50%
  );
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* White Wavy Lines */
.wave {
  position: absolute;
  width: 200%;
  height: 120px;
  left: 0;
  animation: waveMove 12s linear infinite;
}
.wave.top {
  top: 0;
  opacity: 0.5;
}
.wave.bottom {
  bottom: 0;
  opacity: 0.5;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #202124;
}

.hero-content h1 {
    margin-top: 40px;
  font-size: clamp(100px, 6vw, 64px); /* responsive size */
color: #4B0082;
}

.hero-content p {
  font-size: clamp(30px, 3vw, 24px); /* responsive size */
  color: #5F6368;
}
.main {
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: clamp(28px, 5vw, 50px);  /* auto scale font */
  font-weight: bold;
  margin: 60px 0 20px 0;
  color: purple;
  line-height: 1.3;
}

/* Dots Animation */
.dots span {
  opacity: 0;
  display: inline-block;
  animation: bounceGlow 1.5s infinite;
}
.dots span:nth-child(1) { animation-delay: 0.3s; }
.dots span:nth-child(2) { animation-delay: 0.6s; }
.dots span:nth-child(3) { animation-delay: 0.9s; }

@keyframes bounceGlow {
  0%, 80%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
    text-shadow: none;
  }
  40% {
    opacity: 1;
    transform: translateY(-5px) scale(1.2);
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
  }
}

/* Waves */
.main::before,
.main::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 500 80' xmlns='http://www.w3.org/2000/svg'><path d='M0,40 C150,0 350,80 500,40' stroke='%230090ff' stroke-width='3' fill='transparent'/></svg>") repeat-x;
  background-size: 200% 100%;
  transform: translateY(-50%);
  animation: waveMove 4s linear infinite;
  opacity: 0.9;
}
.main::before { left: 0; }
.main::after { right: 0; transform: translateY(-50%) scaleX(-1); }

@keyframes waveMove {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

/* Vibrating Clock */
.vibrate {
  animation: vibrate 0.2s infinite;
}
@keyframes vibrate {
  0%   { transform: translate(0); }
  20%  { transform: translate(-2px, 2px); }
  40%  { transform: translate(-2px, -2px); }
  60%  { transform: translate(2px, 2px); }
  80%  { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

/* Subtext (Bill is Printed) */
.sub-text {
 
  margin-top: 15px;
  font-size: clamp(50px, 3vw, 30px);
}

/* Clock image size responsive */
.clock-inline {
  display: inline-block;
  vertical-align: middle;   /* text ke sath align karne ke liye */
  width: 70px;              /* chhoti size */
  height: auto;
  margin-left: 5px;         /* thoda gap */
  animation: vibrate 0.2s infinite;
}

/* Mobile ke liye aur chhoti karna */
@media (max-width: 768px) {
  .clock-inline {
    width: 22px;
    margin-left: 3px;
  }
}


/* Extra Responsive Tweaks */
@media (max-width: 768px) {
  .main {
    font-size: 32px;
  }
  
  .sub-text {
    font-size: 35px;
  }
}
/* Phones */
.phone {
  width: 260px;
  height: 500px;
  border: 3px solid grey;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  margin-left: 60px;
}


/* notch */
.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0b0b0b;
  border-radius: 12px;
  z-index: 10;
}

/* bottom button */
.phone::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 8px;
  background: #ccc;
  border-radius: 20px;
  z-index: 10;
}

/* screen inside phone */
.screen {
  width: calc(100% - 24px);
  height: calc(100% - 40px);
  margin: 15px 12px;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.screen video,
.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* back tilted phone */
.back-phone {
  position: absolute;
  width: 260px;
  height: 480px;
  border: 3px solid grey;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  transform: rotate(-15deg);
  left: 100px;
  top: 20px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.back-phone .screen {
  width: calc(100% - 20px);
  height: calc(100% - 30px);
  margin: 10px 10px;
  border-radius: 20px;
}


@media (max-width: 480px) {
  .phone {
    width: 200px;
    height: 400px;
    margin-left: 100px;
  }

  .back-phone {
    width: 180px;
    height: 390px;
    left: 40px;
    top: 5px;
    transform: rotate(-15deg);
  }

  .phone::before {
    width: 80px;
    height: 20px;
  }

  .phone::after {
    width: 50px;
    height: 6px;
  }

  .screen {
    border-radius: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .phone {
    width: 230px;
    height: 450px;
    margin-left: 90px;
  }

  .back-phone {
    width: 200px;
    height: 420px;
    left: 30px;
    top: 20px;
    transform: rotate(-15deg);
  }

  .phone::before {
    width: 90px;
    height: 22px;
  }

  .phone::after {
    width: 60px;
    height: 7px;
  }

  .screen {
    border-radius: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .phone {
    width: 250px;
    height: 480px;
    margin-left: 100px;
  }

  .back-phone {
    width: 230px;
    height: 470px;
    left: 190px;
    top: 25px;
    transform: rotate(-13deg);
  }

  .phone::before {
    width: 95px;
    height: 24px;
  }

  .phone::after {
    width: 65px;
    height: 7px;
  }

  .screen {
    border-radius: 24px;
  }
}
/* @media (min-width: 1201px) {
  .phone {
    width: 300px;
    height: 560px;
    margin-left: 100px;
  }

  .back-phone {
    width: 260px;
    height: 520px;
    left: 110px;
    top: 30px;
    transform: rotate(-15deg);
  }

  .phone::before {
    width: 110px;
    height: 28px;
  }

  .phone::after {
    width: 80px;
    height: 9px;
  }

  .screen {
    border-radius: 28px;
  }
} */



/* Features */
.body2-features {
  display: flex;
  flex-direction: column;
  gap: 30px;



}

.body2-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.body2-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.icons-body2-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #a277ff, #ea67d9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.body2-box h3 {
  font-size: 22px;
  color: #3d1cd1;
}

.body2-box p {
  font-size: 16px;
  color: black;
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 481px) and (max-width: 768px) {
  .body2-features {
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
  }

  .body2-box {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }

  .icons-body2-box {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .body2-box h3 {
    font-size: 20px;
  }

  .body2-box p {
    font-size: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .body2-features {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 30px;
  }

  .body2-box {
    flex-direction: row;
    padding: 20px;
  }

  .icons-body2-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .body2-box h3 {
    font-size: 30px;
  }

  .body2-box p {
    font-size: 25px;
  }
}
@media (min-width: 1201px) {
  .body2-features {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 80px;
  }

  .body2-box {
    padding: 30px;
    gap: 25px;
  }

  .icons-body2-box {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .body2-box h3 {
    font-size: 26px;
  }

  .body2-box p {
    font-size: 20px;
  }

  
}

  

.left-content::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 20px;
  width: 180px;
  height: 180px;
  background: #ecfaf2;
  border-radius: 50%;
  z-index: -1;
}

    .feature-pill i {
  position: relative;
  display: inline-block;
}

.feature-pill i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 140%;
  height: 130%;
  border-top: 2px solid red; /* Slash color */
  transform: rotate(-45deg); /* 👈 Changed direction */
  transform-origin: center;
  pointer-events: none;
}

 



.features-section {
  background: #fff;
}

.features-content h2 {
  font-size: 38px;
  font-family: "Noto Sans", sans-serif;
  color: black;
}

.side-box {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.side-box h2 {
  font-size: 28px;
  font-weight: 600;
}

.bad, .good {
  font-size: 16px;
  line-height: 1.8;
}




@media (max-width: 480px) {
  .features-content h2 {
    font-size: 26px;
    text-align: center;
  }

  .side-box {
    padding: 15px;
    margin-bottom: 15px;
  }

  .side-box h2 {
    font-size: 20px;
  }

  .bad, .good {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .features-content h2 {
    font-size: 30px;
    text-align: center;
  }

  .side-box {
    padding: 18px;
    margin-bottom: 18px;
  }

  .side-box h2 {
    font-size: 22px;
  }

  .bad, .good {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .features-content h2 {
    font-size: 34px;
  }

  .side-box {
    padding: 20px;
    margin-bottom: 20px;
  }

  .side-box h2 {
    font-size: 24px;
  }

  .bad, .good {
    font-size: 15.5px;
    line-height: 1.7;
  }
}
@media (min-width: 1201px) {
  .features-content h2 {
    font-size: 38px;
  }

  .side-box {
    padding: 25px;
    margin-bottom: 25px;
  }

  .side-box h2 {
    font-size: 28px;
  }

  .bad, .good {
    font-size: 16px;
    line-height: 1.8;
  }
}

.offline-section {
  background: linear-gradient(90deg, #fbfbfd 0%, #7979f7 100%);
}
/* pill style — light full background */
.feature-pill {
  background: #f4f7ff;            /* हल्का नीला / light background */
  border: 1px solid #e2e6f5;      /* हल्की border */
  border-radius: 12px;            /* हल्का गोल, पूरी pill से rectangle-ish look */
  min-width: 180px;
  gap: .5rem;
  padding: 10px 15px;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
  font-weight: 500;
  color: #2c4454;                 /* dark text for contrast */
}
.feature-pill:hover {
  background: #e9f0ff;            /* hover पर थोड़ा गहरा हल्का नीला */
  transform: translateY(-2px);
}



/* responsive adjustments */
@media (max-width: 767.98px){
  .feature-pill{ min-width: 48%; flex: 0 0 48%; display: inline-flex; justify-content: flex-start; }
  .feature-pill i{ font-size: 1.05rem; }
}
@media (min-width: 768px){
  .feature-pill{ flex: 0 0 auto; }
}

        .jewel-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin: 50px auto;
      max-width: 1200px;
    }

    .jewel-heading {
      text-align: center;
      font-size: 40px;
      color: #000;
      font-family: Noto Sans;
      margin-bottom: 20px;
    }

    /* Scroll Container */
    #jewelScroll {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    /* Each Page (2x3 grid = 6 boxes) */
    .jewel-feature-page {
      margin-top: 30px;
      flex: 0 0 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, auto);
      gap: 20px;
      scroll-snap-align: start;
    }


    /* Feature Box */
    .jewel-feature {
      width: 350px;   /* ✅ Thoda kam width */
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: .3s;
      text-align: left;
    }
    .jewel-feature:nth-child(odd) {
      background: #fff;          /* White */
    }
    .jewel-feature:nth-child(even) {
      background: #E6FFE6;       /* Light green */
    }

    .jewel-feature:hover {
      transform: translateY(-10px);
    }

    .jewel-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 20px;
      border: 1px solid #e9e9e9;
      background: #fff;
      margin-bottom: 14px;
    }



@media (min-width: 481px) and (max-width: 768px) {
  .jewel-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .jewel-feature-page {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 18px;
  }

  .jewel-feature {
    width: 90%;
    padding: 18px;
  }

  .jewel-icon {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .jewel-heading {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .jewel-feature-page {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
  }

  .jewel-feature {
    width: 90%;
    padding: 20px;
  }

  .jewel-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media (min-width: 1201px) {
  .jewel-heading {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .jewel-feature-page {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
  }

  .jewel-feature {
    width: 350px;
    padding: 25px;
  }

  .jewel-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}


    .underH {
      font-size: 20px;
      color: #0056b3;
    }
     /* Buttons */
  .scroll-btn {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    background: #0056b3;
    color: #fff;
    border: none;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
  }
  .scroll-btn:hover {
    background: #003d80;
  }
  .scroll-btn.left {
    left: 5px;
  }
  .scroll-btn.right {
    right: 5px;
  }

  .template-box {
      position: relative;
      width: 250px;
      height: 350px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      transition: transform 0.3s ease;
      background: #fff;
      flex-shrink: 0;
    }

    .template-box:hover {
      transform: translateY(-10px); /* ऊपर उठे */
    }

    .template-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease; /* Zoom effect smoothness */
    }

    .template-box:hover img {
      transform: scale(1.1); /* image zoom-in */
    }
   .scroll-container {
   display: flex;
  gap: 20px;
  overflow-x: scroll;   /* ✅ Always show horizontal scrollbar */
  overflow-y: hidden;
  padding: 10px;
  width: 100%;          /* container full screen width */
  box-sizing: border-box;
  white-space: nowrap;  /* items ko ek line me chipka kar rakhega */

  scrollbar-width: thin;         
  scrollbar-color: #888 #f1f1f1;
}

.scroll-container::-webkit-scrollbar {
  height: 8px; /* ✅ niche scrollbar height */
}
.scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.scroll-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}


    /* 🔥 Fullscreen Overlay */
    .fullscreen {
      display: none; /* hidden by default */
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    .fullscreen img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255,255,255,0.3);
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      font-weight: bold;
      color: white;
      cursor: pointer;
    }
.security-section {
  background: linear-gradient(135deg, #fff8e1, #ffe0b2); /* soft golden gradient */
  border-radius: 20px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.security-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.security-title span {
  color: #d97706; /* golden accent */
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-list li {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 15px 0;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 5px solid #f59e0b; /* gold border */
  border-radius: 10px;
  transition: all 0.3s ease;
}

.security-list li:hover {
  background: #fff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}





.feature {
  padding: 30px 20px;
  text-align: left;
  font-family: Arial, sans-serif;
  background: #fff;
  transition: background 0.3s ease;
  border: 1px solid #ddd;
  height: 100%;
}
.feature:hover {
  background: #f9f9f9;
}
.feature span {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 15px;
  color: #4b0082;
}
.feature b {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
  color: #111;
}
.feature img {
  width: 35px;
  height: 35px;
  margin-bottom: 15px;
}
/** custum css with video **/
.features-section {
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
}

.video-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
  
  .experience-page {
  font-family: "Poppins", "Montserrat", sans-serif;
  background: linear-gradient(180deg, #0b2440 0%, #071730 100%);
  color: #d3dbe6;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.experience-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Gold & White */
.exp-gold { color: rgba(157, 250, 71, 0.438); }
.exp-white { color: #ffffff; }

/* Top Line */
.exp-top-line {
  height: 4px;
  background: #f4b43a;
  width: 100%;
}

/* Container */
.exp-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  
  align-items: start;
}

/* Left column */
.exp-left-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.exp-img-card {
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(2,6,23,0.45);
}

.exp-img-card.small { width: 220px; height: 140px; }
.exp-img-card img { display: block; width: 100%; height: auto; }

.exp-left-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* Center Column */
.exp-main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 0.95;
}

.exp-lead {
  font-size: 18px;
  color: #cfdcea;
  max-width: 720px;
  margin-bottom: 18px;
}

/* Address */
.exp-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 26px;
  font-size: 16px;
  color: #e6eef8;
}
.exp-address .exp-pin {
  font-size: 20px;
  margin-top: 2px;
  color: rgba(157, 250, 71, 0.438);
}

/* Info Row */
.exp-info-row {
  display: flex;
  gap: 45px;
  align-items: flex-start;
  margin-top: 8px;
}
.exp-info-block { max-width: 260px; }
.exp-info-block h4 {
  font-family: "Montserrat", sans-serif;
  color: rgba(157, 250, 71, 0.438);
  font-size: 22ngpx;
  margin-bottom: 10px;
}
.exp-info ,.exp-info h4
{
font-weight: bold;
}
.exp-info-block p { margin-bottom: 8px; color: #e6eef8; font-size: 20px; }
.small { color: #cbd8ea; font-size: 15px; }

/* Bullets */
.exp-bullets { list-style: disc; margin-left: 18px; margin-top: 6px; }
.exp-bullets li { margin-bottom: 12px; color: #ffbf00; font-size: 20px; }


/* Footer */
.exp-footer {
  max-width: 1200px;
  margin: 28px auto;
  text-align: center;
  color: #9fb0cf;
  font-size: 16px;
}
.slipbtn{
  border: #030407;
  margin-left: 20px;
  margin-top: 20px;
 
 border-radius: 31px;
  color: blue;
  font-weight:600;
}
 .footer-bottom {

      text-align: center;
     padding: 20px;
      border-top: 1px solid #333;
      font-size: 20px;
     margin-top: -20px;
      color: #999 ;
    }

    .footer-social-icons {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 15px;
    }
    .footer{
      font-size: 25px;
      margin-left: 350px;
      color: rgba(157, 250, 71, 0.438);
      margin-top: -110px;
      margin-left: 300px;
     
    }

    .footer-social-icons .icon {
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
      color: #fff;
      font-size: 24px;
      transition: transform 0.3s ease;
      text-decoration: none;
    }

    .footer-social-icons .icon:hover {
      transform: scale(1.1);
    }

    .instagram { background: #E4405F; }
    .whatsapp  { background: #25D366; }
    .location  { background: #FF9800; }
    .phoness     { background: #0d6efd; }
    .youtube   { background: #FF0000; }

/* Hover effect */
.exp-img-card img:hover {
  transform: scale(1.03);
  transition: transform 300ms ease;
}
/* 📱 Mobile view me footer hide ho jaye */
@media (max-width: 768px) {
  .experience-page {
    display: none;
  }
}
/* Hide GST Spark section only on tablets like Galaxy Tab A9+ */
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .experience-page {
    display: none !important;
  }
} 

/* ✅ Hide only on desktop */
@media (min-width: 992px) {
 .secondfooter {
    display: none !important;
  }
}
.phone-link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .12s, transform .06s;
}
.phone-link:hover { background: rgba(0,0,0,0.05); transform: translateY(-1px); }

.email-link {
  color: white;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .12s, transform .06s;
}
.email-link:hover {
  background: rgba(0,0,0,0.05);
  transform: translateY(-1px);
}