:root {
    --yellow: #fdbe2e;
    --black: #1a1a1a;
    --white: #ffffff;
    --header-height: 70px;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    
        --btn-hover: #111314;
                --accent-color: #e60000;
            --section-bg: #f9f9f9;
            --input-border: #ccc;
            --input-focus: #ffc800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
}

body {
    font-family: 'Poppins', 'Noto Serif Bengali', sans-serif;
    padding-top: var(--header-height);
}

/* Header Styles */
/* ---------- header base (keep your vars and other styles) ---------- */
.header {
    height: var(--header-height);
    background: var(--white);
    padding: 3rem 5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    z-index: 1000;

}

/* keep your header_left, logo_img etc. */
.header_left{
    display: flex;
    align-items: center;
    gap: 4rem;
}
.logo_img { height: 40px; width:100%;}

/* ---------- nav list structure ---------- */
.nav_links { display: flex; }
.nav_list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav_item { position: relative; }

/* top-level link */
.nav_link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 18px;
    padding: 6px 8px;
    display: inline-block;
}

/* hover / focus color change */
.nav_link:hover,
.nav_link:focus { color: var(--yellow); outline: none; }

/* ---------- dropdown styles & animation ---------- */
.dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + -8px);
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 0.5rem;
    display: block;

    /* animation start state */
    opacity: 0;
    transform: translateY(-28px) scale(0.98);
    visibility: hidden;
    pointer-events: none;

    /* transition for smooth appearance */
    transition: opacity 260ms ease, transform 320ms cubic-bezier(.2,.9,.2,1), visibility 260ms;
    z-index: 1050;
}

/* visible state (controlled by JS adding .open class) */
.nav_item.open > .dropdown,
.nav_item:hover > .dropdown { /* :hover only for non-touch but JS will manage class */
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

/* dropdown items */
.dropdown_item {
    display: block;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    border-radius: 8px;
    margin: 0.2rem 0;
    transition: background 180ms, transform 120ms;
}
.dropdown_item:hover,
.dropdown_item:focus {
    background: rgba(255,215,0,0.06);
    transform: translateX(6px);
    outline: none;
}

/* small arrow effect (optional subtle) */
.nav_item[data-has-dropdown="true"] > .nav_link::after {
    content: "▾";
    margin-left: 8px;
    font-size: 12px;
    opacity: 0.7;
}

/* ---------- contact button (keep existing appearance) ---------- */
.contact-nav {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 0.75rem 2rem;
    border-radius: .5rem;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}
.contact-nav:hover {
    background-color: var(--black);
    color: var(--yellow) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border: 2px solid var(--yellow);
}

/* ---------- hamburger & drawer kept mostly same ---------- */
.hamburger { width: 32px; height: 24px; position: relative; cursor: pointer; display: none; z-index: 1100; }
.hamburger span { position: absolute; height: 3px; width: 100%; background: var(--black); border-radius: 2px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Drawer */
.drawer {
    position: fixed;
    top: var(--header-height);
    right: -300px;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0px 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.drawer.active { right: 0; }

/* drawer links */
.drawer_links { display:flex; flex-direction:column; gap:0.4rem; margin-top:1rem; }
.drawer_links a { text-decoration:none; color:var(--black); font-size:1.05rem; padding:0.5rem 1rem; border-radius:10px; display:block; }
.drawer_links a:hover { background: rgba(255,215,0,0.08); transform: translateX(8px); }

/* overlay */
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 998; }
.overlay.active { opacity: 1; visibility: visible; }

/* ---------- responsive: hide desktop nav and show mobile hamburger ---------- */
@media (max-width:1080px){
    .header{
        padding:3rem 1rem;
    }
}
@media (max-width: 768px) {
    .header { padding: 0 1.5rem; }
    .nav_links, .header .contact-nav { display: none; }
    .hamburger { display: block; }
    .logo_img{
        width:80%;
    }
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://img.freepik.com/free-photo/medium-shot-man-drinking-coffee_23-2149155209.jpg') center/cover;
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;

}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    width: 100%;
    position: relative;
    padding-left: 100px;
}

.hero__left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero__play {
    position: relative;
    cursor: pointer;
}

.hero__play_button {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.hero__play_button svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.hero__pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.hero__right {
    flex: 1;
    padding-right: 2rem;
    align-items: center;
}
.hero__right .hero__contact{
    margin-top:20px;
}
.hero__title {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--white);
    text-align:center;
}
.hero__title span {
    color: var(--yellow);
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero__feature:hover {
    transform: translateX(10px);
}

.hero__icon {
    color: var(--yellow);
    font-size: 1.5rem;
}

.hero__contact {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.hero_social_links {
            display: flex;
            gap: 5px;
            justify-content: center;
            margin-top:20px;
        }


        .hero_social_links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--yellow);
            color: var(--black);
            transition: all 0.3s ease;
            font-size: 1.2rem;
            text-decoration: none;
        }
        @media(max-width:376px){
            .hero_social_links a{
                width:30px;
                height:30px;
            }
            .hero_social_links a i{
            font-size:20px;
                
            }
            .hero__contact{
             padding:1rem 1rem;   
            }
        }

        .hero_social_links a:hover {
            background: var(--black);
            color: var(--yellow);
            transform: translateY(-5px);
        }
        .hero_con{
            display:flex;
            flex-direction:row;
            align-items:center;
            gap:10px;
            justify-content: space-between;
        }
@media (max-width: 1280px){
    .hero__video_inline{
        height:320px;
    }
}
@media (max-width:1080px){
    .hero{
        height:unset;
    }
    .hero__container{
        padding-left:0;
    }
}
@media (max-width: 913px){
    .header_left{
        gap:1rem;
    }
    .hero{
        height:60vh;
    }
    .hero__container{
        gap:0;
    }
}
@media (max-width: 768px) {
    .hero{
        height:auto;
        padding:1.2rem;
    }
    .hero__left {
        
    }
    .hero__media{
        width:100%;
    }
    .hero__video_inline{
        height:unset;
    }
    .hero__right {
        padding-right: 0;
        text-align: left;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__feature {
        justify-content: left;
    }
    
    .hero__container {
        flex-direction: column;
        gap: 2rem;
        padding-left: 0px;
    }
}


/* Video Popup Styles */
.hero__video_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.hero__video_popup.active {
    display: block;
}

.hero__video_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.hero__video_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    z-index: 2001;
    animation: videoScale 0.3s ease;
}

@keyframes videoScale {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.hero__video_wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero__video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero__video_close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: var(--yellow);
    color: var(--black);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero__video_close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--white);
}

