.custom-nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    background: rgba(255, 255, 255, 0.5) ;
    backdrop-filter: blur(15px) ;
    -webkit-backdrop-filter: blur(15px) ;
    border: 1px solid rgba(255, 255, 255, 0.4) ;
    
    padding: 15px 25px ;
    border-radius: 50px ;
    z-index: 9999 ;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) ;
    
    display: flex ;
    align-items: center ;
    gap: 40px ;
}

.custom-nav-logo img {
    height: 50px ;
    display: block ;
}

.custom-nav-items {
    list-style: none ;
    display: flex ;
    gap: 30px ;
    margin: 0 ;
    padding: 0 ;
}

.custom-nav-items a {
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    text-decoration: none ;
    color: #000000 ;
    font-size: 14px ;
    font-weight: 700 ;
    gap: 5px;
    line-height: 1 ;
}

/* Force black icons */
.custom-nav-items a i {
    font-size: 18px ;
    height: 20px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    filter: grayscale(1) brightness(0) ;
}

.custom-nav-btn {
    background: #5CB6FE ;
    color: #ffffff !important;
    padding: 12px 30px ;
    border-radius: 50px ;
    text-decoration: none ;
    font-weight: 800 ;
    font-size: 18px ;
    white-space: nowrap ;
    
}
/* --- Desktop (No changes to your original) --- */
.navbar-toggler { display: none; }
@media (max-width: 768px) {

    .custom-nav-items{
        display: none !important;
    }

    .custom-nav-items.show{
        display: flex !important;
    }

}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    /* 1. Navbar Container */
    .custom-nav-wrapper {
        width: 95% !important;
        padding: 15px 20px !important;
        justify-content: space-between !important;
    }

    /* 2. Hamburger: Black background, white lines */
    .navbar-toggler {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: #ffffff !important; /* Fixed: Changed to black */
        border-radius: 8px;
        width: 50px;
        height: 40px;
        border: none;
        cursor: pointer;
    }

    .navbar-toggler span {
        width: 25px;
        height: 3px;
        background: black !important; /* Fixed: Changed to white */
    }

    /* 3. Mobile Menu Layout */
    .custom-nav-items {
        display: none;
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        background: rgba(255, 255, 255, 0.9); /* Less transparent */
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 40px 30px;
        border-radius: 30px;
        flex-direction: column;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        list-style: none;
        z-index: 999;
    }

    .custom-nav-items.show { display: flex; }

    /* 4. Force Icon to left, Text to right */
    .custom-nav-items li a {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 20px !important;
        font-size: 20px;
        font-weight: 700;
        color: #000;
        text-decoration: none;
    }

    /* Ensure icon has fixed width so text aligns perfectly */
    .custom-nav-items li a i {
        width: 30px;
        display: flex;
        justify-content: center;
        filter: grayscale(1) brightness(0);
    }

    /* 5. APP Button */
    .custom-nav-btn {
        background: #5CB6FE;
        color: #fff !important;
        padding: 12px 40px !important;
        border-radius: 50px;
        width: fit-content !important;
       
        font-weight: 800;
        text-align: left;
    }
}