/* --- hero2: Yellow + White with 6D vibe --- */
.hero2 {
  --yellow-1: #ffdd66;   /* light warm */
  --yellow-2: #ffbf24;   /* richer */
  --white: #ffffff;
  --muted: #f8f6f3;

  position: relative;
  margin-inline: 100px;
  padding: 2rem 0;
  z-index: 0;
  max-width:1400px;
  margin: 0 auto;

  /* main bg: soft white to pale yellow vertical gradient */
  background: linear-gradient(180deg, var(--white) 0%, var(--muted) 35%, rgba(255,235,180,0.65) 100%);
  border-radius: 18px;

  /* subtle glossy border (thin) for 'simple but elevated' look */
  border: 1px solid rgba(255,206,90,0.45);
  box-shadow:
    /* outer soft ambient shadows (4-sided depth) */
    0 18px 40px rgba(20,20,20,0.12),
    0 8px 16px rgba(20,20,20,0.06),
    /* subtle warm rim light to give warm glow on bottom-right */
    12px 12px 30px rgba(255,190,40,0.06);
  overflow: visible;
}

/* inner subtle highlight band across top (gloss) */
.hero2::before{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 55%;
  pointer-events: none;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.06));
  mix-blend-mode: overlay;
  z-index: 1;
  filter: blur(6px);
}

/* soft inset warm accent on left to add depth */
.hero2::after{
  content: "";
  position: absolute;
  left: -2%;
  top: 14%;
  width: 26%;
  height: 72%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,238,180,0.95), rgba(255,210,90,0.9));
  transform: rotate(-6deg);
  z-index: 0;
  opacity: .85;
  box-shadow: inset 0 -6px 18px rgba(255,190,40,0.06);
  pointer-events: none;
}

/* container sits above pseudo elements */
.hero2__container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 30px;
  padding-inline: 10px;
  align-items: center;
}

/* card-like item with deep 6D style */
.hero2__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;

  /* glassy card with layered gradients for depth */
  background: linear-gradient(180deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,249,230,0.9) 40%,
      rgba(255,241,200,0.85) 100%);

  padding: 18px 20px;
  border-radius: 12px;

  /* dual shadows: outer drop + inner inset for 3D feeling */
  box-shadow:
    0 22px 48px rgba(16,16,16,0.14),
    0 10px 26px rgba(16,16,16,0.08),
    inset 0 -10px 26px rgba(255,200,60,0.07);

  min-width: 220px;
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s;
  backdrop-filter: blur(4px);
}

/* subtle lift on hover to emphasize depth */
.hero2__item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 48px rgba(16,16,16,0.14),
    0 10px 26px rgba(16,16,16,0.08),
    inset 0 -10px 26px rgba(255,200,60,0.07);
}

/* icon with glossy pill + subtle inner gradient */
.hero2__icon {
  font-size: 30px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2));
  color: #111;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.08),
    inset 0 -4px 10px rgba(255,255,255,0.35);
  transform: translateZ(0);
}

/* title + paragraph styling */
.hero2__content h3 {
  font-family: 'Noto Serif Bengali', serif;
  color: #111;
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero2__content p {
  color: #4b4b4b;
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
  opacity: .96;
}

@media(max-width: 1078px){
    .hero2__container{
        padding-inline:30px;
    }
    .hero2{
        margin-top:0px!important;
    }
}

@media (max-width: 768px) {
  .hero2 {
    margin-inline: 0px;
    margin-top: 0px!important;
    padding: 1rem 0;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--white), rgba(255,250,235,0.95));
    box-shadow:
      0 14px 32px rgba(16,16,16,0.10),
      0 6px 14px rgba(16,16,16,0.06);
  }

  .hero2::after { display: none; }
  .hero2::before { height: 40%; filter: blur(4px); }

  .hero2__container {
    flex-direction: column;
    padding-inline: 20px;
    gap: 1rem;
  }

  .hero2__item {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
  }

  .hero2__icon { width:44px; height:44px; font-size:20px; border-radius:10px; }
  .hero2__content h3 { font-size:1rem; }
  .hero2__content p { font-size:.9rem; }
}

/*logo slider start*/

/*logo slider end*/

.home_benefits_section {
    padding: 60px 20px;
    
  }
  
  .home_benefits_wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    align-items: center;
    margin-bottom:4rem;
  }
  
  /* Left content */
  .home_benefits_content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
  }
  .home_benefits_content h2 span{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 30px;
  }
  
  .home_benefits_list {
    display: grid;
    row-gap: 24px;
  }
  
  .benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
  }
  
  .benefit-text h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
  }
  
  .benefit-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
  }
  
  /* Right image */
  .home_benefits_image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .home_benefits_wrapper {
      grid-template-columns: 1fr;
    }
    .home_benefits_content h2,
    .home_benefits_content h2 span
    {
        font-size: 2rem;
        text-align: center;
        font-weight: 400;
    }
  
    .home_benefits_list {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  
    }
  
    .benefit-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      box-shadow:#666 0 20px 20px -20px;
    }
  
    .benefit-text p {
      display: none; /* Hide descriptions on mobile */
    }
  
    .benefit-text h4 {
      font-size: 16px;
    }
  }
  
  /* web set up  */
  .web_setup_section {
    padding: 60px 20px;
    background-color: var(--white);
  }
  
  .web_setup_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .web_setup_title {
    font-size: 2.9rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 40px;
    text-align: center;
  }
  .web_setup_title span{
    font-size: 2.9rem;
    font-weight: 500;
    color: var(--yellow);
  }
  
  .web_setup_images {
    position: relative;
  }
  
  .web_setup_image {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
  }
  
  /* Hide mobile image by default */
  .web_setup_image--mobile {
    display: none;
  }
  
  /* Responsive behavior */
  @media (max-width: 768px) {
    .web_setup_title{
        font-size: 2rem;
        text-align: center;
        font-weight: 400;
    }
    .web_setup_title span{
        font-size: 2rem;
        text-align: center;
        font-weight: 400;
    }
    /* Hide desktop image on small screens */
    .web_setup_image--desktop {
      display: none;
    }
  
    /* Show mobile image on small screens */
    .web_setup_image--mobile {
      display: block;
    }
  }
  
  /* featchers  */

  .features_section {
    padding: 60px 20px 0 20px;
    background-color: #f9f9f9;
  }
  
  .features_wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .features_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .features_item {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    animation: ab_heroFadeIn 1.5s ease-out;
  }
  
  .features_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .features_icon {
    font-size: 2rem;
    color: var(--yellow);
    flex-shrink: 0;
    margin-right: 20px;
  }
  
  .features_content h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
  }
  
  .features_content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .features_grid {
      grid-template-columns: 1fr;
    }
  
    .features_item {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
  
    .features_icon {
      margin-right: 0;
      margin-bottom: 12px;
    }
  }
  .features_button{
    margin-top: 20px;
    text-align: center;
  }
  .features_banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.features_banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bg_yellow {
    background-color: var(--yellow);
    padding: 20px;
    text-align: center;
    font-size: 29px;

}
.yellow_title{
    font-weight: 500;
}
.yellow_title span{
    font-weight: 500;
    color: var(--white);
}
@media screen and (max-width: 768px) {
    .yellow_title{
        font-size: 2rem;
    }
    .yellow_title span{
        font-size: 2rem;
    }
    
}



/* user state  */

.user_state_ {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  padding: 3rem 1rem 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user_state__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.user_state__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #151725;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  flex: 1 1 300px;
  min-width: 280px;
  transition: background 0.3s ease, transform 0.3s ease;
}



.user_state__icon {
  font-size: 2.5rem;
  color: var(--white);
}

.user_state__info {
  text-align: left;
}

.user_state__number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.user_state__version {
  font-size: 1rem;
  font-weight: normal;
  color: var(--secondary-color);
}

.user_state__text {
  font-size: 1rem;
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .user_state__container {
    flex-direction: column;
    align-items: center;
  }

  .user_state__item {
    width: 100%;
    justify-content: center;
    padding: 2px 0 2px 0;
    flex: 1 1 200px;
  }

  .user_state__info {
    text-align: center;
  }
}


/* comment slider  */

  

  /* faq section  */
  .faq {
    padding: 4rem 0;
    background:#010313;

}

.faq__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items:center;
    gap: 3rem;
    padding: 0 4rem;
}

.faq__image-container {
    flex: 1;
    position: relative;
}

.faq__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-20px);
    animation: faqfloat 3s ease-in-out infinite;
}

.faq__content {
    flex: 1;
    background-color: #151725;
    padding: 3.5rem;
    border: var(--white) 1px solid;
    border-radius: 10px;
}

.faq__title {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: left;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.faq__item.active {
    border-color: var(--yellow);
    border: 3px solid var(--yellow);
    background: var(--white);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq__question h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin: 0;
    flex: 1;
}

.faq__icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--black);
    transition: all 0.3s ease;
}

.faq__icon::before {
    width: 16px;
    height: 2px;
    left: 4px;
    top: 11px;
}

.faq__icon::after {
    width: 2px;
    height: 16px;
    left: 11px;
    top: 4px;
}

.faq__item.active .faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-top: 1.5rem;
}

.faq__answer p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@keyframes faqfloat {
    0%, 100% { transform: translateY(-20px); }
    50% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .faq__image-container {
        display: none;
    }
    
    .faq__title {
        font-size: 2rem;
    }
    
    .faq__item {
        padding: 1rem;
    }
    .faq__container{
        padding: 10px;
    }
    .faq__content{
        padding:12px;
    }
}

/* community  */
.community_section {
  background: var(--white);
  text-align: center;
    max-width:1400px;
  margin: 0 auto;
}

.community_container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.community_join {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.community_text {
  font-size: 3rem;
  font-weight: 500;
  color: var(--black);
}
.community_text span{
  font-size: 3rem;
  font-weight: 500;
  color: var(--yellow);
}

.community_icons {
  display: flex;
  gap: 1.5rem;
}

.community_icons a {
  font-size: 1.8rem;
  color: var(--black);
  background: var(--yellow);
  width: 70px;
  height: 70px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:column;
  text-decoration:none;
  transition: background 0.3s, transform 0.3s;
}
.community_icons a span{
    font-size:8px;
}
.community_icons a:hover {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.1);
}
.community_info{
  background-color: var(--yellow);
  padding: 3rem 0;
  margin-bottom: 40px;
}
.community_info_title{
  font-size: 3rem;

}
.community_info_text{
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.community_contact {
  background: var(--black);
  color: var(--yellow) !important;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.community_contact:hover {
  background-color: var(--yellow);
  color: var(--black) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--black);
}


/* Responsive */
@media (max-width: 768px) {
  .community_join {
    flex-direction: column;
    gap: 1rem;
  }

  .community_text,
  .community_text span,
  .community_info_title {
    font-size: 2rem;
  }

  .community_info_text {
    font-size: 1rem;
  }

  .community_icons a {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .community_text,
  .community_text span,
  .community_info_title {
    font-size: 1.7rem;
  }

  .community_info_text {
    font-size: 1.2rem;
  }

  .community_icons a {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

/* footer  */
.footer {
  background: #000;
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 40px;
}

.footer__container {
  max-width: 1433px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer__col {
  padding: 0 1rem;
}

.footer__title {
  font-family: 'Noto Serif Bengali', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.footer__title--mt {
  margin-top: 2rem;
}
.footer_contact_div{
    display:flex;
    flex-direction:column;
}
.footer__text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  cursor:pointer;
color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__social {
  display: flex;
  gap: 1rem;
  flex-wrap:wrap;
}

.footer__icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--black);
  text-decoration:none;
}

.footer__icon:hover{
  background: var(--black);
  color:var(--yellow);
}
.footer__text:hover {
    color:var(--yellow);
}
.footer__icon i{
    font-size:25px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer__link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--yellow);
}

.footer__payments {
  margin-bottom: 1.5rem;
  display:flex;
  gap:5px;
  align-items:center;
  flex-wrap:wrap;
}

.footer__payment-img {
    width: 50px;
    height: 25px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius:5px;
}

.footer__members {
  display: flex;
  gap: 1rem;
}

.footer__member-img {
  width: 80px;
  height: auto;
}
.footer__divider {
  border: 0;
  border-top: 1px solid var(--yellow);
  margin: 2rem 0;
}

.footer__copyright {
  text-align: center;
  padding-top: 2rem;}

@media (max-width: 768px) {
  .footer__columns {
      grid-template-columns: 1fr 1fr;
      row-gap: 3rem;
  }
  
  .footer__col:first-child,
  .footer__col:last-child {
      grid-column: 1 / -1;
      text-align: center;
  }
  
  .footer__social {
      justify-content: center;
  }
  
  .footer__members {
      justify-content: center;
  }
  .footer__payments{
      justify-content:center;
  }
}

@media (max-width: 480px) {
  .footer__columns {
      grid-template-columns: 1fr;
  }
  
  .footer__col {
      text-align: center;
      padding: 0;
  }
  
  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
      text-align: center;
  }
}

/* pricing  */
.pricing_section {
  padding: 4rem 1rem;
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.pricing_wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing_title {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing_title h2 {
  font-size: 2.5rem;
  color: #2d3436;
  margin-bottom: 1rem;
}

.pricing_title h2 span {
  color: #fbb034;
  position: relative;
}

.pricing_title h2 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #fbb034 0%, #ff6b6b 100%);
}

.pricing_table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
}

.pricing_column {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  box-shadow: 0 15px 40px rgb(0 0 0 / 21%)
}

.pricing_column:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing_header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
}

.pricing_header h3 {
  font-size: 1.5rem;
  color: #2d3436;
  margin-bottom: 0.5rem;
}

.pricing_header p {
  color: #636e72;
  font-size: 0.9rem;
}

.pricing_price {
  font-size: 2rem;
  color: #fbb034;
  font-weight: 700;
  margin: 1.5rem 0;
}

.pricing_features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing_feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #2d3436;
  font-size: 0.95rem;
}

.pricing_feature i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.pricing_feature .fa-check-circle {
  color: #28a745;
}

.pricing_feature .fa-times-circle {
  color: #e74c3c;
}