:root {
  --logo-blue: #54b2ff;
  /* Cloud color */
  --logo-red: #ff0000;
  /* Checkmark color */
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-gradient: linear-gradient(135deg, #f0f7ff 0%, #e1f0fe 100%);
}

/* --- Section Container --- */
.verification-section {
  padding: 2.5rem 1.5rem;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* --- Responsive Layout Grid --- */
.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

/* --- Left Side: Graphic Components --- */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.glass-card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(84, 178, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Micro-interaction on hover combined with active animations */
.image-wrapper:hover .image-placeholder {
  transform: translateY(-8px) scale(1.02);
}

.image-wrapper:hover .glass-card-bg {
  transform: translate(6px, 6px);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Right Side: Content & Typography --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.badge {
  align-self: flex-start;
  background: rgba(84, 178, 255, 0.15);
  color: #0077dd;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--logo-blue);
  margin: 0;
  line-height: 1;
}

.brand-title span {
  color: var(--text-dark);
  position: relative;
}

.brand-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--logo-red);
  border-radius: 2px;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.25;
}

.description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

/* --- Interactive Action Button --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--logo-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(84, 178, 255, 0.3);
  transition: all 0.25s ease-in-out;
  width: max-content;
}

.btn-primary svg {
  transition: transform 0.25s ease;
}

.btn-primary:hover {
  background: #3fa3ff;
  box-shadow: 0 8px 20px rgba(84, 178, 255, 0.45);
  transform: translateY(-2px);
}

.btn-primary:hover svg {
  transform: translateX(4px);
  color: var(--logo-red);
}

/* --- KEYFRAME ANIMATIONS --- */

/* 1. Subtle, continuous floating loop for the image container */
@keyframes continuousFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: continuousFloat 4s ease-in-out infinite;
}

/* Pause the floating loop when hovering so the hover style takes complete control cleanly */
.image-wrapper:hover .float-animation {
  animation-play-state: paused;
}

/* 2. Slide-in from left for image wrapper on layout load */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 3. Sequential stagger upward slide for text fragments */
@keyframes slideUpEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-stagger {
  opacity: 0;
  animation: slideUpEntrance 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Stagger execution delays for right side elements */
.content-wrapper .anim-stagger:nth-child(1) {
  animation-delay: 0.15s;
}

.content-wrapper .anim-stagger:nth-child(2) {
  animation-delay: 0.25s;
}

.content-wrapper .anim-stagger:nth-child(3) {
  animation-delay: 0.35s;
}

.content-wrapper .anim-stagger:nth-child(4) {
  animation-delay: 0.45s;
}

.content-wrapper .anim-stagger:nth-child(5) {
  animation-delay: 0.55s;
}

/* ==========================
   SECTION
========================== */



/* ==========================
MOBILE
========================== */

@media(max-width:1200px){

.verify-wrap{

flex-direction:column;

gap:50px;

}


.middle{

position:relative;

left:auto;
top:auto;

transform:none;

margin:20px 0;

}


.feature-card{

width:100%;
height:auto;

}


.left-card,
.right-card{

clip-path:none;

border:
2px solid #ddd;

}

}

@media (max-width: 1100px) {
  .verify-wrap {
    flex-direction: column;

    gap: 40px;
  }

  .middle {
    display: none;
  }

  .feature-card {
    width: 100%;
  }
}

.kyc-section {
  padding: 40px 0;
  background: #eef2f7;
}

/* TITLE */

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title span {
  color: #ff3131;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* TIMELINE */

.timeline-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
}

.timeline-fill {
  position: absolute;

  left: 50%;

  top: 0;

  transform: translateX(-50%);

  width: 4px;

  height: 0;

  background: linear-gradient(to bottom, #1d9bf0, #ff3131);
}

/* STEP */

.step {
  display: grid;

  grid-template-columns: 1fr 80px 1fr;

  gap: 30px;

  align-items: center;

  margin-bottom: 40px;
}

/* STEP 2 */

.reverse {
  grid-template-columns: 1fr 80px 1fr;
}

/* CARDS */

.card-content {
  padding: 42px 40px;

  background: linear-gradient(
    90deg,
    rgba(250, 250, 250, 0.95),
    rgba(246, 246, 246, 0.4)
  );

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* IMPORTANT */

.right-card {
  grid-column: 3;
}

.left-card {
  grid-column: 1;
}

.content-card span {
  background: #eaf4ff;

  padding: 6px 12px;

  border-radius: 8px;

  color: #1d9bf0;

  font-weight: 700;
}

.content-card h3 {
  color: #1d9bf0;

  margin: 15px 0;

  font-size: 24px;
}

.content-card p {
  font-size: 15px;

  line-height: 1.8;
  
}

/* CIRCLE */

.circle {
  width: 70px;

  height: 70px;

  border: 3px solid #1d9bf0;

  background: white;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  margin: auto;

  z-index: 5;
}

.circle.active {
  background: linear-gradient(135deg, #1d9bf0, #ff3131);

  color: white;
}

/* IMAGE */

.img-box {
  text-align: center;
}

.reverse .img-box {
  grid-column: 1;
}

.reverse .content-card {
  grid-column: 3;
}

.floating-img {
  width: 300px;

  animation: float 3s infinite;

  filter: drop-shadow(0 0 40px rgba(95, 176, 242, 0.35));
  border-radius: 25px;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

/* ==========================
   CONTACT SECTION
========================== */
.contact-section {

    padding: 100px 0;

    background:
    linear-gradient(
    135deg,
    rgba(29,155,240,.05),
    rgba(255,49,49,.03)
    );

    overflow: visible;

}


/* MAIN BANNER */

.contact-section .container {

    max-width: 920px;

    background:

    linear-gradient(
    135deg,
    rgba(29,155,240,.24),
   
    rgba(255,49,49,.14)
    );

    border-radius: 35px;

    padding:
    38px
    42px;

    position: relative;

    overflow: visible;

}


/* TITLE */

.contact-title {

    font-size: 46px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 15px;

}


.contact-title span {

    color: #ff3131;

}



/* TEXT */

.contact-text {

    font-size: 15px;

    line-height: 1.9;

    color: #555;

    max-width: 400px;

    margin-bottom: 25px;

}



/* BUTTON */

.contact-btn {

    padding:
    12px
    30px;

    border-radius: 50px;

    background:

    linear-gradient(
    135deg,
    #1d9bf0,
    #ff3131
    );

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    display: inline-block;

}



/* PHONE AREA */

.phone-wrap {

    position: relative;

    height: 100px;

}



/* PHONE */

.verification-phone {

    width: 240px;   /* BIG */
    height: 400px;

    position: absolute;

    right: -50px;  /* OUTSIDE */

    top: -200px;

    z-index: 10;
    border-radius: 25px;

  

    


}

/* FLOOR SHADOW 

.phone-shadow {

    position: absolute;

    width: 260px;

    height: 75px;

    background:

    radial-gradient(
    ellipse,
    rgba(0,0,0,.28),
    transparent 75%
    );

    right: -120px;

    top: 190px;

    filter: blur(20px);

}*/



/* FLOAT 

@keyframes floatPhone {

50% {

transform:

rotate(-11deg)

translateY(-12px);

}

}
*/


/* MOBILE */

@media(max-width: 991px) {
    /* 1. Add breathing room (internal padding) to the main container */
    .contact-section .container {
        padding: 40px 30px; /* Adds space so it's not edge-to-edge */
        border-radius: 25px;
    }

    /* 2. Force Title and Paragraph to the left */
    .contact-title, 
    .contact-text {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }

    /* 3. Center the button specifically if you want it distinct */
    .contact-btn {
        display: inline-block;
        margin-left: 0;
    }

    /* 4. Ensure section padding is reduced */
    .contact-section {
        padding: 30px 15px; /* Adds space around the whole section */
    }

    /* 5. Phone positioning fix */
    .phone-wrap {
        height: auto;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
}
@media(max-width: 991px) {
    /* 1. Ensure the parent wrapper doesn't force a large height */
    .phone-wrap {
        height: auto;
        min-height: 150px; /* Provides enough space for a smaller phone */
        display: flex;
        justify-content: center;
        margin-top: 20px;
        position: relative;
    }

    /* 2. Shrink and position the phone properly */
    .verification-phone {
        position: relative; /* Changed from absolute to keep it in the layout flow */
        width: 170px;       /* Significantly reduced size */
        height: auto;
        top: 0;
        right: 0;
        transform: rotate(0deg); /* Straightened for mobile clarity */
        margin: 0 auto;
        display: block;
    }

    /* 3. Ensure the shadow doesn't push the container height */
    .phone-shadow {
        display: none; 
    }
}
/* Base Layout & Reset Updates */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
}

.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

/* --- THE HEXAGON FIX ENGINE --- */
.hex-card {
  width: 100%;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}


.hex-wrapper {
  filter: drop-shadow(0px 10px 18px rgba(15, 23, 42, 0.08));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
}

.hex-shape {
  width: 100%;
  aspect-ratio: 1 / 1.15; /* Maintains perfect structural hexagon shape */
  background: #ffffff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

  /* Center the content dynamically inside the shape */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}

/* --- ICON BLOB BACKGROUNDS --- */
.icon-blob {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.4s ease;
  flex-shrink: 0; /* Prevents icons from squeezing on small devices */
}

.icon-blob i {
  width: 26px;
  height: 26px;
  stroke-width: 2.25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Typography Inside Cards */
.card-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  color: #334155;
  margin: 0;
  margin-top: 4px;
  text-align: center;

  /* Prevents alignment breakage with consistent text container sizing */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

/* --- HOVER EFFECTS --- */
.hex-card:hover .hex-wrapper {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0px 20px 28px rgba(15, 23, 42, 0.14));
}

.hex-card:hover .icon-animate {
  transform: scale(1.15);
}

.hex-card:hover .icon-animate-spin {
  transform: rotate(45deg) scale(1.15);
}

/* --- DYNAMIC THEME COLORS --- */
.card-blue .icon-blob {
  background-color: rgba(59, 130, 246, 0.1);
}
.card-blue i {
  stroke: #3b82f6;
}

.card-purple .icon-blob {
  background-color: rgba(139, 92, 246, 0.1);
}
.card-purple i {
  stroke: #8b5cf6;
}

.card-teal .icon-blob {
  background-color: rgba(13, 148, 136, 0.1);
}
.card-teal i {
  stroke: #0d9488;
}

.card-orange .icon-blob {
  background-color: rgba(249, 115, 22, 0.1);
}
.card-orange i {
  stroke: #f97316;
}

.card-blue-dark .icon-blob {
  background-color: rgba(29, 78, 216, 0.1);
}
.card-blue-dark i {
  stroke: #1d4ed8;
}

.card-pink .icon-blob {
  background-color: rgba(236, 72, 153, 0.1);
}
.card-pink i {
  stroke: #ec4899;
}

.card-teal-dark .icon-blob {
  background-color: rgba(17, 94, 89, 0.1);
}
.card-teal-dark i {
  stroke: #115e59;
}

.card-yellow .icon-blob {
  background-color: rgba(234, 179, 8, 0.12);
}
.card-yellow i {
  stroke: #ca8a04;
}

.card-indigo .icon-blob {
  background-color: rgba(99, 102, 241, 0.1);
}
.card-indigo i {
  stroke: #6366f1;
}

.card-blue-bright .icon-blob {
  background-color: rgba(0, 119, 255, 0.1);
}
.card-blue-bright i {
  stroke: #0077ff;
}

.card-peach .icon-blob {
  background-color: rgba(244, 63, 94, 0.1);
}
.card-peach i {
  stroke: #f43f5e;
}

.card-green .icon-blob {
  background-color: rgba(34, 197, 94, 0.1);
}
.card-green i {
  stroke: #22c55e;
}

.card-magenta .icon-blob {
  background-color: rgba(217, 70, 239, 0.1);
}
.card-magenta i {
  stroke: #d946ef;
}

.card-blue-sea .icon-blob {
  background-color: rgba(2, 132, 199, 0.1);
}
.card-blue-sea i {
  stroke: #0284c7;
}

.card-cyan .icon-blob {
  background-color: rgba(6, 182, 212, 0.1);
}
.card-cyan i {
  stroke: #06b6d4;
}

.card-violet .icon-blob {
  background-color: rgba(124, 58, 237, 0.1);
}
.card-violet i {
  stroke: #7c3aed;
}

/* --- ANIMATION ENTRANCE STATES --- */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile View Grid Controls */
@media (max-width: 576px) {
  .col-6 {
    width: 50% !important;
    flex: 0 0 auto;
  }
  .card-title {
    font-size: 0.75rem;
    height: 34px;
  }
  .icon-blob {
    width: 46px;
    height: 46px;
  }
  .icon-blob i {
    width: 22px;
    height: 22px;
  }
}

.how-section {
  padding: 40px 10px;

  background: linear-gradient(135deg, #dff1ff, #eef8ff);

  border-radius: 45px; /* smoother corners */

  overflow: hidden;
}

/* ==========================
   IMAGE CONTAINER
========================== */

.phone-box {
  display: flex;

  justify-content: center;

  align-items: center;

  height: 100%;
}

/* ==========================
   PHONE IMAGE
========================== */

.phone-img {
  width: 440px; /* increase size */

  height: auto;

  margin-left: -120px; /* move left */

  border-radius: 35px; /* curved corners */

  padding: 12px; /* space for shadow */

  background: rgba(255, 255, 255, 0.25);

  box-shadow:
    0 30px 50px rgba(29, 155, 240, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.08);

  animation: float 3s infinite;

  transition: 0.4s;
}

/* hover */

.phone-img:hover {
  transform: translateY(-8px);
}

/* floating */

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

/* ==========================
   TITLE
========================== */

.small-tag {
  color: black;

  font-size: 40px;

  font-weight: 900;
}

.red-text {
  color: #ff3131;
}

.how-title {
  font-size: 32px;

  font-weight: 650;

  margin: 8px 0;
  color: #1d9bf0;
}

.how-title span {
  color: #1d9bf0;
}

.how-text {
  color: #555;

  margin-bottom: 20px;
}

/* ==========================
   STEPS
========================== */

.steps-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  flex-wrap: nowrap;
}

/* ==========================
   CARD
========================== */

.step-card {
  width: 190px;

  padding: 25px 15px;

  text-align: center;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(10px);

  transition: 0.4s;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-10px);
}

/* ==========================
   ICONS
========================== */

.step-card i {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: linear-gradient(135deg, #1d9bf0, #ff3131);

  color: white;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 28px;

  margin: auto auto 18px;

  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 20px rgba(29, 155, 240, 0);
  }
}

/* ==========================
   CARD TEXT
========================== */

.step-card h5 {
  font-size: 20px;

  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;

  color: #666;

  line-height: 1.7;
}

/* ==========================
   ARROWS
========================== */

.arrow {
  font-size: 30px;

  color: #1d9bf0;

  animation: moveArrow 1.2s infinite;
}

@keyframes moveArrow {
  50% {
    transform: translateX(8px);
  }
}

/* ==========================
   FEATURES
========================== */

.features {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-top: 25px;
}

.features span {
  background: white;

  padding: 15px;

  border-radius: 20px;

  text-align: center;

  transition: 0.4s;

  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.features span:hover {
  transform: translateY(-6px);
}

.features strong {
  display: block;

  margin-top: 8px;

  font-size: 14px;
}

/* ==========================
   SECTION
========================== */
/* ==========================
   CONTAINER LAYOUT
========================== */
.verification-portal {
  padding: 50px 0;
  background: #f1f5f9;
}

/* ==========================
   HEADING COMPONENT
========================== */
.v-portal-heading {
  text-align: center;
  margin-bottom: 50px;
}

.v-portal-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  display: inline-block;
}

.v-portal-heading h2::after {
  content: "";
  width: 130px;
  height: 4px;
  background: linear-gradient(90deg, #1d9bf0, #ff3131);
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border-radius: 30px;
}

.v-portal-heading h2 span.v-red-text {
  color: #ff3131;
}

.v-portal-heading p {
  color: #64748b;
  margin-top: 20px;
  font-size: 1.05rem;
}

/* ==========================
   THE HEXAGON CARD ENGINE 
========================== */
.v-portal-card {
  width: 100%;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v-hex-wrapper {
  filter: drop-shadow(0px 12px 24px rgba(15, 23, 42, 0.08));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
}

.v-hex-shape {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background: #ffffff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  box-sizing: border-box;
}

/* ==========================
   ICON COMPONENT STYLING
========================== */
.v-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.v-icon-circle i,
.v-icon-circle svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.2px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================
   CARD INLINE CONTENT
========================== */
.v-card-content {
  text-align: center;
  width: 100%;
}

.v-card-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  color: #334155;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

/* ==========================
   HOVER & TRANSITION INTERACTION STATES
========================== */
.v-portal-card.active:hover .v-hex-wrapper {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0px 20px 28px rgba(15, 23, 42, 0.14));
}

.v-portal-card:hover .v-icon-circle i,
.v-portal-card:hover .v-icon-circle svg {
  transform: scale(1.18);
}

.v-portal-card:hover .v-icon-spin {
  transform: rotate(45deg) scale(1.18) !important;
}

/* ==========================
   ISOLATED COLOR SCHEMES
========================== */
.v-theme-blue .v-icon-circle {
  background-color: rgba(59, 130, 246, 0.1);
}
.v-theme-blue i,
.v-theme-blue svg {
  stroke: #3b82f6;
}

.v-theme-purple .v-icon-circle {
  background-color: rgba(139, 92, 246, 0.1);
}
.v-theme-purple i,
.v-theme-purple svg {
  stroke: #8b5cf6;
}

.v-theme-teal .v-icon-circle {
  background-color: rgba(13, 148, 136, 0.1);
}
.v-theme-teal i,
.v-theme-teal svg {
  stroke: #0d9488;
}

.v-theme-orange .v-icon-circle {
  background-color: rgba(249, 115, 22, 0.1);
}
.v-theme-orange i,
.v-theme-orange svg {
  stroke: #f97316;
}

.v-theme-blue-dark .v-icon-circle {
  background-color: rgba(29, 78, 216, 0.1);
}
.v-theme-blue-dark i,
.v-theme-blue-dark svg {
  stroke: #1d4ed8;
}

.v-theme-pink .v-icon-circle {
  background-color: rgba(236, 72, 153, 0.1);
}
.v-theme-pink i,
.v-theme-pink svg {
  stroke: #ec4899;
}

.v-theme-teal-dark .v-icon-circle {
  background-color: rgba(17, 94, 89, 0.1);
}
.v-theme-teal-dark i,
.v-theme-teal-dark svg {
  stroke: #115e59;
}

.v-theme-yellow .v-icon-circle {
  background-color: rgba(234, 179, 8, 0.12);
}
.v-theme-yellow i,
.v-theme-yellow svg {
  stroke: #ca8a04;
}

.v-theme-indigo .v-icon-circle {
  background-color: rgba(99, 102, 241, 0.1);
}
.v-theme-indigo i,
.v-theme-indigo svg {
  stroke: #6366f1;
}

.v-theme-blue-bright .v-icon-circle {
  background-color: rgba(0, 119, 255, 0.1);
}
.v-theme-blue-bright i,
.v-theme-blue-bright svg {
  stroke: #0077ff;
}

.v-theme-peach .v-icon-circle {
  background-color: rgba(244, 63, 94, 0.1);
}
.v-theme-peach i,
.v-theme-peach svg {
  stroke: #f43f5e;
}

.v-theme-green .v-icon-circle {
  background-color: rgba(34, 197, 94, 0.1);
}
.v-theme-green i,
.v-theme-green svg {
  stroke: #22c55e;
}

.v-theme-magenta .v-icon-circle {
  background-color: rgba(217, 70, 239, 0.1);
}
.v-theme-magenta i,
.v-theme-magenta svg {
  stroke: #d946ef;
}

.v-theme-blue-sea .v-icon-circle {
  background-color: rgba(2, 132, 199, 0.1);
}
.v-theme-blue-sea i,
.v-theme-blue-sea svg {
  stroke: #0284c7;
}

.v-theme-cyan .v-icon-circle {
  background-color: rgba(6, 182, 212, 0.1);
}
.v-theme-cyan i,
.v-theme-cyan svg {
  stroke: #06b6d4;
}

.v-theme-violet .v-icon-circle {
  background-color: rgba(124, 58, 237, 0.1);
}
.v-theme-violet i,
.v-theme-violet svg {
  stroke: #7c3aed;
}

/* ==========================
   SCROLL ENGINE COUPLING
========================== */
.v-animate-header {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.v-animate-header.active {
  opacity: 1;
  transform: translateY(0);
}

.v-portal-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================
   RESPONSIVE DESIGN (2 pairs/row)
========================== */
/* ==========================
   RESPONSIVE DESIGN (2 pairs/row)
========================== */
@media (max-width: 991px) {
  .verification-portal {
    padding: 35px 0;
  }

  .verification-portal .col-6 {
    width: 50% !important;
    padding: 6px !important;
  }

  .v-portal-heading h2 {
    font-size: 28px;
  }

  .v-portal-heading h2::after {
    width: 90px;
    bottom: -8px;
  }

  /* Expanded the circle slightly to comfortably fit the larger icon */
  .v-icon-circle {
    width: 58px;
    height: 58px;
    margin-bottom: 3px;
  }

  /* Made the icons larger here (changed from 20px to 28px) */
  .v-icon-circle i,
  .v-icon-circle svg {
    width: 28px;
    height: 28px;
  }

  .v-card-content h4 {
    font-size: 0.74rem;
    height: 34px;
  }
}

.industry-section {
  padding: 25px 0;
  background: #eeeeee;
}

/* ==========================
   HEADING
========================== */

.industry-heading {
  text-align: center;
  margin-bottom: 30px;
}

.industry-heading h2 {
  font-size: 46px;
  font-weight: 700;
  color: #111;

  position: relative;
  display: inline-block;
}

/* Full underline */

.industry-heading h2::after {
  content: "";

  width: 130px;
  height: 4px;

  background: linear-gradient(90deg, #1d9bf0, #ff3131);

  position: absolute;

  left: 50%;
  bottom: -10px;

  transform: translateX(-50%);

  border-radius: 30px;
}

/* ==========================
   CARD
========================== */

.industry-card {
  background: white;

  border-radius: 20px;

  overflow: hidden;

  height: 100%;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  transition: 0.3s;
}

.industry-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* ==========================
   TOP SPLIT
========================== */

.card-top {
  height: 85px;

  background: linear-gradient(
    100deg,
    #dff1ff 50%,

    #ffe3e3 50%
  );

  position: relative;
}

/* ==========================
   ICON
========================== */

/* Circle */

.icon-circle {
  width: 75px;

  height: 75px;

  border-radius: 50%;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  position: absolute;

  left: 50%;

  bottom: -35px;

  transform: translateX(-50%);
}

/* Icon */

.icon-circle img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  transform: scale(1.5);

  transform-origin: center; /* important */
}

.industry-card:hover .icon-circle {
  transform: translateX(-50%) rotate(8deg);
}

/* ==========================
   CONTENT
========================== */
.card-content {
margin-top: -70px; 
  padding: 110px 15px 15px;
  text-align: center;
}

.card-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  /* REMOVED the 60px bottom padding that was pushing your text down */
  padding: 0 15px; 
  text-align: center;
}
/* REMOVE BUTTON */

.card-content button {
  display: none;
}

/* ==========================
   ROW GAP
========================== */

.industry-section .row {
  row-gap: 20px;
}

/* ==========================
   CARD APPEAR ANIMATION
========================== */

.industry-card {
  opacity: 0;

  transform: translateY(40px) scale(0.95);

  filter: blur(8px);

  animation: cardReveal 0.8s ease forwards;
}

/* delay */

.col-lg-3:nth-child(1) .industry-card {
  animation-delay: 0.1s;
}

.col-lg-3:nth-child(2) .industry-card {
  animation-delay: 0.3s;
}

.col-lg-3:nth-child(3) .industry-card {
  animation-delay: 0.5s;
}

.col-lg-3:nth-child(4) .industry-card {
  animation-delay: 0.7s;
}

/* animation */

@keyframes cardReveal {
  from {
    opacity: 0;

    transform: translateY(40px) scale(0.95);

    filter: blur(8px);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);

    filter: blur(0);
  }
}
@media (max-width: 991px) {
  .industry-section {
    padding: 20px 0 5px; /* reduce bottom */
  }

  /* TARGET EXISTING BOOTSTRAP COL */

  .industry-section .col-lg-3 {
    width: 50%;

    padding: 8px;
  }

  .industry-card {
    max-width: 100%;
    min-height: 220px;

    margin: 0;
  }

  .card-top {
    height: 75px;
  }

  .icon-circle {

   
    width: 60px;
    height: 60px;
    bottom: -25px; /* Adjust this if the icon still covers the text */
  
  }

  .icon-circle img {
    width: 50px;

    height: 50px;
  }

  .card-content {
    
    padding: 85px 12px 12px;
  }

.card-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
    display: block; /* Ensures heading doesn't get hidden */
  }

  .card-content p {
   font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left;
  }

  .industry-heading h2 {
    font-size: 24px; /* reduced from 32px */

    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  /* SECTION */

  .how-section {
    padding: 25px 15px; /* reduce section height */

    border-radius: 20px;
  }

  /* CONTENT FIRST */

  .col-lg-8 {
    order: 1;
  }

  /* IMAGE AFTER PARA */

  .phone-box {
    order: 2;

    margin: 15px auto 20px;

    text-align: center;
  }

  /* BIG HOW IT WORKS */

  .small-tag {
    display: block;

    text-align: center;

    font-size: 28px; /* BIG */

    font-weight: 800;

    color: #ff3131;

    letter-spacing: 0;

    margin-bottom: 10px;
  }

  /* SMALLER MAIN TITLE */

  .how-title {
    font-size: 26px;

    text-align: center;

    line-height: 1.25;

    margin: 0 0 10px;
  }

  .how-title span {
    display: inline;
  }

  .how-text {
    text-align: center;

    font-size: 13px;

    margin-bottom: 15px;
  }

  /* IMAGE */

  .phone-img {
    width: 240px;

    display: block;

    margin: auto;
  }

  /* CARDS */

  .steps-row {
    flex-direction: column;

    gap: 8px; /* reduce space */
  }

  .step-card {
    width: 100%;

    max-width: 210px;

    padding: 14px 14px; /* reduce card height */

    border-radius: 18px;
  }

  .step-card i {
    width: 50px;

    height: 50px;

    font-size: 20px;

    margin-bottom: 12px;
  }

  .step-card h5 {
    font-size: 16px;

    margin: 8px 0;
  }

  .step-card p {
    font-size: 11px;

    line-height: 1.5;

    margin: 0;
  }

  /* ARROWS */

  .arrow {
    display: block;

    font-size: 24px;

    transform: rotate(90deg);

    margin: -5px 0;

    animation: moveDown 1.3s infinite;
  }

  @keyframes moveDown {
    50% {
      transform: rotate(90deg) translateX(6px);
    }
  }

  /* FEATURES */

  .features {
    display: flex;

    justify-content: space-between;

    flex-wrap: nowrap;

    gap: 6px;

    margin-top: 15px;
  }

  .features span {
    width: 32%;

    padding: 8px 4px;

    border-radius: 12px;

    font-size: 10px;
  }

  .features strong {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  /* ==================
SECTION
================== */

  .services-section {
    padding: 35px 0;
  }

  /* heading */

  .services-title {
    font-size: 24px;

    text-align: center;

    margin-bottom: 5px;
  }

  .title-line {
    width: 40px;

    margin: 8px auto;
  }

  .services-text {
    font-size: 12px;

    text-align: center;

    margin-bottom: 12px;

    line-height: 1.5;
  }

  /* button BELOW cards */

  .services-btn {
    display: block;

    width: fit-content;

    margin: 20px auto 0 !important;

    padding: 8px 18px;

    font-size: 12px;

    clear: both;
  }

  /* slider */

  .slider {
    margin: 15px 0 0;
  }

  .slide-track {
    display: flex;

    gap: 12px;

    width: max-content;
  }

  /* cards */

  .verify-card {
    min-width: 115px;

    height: 160px;

    padding: 12px 10px;
  }

  .verify-card img {
    width: 30px;
  }

  .verify-card h6 {
    font-size: 11px;
  }

  .verify-card span {
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  /* make row vertical */

  .services-section .row {
    display: flex;

    flex-direction: column;
  }

  /* LEFT COLUMN */

  .services-section .col-lg-3 {
    order: 1;

    display: contents; /* important */
  }

  /* SLIDER */

  .services-section .col-lg-9 {
    order: 2;
  }

  /* BUTTON BELOW CARDS */

  .services-btn {
    order: 3;

    display: table;

    margin: 20px auto 0;

    padding: 8px 18px;

    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .contact-section .container {
    padding: 30px 15px;
  }

  .contact-title {
    font-size: 28px;

    text-align: center;

    margin-bottom: 12px;
  }

  .contact-text {
    text-align: center;

    font-size: 14px;

    margin-bottom: 20px;
  }

  .contact-btn {
    display: table;

    margin: auto;
  }

  /* keep cards in one row */

  .contact-cards {
    display: flex;

    flex-direction: row !important;

    justify-content: space-between;

    gap: 8px;

    margin-top: 25px;
  }

  .contact-card {
    width: 32%;

    padding: 18px 8px;

    border-radius: 18px;

    margin: 0;
  }

  .contact-card i {
    width: 45px;
    height: 45px;

    font-size: 18px;

    margin-bottom: 10px;
  }

  .contact-card h5 {
    font-size: 12px;

    margin-bottom: 6px;
  }

  .contact-card p {
    font-size: 9px;

    line-height: 1.4;
  }
}

/* MOBILE */

@media (max-width: 991px) {
  .contact-section .container {
    padding: 35px 20px;
  }

  .contact-title {
    font-size: 32px;

    white-space: normal;

    text-align: center;
  }

  .contact-text {
    text-align: center;

    font-size: 15px;
  }

  .contact-btn {
    display: table;

    margin: auto;
  }

  .contact-cards {
    flex-direction: column;

    align-items: center;

    margin-top: 35px;
  }

  .contact-card {
    width: 100%;

    max-width: 300px;
  }
}

/* MOBILE */

@media (max-width: 991px) {
  .section-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }

  /* remove timeline */

  .timeline-fill {
    display: none;
  }

  .step {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 15px;

    margin-bottom: 35px;

    align-items: center;
  }

  /* number */

  .circle {
    grid-column: 1;

    grid-row: 1;

    width: 50px;

    height: 50px;

    font-size: 15px;

    margin: 0;
  }

  /* image beside number */

  .img-box {
    grid-column: 2;

    grid-row: 1;

    text-align: left;
  }

  .floating-img {
    width: 140px;
  }

  /* content below */

  .content-card {
    grid-column: 1 / span 2;

    grid-row: 2;

    width: 100%;

    max-width: 100%;

    padding: 16px;
  }

  .content-card h3 {
    font-size: 18px;
  }

  .content-card p {
    font-size: 13px;

    line-height: 1.7;
  }

  /* IMPORTANT */

  /* force all steps same order on mobile */

  .reverse {
    display: grid;

    grid-template-columns: 55px 1fr;
  }

  /* number */

  .reverse .circle {
    grid-column: 1;

    grid-row: 1;
  }

  /* image */

  .reverse .img-box {
    grid-column: 2;

    grid-row: 1;
  }

  /* content */

  .reverse .content-card {
    grid-column: 1 / span 2;

    grid-row: 2;
  }
}
/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .feature-wrap {
    flex-direction: column;
  }

  .feature-card {
    width: 100%;
    max-width: 450px;
    min-height: auto;
  }

  .center-box {
    margin: 10px auto;
  }

  .title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 16px;
    line-height: 1.8;
  }

  .small-feature {
    font-size: 16px;
  }

  .flip-card {
    height: 52px;
  }

  .front {
    font-size: 15px;
  }

  .back {
    font-size: 12px;
  }
}

/* --- Mobile Viewport Adjustments --- */
@media (max-width: 768px) {
  .verification-section {
    padding: 1.5rem 1rem;
  }

  .grid-layout {
    gap: 1.25rem;
  }

  .image-placeholder {
    aspect-ratio: 16 / 10;
  }

  .brand-title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  @keyframes fadeInLeftMobile {
    from {
      opacity: 0;
      transform: translateY(15px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .anim-fade-in-left {
    animation: fadeInLeftMobile 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }
}



/* =====================
VIDEO SECTION
===================== */

.hero-video-section {
  position: relative;

  width: 100%;

  height: 92vh;

  overflow: hidden;
}
/* .hero-video-section {
  margin-top: 60px;
} */

/* video */

.hero-video {
  width: 100%;

  height: 92vh;

  object-fit: cover;

  display: block;
}

/* dark overlay 

.hero-video-section::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4));
} */

/* text */

.hero-overlay {
  position: absolute;

  top: 77%; /* move down */

  left: 6%;

  transform: translateY(-50%);

  z-index: 2;

  color: white;

  max-width: 550px;
}

.hero-overlay h1 {
  font-size: 44px;

  font-weight: 800;

  line-height: 1.2;
}

.hero-overlay p {
  font-size: 18px;

  margin: 20px 0;
}

.hero-btn {
  display: inline-block;

  padding: 10px 30px;

  border-radius: 40px;

  background: linear-gradient(135deg, #1d9bf0, rgb(255, 49, 49));

  color: white;

  text-decoration: none;

  transition: 0.4s;
}

.hero-btn:hover {
  transform: translateY(-5px);

  color: white;
}

@media (max-width: 991px) {
  .hero-video-section {
    height: 40vh;
  }

  .hero-video {
    height: 40vh;
  }

  /* FIX TEXT */

  .hero-overlay {
    left: 12px; /* push left */

    top: 60%; /* lower */

    max-width: 180px;

    transform: translateY(-50%);
  }

  .hero-overlay h1 {
    font-size: 16px;

    line-height: 1.2;

    margin-bottom: 8px;
  }

  .hero-overlay p {
    font-size: 9px;

    line-height: 1.4;

    margin-bottom: 10px;
  }

  .hero-btn {
    padding: 7px 16px;

    font-size: 10px;

    border-radius: 20px;
  }
}

.about-verify {
background: linear-gradient(
  180deg,
  #dbe8f3 0%,
  #ffffff 45%,
  #fffafa 75%,
  #f8e7e7 100%
);
padding: 30px 0;

  overflow: hidden;
}

/* ==========================
IMAGE
========================== */
/* Ensure the section takes full width */
/* Container adjustments */
.about-verify .row {
  display: flex;
  align-items: center; /* Keeps both elements vertically centered */
  justify-content: space-between;
}

/* Image on the Left */
.verify-img {
  display: flex;
  justify-content: flex-start; /* Keeps it to the left */
}

.verify-img img {
  width: 100%;       /* Makes it responsive */
  max-width: 660px;  /* Keeps your exact preferred size */
  height: auto;
  border-radius: 25px;
  display: block;
}

/* Content on the Right */
.verify-content {
  text-align: left;
 
  padding-left: 30px/* Space between the image and the text */
}

/* Ensure the Section isn't too tall */
.about-verify {
  padding: 50px 0; /* Adjust this to control top/bottom space */
}
.verify-badge {
  display: inline-flex;       /* Change to inline-flex to align icon and text */
  align-items: center;        /* Vertically centers icon with text */
  gap: 8px;                   /* Adds space between icon and text */
  padding: 8px 18px;
  background: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

/* Ensure icon color matches your theme */
.verify-badge i {
  color: rgb(255, 49, 49);    /* Matches your red branding */
}

.verify-content h1 {
  font-size: 58px;
  font-weight: 800;
  margin: 0 0 15px 0;
}

.verify-content h1 span {
  color: rgb(255, 49, 49);
}

.verify-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: rgb(92, 182, 254); ;
}

.verify-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.verify-content button {
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  background: rgb(92, 182, 254);
  color: white;
  cursor: pointer;
}

.verify-content button:hover {
  transform: translateY(-4px);
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes imgReveal {
  0% { opacity: 0; transform: translateX(-30px) scale(0.98); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
/* ==========================
MOBILE
========================== */

@media (max-width: 991px) {
  /* CONTENT FIRST */

  .about-verify .row {
    flex-direction: column-reverse;
  }

  /* SECTION */

  .about-verify {
    padding: 15px 0 5px;
  }

  /* CONTENT */

  .verify-content {
    text-align: center;

    padding: 5px 12px;
  }

  /* badge */

  .verify-badge {
    font-size: 11px;

    padding: 6px 14px;
  }

  /* MAIN HEADING */

  .verify-content h1 {
    font-size: 34px;

    /* keep one line */

    white-space: nowrap;
  }

  /* SUB HEADING */

  .verify-content h2 {
    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 10px;
  }

  .verify-content p {
    text-align: left;

    font-size: 12px;

    line-height: 1.8;

    padding: 0 8px;
  }

  /* BUTTON */

  .verify-content button {
    padding: 7px 18px;

    font-size: 11px;

    border-radius: 25px;
  }

  /* IMAGE */

  .verify-img {
    margin-top: 10px;

    margin-bottom: 5px;
  }

  .verify-img img {
    max-width: 270px;

    width: 100%;

    margin: auto;
  }
}

.contact1-section {
  padding: 45px 0;

  background:
    linear-gradient(rgba(220, 240, 255, 0.35), rgba(190, 230, 255, 0.4)),
    url("https://images.unsplash.com/photo-1513002749550-c59d786b8e6c?w=1800");

  background-size: cover;

  background-position: center;

  overflow: hidden;
}

/* ==========================
   HEADING
========================== */
/* ==========================
HEADING
========================== */

.contact1-heading {
  text-align: center;

  margin-bottom: 25px;
}

.contact1-heading h2 {
  font-size: 36px;

  font-weight: 800;

  color: black;

  margin-bottom: 8px;
}

.contact1-heading span {
  color: rgb(255, 49, 49);
}

.contact1-heading p {
  font-size: 16px;

  color: #333;

  margin: 0;
}

/* ==========================
GLASS FORM
========================== */

.glass-form {
  background: rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(22px);

  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, 0.55);

  border-radius: 30px;

  padding: 35px;

  box-shadow:
    0 20px 40px rgba(92, 182, 254, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08);

  position: relative;

  overflow: hidden;
}

/* shine */

.glass-form::before {
  content: "";

  position: absolute;

  top: 0;

  left: -40%;

  width: 60%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );

  transform: skewX(-25deg);
}

/* ==========================
INPUTS
========================== */

.glass-form input,
.glass-form textarea {
  width: 100%;

  padding: 16px 20px;

  margin-bottom: 16px;

  border-radius: 18px;

  outline: none;

  color: #222;

  font-size: 15px;

  font-weight: 500;

  background: rgba(255, 255, 255, 0.2);

  border: 1px solid rgba(255, 255, 255, 0.55);

  transition: 0.4s;
}

/* placeholder */

.glass-form input::placeholder,
.glass-form textarea::placeholder {
  color: rgba(70, 70, 70, 0.75);
}

/* focus */

.glass-form input:focus,
.glass-form textarea:focus {
  border: 1px solid rgb(255, 49, 49);

  background: rgba(255, 255, 255, 0.3);

  box-shadow: 0 0 22px rgba(255, 49, 49, 0.22);
}

/* ==========================
TEXTAREA
========================== */

.glass-form textarea {
  height: 120px;

  resize: none;
}

/* ==========================
BOTTOM
========================== */

.form-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 8px;
}

/* ==========================
BUTTON
========================== */

.glass-form button {
  border: none;

  padding: 12px 28px;

  border-radius: 50px;

  color: white;

  font-size: 15px;

  font-weight: 600;

  background: linear-gradient(135deg, rgb(92, 182, 254), rgb(255, 49, 49));

  transition: 0.4s;
}

.glass-form button:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 25px rgba(255, 49, 49, 0.35);
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact1-heading h2 {
    font-size: 26px;
  }

  .contact1-heading p {
    font-size: 13px;
  }

  .glass-form {
    padding: 20px;

    border-radius: 24px;
  }

  .glass-form input,
  .glass-form textarea {
    padding: 14px 16px;

    font-size: 13px;
  }

  .glass-form button {
    padding: 10px 22px;

    font-size: 13px;
  }

  .form-bottom {
    flex-direction: column;

    gap: 12px;
  }
}
.footer {
  position: relative;

  overflow: hidden;

  padding: 45px 0 0;

  background: linear-gradient(
    90deg,
    #ffffff 0%,

    #cbe8ff 40%,

    #ffc9d1 100%
  );
}

/* ==========================
   TOP ANIMATED LINE
========================== */

.footer::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 300%;

  height: 3px;

  background: linear-gradient(
    90deg,
    #7dc7ff,
    #1d9bf0,
    rgb(255, 49, 49),
    #ff6b81,
    #7dc7ff
  );

  animation: borderMove 6s linear infinite;
}

@keyframes borderMove {
  from {
    transform: translateX(-20%);
  }

  to {
    transform: translateX(20%);
  }
}

/* ==========================
   CONTENT
========================== */

.footer-content {
  padding-bottom: 25px;
}

/* ==========================
   LOGO
========================== */

.footer-logo img {
  width: 120px;
}

.footer-logo p {
  margin-top: 12px;

  font-size: 14px;

  line-height: 1.6;

  color: #333;
}

/* ==========================
   HEADINGS
========================== */

.footer h4 {
  font-size: 22px;

  font-weight: 700;

  color: #111;

  margin-bottom: 16px;
}

/* ==========================
   LINKS
========================== */

.footer ul {
  padding: 0;

  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;

  font-size: 15px;

  color: #222;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: rgb(255, 49, 49);

  padding-left: 6px;
}

/* ==========================
   SOCIAL
========================== */

.social-icons {
  display: flex;

  gap: 12px;
}

.social-icons a {
  width: 48px;

  height: 48px;

  background: white;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 18px;

  color: rgb(255, 49, 49);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.social-icons a:hover {
  transform: translateY(-5px);

  background: rgb(255, 49, 49);

  color: white;
}

/* ==========================
   COPYRIGHT BAR
========================== */

.footer-bottom {
  background: linear-gradient(135deg, rgb(255, 49, 49), #c7002f);

  text-align: center;

  color: white;

  padding: 12px 0;

  font-size: 16px;

  font-weight: 600;
}
/* footer link icons */

.footer ul li a i {
  margin-right: 10px;

  color: rgb(255, 49, 49);

  width: 18px;

  transition: 0.3s;
}

.footer ul li a:hover i {
  transform: translateX(4px);
}

/* ==========================
FOOTER APPEAR ANIMATION
========================== */

.footer-logo,
.footer .col-lg-3:nth-child(2),
.footer .col-lg-3:nth-child(3),
.footer .col-lg-3:nth-child(4) {
  opacity: 0;

  transform: translateY(40px);

  transition: all 0.8s ease;
}

/* active */

.footer-logo.show,
.footer .col-lg-3:nth-child(2).show,
.footer .col-lg-3:nth-child(3).show,
.footer .col-lg-3:nth-child(4).show {
  opacity: 1;

  transform: translateY(0);
}

/* ==========================
MOBILE
========================== */

@media (max-width: 991px) {
  .contact1-section {
    padding: 35px 0;
  }

  .contact1-heading {
    margin-bottom: 20px;
  }

  .contact1-heading h2 {
    font-size: 20px;
  }

  .contact1-heading p {
    font-size: 14px;
  }

  .glass-form {
    padding: 20px;
  }

  .glass-form input,
  .glass-form textarea {
    padding: 14px 18px;
  }

  textarea {
    height: 95px;
  }

  .form-bottom {
    flex-direction: column;

    gap: 15px;
  }

  button {
    padding: 10px 30px;
  }
}

@media (max-width: 991px) {
  /* =====================
       FOOTER
    ====================== */

  .footer {
    padding: 25px 15px 0;
  }

  .footer-content {
    display: flex;

    flex-wrap: wrap;

    row-gap: 15px;
  }

  /* =====================
       LOGO FULL WIDTH
    ====================== */

  .footer-content .col-lg-3:first-child {
    flex: 0 0 100%;

    max-width: 100%;

    margin-bottom: 10px;
  }

  .footer-logo img {
    width: 90px;
  }

  .footer-logo p {
    font-size: 12px;

    max-width: 240px;

    margin-top: 10px;
  }

  /* =====================
       LINKS + SUPPORT SIDE BY SIDE
    ====================== */

  .footer-content .col-lg-3:nth-child(2),
  .footer-content .col-lg-3:nth-child(3) {
    flex: 0 0 50%;

    max-width: 50%;
  }

  .footer h4 {
    font-size: 16px;

    margin-bottom: 10px;
  }

  .footer h4::after {
    margin: 5px 0; /* NOT CENTER */
  }

  .footer ul li {
    margin-bottom: 6px;
  }

  .footer ul li a {
    font-size: 12px;
  }

  .footer ul li a i {
    margin-right: 5px;
  }

  /* =====================
       SOCIAL FULL WIDTH
    ====================== */

  .footer-content .col-lg-3:last-child {
    flex: 0 0 100%;

    max-width: 100%;

    margin-top: 5px;
  }

  .social-icons {
    justify-content: flex-start; /* NOT CENTER */

    gap: 10px;
  }

  .social-icons a {
    width: 38px;

    height: 38px;

    font-size: 14px;
  }

  /* ==========================
   COPYRIGHT
========================== */

  .footer-bottom {
    width: 100vw;

    margin-left: calc(50% - 50vw);

    background: linear-gradient(135deg, rgb(255, 49, 49), #c7002f);

    text-align: center;

    color: white;

    padding: 12px 0;

    font-size: 16px;

    font-weight: 600;
  }

  /* remove bootstrap gaps */

  .mb-4 {
    margin-bottom: 10px !important;
  }
}

/* MOBILE TOGGLER */

.navbar-toggler {
  width: 55px; /* reduce width */

  height: 35px;

  padding: 6px 10px;

  background: rgb(255, 49, 49);

  border: none;

  border-radius: 8px;
}

/* icon size */

.navbar-toggler-icon {
  width: 22px;

  height: 22px;
}

/* POPUP BACKGROUND */

.success-popup {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.35);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 9999;
}

/* BOX */

.success-box {
  background: white;

  padding: 20px 20px;

  border-radius: 28px;

  text-align: center;

  width: 330px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

  animation: popupShow 0.4s ease;
}

/* TICK */

.success-icon {
  width: 75px;

  height: 75px;

  background: linear-gradient(135deg, rgb(92, 182, 254), rgb(255, 49, 49));

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  margin: auto auto 18px;

  font-size: 34px;

  color: white;
}

.success-box h3 {
  font-size: 24px;

  margin-bottom: 10px;
}

.success-box p {
  font-size: 15px;

  line-height: 1.8;

  color: #555;
}

/* button */

.close-popup {
  margin-top: 18px;

  border: none;

  padding: 10px 28px;

  border-radius: 30px;

  background: linear-gradient(135deg, rgb(92, 182, 254), rgb(255, 49, 49));

  color: white;

  font-size: 14px;
}

/* animation */

@keyframes popupShow {
  0% {
    opacity: 0;

    transform: scale(0.8);
  }

  100% {
    opacity: 1;

    transform: scale(1);
  }
}
/* ==========================
SECTION
========================== */

.vf-feature-section{
padding:100px 0;
background:#fff;
overflow:hidden;
}


.vf-section-header{
text-align:center;
margin-bottom:90px;
}


.vf-title{
font-size:56px;
font-weight:900;
color:#111;
}


.vf-title span{
color:#ff3131;
}


.vf-underline{

width:60px;
height:4px;

background:#1d9bf0;

margin:18px auto 0;

border-radius:20px;

}




/* ==========================
MAIN
========================== */

.vf-wrap{

display:flex;
justify-content:center;
align-items:center;

gap:150px;

position:relative;

}




/* ==========================
CARDS
========================== */

.vf-card{

width:520px;
height:320px;

background:#fff;

position:relative;

display:flex;

flex-shrink:0;

}



.vf-content{

width:100%;
height:100%;

padding:40px;

display:flex;
flex-direction:column;
justify-content:center;


background:

linear-gradient(
90deg,
rgba(250,250,250,.95),
rgba(245,245,245,.5)
);

}




/* ==========================
LEFT CARD
========================== */

.vf-left-card{

clip-path:
polygon(
0 0,
90% 0,
100% 50%,
90% 100%,
0 100%
);

border:
2px solid #1d9bf0;

border-right:none;

position:relative;

}



.vf-left-card::after{

content:"";

position:absolute;

right:0;
top:50%;

width:70px;
height:2px;

background:#1d9bf0;

transform:
translateX(100%);

}




/* ==========================
RIGHT CARD
========================== */

.vf-right-card{

clip-path:
polygon(
10% 0,
100% 0,
100% 100%,
10% 100%,
0 50%
);

border:
2px solid #ff3131;

border-left:none;

position:relative;

}



.vf-right-card::before{

content:"";

position:absolute;

left:0;
top:50%;

width:70px;
height:2px;

background:#ff3131;

transform:
translateX(-100%);

}





/* ==========================
CENTER
========================== */

.vf-middle{

position:absolute;

left:50%;
top:50%;

transform:
translate(-50%,-50%);

display:flex;
align-items:center;

z-index:50;

}




.vf-line{

width:35px;
height:2px;

position:relative;

}



.vf-blue-line{

background:#1d9bf0;

}



.vf-red-line{

background:#ff3131;

}




.vf-blue-line::before{

content:"";

position:absolute;

left:-6px;
top:50%;

transform:
translateY(-50%);

width:12px;
height:12px;

background:#1d9bf0;

border-radius:50%;

}



.vf-red-line::after{

content:"";

position:absolute;

right:-6px;
top:50%;

transform:
translateY(-50%);

width:12px;
height:12px;

background:#ff3131;

border-radius:50%;

}





/* ==========================
CENTER CIRCLE
========================== */

.vf-circle{

width:90px;
height:90px;

border-radius:50%;

background:
linear-gradient(
90deg,
#1d9bf0 50%,
#ff3131 50%
);

padding:4px;

margin:
0 10px;

box-shadow:
0 0 20px rgba(
0,
0,
0,
0.08
);

}



.vf-circle i{

width:100%;
height:100%;

background:white;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:34px;

color:#1d9bf0;

}





/* ==========================
TEXT
========================== */

.vf-content h3{

font-size:18px;
font-weight:800;

text-align:center;

margin-bottom:20px;

}



.vf-content p{

font-size:14px;
line-height:2;

color:#666;

text-align:center;

margin-bottom:20px;

}




/* ==========================
BULLETS
========================== */

.vf-bullet{

display:flex;
align-items:center;

gap:14px;

margin-top:20px;

font-weight:600;

}


.vf-bullet i{

color:#ff3131;

}




/* ==========================
RIGHT PILLS
========================== */

.vf-pill{

height:50px;

display:flex;
align-items:center;

padding:
0 20px;

gap:15px;

margin-top:18px;

border-radius:30px;


background:

linear-gradient(
90deg,
rgba(245,245,245,.95),
rgba(250,250,250,.4)
);

font-weight:600;

}



.vf-pill i{

color:#ff3131;

}





/* ==========================
MOBILE
========================== */

@media(max-width:1200px){

.vf-wrap{

flex-direction:column;

gap:60px;

}



.vf-middle{

position:relative;

left:auto;
top:auto;

transform:none;

margin:20px 0;

}



.vf-card{

width:100%;
height:auto;

}



.vf-left-card,
.vf-right-card{

clip-path:none;

border:
2px solid #ddd;

}



.vf-left-card::after,
.vf-right-card::before{

display:none;

}



.vf-title{

font-size:42px;

}

}
.thank-you {
  color: rgb(255, 49, 49);

  font-size: 18px;

  font-weight: 700;
}



/* =========================
  key featuers
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#eef4fb;
}

/* =========================
   FEATURES SECTION
========================= */

.features-section{
    position:relative;
    padding:70px 5%;
    overflow:hidden;
     background:rgb(221, 236, 247);
}

/* BACKGROUND SHAPES */

.features-section::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgb(92,182,254);
    top:-100px;
    left:-100px;
    opacity:.08;
}

.features-section::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgb(92,182,254);
    right:-130px;
    bottom:-130px;
    opacity:.08;
}

/* =========================
   TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#111;
}

/* REMOVE UNDERLINE */

.title-line{
    display:none;
}

/* =========================
   GRID
========================= */

.features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    align-items:stretch;
}

/* =========================
   LEFT CARD
========================= */

.feature-main-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:35px;
    display:flex;
    align-items:center;
    gap:30px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(92,182,254,.10);

    transition:.3s ease;
}

.feature-main-card:hover{
    transform:translateY(-5px);
}

/* CURVE 

.feature-main-card::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgb(92,182,254);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
    opacity:.18;
}*/

/* =========================
   ICON WRAPPER
========================= */

.main-icon-wrapper{
    position:relative;
    min-width:170px;
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

/* RINGS */

.ring{
    position:absolute;
    border-radius:50%;
    border:2px solid rgba(92,182,254,.15);
}

.ring1{
    width:170px;
    height:170px;
}

.ring2{
    width:120px;
    height:120px;
}

/* MAIN ICON */

.main-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:rgb(92,182,254);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 12px 25px rgba(92,182,254,.25);
}

.main-icon i{
    color:#fff;
    font-size:36px;
}

/* FLOAT ICONS */

.floating-icon{
    position:absolute;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:rgb(92,182,254);
    font-size:15px;

    box-shadow:
    0 8px 20px rgba(92,182,254,.12);
}

.icon1{
    left:0;
    bottom:25px;
}

.icon2{
    right:0;
    bottom:5px;
}

.icon3{
    right:10px;
    top:10px;
}

/* =========================
   CONTENT
========================= */

.feature-content{
    position:relative;
    z-index:2;
}

.feature-content h3{
    font-size:30px;
    line-height:1.3;
    font-weight:700;
    color:#111;
    margin-bottom:14px;
}

.feature-content h3 span{
    color:rgb(92,182,254);
}

/* REMOVE SMALL LINE */

.small-line{
    display:none;
}

.feature-content p{
    font-size:15px;
    line-height:1.8;
    color:#57627d;
    margin-bottom:12px;
}

/* BUTTON */

.feature-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:13px 24px;
    margin-top:10px;

    border-radius:40px;

    background:rgb(92,182,254);

    color:#fff;
    text-decoration:none;

    font-size:14px;
    font-weight:600;

    box-shadow:
    0 10px 20px rgba(92,182,254,.20);

    transition:.3s ease;
}

.feature-btn:hover{
    transform:translateY(-3px);
}

.feature-btn i{
    font-size:13px;
}

/* =========================
   RIGHT CARD
========================= */

.verification-card{
    background:#fff;
    border-radius:24px;
    padding:35px;

    box-shadow:
    0 10px 30px rgba(92,182,254,.08);

    transition:.3s ease;
}

.verification-card:hover{
    transform:translateY(-5px);
}

/* HEADER */

.verification-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}

.verification-icon{
    width:70px;
    height:70px;
    border-radius:50%;

    background:rgb(92,182,254);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 12px 25px rgba(92,182,254,.18);
}

.verification-icon i{
    color:#fff;
    font-size:28px;
}

.verification-header h3{
    font-size:28px;
    font-weight:700;
    color:#111;
}

.verification-header h3 span{
    color:rgb(92,182,254);
}

.verification-header p{
    margin-top:4px;
    font-size:14px;
    color:#68738f;
}

/* =========================
   BOX GRID
========================= */

.verification-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

/* =========================
   SMALL CARDS
========================= */

.verify-box{
    background:rgba(92,182,254,.06);

    border-radius:18px;
    padding:20px;

    display:flex;
    align-items:flex-start;
    gap:14px;

    border:1px solid rgba(92,182,254,.08);

    box-shadow:
    0 5px 15px rgba(92,182,254,.05);

    transition:.3s ease;
}

.verify-box:hover{
    transform:translateY(-4px);

    background:rgba(92,182,254,.10);
}

/* REMOVE BOTTOM LINES */

.verify-box::after{
    display:none;
}

/* SMALL ICON */

.verify-icon{
    min-width:50px;
    width:50px;
    height:50px;

    border-radius:50%;

    background:rgb(92,182,254);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 8px 18px rgba(92,182,254,.15);
}

.verify-icon i{
    color:#fff;
    font-size:18px;
}

/* TEXT */

.verify-box h4{
    font-size:18px;
    color:#111;
    margin-bottom:5px;
}

.verify-box p{
    font-size:13px;
    line-height:1.6;
    color:#5c6682;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .features-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width: 768px) {
    /* 1. Reduce top space */
    .features-section {
        padding: 30px 20px 60px 20px;
    }

    /* 2. Stack everything vertically so content has 100% width */
    .feature-main-card {
        flex-direction: column;
      
        padding: 24px;
    }

    /* 3. The magic fix: Stack cards on small screens */
    .verification-grid {
        grid-template-columns: 1fr; /* Stacked: 1 column per row */
        gap: 15px;
    }

    /* 4. Ensure headers and icons don't overflow */
    .verification-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    
        align-items: center;
    
    }

    .feature-content h3,
    .verification-header h3 {
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }

    .main-icon-wrapper {
        min-width: 50%;
        margin-bottom: 0px;
    }
}

/* 5. Switch back to 2 columns only for tablets and desktops */
@media(min-width: 769px) {
    .verification-grid {
        grid-template-columns: 1fr 1fr; /* 2 pairs side-by-side */
    }
}

/* Section Wrapper */
.verify-search-section {
  padding: 20px 0;
  text-align: center;
  background: #fff;
}

/* Constrain the main width */
.search-box-wrapper {
  max-width: 850px; /* Increased for better content fit */
  margin: 0 auto;
  padding: 0 20px;
}

.search-box-wrapper h2 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
}

.search-box-wrapper p {
  color: #666;
  margin-bottom: 40px;
  font-size: 18px;
}

/* The Search Field */
.search-input-group {
  display: flex;
  background: #f4f7fa;
  padding: 8px 8px 8px 20px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  align-items: center;
}

.search-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px;
  outline: none;
  font-size: 16px;
}

.verify-btn {
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  background: #5cb6fe; /* Your brand blue */
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.verify-btn:hover {
  background: #4da0e6;
}

/* AI Assistant Card */
.ai-assistant-card {
  display: flex;
  align-items: center; 
  gap: 15px;
  
  /* Light blue shade */
  background-color: #deebfa; 
  border: 1px solid #c9ddf8;
  
  padding: 15px 20px;
  border-radius: 16px;
  text-align: left;
  
  /* ALLOW text to wrap instead of cutting off */
  white-space: normal; 
}

.bot-icon {
  flex-shrink: 0; /* Prevents icon from squishing */
  font-size: 20px;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cce3ff;
}

.bot-text {
  line-height: 1.5;
}

.bot-text strong {
  display: block; /* Title on top, text below for better reading */
  color: #1e40af; 
}

.bot-text span {
  color: #4b5563; 
}
/* --- Desktop is already set by the previous code --- */

/* Tablet & Mobile Responsiveness */
/* Responsive adjustments only */
@media (max-width: 768px) {
  /* Align text to the left */
  .search-box-wrapper {
    text-align: left;
  }

  /* Force heading to be left-aligned and limit width */
  .search-box-wrapper h2 {
    text-align: left;
    font-size: 28px;
    line-height: 1.2;
    margin-right: auto;
  }

  /* Left-align paragraph */
  .search-box-wrapper p {
    text-align: left;
  }

  /* Stack input and button properly */
  .search-input-group {
    flex-direction: column;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 0;
  }

  /* Increase input width and height for better mobile touch */
  .search-input-group input {
    width: 100%;
    background: #f4f7fa;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 16px;
  }

  /* Reduce button size/padding */
  .verify-btn {
   
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 30px;
  }
}


/* Shared styles for both widgets */
.support-widget-left, .support-widget-right {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
}

.support-widget-left { left: 30px; }
.support-widget-right { right: 30px; }

.support-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Increased Icon Size */
.support-btn {
  width: 50px;  /* Increased size */
  height: 50px; /* Increased size */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  text-decoration: none;
  font-size: 35px; /* Bigger internal icon/emoji */
}

.support-btn img {
  width: 45px; /* Larger image icon */
  height: 45px;
  object-fit: contain;
}

/* Backgrounds */
.whatsapp { background-color:white; }
.chatbot { background: white }

/* White Background Clouds */
.tooltip-cloud {
  position: absolute;
  bottom: 85px;
  left: -10px; /* adjust this value */

  background: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* ROBOT TOOLTIP */

.robot-support-item {
  position: relative;
}

.robot-tooltip-cloud {
  position: absolute;
  bottom: 85px;
  left: 20px; /* move left */

  background: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  white-space: nowrap;

  box-shadow: 0 4px 15px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* SHOW TOOLTIP ON HOVER */

.robot-support-item:hover .robot-tooltip-cloud {
  opacity: 1;
  visibility: visible;
}
/* Placement adjustments for left vs right clouds */
.support-widget-left .tooltip-cloud { left: 0; }
.support-widget-right .tooltip-cloud { right: 0; }

.support-item:hover .tooltip-cloud {
  opacity: 1;
  visibility: visible;
}
/* Responsive adjustments for Support Widgets */
@media (max-width: 768px) {
  .support-widget-left, 
  .support-widget-right {
    bottom: 20px; /* Bring them a bit closer to the edge */
  }

  /* Shrink button size slightly for mobile */
  .support-btn {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .support-btn img {
    width: 70px;
    height: 70px;
  }

  /* Adjust cloud position */
  .tooltip-cloud {
    bottom: 70px;
    font-size: 13px;
    padding: 8px 12px;
  }
}
  
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.premium-contact-hardware {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fafbfc;
  padding: 100px 0;
}

.fw-black { font-weight: 800; }
.tracking-widest { letter-spacing: 0.12em; }
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }

/* Gradient Typography */
.text-gradient-primary {
  background:  #0dcaf0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-furious {
  background: rgb(255,49,49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Brand tag pulse */
.contact-brand-tag {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff1f5a;
  border-radius: 50%;
  animation: pulseBeacon 2s infinite;
}

/* Left Side Info Card Elements */
.premium-info-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-info-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255, 31, 90, 0.2);
  box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}
.info-icon-wrapper {
  width: 46px;
  height: 46px;
  background: #f1f5f9;
  flex-shrink: 0;
}

/* Console Wrapper & Floating Security Tag */
.premium-console-wrapper {
  position: relative;
}
.absolute-badge-floating {
  position: absolute;
  top: -16px;
  right: 24px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}

/* Advanced Fluid Glass Form Card */
.elite-glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 57px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.04);
  width: 100%;
}

/* Premium Interactive Material Inputs */
.premium-input-group {
  position: relative;
  width: 100%;
}
.premium-input {
  width: 100%;
  padding: 24px 16px 8px 16px;
  font-size: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.25s ease;
}
.premium-textarea {
  min-height: 120px;
  resize: none;
  padding-top: 28px;
}
.premium-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  pointer-events: none;
}
.premium-textarea ~ .premium-label {
  top: 24px;
  transform: none;
}