.pricing_btn {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(45deg, #fbb034, #ff922b);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 176, 52, 0.4);
}

.pricing_btn.custom {
  background: linear-gradient(45deg, #2d3436, #636e72);
}

@media (max-width: 1024px) {
  .pricing_table {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
    .pricing_section{
        padding:2rem 5px;
    }
  .pricing_title h2 {
      font-size: 2rem;
  }

  .pricing_table {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
  }

  .pricing_column {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pricing_title h2 {
      font-size: 1.75rem;
  }

  .pricing_price {
      font-size: 1.75rem;
  }
}

/* video slider  */
.video_slider_section {
  padding: 20px 20px;
}

.video_slider_container {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.video_slider_track {
  display: flex;
  transition: transform 0.5s ease;
}

.video_slider_item {
  flex: 0 0 100%;
  padding: 10px;
  box-sizing: border-box;
}

.video_slider_video iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.video_slider_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 0 0 12px 12px;
}

.video_slider_left h4 {
  margin: 0;
  font-size: 18px;
}

.video_slider_left p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.video_slider_right {
  font-size: 20px;
  color: var(--yellow);
}

/* Buttons and Dots */
.video_slider_controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.video_slider_controls button {
  padding: 10px 20px;
  border: none;
  background: var(--yellow);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.video_slider_controls button:hover {
  background: var(--black);
}

.video_slider_dots {
  display: flex;
  gap: 8px;
}

.video_slider_dots span {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.video_slider_dots .active {
  background: var(--yellow);
}

/* Responsive */
@media (min-width: 768px) {
  .video_slider_item {
    flex: 0 0 33.3333%;
  }
}

/* contact page */
/* Reset some basic elements */
.contact_section {
  padding: 80px 20px 150px;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  position: relative;
  overflow: hidden;
}

.contact_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.contact_content {
  flex: 1 1 50%;
}

.contact_text_wrapper {
  max-width: 600px;
}

.contact_heading {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact_heading_decor {
  color: var(--yellow);
  font-size: 36px;
}

.contact_description {
  font-size: 18px;
  color: var(--black);
  line-height: 1.8;
}

.contact_decorative_line {
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin-top: 20px;
  border-radius: 4px;
}

/* Form Styling */
.contact_form_wrapper {
  flex: 1 1 45%;
  position: relative;
  z-index: 2;
}

.contact_form {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_form_header {
  text-align: center;
}

.contact_form_heading {
  font-size: 24px;
  color: var(--black);
  font-weight: 600;
}

/* Input group */
.contact_input_group {
  position: relative;
  width: 100%;
}

.contact_input, 
.contact_textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}



.contact_label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 6px;
  font-size: 16px;
  color: var(--black);
  pointer-events: none;
  transition: 0.2s ease all;
}

/* When focused or has content */
.contact_input:focus + .contact_label,
.contact_input:not(:placeholder-shown) + .contact_label,
.contact_textarea:focus + .contact_label,
.contact_textarea:not(:placeholder-shown) + .contact_label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: var(--black);
}

/* Decorative bottom line */
.contact_input_decor {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.contact_input:focus ~ .contact_input_decor,
.contact_textarea:focus ~ .contact_input_decor {
  width: 80%;
}

/* Two columns */
.contact_row {
  display: flex;
  gap: 10px;
}

.contact_row .contact_input_group {
  flex: 1;
}

/* Button */
.contact_button {
  background-color: var(--yellow);
  color: var(--black);
  border: none;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_button:hover {
  background-color: var(--black);
  color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  border: 2px solid var(--yellow);
}

.contact_button_text {
  font-weight: 500;
}

.contact_button_arrow {
  font-size: 20px;
}


/* Responsive */
@media (max-width: 768px) {
  .contact_container {
    flex-direction: column;
    gap: 40px;
  }

  .contact_row {
    flex-direction: row;
  }
}

/* map section  */
.map_section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background: var(--white);
}

.map_container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.map_iframe {
  border: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(10%) contrast(90%) opacity(90%);
  transition: filter 0.5s ease;
}

.map_iframe:hover {
  filter: grayscale(0%) contrast(100%) opacity(100%);
}

/* Responsive height for smaller devices */
@media (max-width: 768px) {
  .map_container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map_container {
    height: 250px;
  }
}

/* business page ------------- */
.logo_slider_title{
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: gray;
}
.business_section {
  padding: 80px 20px 0px 20px;
  background: var(--white);
}

.business_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.business_content {
  flex: 1 1 50%;
}

.business_heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
}

.business_subheading {
  font-size: 24px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 20px;
}

.business_pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.business_price_old {
  font-size: 20px;
  text-decoration: line-through;
  color: #999;
}

.business_price_new {
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
}

.business_yearly {
  font-size: 16px;
  color: var(--black);
}

.business_features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.business_features li {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--black);
  position: relative;
  padding-left: 24px;
}

.business_features li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: var(--yellow);
}

.business_cta_button {
  margin-top: 20px;
  background-color: var(--yellow);
  color: var(--black);
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.business_cta_button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.business_timer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
  color: var(--black);
}

.business_timer_item {
  text-align: center;
}

.business_timer_number {
  font-size: 28px;
  color: var(--yellow);
}

.business_timer_separator {
  font-size: 24px;
  color: #ccc;
}

.business_image_wrapper {
  flex: 1 1 45%;
  text-align: center;
}

.business_image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .business_container {
    flex-direction: column;
    gap: 40px;
  }

  .business_heading {
    font-size: 28px;
  }

  .business_subheading {
    font-size: 20px;
  }
}


/* business grid  */
.business_grid_section {
  padding: 0px 60px 0px 60px;
  background: var(--white);
}

.business_grid_ {
  column-count: 2;
  column-gap: 14px;
}

.business_grid_card {
  display: inline-block;
  width: 100%;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.business_grid_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.business_grid_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.business_grid_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--yellow);
  transform: translateY(5px);
}

.business_grid_point {
  font-size: 16px;
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.business_grid_point i {
  color: var(--yellow);
  font-size: 18px;
 
}



/* Responsive */
@media (max-width: 768px) {
  .business_grid_ {
    column-count: 1;
  }
  .business_grid_section {
    padding: 0px 20px 0px 20px;
  }
}

.business_yellow_bg{
  background-color: var(--yellow);
  width: 100%;
  height: 600px;
}
.business_yellow_banner{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -500px;
}
.business_yellow_banner img{
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .business_yellow_banner{
   margin-top: -100px;
  }
  .business_yellow_bg{
    height: 200px;
  }
  
}
.news_slider{
  padding: 0;
}
.text_center{
  text-align: center;
}

/* help page  */
.help_hero {
  padding: 4rem 0;
}

.help_hero_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.help_hero_img {
  flex: 1;
  min-width: 45%;
  position: relative;
}

.help_hero_img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.help_hero_content {
  flex: 1;
}

.help_hero_heading {
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 2rem;
  font-family: 'Noto Serif Bengali', serif;
  text-align:center;
  animation-name: dem_fadeUp;
}
@keyframes dem_fadeUp {
  from { opacity: 0; transform: translateY(20px) scale(.995); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.help_hero_link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.help_hero_link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.help_hero_link:hover {
  color: #e0a326;
  border-color: currentColor;
}

.help_hero_link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .help_hero_container {
      flex-direction: column;
      gap: 2rem;
      padding: 0 1rem;
  }
  
  .help_hero_heading {
      font-size: 1.8rem;
      text-align: center;
  }
  
  .help_hero_link {
      justify-content: center;
      width: 100%;
  }
}

@media (max-width: 480px) {
  .help_hero_heading {
      font-size: 1.5rem;
  }
}

.blog_grid_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog_grid_ {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom:4rem;
}

.blog_grid_item {
  border: 2px solid black;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.blog_grid_item:hover {
  border-color: var(--yellow);
}

.blog_grid_image {
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.blog_grid_image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog_grid_item:hover .blog_grid_image img {
  transform: scale(1.03);
}

.blog_grid_title {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 3.5em;
}

.blog_grid_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.blog_grid_date {
  color: #666;
  font-size: 0.9rem;
}

.blog_grid_link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog_grid_item_link{
    text-decoration:none;
    animation: ab_heroFadeIn 1.5s ease-out;
}
.blog_grid_link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.blog_grid_link:hover {
  color: #e0a326;
}

.blog_grid_link:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .blog_grid_ {
      grid-template-columns: 1fr;
  }
  
  .blog_grid_container {
      padding: 2rem 1rem;
  }
  
  .blog_grid_title {
      min-height: auto;
  }
}

@media (max-width: 480px) {
  .blog_grid_meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }
}

/* blog details  */
.blog_details_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  margin-top: 80px;
}

.blog_details_image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.blog_details_meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 0.9rem;
}

.blog_details_meta i {
  margin-right: 0.5rem;
  color: var(--yellow);
}

.blog_details_share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog_details_share a {
  color: var(--black);
  transition: color 0.3s ease;
}

.blog_details_share a:hover {
  color: var(--yellow);
}

.blog_details_title {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blog_details_subtitle {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 2rem;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
}

.blog_details_content {
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
}

.blog_details_content p {
  margin-bottom: 1.5rem;
}

.blog_details_content strong {
  color: var(--black);
}

.blog_details_hr {
  border: 0;
  border-top: 2px solid rgba(0,0,0,0.1);
  margin: 3rem 0;
}

.blog_details_social_content {
  text-align: center;
  margin: 2rem 0;
}

.blog_details_social_content p {
  color: #666;
  margin-bottom: 1rem;
}

.blog_details_social_icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.blog_details_social_icons a {
  font-size: 1.5rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.blog_details_social_icons a:hover {
  color: var(--yellow);
  transform: translateY(-3px);
}

.blog_details_related {
  margin-top: 4rem;
}

.blog_details_related_title {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 2rem;
  text-align: center;
}

.blog_details_related_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog_details_related_item {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.blog_details_related_item:hover {
  border-color: var(--yellow);
}

.blog_details_related_item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.blog_details_related_item h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.blog_details_related_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
}

.blog_details_related_meta a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .blog_details_container{
    margin-top: 10px;
  }
  .blog_details_related_grid {
      grid-template-columns: 1fr;
  }
  
  .blog_details_meta {
      flex-direction: row;
      align-items: flex-start;
      gap: 1rem;
  }
  
  .blog_details_title {
      font-size: 2rem;
  }
  
  .blog_details_image img {
      height: 300px;
  }
}

@media (max-width: 480px) {
  .blog_details_title {
      font-size: 1.8rem;
  }
  
  .blog_details_subtitle {
      font-size: 1.2rem;
  }
}

/* bottom chat button  */
.chat_fixed_buttons {
  position: fixed;
  bottom: 20px;
  right:0;
  padding: 0 20px;
  z-index: 9999;
}

.chat_whatsapp_button, .chat_chat_button {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s;
  text-decoration: none;
}

.chat_chat_button {
  background: #f1c40f;
}

.chat_whatsapp_button:hover {
  background: #1ebe57;
}

.chat_chat_button:hover {
  background: #d4ac0d;
}

.chat_box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  max-width: 90%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  transition: 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  height: 400px;
}

.chat_box.show {
  transform: scale(1);
}

.chat_box_header {
  background: #f1c40f;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.chat_back_button, .chat_menu_button {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chat_title {
  font-size: 16px;
  font-weight: bold;
}

.chat_dropdown {
  position: absolute;
  top: 50px;
  right: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  list-style: none;
  padding: 10px 0;
  display: none;
  min-width: 150px;
  z-index: 10000;
}

.chat_dropdown li {
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.chat_dropdown li:hover {
  background: #f0f0f0;
}

.chat_box_body {
  padding: 15px;
  flex: 1;
  overflow-y: auto;
  background: #fafafa;
}

.chat_box_footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
  background: #fff;
}

#chat_input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
}