/* Dynamic Input Focus / Text Floating States */
.premium-input:focus ~ .premium-label,
.premium-input:not(:placeholder-shown) ~ .premium-label {
  top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff1f5a;
  transform: translateY(0);
}
.premium-input:focus {
  background: #ffffff;
  border-color: #ff1f5a;
  box-shadow: 0 10px 25px rgba(255, 31, 90, 0.04);
}

/* Underline Glow Interaction */
.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  /* background: linear-gradient(90deg, #ff1f5a, #ff6e26); */
  transition: all 0.3s ease;
}
.premium-input:focus ~ .input-focus-line {
  left: 0;
  width: 100%;
}

/* Action Button with Color-Morph Hover */
.elite-action-btn {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  /*background:#5cb6fe;*/
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}
.btn-content-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.elite-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 31, 90, 0.25);
  background: linear-gradient(135deg, #ff1f5a 0%, #ff6e26 100%);
}
.elite-action-btn:hover .icon-shift {
  transform: translateX(5px);
}
.icon-shift { transition: transform 0.2s ease; }

/* Kinetic Background Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 1;
  opacity: 0.3;
}
.orb-primary {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: -10%;
  right: 5%;
}
.orb-secondary {
  width: 500px;
  height: 500px;
  background: #ff1f5a;
  bottom: -15%;
  left: -5%;
}

/* Keyframe Animations */
@keyframes pulseBeacon {
  0% { box-shadow: 0 0 0 0 rgba(255, 31, 90, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 31, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 31, 90, 0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Left side sliding animation */
.content-fade-in {
  animation: filterBlurFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes filterBlurFade {
  from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f0f0f0;
  }

  /* ── HERO ─────────────────────────────────────────────── */
  .hero {
    background: rgb(179 221 255);
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 7vw 10px;
    gap: 40px;
    position: relative;
    overflow: visible;
  }

  /* decorative ring */
  .hero::before {
    content: '';
    position: absolute;
    right: 38%;
    top: -90px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.16);
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    right: 44%;
    top: 60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 28px solid rgba(255,255,255,0.10);
    pointer-events: none;
    z-index: 0;
  }

  /* ── LEFT ─────────────────────────────────────────────── */
  .hero-left {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 999px;
    padding: 7px 18px 7px 12px;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 22px;
    border: 1.5px solid #e0e0e0;
    letter-spacing: 0.01em;
  }

  .hero h1 {
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 900;
    color: #111;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero h1 .brand { color: rgb(255,49,49); }

  .hero-desc {
    font-size: clamp(14px, 1.1vw, 17px);
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 8px;
    max-width: 500px;
  }
  .hero-desc .hl { color: rgb(255,49,49); font-weight: 700; }

  .tagline {
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 14px;
  }
  .tagline .hl { color: rgb(255,49,49); }

  .cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: black;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s, transform 0.14s;
    letter-spacing: 0.01em;
      border: 2px solid rgb(92, 182, 254) !important;
    
  }

  .cta-btn:hover {  transform: translateY(-1px); }
  .cta-btn:active { transform: translateY(0); }



  .trusted {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.55;
  }

  /* ── RIGHT WRAPPER ─────────────────────────────────────── */
  /* Extra padding so floating avatars outside the cards are visible */
  .hero-right {
    position: relative;
    /* inner canvas: cards live here */
    width: clamp(300px, 34vw, 460px);
    height: clamp(280px, 30vw, 400px);
    /* push outward so avatars that go -top / -right don't clip */
    margin-top: 36px;
    margin-bottom: 36px;
    margin-right: 36px;
    flex-shrink: 0;
    z-index: 2;
  }

  /* ── CARDS ─────────────────────────────────────────────── */
  .card-main {
    position: absolute;
    background: #BBDEFB;
    border-radius: 22px;
    overflow: hidden;
    width: 48%;
    height: 88%;
    top: 0;
    left: 7%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    z-index: 3;
  }
  .wp-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
  .person-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, #BBDEFB 20%, #82B1FF 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .card-second {
    position: absolute;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    width: 46%;
    height: 72%;
    bottom: 0;
    right: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    z-index: 3;
  }
  .person2-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, #E3F2FD 20%, #BBDEFB 100%);
    border-radius: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
  }

  /* ── BUBBLES / BADGES inside cards ─────────────────────── */
  .verified-bubble {
    position: absolute;
    top: 11%;
    right: -2%;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.13);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 170px;
    z-index: 5;
  }
  .shield-icon {
    width: 26px;
    height: 26px;
    background: #1565C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .verified-bubble .vb-title { font-size: 13px; font-weight: 800; color: #111; margin-bottom: 2px; }
  .verified-bubble .vb-sub   { font-size: 12px; color: #555; }
  .verified-bubble .vb-sub b { color: #1565C0; }

  .mini-phone {
    position: absolute;
    bottom: 20%;
    left: 36%;
    width: 34px;
    height: 56px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    z-index: 4;
  }
  .check-circle {
    width: 22px;
    height: 22px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .v-lbl { font-size: 8px; font-weight: 800; color: #111; }

  .secure-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border-radius: 999px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    z-index: 5;
  }

  /* ── FLOATING AVATARS ──────────────────────────────────── */
  /*
    Avatars are positioned relative to .hero-right.
    Negative values intentionally go outside the card area —
    the extra margin on .hero-right keeps them fully visible.
  */
  .av {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 7;
  }

  /* TOP cluster – orbiting top-right of card-main */
  .av1 {
    width: 46px; height: 46px;
    top: -38px; right: 36%;
    background: #BBDEFB;
    animation: float1 3.8s ease-in-out infinite;
  }
  .av2 {
    width: 40px; height: 40px;
    top: -20px; right: 4%;
    background: #E8F5E9;
    animation: float2 4.2s ease-in-out infinite;
  }
  .av3 {
    width: 44px; height: 44px;
    top: 22%; right: -38px;
    background: #FFF3E0;
    animation: float3 3.5s ease-in-out infinite;
  }

  /* BOTTOM cluster – orbiting bottom of card-second */
  .av4 {
    width: 44px; height: 44px;
    bottom: -32px; right: 50%;
    background: #BBDEFB;
    animation: float2 4.0s ease-in-out infinite;
  }
  .av5 {
    width: 38px; height: 38px;
    bottom: -42px; right: 36%;
    background: #EDE7F6;
    animation: float1 3.6s ease-in-out infinite;
  }
  .av6 {
    width: 42px; height: 42px;
    bottom: -28px; right: 20%;
    background: #E8F5E9;
    animation: float3 4.4s ease-in-out infinite;
  }

  /* subtle float keyframes – each slightly different */
  @keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
  }
  @keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
  }
/* Keeps the button white/brand-consistent as requested */
.btn-whatsapp {
  background: #ffffff !important; 
  color: black !important;
  border: 2px solid rgb(92, 182, 254) !important;
  
  /* Adjust these values to control size */
  padding: 8px 10px !important; /* Adjust padding to change height/width */
         
        
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s;
  font-size: 17px;
}


/* Maintains consistent icon size */
.wp-inline-icon {
  width: 40px;
  height: 40px;
  margin-left: 1px;
  vertical-align: middle;
}
  /* ── RESPONSIVE ───────────────────────────────────────── */
  @media (max-width: 1024px) {
    .hero { padding: 56px 1vw; gap: 28px; }
    .hero::before { right: 36%; width: 360px; height: 360px; border-width: 50px; }
    .verified-bubble { min-width: 150px; }
  }

  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      align-items: flex-start;
      padding: 40px 6vw 44px;
      min-height: unset;
      overflow: visible;
    }
    .hero::before, .hero::after { display: none; }
    .hero h1 { font-size: clamp(26px, 5.5vw, 38px); }
    .hero-desc { max-width: 100%; font-size: 15px; }
    .hero-right {
      width: 100%;
      height: clamp(240px, 60vw, 340px);
      align-self: center;
      margin: 40px auto 40px;
    }
    .verified-bubble { right: 1%; top: 8%; }
  }

  @media (max-width: 480px) {
    .hero { padding: 32px 5vw 56px; gap: 24px; }
    .badge { font-size: 13px; padding: 6px 14px 6px 10px; }
    .hero h1 { font-size: clamp(24px, 6.5vw, 32px); }
    .hero-desc { font-size: 14px; }
    .tagline { font-size: 14px; }
    .cta-btn { font-size: 14px; padding: 13px 22px; }
    .trusted { font-size: 13px; }
    .hero-right { height: clamp(220px, 62vw, 300px); margin: 36px auto 36px; }
    .verified-bubble { min-width: 140px; padding: 8px 10px; right: 0; }
    .verified-bubble .vb-title { font-size: 11px; }
    .verified-bubble .vb-sub   { font-size: 10px; }
    .secure-badge { font-size: 10px; padding: 5px 10px; }
    .av1, .av2, .av3 { width: 32px; height: 32px; }
    .av4, .av5, .av6 { width: 30px; height: 30px; }
    .av1 { top: -28px; }
    .av3 { right: -26px; }
    .av4 { bottom: -26px; }
    .av5 { bottom: -34px; }
    .av6 { bottom: -22px; }
  }
  
  @media (max-width: 768px) {
    .hero-right {
      width: 100%;
      height: clamp(240px, 60vw, 340px);
      align-self: center;
      /* 40px top/bottom, auto left/right forces absolute center */
      margin: 40px auto !important; 
    }

      .av3{
  display: none;
}

    
  }

  @media (max-width: 480px) {
    .hero-right { 
      height: clamp(220px, 62vw, 300px); 
      /* 36px top/bottom, auto left/right forces absolute center */
      margin: 36px auto !important; 
    }
  }
  /* 1. Reset the card-main container to handle the image strictly */