#chat_send_button {
  background: #f1c40f;
  color: white;
  border: none;
  margin-left: 10px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.chat_message {
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 14px;
}

.chat_sender {
  background: #007bff;
  color: white;
  align-self: flex-start;
}

.chat_user {
  background: #e1e1e1;
  color: #333;
  align-self: flex-end;
}

/* Responsive */
@media (max-width: 500px) {
  .chat_box {
    width: 54%;
    right: 5%;
    height: 60%;
  }
}


/* added 2.6.25  */
/* search domain  */
  section.searh_domain_section {
            background: var(--section-bg);
            padding: 60px 20px;
        }

        .searh_domain_container {
            max-width: 725px;
            margin: auto;
            border-radius: 12px;
        }

        .pricing_title span {
            color: #000;
        }

        .lock_icon {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .lock_icon i {
            color: var(--yellow);
            margin: 0 0.5rem;
        }

        .lock_icon span {
            color: #ccc;
        }

        .searh_domain_form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .searh_domain_form input[type="text"] {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--input-border);
            border-radius: 6px;
            margin-bottom: 20px;
            transition: border-color 0.3s;
        }

        .searh_domain_form input[type="text"]:focus {
            border-color: var(--input-focus);
            outline: none;
        }

        .searh_domain_row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .searh_domain_row input {
            flex: 1;
            margin-bottom: 0;
        }

        .searh_domain_row span {
            font-weight: 500;
            white-space: nowrap;
        }

        .searh_domain_link_display {
            font-size: 14px;
            margin-bottom: 20px;
            font-weight: 500;
            color: #333;
        }

        .searh_domain_instructions {
            font-size: 14px;
            background: #fff4f4;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            margin-bottom: 40px;
            border-radius: 4px;
        }

        .searh_domain_instructions b {
            color: var(--accent-color);
            display: block;
            margin-bottom: 10px;
        }

        .searh_domain_instructions li {
            margin-bottom: 6px;
            line-height: 1.6;
        }

        .searh_domain_instructions i {
            margin-right: 6px;
            color: var(--accent-color);
        }

        .searh_domain_button {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .searh_domain_button i {
            margin-left: 6px;
        }

        .searh_domain_button:hover {
            background: var(--btn-hover);
        }

        .doamin_bottom_text {
            font-size: 14px;
            color: #555;
            margin: 10px 0 20px 10px;
            text-align: center;
        }

        @media (max-width: 600px) {
            section.searh_domain_section {
                padding: 20px 10px;
            }

            .searh_domain_row {
                flex-direction: row;
                align-items: center;
            }

            .searh_domain_row input {
                margin-bottom: 10px;
            }

            .searh_domain_row span {
                text-align: center;
            }
             .do_com_popup {
                width: 85%;
                max-height: 90%;
            }
        }

        .otp_taker_container {
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .otp_taker_container label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .otp_taker_inputs {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .otp_taker_inputs input {
            width: 45px;
            height: 50px;
            text-align: center;
            font-size: 24px;
            border: 2px solid #ccc;
            border-radius: 8px;
            background-color: #fffbe6;
            /* light yellow background */
            transition: border-color 0.3s;
        }

        .otp_taker_inputs input:focus {
            outline: none;
            border-color: #ffc800;
            /* yellow border on focus */
            box-shadow: 0 0 5px #ffd70055;
        }

        .otpTitle {
            text-align: center;
        }

        .register_from_form {
  max-width: 800px;
  margin: auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.register_from_row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.register_from_field {
  flex: 1;
}

.register_from_field label,
.register_from_single label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.register_from_field input,
.register_from_single input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.register_from_field input:focus,
.register_from_single input:focus {
  border-color: #ffc800;
  outline: none;
  box-shadow: 0 0 5px #ffd70060;
}

.register_from_single {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .register_from_row {
    flex-direction: column;
  }
  .chat_fixed_buttons{
      bottom:70px;
      padding:0 10px;
  }
}

  /* Popup Styles */
        .do_com_overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .do_com_overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .do_com_popup {
            background: white;
            border-radius: 25px;
            width: 90%;
            max-width: 500px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.5s ease;
            position: relative;
        }
        
        .do_com_overlay.active .do_com_popup {
            transform: scale(1);
            opacity: 1;
        }
        
        .do_com_header {
            background: linear-gradient(to right, #2980b9, #3498db);
            padding: 40px 20px;
            text-align: center;
            position: relative;
        }
        
        .do_com_icon {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: bounce 1s;
        }
        
        .do_com_icon i {
            font-size: 50px;
            color: #27ae60;
        }
        
        .do_com_title {
            color: white;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .do_com_subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
        }
        
        .do_com_content {
            padding: 40px;
            text-align: center;
        }
        
        .do_com_message {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #2c3e50;
            line-height: 1.8;
        }
        
        .do_com_button {
            background: linear-gradient(to right, #e74c3c, #e67e22);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 0 auto;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
        }
        
        .do_com_button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
        }
        
        .do_com_close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .do_com_close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-30px);}
            60% {transform: translateY(-15px);}
        }


/*demo start */

.demo_slider_btn_wrapper {
  position: relative;
}

.demo_slider_btn_toggle {
  display: flex;
  position: relative;
  background: #000;
  border-radius: 50px;
  overflow: hidden;
  padding: 5px;
  max-width: 360px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.demo_slider_btn_toggle_btn {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--yellow);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.demo_slider_btn_toggle_btn i {
  margin-right: 6px;
}

.demo_slider_btn_toggle_btn.active {
  color: #000;
}

.demo_slider_btn_slider_bg {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--yellow);
  border-radius: 50px;
  z-index: 1;
  transition: all 0.3s ease;
}

.desktop-view-btn.active ~ .demo_slider_btn_slider_bg {
  left: 0%;
}

.mobile-view-btn.active ~ .demo_slider_btn_slider_bg {
  left: 50%;
}
.demo_slider_btn_toggle a:hover{
  text-decoration: none;
  color: white;
}
.demo_live_btn_ {
  margin-top: 30px;
}

.demo_live_btn_ .demo_live_btn_link {
  display: inline-block;
  width: 100%;
  padding: 12px 18px;
  background-color: var(--black);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.demo_live_btn_ .demo_live_btn_link:hover {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .demo_live_btn_ .demo_live_btn_link {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
  }
}

        /* Generic container / grid */
        .dem_container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; 
            
        }
        .dem_row { display: flex; width: 100%; box-sizing: border-box; }
        .dem_center { justify-content: center; align-items: center; }
        .dem_text_center { text-align: center; }
        .dem_pt40 { padding: 40px; }

        /* Toggle */
        .dem_toggle_wrap { display: inline-flex; position: relative; background: #f3f4f6; border-radius: 999px; padding: 6px; gap: 6px; align-items: center; 
            animation: ab_heroFadeIn 1.5s ease-out;
        }
        .dem_toggle_btn {
            background: transparent;
            border: none;
            padding: 8px 14px;
            border-radius: 999px;
            cursor: pointer;
            font-weight: 700;
            display: inline-flex;
            gap: 8px;
            align-items: center;
            transition: color .18s ease, background .18s ease, transform .12s ease;
            color: #374151;
        }
        .dem_toggle_btn:focus { outline: 2px solid rgba(59,130,246,.25); outline-offset: 2px; }
        .dem_toggle_label { display: inline-block; font-size: 14px; }
        .dem_active {
            background: #111827;
            color: #fff;
        }
        .dem_slider_bg {
            position: absolute;
            top: 4px;
            left: 4px;
            width: calc(50% - 8px);
            height: calc(100% - 8px);
            border-radius: 999px;
            pointer-events: none;
            transition: left .22s cubic-bezier(.2,.9,.2,1);
            background: rgba(255,255,255,0.06);
            box-shadow: 0 2px 8px rgba(2,6,23,0.06), inset 0 1px 0 rgba(255,255,255,0.02);
        }

        /* Desktop grid */
        .dem_grid { display: grid; gap: 18px; align-items: start; }
        .dem_grid_desktop { grid-template-columns: repeat(2, 1fr); }
        .dem_grid_mobile { grid-template-columns: repeat(3, 1fr); }

        /* Price card */
        .dem_price_col { box-sizing: border-box; animation: ab_heroFadeIn 1.5s ease-out;}
                @keyframes ab_heroFadeIn {
            0% { opacity: 0; transform: translateY(50px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        .dem_price_table { background: #fff; border-radius: 10px; box-shadow: 0 6px 18px rgb(10 10 10 / 38%); padding: 14px; display: flex; flex-direction: column; height: 100%; }
        .dem_price_value { margin: 0 0 8px 0; font-size: 16px; }
        .dem_demo_img { min-height: 180px; display: flex; justify-content: center; align-items: center; overflow: hidden; border-radius: 8px; background: #fafafa; padding: 8px; }
        .dem_img { display: block; width: 100%; height: auto; object-fit: contain; border-radius: 6px; }
        .dem_no_image { color: #9ca3af; font-size: 14px; }

        .dem_price_footer { margin-top: -20px; }
        .dem_demo_buttons { display:flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
        .dem_demo_buttons .demo_live_btn_link { text-decoration: none; font-weight: 700; padding: 9px 14px; border-radius: 8px; display:inline-block; min-width: 110px; text-align:center; border: 1px solid rgba(15,23,42,0.06);
                background:var(--yellow); transition: transform .3s ease, background .12s ease; color: var(--black);}
        .dem_demo_buttons .demo_live_btn_link:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(2,6,23,0.06); background: var(--black); color: var(--yellow);}
        .dem_setup_link { background: linear-gradient(180deg,#f8fafc,#ffffff); }


        .dem_btn { cursor: pointer; border-radius: 8px; padding: 10px 14px; font-weight: 800; border: none; display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
        .dem_btn_block { width: 100%; }
        .dem_btn_primary { background: #0ea5a3; color: #fff; box-shadow: 0 6px 18px rgba(14,165,163,0.12); }
        .dem_btn_primary:disabled { opacity: .7; cursor: not-allowed; }

        .dem_spinner {
            width: 18px; height: 18px; border-radius: 50%; display: inline-block;
            border: 2px solid rgba(255,255,255,0.35); border-top-color: rgba(255,255,255,0.95);
            animation: dem_spin 1s linear infinite;
        }

        /* Utilities */
        .dem_hidden { display: none !important; }
        .dem_success_message { padding: 20px; }

        @keyframes dem_spin { to { transform: rotate(360deg); } }
        @keyframes dem_fadeIn { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: scale(1); } }

        /* Responsive rules */
        @media (max-width: 980px) {
            .dem_grid_desktop { grid-template-columns: repeat(2, 1fr); }
            .dem_grid_mobile { grid-template-columns: repeat(3, 1fr); }
            .dem_toggle_label { display: none; } /* keep just icon on small screens */
        }

        @media (max-width: 680px) {
            .dem_grid_desktop { grid-template-columns: 1fr; }
            .dem_grid_mobile { grid-template-columns: repeat(2, 1fr); }
            .dem_popup_content { padding: 16px; max-width: 420px; }
            .dem_demo_img { min-height: 140px; }
        }

        @media (max-width: 420px) {
            .dem_grid_mobile { grid-template-columns: 1fr; }
            .dem_toggle_wrap { width: 100%; justify-content: space-between; padding: 6px; }
            .dem_slider_bg { display: none; } /* avoid overlap on very small screens */
            .dem_popup_content { border-radius: 10px; padding: 12px; }
        }

        /* accessibility focus */
        .dem_demo_buttons .demo_live_btn_link:focus { outline: 3px solid rgba(14,165,163,0.18); outline-offset: 2px; border-radius: 8px; }
        
        
        /*demo end */
        
        
        /*about section start */
                .ab_container {
            max-width: 1400px;
            width: 90%;
            margin: 0 auto;
        }

        /* Hero Section */
        .ab_hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 1rem;
        }

        .ab_hero_content {
            position: relative;
            z-index: 1;
            animation: ab_heroFadeIn 1.5s ease-out;
        }

        @keyframes ab_heroFadeIn {
            0% { opacity: 0; transform: translateY(50px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .ab_hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1.5rem;
            color: var(--light);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
        }

        .ab_hero p {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            font-weight: 300;
            animation: ab_heroFadeIn 1.5s ease-out 0.3s both;
        }

        .ab_scroll_indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: ab_bounce 2s infinite;
        }

        @keyframes ab_bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }

        .ab_scroll_indicator i {
            font-size: 2rem;
            color: var(--primary);
        }

        /* Section Styles */
        .ab_section {
            padding: clamp(4rem, 10vw, 8rem) 0;
            position: relative;
        }

        .ab_section_alt {
            background-color: var(--gray);
        }

        .ab_section_header {
            text-align: center;
            margin-bottom: clamp(3rem, 8vw, 5rem);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .ab_section_header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ab_section_header h2 {
            font-size: clamp(2rem, 6vw, 3rem);
            color: var(--secondary);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .ab_section_header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
        }

        .ab_section_header p {
            max-width: 700px;
            margin: 0 auto;
            font-size: clamp(1rem, 3vw, 1.2rem);
            color: var(--text);
            font-weight: 300;
            padding: 0 1rem;
        }

        /* Story Section */
        .ab_story_content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        @media (min-width: 768px) {
            .ab_story_content {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }
        }

        .ab_story_content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .ab_story_text h3 {
            font-size: clamp(1.8rem, 5vw, 2.2rem);
            margin-bottom: 2rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .ab_story_text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
        }

        .ab_story_text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .ab_video_container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.5s ease;
        }

        .ab_video_container iframe {
            width: 100%;
            height: 300px;
            border: none;
            display: block;
        }

        @media (min-width: 768px) {
            .ab_video_container iframe {
                height: 350px;
            }
        }

        /* Vision Section */
        .ab_vision_content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        @media (min-width: 768px) {
            .ab_vision_content {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }
        }

        .ab_vision_content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ab_vision_image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            order: 2;
        }

        @media (min-width: 768px) {
            .ab_vision_image {
                order: 1;
            }
        }

        .ab_vision_image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }

        .ab_vision_image:hover img {
            transform: scale(1.05);
        }

        .ab_vision_text {
            order: 1;
        }

        @media (min-width: 768px) {
            .ab_vision_text {
                order: 2;
            }
        }

        .ab_vision_text h3 {
            font-size: clamp(1.8rem, 5vw, 2.2rem);
            margin-bottom: 2rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .ab_vision_text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
        }

        .ab_vision_item {
            margin-bottom: 2.5rem;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border-left: 5px solid var(--primary);
        }

        .ab_vision_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .ab_vision_item h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }

        .ab_vision_item h4 i {
            margin-right: 10px;
            color: var(--primary);
        }

        /* CEO Section */
        .ab_ceo_content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        @media (min-width: 768px) {
            .ab_ceo_content {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }
        }

        .ab_ceo_content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ab_ceo_quote {
            padding: 2rem;
            background: var(--primary);
            border-radius: 15px;
            color: var(--secondary);
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            order: 2;
        }

        @media (min-width: 768px) {
            .ab_ceo_quote {
                order: 1;
                padding: 3rem;
            }
        }

        .ab_ceo_quote:hover {
            transform: translateY(-10px);
        }

        .ab_ceo_quote::before {
            content: '\201C';
            font-size: 6rem;
            position: absolute;
            top: -30px;
            left: 20px;
            color: rgba(0, 0, 0, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .ab_ceo_quote p {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-style: italic;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
            line-height: 1.8;
        }

        .ab_ceo_quote h4 {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .ab_ceo_image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            order: 1;
        }

        @media (min-width: 768px) {
            .ab_ceo_image {
                order: 2;
            }
        }

        .ab_ceo_img_container {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            border: 10px solid var(--primary);
            box-shadow: 0 0 0 10px var(--light), 0 0 0 12px var(--secondary), 0 25px 50px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
        }

        @media (min-width: 768px) {
            .ab_ceo_img_container {
                width: 350px;
                height: 350px;
            }
        }

        .ab_ceo_img_container:hover {
            transform: scale(1.05);
        }

        .ab_ceo_img_container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .ab_ceo_img_container:hover img {
            transform: scale(1.1);
        }

        /* Contact Section */
        .ab_contact_content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        @media (min-width: 992px) {
            .ab_contact_content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        .ab_contact_content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ab_company_details {
            padding: 1rem;
            background: var(--light);
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        @media (min-width: 768px) {
            .ab_company_details {
                padding: 1rem;
            }
            
        }

        .ab_company_details:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .ab_company_details h3 {
            font-size: clamp(1.2rem, 5vw, 2.2rem);
            margin-bottom: 1rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .ab_company_details h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
        }

        .ab_contact_info {
            margin-bottom: 2rem;
        }

        .ab_contact_item {
            display: flex;
            align-items: flex-start;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .ab_contact_item:hover {
            background: rgba(255, 193, 7, 0.1);
        }

        .ab_contact_icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: var(--secondary);
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .ab_contact_text h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .ab_contact_text p, .ab_contact_text a{
            color: var(--text);
            line-height: 1.6;
            text-decoration:none;
        }

        .ab_social_links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }


        .ab_social_links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--secondary);
            transition: all 0.3s ease;
            font-size: 1.2rem;
            text-decoration: none;
        }

        .ab_social_links a:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }
        

        .ab_map_container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 500px;
            transition: all 0.5s ease;
        }

        .ab_map_container:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .ab_map_container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Floating Elements */
        .ab_floating {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            animation: ab_float 15s infinite linear;
            z-index: 0;
            opacity: 0.1;
        }

        @keyframes ab_float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .ab_hero {
                min-height: 60vh;
            }
            
            .ab_ceo_img_container {
                width: 220px;
                height: 220px;
            }
            
            .ab_contact_icon {
                margin-bottom: 1rem;
                height: 35px;
                width: 35px;
            }
            
            .ab_vision_item {
                padding: 1.5rem;
            }
            
            .ab_ceo_quote {
                padding: 1.5rem;
            }
            
            .ab_ceo_quote::before {
                font-size: 4rem;
                top: -15px;
                left: 15px;
            }
            .ab_social_links{
                gap: 5px
            }
            .ab_social_links a {
                width:35px;
                height:35px;
            }
            .ab_vision_image{
                display:none;
            }
        }
        
        /* controls wrapper already provided earlier; small adjustments */
.yt_controls {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 6;
}

/* circular icon buttons */
.yt_btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #111;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, background .18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    padding: 0;
}
.yt_btn:hover { transform: translateY(-3px) scale(1.06); background: #ffd700; color: #000; }

/* Volume slider container */
.yt_volume_wrap {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* range slider styling (unobtrusive) */
.yt_volume_slider {
    -webkit-appearance: none;
    appearance: none;
    width: 110px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd700 var(--vol, 50%), rgba(0,0,0,0.12) 0%);
    outline: none;
    cursor: pointer;
    margin: 0;
}

/* thumb */
.yt_volume_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.yt_volume_slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
}

/* mobile smaller */
@media (max-width: 600px) {
    .yt_btn { width:40px; height:40px; font-size:14px; }
    .yt_volume_slider { width:90px; }
}
@media(max-width: 768px){
    .ab_map_container{
        height:200px;
    }
}

        /*about section end */
        
/*hero section bg design start */

/* ================= Main hero + decorative layers (mostly unchanged) ================= */
.new_hero_ {
    position: relative;
    width: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(30, 30, 30, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(20, 20, 20, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 50%, rgba(10, 10, 10, 0.9) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* keep pseudo background but disable pointer events (so clicks pass through) */
.new_hero_::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none; /* <-- important */
}

.new_hero_btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.new_hero_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.7);
}

.new_hero_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.new_hero_btn:hover::before {
    left: 100%;
}

/* Geometric Shapes with Orange Accents (kept; but pointer-events disabled so they won't block clicks) */
.shape-1, .shape-3, .shape-4, .shape-5, .shape-6 {
    pointer-events: none; /* <-- ensure clicks pass through */
}

/* individual shapes preserved */
.shape-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.7;
    z-index: 2;
    animation: float 8s ease-in-out infinite, rotate 15s linear infinite;
    box-shadow: 0 0 50px rgba(255, 165, 0, 0.2);
}

.shape-3 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 2;
    animation: bounce 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.2);
}

.shape-4 {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.1), transparent);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    opacity: 0.5;
    z-index: 2;
    animation: rotate3D 20s linear infinite, float 12s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.15);
}