.card-main {
  position: absolute;
  border-radius: 25px; /* Ensure this matches your radius */
  overflow: hidden;    /* This is critical to clip the image to the radius */
  width: 45%;
  height: 88%;
  top: 0;
  left: 7%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 3;
  /* IMPORTANT: Remove background-color if it's interfering with image visibility */
}

/* 2. Style the image to fill the card exactly */
.card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Forces image to fill the card without stretching */
  display: block;    /* Removes the mysterious bottom gap caused by inline elements */
}

/* 3. Remove/Comment out these if you still have them, as they will clash with the img tag */
/* .person-fill { ... } */
/* .person2-fill { ... } */
/* Card 2 container adjustments */
.card-second {
  position: absolute;
  border-radius: 22px;
  overflow: hidden; /* This clips the image to the card shape */
  width: 46%;
  height: 72%;
  bottom: 0;
  right: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 3;
}

/* This is the new style for your image */
.card-second img.bg-img {
  width: 100%;
  height: 97%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Ensure the badges sit on top of the image */
.person2-fill, .mini-phone, .secure-badge {
  position: relative;
  z-index: 2;
}

/* Hide the old SVG/gradient fill */
.person2-fill {
  background: none !important;
}


.av img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills circle without changing size */
  display: block;
}
.av3{
  display: none;
}

/*whatsapp*/
a{
  text-decoration:none;
}

.floating_btn{
  position:fixed;
  bottom:20px;
  left:20px;   /* changed from right to left */
  width:80px;
  height:80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

.contact_icon{
  background-color:#42db87;
  color:#fff;
  width:60px;
  height:60px;
  font-size:30px;
  border-radius:50%;
  text-align:center;
  box-shadow:2px 2px 10px rgba(0,0,0,.15);
  display:flex;
  align-items:center;
  justify-content:center;

  /* Removed animation */
  animation:none;
  transform:none;

  font-family:sans-serif;
  text-decoration:none !important;
  transition:.3s ease;
}
.contact_icon{
    transform-origin:left center;
    transition:0.3s ease;
}

.floating_btn:hover{
    transform:translateX(20px);
}

.contact_icon:hover{
    transform:scale(1.05);
}




/* Tablets */
@media (max-width:768px){

  .floating_btn{
    bottom:20px;
    left:20px;
    width:70px;
    height:70px;
  }

  .contact_icon{
    width:55px;
    height:55px;
    font-size:26px;
  }

}


/* Mobile */
@media (max-width:576px){

  .floating_btn{
    bottom:15px;
    left:15px;
    width:60px;
    height:60px;
  }

  .contact_icon{
    width:50px;
    height:50px;
    font-size:24px;
  }

}


/* Small Mobile */
@media (max-width:400px){

  .floating_btn{
    bottom:12px;
    left:12px;
    width:55px;
    height:55px;
  }

  .contact_icon{
    width:45px;
    height:45px;
    font-size:22px;
  }

}

/* mobile css */

/* Hide navbar by default */
.pg-mobile-navbar{
  display: none;
}

/* Mobile View */
@media (max-width:768px){

  .pg-mobile-navbar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #1f2937;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #374151;
    z-index: 9999;
    padding: 0 5px;
  }

  /* Normal Items */
  .pg-nav-item{
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    gap: 3px;
    flex: 1;
  }

  .pg-nav-item i{
    font-size: 27px;
  }

  .pg-nav-item img{
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  /* Active */
  .pg-nav-item.active{
    color: #f59e0b;
  }

  /* Center Logo */
  .pg-nav-center-logo{
    width: 110px;
    height: 90px;
    /* background: #fff; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -25px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.3); */
    flex-shrink: 0;
  }

  .pg-nav-center-logo img{
    width: 100%;
    height: 38px;
    object-fit: contain;
    margin-top:18px;
  }

  /* WhatsApp Green */
  .fa-whatsapp{
    color: #25D366;
  }

  body{
    padding-bottom: 80px;
  }
}





@media only screen and (max-width:768px){

  .pg-mobile-navbar{
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    height: 70px !important;

    z-index: 999999999 !important;

    background: rgba(215, 207, 207, 0.5)!important;
     backdrop-filter: blur(15px) ;

    display: flex !important;
    justify-content: space-around;
    align-items: center;

    border-top: 1px solid rgba(255,255,255,0.1);

    /* CRITICAL FIX */
    transform: translate3d(0,0,0) !important;
    -webkit-transform: translate3d(0,0,0) !important;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    perspective: 1000;

    /* Prevent shaking */
    transition: none !important;
    animation: none !important;
  }
  .custom-nav-btn{
    align-items: left;
  }
  html,
  body{
    overflow-x: hidden !important;
  }

  body{
    padding-bottom: 80px !important;
  }

  /* VERY IMPORTANT */
  .smooth-wrapper,
  .smooth-content,
  .wrapper,
  .main-wrapper,
  .page-wrapper{
    transform: none !important;
  }

}



.pg-nav-item .support-item{
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-nav-item .support-btn.chatbot{
  width: 28px;
  height: 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  background: #ffffff;
  text-decoration: none;
}


.pg-mobile-dropdown{
  position: fixed;
  left: 0;
  bottom: 70px;

  width: 100%;

 background: rgba(215, 207, 207, 0.5)!important;
     backdrop-filter: blur(15px) ;

  padding: 20px;

  display: none;

  flex-direction: column;
  gap: 18px;

  z-index: 999999999;
}

.pg-mobile-dropdown.active{
  display: flex;
}

.pg-mobile-dropdown a{
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}




html {
  scroll-behavior: smooth;
}