.shape-5 {
    position: absolute;
    top: 60%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    opacity: 0.9;
    z-index: 2;
    transform: rotate(45deg);
    animation: spin 8s linear infinite, float 7s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.2);
}

.shape-6 {
    position: absolute;
    top: 10%;
    right: 25%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.7;
    z-index: 2;
    animation: floatReverse 9s ease-in-out infinite, rotate3D 25s linear infinite;
    box-shadow: 0 0 50px rgba(255, 165, 0, 0.2);
}

/* Particle Canvas (we replaced DOM particles with canvas) */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* <-- absolutely critical so clicks pass through */
    contain: paint;
}

/* Light beams - keep visual but non-interactive */
.light-beam {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: lightSweep 8s linear infinite;
    z-index: 1;
    pointer-events: none; /* <-- ensure non-blocking */
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 165, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 165, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

/* Animations (unchanged) */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}
@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(30px) rotate(-5deg); }
}
@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes rotate3D { 0% { transform: rotate3d(1,1,1,0deg); } 100% { transform: rotate3d(1,1,1,360deg); } }
@keyframes bounce { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-40px); } }
@keyframes pulse { 0%,100%{ transform:scale(1);}50%{transform:scale(1.1);} }
@keyframes glow { 0%{ box-shadow:0 0 20px rgba(255,165,0,0.2);}100%{ box-shadow:0 0 40px rgba(255,165,0,0.3),0 0 60px rgba(255,165,0,0.2);} }
@keyframes textGlow { 0%{text-shadow:0 5px 15px rgba(255,165,0,0.3);}100%{text-shadow:0 5px 25px rgba(255,165,0,0.7),0 10px 30px rgba(255,165,0,0.4);} }
@keyframes spin { 0%{transform:rotate(0deg);}100%{transform:rotate(360deg);} }
@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}
@keyframes lightSweep {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .shape-1, .shape-4 { width: 150px; height: 150px; }
    .shape-3, .shape-6 { width: 120px; height: 120px; }
}
@media (max-width: 768px) {
    .shape-1, .shape-4, .shape-6 { display: none; }
    .shape-3, .shape-5 { width: 80px; height: 80px; }
}

/* Accessibility reduce motion */
@media (prefers-reduced-motion: reduce) {
    .light-beam, .shape-1, .shape-3, .shape-4, .shape-5, .shape-6, .new_hero_btn {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
/*hero section bg design end */