/* =========================
   GLOBAL
========================= */
html{
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f6f6f6;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{

    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(15px);
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:9999;
    transition:.4s ease;
    border-bottom:1px solid rgba(0,0,0,0.05);

}

/* SCROLL EFFECT */

.custom-navbar.scrolled{

    padding:12px 0;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);

}

/* =========================
   LOGO
========================= */

.main-logo{

    width:240px;
    transition:.6s ease;
    animation:logoFloat 4s ease-in-out infinite;

    /* ORANGE GLOW */
    filter:
    drop-shadow(0 0 10px rgba(255,115,0,0.35))
    drop-shadow(0 0 25px rgba(255,115,0,0.25));

}

/* LOGO HOVER */

.navbar-brand:hover .main-logo{

    transform:scale(1.06) rotate(-2deg);

    filter:
    drop-shadow(0 0 15px rgba(255,115,0,0.55))
    drop-shadow(0 0 35px rgba(255,115,0,0.45));

}

/* FLOATING ANIMATION */

@keyframes logoFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
   NAV LINKS
========================= */

.navbar-nav .nav-link{

    color:#111;
    font-size:17px;
    font-weight:700;
    position:relative;
    transition:.4s ease;
    padding:10px 5px;

}

/* HOVER LINE */

.navbar-nav .nav-link::after{

    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:3px;
    background:linear-gradient(to right,#ff6a00,#ff9d00);
    border-radius:20px;
    transition:.4s ease;

}

/* HOVER */

.navbar-nav .nav-link:hover{

    color:#ff6a00;
    transform:translateY(-3px);

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

/* =========================
   BUTTON
========================= */

.main-btn{

    background:linear-gradient(135deg,#ff6a00,#ff9d00);
    color:#fff;
    text-decoration:none;
    padding:15px 34px;
    border-radius:14px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    transition:.5s ease;
    display:inline-block;
    box-shadow:0 15px 35px rgba(255,115,0,0.35);

}

/* SHINE EFFECT */

.main-btn::before{

    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
    );

    transition:.7s;

}

.main-btn:hover::before{

    left:100%;

}

.main-btn:hover{

    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 20px 45px rgba(255,115,0,0.45);

}

/* =========================================
   HERO SECTION
========================================= */

.hero-section{

    position:relative;
    overflow:hidden;
    padding:60px 0;
    background:
    linear-gradient(
    135deg,
    #f7f7f7,
    #ffffff
    );

}

/* =========================================
   BLUR CIRCLES
========================================= */

.blur-circle{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;

}

.blur-1{

    width:300px;
    height:300px;
    background:rgba(255,115,0,0.18);
    top:-100px;
    left:-100px;

}

.blur-2{

    width:350px;
    height:350px;
    background:rgba(0,128,128,0.15);
    bottom:-120px;
    right:-120px;

}

/* =========================================
   LEFT CONTENT
========================================= */

.hero-content{

    position:relative;
    z-index:2;

}

/* MINI TITLE */

.mini-title{

    background:rgba(255,115,0,0.12);
    color:#ff6a00;
    padding:10px 22px;
    border-radius:50px;
    display:inline-block;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:1px;

}

/* TITLE */

.hero-title{

    font-size:clamp(35px,5vw,70px);
    font-weight:900;
    line-height:1;
    color:#111;
    margin-bottom:20px;

}

/* WORD SLIDER */

.word-slider{

    height:85px;
    overflow:hidden;
    position:relative;
    color:#ff6a00;

}

.word-slider span{

    display:block;
    height:85px;
    animation:slideWords 12s infinite;
    text-shadow:
    0 0 10px rgba(0,128,128,0.2);

}

/* TEXT */

.hero-text{

    font-size:clamp(16px,2vw,20px);
    line-height:1.7;
    color:#444;
    max-width:600px;
    margin-bottom:25px;

}

/* BUTTONS */

.hero-btns{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* MAIN BUTTON */

.main-btn{

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff9d00
    );

    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:16px;
    font-weight:700;
    transition:.5s ease;
    position:relative;
    overflow:hidden;
    box-shadow:
    0 15px 40px rgba(255,115,0,0.35);

}

.main-btn::before{

    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
    );

    transition:.7s;

}

.main-btn:hover::before{

    left:100%;

}

.main-btn:hover{

    transform:
    translateY(-6px)
    scale(1.03);

}

/* GLASS BUTTON */

.glass-btn{

    padding:16px 34px;
    border-radius:16px;
    text-decoration:none;
    color:#111;
    font-weight:700;
    border:1px solid rgba(0,0,0,0.08);
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(10px);
    transition:.4s ease;

}

.glass-btn:hover{

    transform:translateY(-5px);
    background:#fff;

}

/* =========================================
   HERO IMAGE
========================================= */

.hero-image-wrapper{

    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;

}

/* MAIN IMAGE */

.hero-image{

    width:100%;
    max-width:520px;
    aspect-ratio:1/1;
    border-radius:45% 55% 60% 40% / 40% 40% 60% 60%;
    overflow:hidden;
    position:relative;

    animation:
    morph 8s ease-in-out infinite,
    floatImage 6s ease-in-out infinite;

    box-shadow:
    0 30px 60px rgba(0,0,0,0.18);

}

.hero-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;

}

.hero-image:hover img{

    transform:scale(1.08);

}

/* FLOATING CARDS */

.floating-card{

    position:absolute;
    background:#fff;
    padding:16px 22px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
    font-weight:700;
    z-index:5;
    animation:floatCards 5s ease-in-out infinite;

}

.card-1{ top:-50px; left:0; }
.card-2{ right:200px; top:10px; }
.card-3{ bottom:-20px; left:50px; }

/* =========================================
   ANIMATIONS
========================================= */

@keyframes slideWords{

    0%,16%{transform:translateY(0);}
    20%,36%{transform:translateY(-85px);}
    40%,56%{transform:translateY(-170px);}
    60%,76%{transform:translateY(-255px);}
    80%,96%{transform:translateY(-340px);}
    100%{transform:translateY(-425px);}

}

@keyframes floatImage{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

@keyframes morph{
    0%{border-radius:45% 55% 60% 40% / 40% 40% 60% 60%;}
    50%{border-radius:60% 40% 35% 65% / 60% 30% 70% 40%;}
    100%{border-radius:45% 55% 60% 40% / 40% 40% 60% 60%;}
}

@keyframes floatCards{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}
/* =========================================
   SECTION
========================================= */

.advantage-section{

    position:relative;
    padding:110px 0;
    background:#f7f7f7;
    overflow:hidden;

}

/* =========================================
   REMOVE OLD WEIRD FX
========================================= */

.bg-line,
.floating-orb{

    display:none;

}

/* =========================================
   LEFT
========================================= */

.left-content{

    position:relative;
    z-index:2;

    animation:fadeUp 1s ease;

}

.mini-tag{

    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,115,0,0.12);
    color:#ff6a00;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

.main-title{

    font-size:65px;
    line-height:1.05;
    font-weight:900;
    color:#111;
    margin-bottom:30px;

}

.main-title span{

    color:#ff6a00;
    position:relative;

}

/* GRADIENT UNDERLINE */

.main-title span::after{

    content:'';
    position:absolute;
    left:0;
    bottom:5px;

    width:100%;
    height:10px;

    background:rgba(255,115,0,0.18);
    z-index:-1;
    border-radius:50px;

}

.main-text{

    font-size:22px;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
    max-width:600px;

}

/* =========================================
   MINI CARDS
========================================= */

.mini-cards{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.mini-card{

    background:#fff;
    padding:28px 35px;
    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.06);

    transition:.45s ease;

    position:relative;
    overflow:hidden;

    border:1px solid rgba(255,115,0,0.08);

}

/* LIGHT EFFECT */

.mini-card::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
    );

    transform:translateX(-100%);
    transition:1s ease;

}

.mini-card:hover::before{

    transform:translateX(100%);

}

/* HOVER */

.mini-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px rgba(255,115,0,0.12);

}

.mini-card h3{

    font-size:36px;
    color:#ff6a00;
    margin-bottom:5px;
    font-weight:900;

}

.mini-card span{

    color:#666;
    font-weight:600;

}

/* =========================================
   ACCORDION
========================================= */

.accordion-wrap{

    display:flex;
    flex-direction:column;
    gap:25px;
    position:relative;
    z-index:2;

    animation:fadeUp 1.2s ease;

}

/* ITEM */

.acc-item{

    position:relative;

    background:#fff;
    border-radius:30px;
    overflow:hidden;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

    transition:.45s ease;

    isolation:isolate;

}

/* LIGHT SHINE */

.acc-item::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
    );

    transform:translateX(-100%);
    transition:1s ease;

    z-index:0;

}

.acc-item:hover::before{

    transform:translateX(100%);

}

/* TOP BORDER ANIMATION */

.acc-item::after{

    content:'';

    position:absolute;
    top:0;
    left:0;

    width:0%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #ff6a00,
    #ff9500
    );

    transition:.5s ease;

}

.acc-item:hover::after{

    width:100%;

}

/* ACTIVE */

.acc-item.active{

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #fff7f2
    );

    transform:
    translateY(-5px);

    box-shadow:
    0 25px 60px rgba(255,115,0,0.12);

}

/* HEADER */

.acc-header{

    padding:30px 35px;

    display:flex;
    align-items:center;
    gap:25px;

    cursor:pointer;

    position:relative;
    z-index:2;

}

/* PULSE DOT */

.pulse-circle{

    width:18px;
    height:18px;
    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff9500
    );

    position:relative;

    animation:pulse 2s infinite;

    flex-shrink:0;

}

.pulse-circle::before{

    content:'';

    position:absolute;
    inset:-8px;

    border-radius:50%;

    border:2px solid rgba(255,115,0,0.2);

}

/* TITLE */

.acc-header h3{

    flex:1;

    margin:0;

    font-size:32px;
    font-weight:800;

    color:#111;

    transition:.4s ease;

}

.acc-item:hover h3{

    color:#ff6a00;

}

/* NUMBER */

.acc-number{

    font-size:48px;
    font-weight:900;

    color:rgba(255,115,0,0.12);

    transition:.5s ease;

    line-height:1;

}

.acc-item:hover .acc-number{

    transform:scale(1.08);

    color:rgba(255,115,0,0.22);

}

/* BODY */

.acc-body{

    max-height:0;
    overflow:hidden;

    transition:
    max-height .7s ease,
    padding .5s ease;

    padding:0 35px;

    position:relative;
    z-index:2;

}

.acc-item.active .acc-body{

    max-height:300px;
    padding:0 35px 35px;

}

/* TEXT ANIMATION */

.acc-body p{

    font-size:19px;
    line-height:1.9;
    color:#555;

    margin:0;

    opacity:0;
    transform:translateY(20px);

    transition:.5s ease;

}

.acc-item.active .acc-body p{

    opacity:1;
    transform:translateY(0);

}

/* HOVER */

.acc-item:hover{

    transform:
    translateY(-5px);

}

/* =========================================
   REVEAL
========================================= */

.reveal-left{

    opacity:0;
    transform:translateY(80px);
    transition:1s ease;

}

.reveal-right{

    opacity:0;
    transform:translateY(80px);
    transition:1s ease;

}

.reveal-active{

    opacity:1;
    transform:translateY(0);

}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.25);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
.ai-section{
  padding:70px 0;
  background:linear-gradient(135deg,#ffffff,#f6f7fb);
  position:relative;
  overflow:hidden;
}

/* soft background glow */
.ai-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(255,106,0,0.15), transparent 60%);
  top:-200px;
  left:-200px;
  filter:blur(60px);
}

/* IMAGE WRAPPER */
.ai-image-wrapper{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* floating glow behind image */
.glow{
  position:absolute;
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(0,200,180,0.25), transparent 60%);
  filter:blur(40px);
  animation:pulse 4s infinite ease-in-out;
}

/* IMAGE (FIXED SIZE) */
.ai-img{
  width:100%;
  max-width:320px;   /* 🔥 FIXED SIZE */
  border-radius:18px;
  z-index:2;
  box-shadow:0 20px 50px rgba(0,0,0,0.18);
  animation:floatImg 5s ease-in-out infinite;
  transition:0.4s;
}

.ai-img:hover{
  transform:scale(1.03);
}

/* BADGES (CLEAN + CONTROLLED) */
.floating-badge{
  position:absolute;
  background:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-size:11px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  animation:floatBadge 3.5s infinite ease-in-out;
  z-index:3;
}

.b1{top:15%; left:8%;}
.b2{bottom:12%; left:6%;}
.b3{top:45%; right:6%;}

/* TEXT */
.tag{
  display:inline-block;
  background:rgba(255,106,0,0.12);
  color:#ff6a00;
  padding:6px 14px;
  border-radius:30px;
  font-weight:700;
  font-size:12px;
}

.title{
  font-size:42px;
  font-weight:900;
  margin-top:18px;
  line-height:1.2;
  color:#111;
}

.gradient-text{
  background: linear-gradient(90deg,#ff6a00,#ff9d00,#ff6a00);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shine 3s linear infinite;
  display:inline-block;
}

@keyframes shine{
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}

.sub{
  font-size:16px;
  color:#666;
  margin:12px 0 20px;
}

/* FEATURES */
.features{
  list-style:none;
  padding:0;
}

.features li{
  padding:8px 0;
  font-size:15px;
  color:#333;
  padding-left:20px;
  position:relative;
}

.features li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ff6a00;
}

/* BUTTON */
.cta-btn{
  margin-top:20px;
  background:linear-gradient(135deg,#ff6a00,#ff9d00);
  border:none;
  padding:12px 26px;
  color:#fff;
  font-weight:700;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(255,106,0,0.25);
}

.cta-btn:hover{
  transform:translateY(-4px);
}
/* =========================
   🔥 PREMIUM UPGRADES ADD-ON
========================= */

/* gradient text upgrade (smooth shine) */
.gradient-text{
  background: linear-gradient(90deg,#ff6a00,#ff9d00,#ff6a00);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shine 3s linear infinite;
  display:inline-block;
}

/* smoother shine */
@keyframes shine{
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}

/* IMAGE WRAPPER upgrade (3D feel) */
.ai-image-wrapper{
  perspective:1000px;
}

/* IMAGE more premium hover */
.ai-img{
  transition:0.5s ease;
  will-change:transform;
}

.ai-image-wrapper:hover .ai-img{
  transform:translateY(-8px) scale(1.03) rotateY(6deg);
}

/* BADGES upgrade (more floating natural) */
.floating-badge{
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,0.6);
}

/* slightly better movement */
.b1{animation-duration:4s;}
.b2{animation-duration:5s;}
.b3{animation-duration:4.5s;}

/* SCROLL REVEAL STRONGER (premium feel) */
.reveal{
  opacity:0;
  transform:translateY(50px) scale(0.98);
  transition:all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* HOVER LIFT on whole section card feel */
.ai-content, .ai-image-wrapper{
  transition:0.4s ease;
}

.ai-content:hover{
  transform:translateY(-3px);
}

/* MOBILE polish */
@media(max-width:768px){
  .ai-img{
    max-width:260px;
  }

  .floating-badge{
    font-size:10px;
    padding:5px 10px;
  }
}

/* ANIMATIONS */
@keyframes floatImg{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

@keyframes floatBadge{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

@keyframes pulse{
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.08);}
}

/* SCROLL REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}
/* =========================================
   VERTICALS SECTION
========================================= */

.verticals-section{

    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #f8f9fb,
    #ffffff
    );

}

/* GLOW EFFECTS */

.v-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;

}

.glow-1{

    width:350px;
    height:350px;
    background:rgba(255,106,0,0.15);
    top:-100px;
    left:-100px;

}

.glow-2{

    width:350px;
    height:350px;
    background:rgba(0,128,128,0.14);
    bottom:-120px;
    right:-120px;

}

/* =========================================
   TOP TAG
========================================= */

.section-tag{

    width:max-content;
    margin:auto;
    margin-bottom:25px;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,106,0,0.1);
    color:#ff6a00;
    font-weight:700;
    letter-spacing:1px;
    position:relative;
    z-index:2;

}

.section-tag span{

    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff6a00;
    display:inline-block;
    margin-right:10px;
    animation:pulseDot 1.5s infinite;

}

/* =========================================
   TITLE
========================================= */

.verticals-title{

    font-size:40px;
    font-weight:900;
    text-align:center;
    color:#0a0a0a;
    margin-bottom:25px;
    position:relative;
    z-index:2;

}

.gradient-text{

    background:linear-gradient(90deg,#ff6a00,#ff9d00);
    -webkit-text-fill-color:transparent;

}

/* TEXT */

.verticals-text{

    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:20px;
    line-height:1.8;
    color:#555;
    margin-bottom:70px;
    position:relative;
    z-index:2;

}

/* =========================================
   GRID
========================================= */

.verticals-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    position:relative;
    z-index:2;

}
/* =========================================
   CARD
========================================= */

.vertical-card{

    position:relative;
    overflow:hidden;
    background:#fff;

    /* SMALL COMPACT SIZE */
    min-height:130px;

    padding:20px 15px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    border-radius:18px;

    transition:.45s ease;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 8px 20px rgba(0,0,0,0.05);

}

/* ICON */

.vertical-card i{

    font-size:26px;

    color:#ff6a00;

    margin-bottom:14px;

    transition:.45s ease;

}

/* TITLE */

.vertical-card h4{

    font-size:16px;

    font-weight:800;

    color:#111;

    margin:0;

    line-height:1.4;

}

/* HOVER EFFECT */

.vertical-card::before{

    content:'';

    position:absolute;

    width:100%;

    height:0;

    left:0;

    bottom:0;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff9d00
    );

    transition:.45s ease;

    z-index:-1;

}

.vertical-card:hover::before{

    height:100%;

}

.vertical-card:hover{

    transform:
    translateY(-8px)
    scale(1.02);

    box-shadow:
    0 18px 35px rgba(255,106,0,0.18);

}

.vertical-card:hover i,
.vertical-card:hover h4{

    color:#fff;

}

/* FLOATING BORDER */

.vertical-card::after{

    content:'';

    position:absolute;

    inset:0;

    border-radius:18px;

    border:1px solid rgba(255,255,255,0.4);

    pointer-events:none;

}

/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:1s cubic-bezier(.17,.67,.3,1.33);

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes pulseDot{

    0%{

        transform:scale(1);
        opacity:1;

    }

    50%{

        transform:scale(1.6);
        opacity:.5;

    }

    100%{

        transform:scale(1);
        opacity:1;

    }

}
/* =========================================
   FOOTER
========================================= */

.main-footer{

    position:relative;
    background:#ff6a00;

    padding:90px 0 40px;
    overflow:hidden;
    color:black;

}

/* =========================================
   GLOW EFFECTS
========================================= */

.footer-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;

}

.footer-glow-1{

    width:300px;
    height:300px;
    background:rgba(255,140,0,0.18);
    top:-120px;
    left:-120px;

}

.footer-glow-2{

    width:350px;
    height:350px;
    background:rgba(255,255,255,0.08);
    right:-150px;
    bottom:-150px;

}

/* =========================================
   CONTENT
========================================= */

.main-footer .container{

    position:relative;
    z-index:5;

}

/* =========================================
   LOGO
========================================= */

.footer-logo img{
    border-radius: 12px;
    width:220px;
    filter:
    drop-shadow(0 0 20px rgba(255,255,255,0.08));

    transition:.5s ease;

}

.footer-logo img:hover{

    transform:scale(1.05);

}

/* =========================================
   TEXT
========================================= */

.footer-text{

    font-size:18px;
    line-height:1.9;
    margin-top:25px;
    color:black;
    max-width:500px;

}

/* =========================================
   TITLES
========================================= */

.footer-title{

    font-size:28px;
    font-weight:800;
    margin-bottom:30px;
    position:relative;

}

/* UNDERLINE */

.footer-title::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:70px;
    height:4px;
    background:#ff8c00;
    border-radius:20px;

}

/* =========================================
   LINKS
========================================= */

.footer-links{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin-bottom:18px;

}

.footer-links a{

    text-decoration:none;
    color:black;
    font-size:18px;
    transition:.4s ease;
    position:relative;

}

/* HOVER */

.footer-links a:hover{

    color:white;
    padding-left:10px;

}

/* =========================================
   CONTACT
========================================= */

.contact-item{

    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:22px;

}

.contact-item span{

    font-size:22px;

}

.contact-item a,
.contact-item p{

    color:black;
    text-decoration:none;
    font-size:18px;
    line-height:1.7;
    margin:0;

}

/* =========================================
   SOCIALS
========================================= */

.footer-socials{

    display:flex;
    gap:15px;
    margin-top:30px;

}

.footer-socials a{

    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:black;
    text-decoration:none;
    font-weight:700;
    transition:.4s ease;
    backdrop-filter:blur(10px);

}

.footer-socials a:hover{

    transform:
    translateY(-6px)
    rotate(8deg);
    color: white;
    background:black;

}

/* =========================================
   LINE
========================================= */

.footer-line{

    width:100%;
    height:1px;
    background:rgba(255,255,255,0.15);
    margin:60px 0 25px;

}

/* =========================================
   BOTTOM
========================================= */

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;
    color:black;
    font-size:17px;

}

/* =========================================
   SCROLL BUTTON
========================================= */

.scroll-top{

    position:fixed;
    right:25px;
    bottom:25px;

    width:58px;
    height:58px;

    border:none;
    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff7a00,
    #ff9d00
    );

    color:#fff;
    font-size:24px;
    cursor:pointer;

    box-shadow:
    0 15px 35px rgba(255,122,0,0.35);

    z-index:999;

    opacity:0;
    visibility:hidden;

    transition:.4s ease;

}

/* ACTIVE */

.scroll-top.active{

    opacity:1;
    visibility:visible;

}

/* HOVER */

.scroll-top:hover{

    transform:
    translateY(-8px)
    scale(1.08);

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .main-footer{

        padding:70px 0 35px;
        text-align:center;

    }

    .footer-text{

        margin:auto;
        margin-top:25px;

    }

    .footer-title::after{

        left:50%;
        transform:translateX(-50%);

    }

    .contact-item{

        justify-content:center;

    }

    .footer-socials{

        justify-content:center;

    }

}

@media(max-width:576px){

    .footer-logo img{

        width:170px;

    }

    .footer-title{

        font-size:24px;

    }

    .footer-text,
    .footer-links a,
    .contact-item a,
    .contact-item p{

        font-size:16px;

    }

    .scroll-top{

        width:50px;
        height:50px;
        font-size:20px;

    }

}
/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .verticals-section{

        padding:90px 0;

    }

    .verticals-title{

        font-size:50px;

    }

    .verticals-text{

        font-size:18px;

        margin-bottom:50px;

    }

}

@media(max-width:576px){

    .verticals-title{

        font-size:38px;

        line-height:1.2;

    }

    .vertical-card{

        min-height:115px;

        padding:16px 10px;

        border-radius:16px;

    }

    .vertical-card h4{

        font-size:14px;

    }

    .vertical-card i{

        font-size:22px;

        margin-bottom:10px;

    }

}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section{

    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #f7f8fa,
    #ffffff
    );

}

/* GLOW */

.contact-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(100px);

}

.glow-left{

    width:300px;
    height:300px;
    background:rgba(255,106,0,0.12);

    top:-100px;
    left:-100px;

}

.glow-right{

    width:350px;
    height:350px;
    background:rgba(0,128,128,0.12);

    bottom:-120px;
    right:-120px;

}

/* =========================================
   LEFT CONTENT
========================================= */

.contact-content{

    position:relative;
    z-index:2;

}

.contact-tag{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,106,0,0.12);

    color:#ff6a00;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

}

.contact-title{

    font-size:64px;

    line-height:1.1;

    font-weight:900;

    color:#111;

    margin-bottom:25px;

}

.gradient-text{

    background:linear-gradient(90deg,#ff6a00,#008080);

    -webkit-text-fill-color:transparent;

}

.contact-text{

    font-size:20px;

    line-height:1.8;

    color:#555;

    max-width:500px;

}

/* FLOATING MINI CARDS */

.mini-contact-card{

    position:absolute;

    background:#fff;

    padding:14px 20px;

    border-radius:18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    font-weight:700;

    animation:floatCard 4s ease-in-out infinite;

}

.mini-contact-card i{

    color:#ff6a00;

    margin-right:10px;

}

.card-1{

    top:320px;
    left:0;

}

.card-2{

    top:400px;
    left:120px;

}

/* =========================================
   FORM BOX
========================================= */

.form-box{

    position:relative;

    background:rgba(255,255,255,0.7);

    backdrop-filter:blur(14px);

    padding:45px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

    z-index:2;

}

/* =========================================
   INPUT GROUP
========================================= */

.input-group-custom{

    position:relative;

}

.input-group-custom input,
.input-group-custom select{

    width:100%;

    height:60px;

    border:none;

    outline:none;

    background:#fff;

    border-radius:16px;

    padding:0 20px;

    font-size:16px;

    border:1px solid rgba(0,0,0,0.08);

    transition:.4s ease;

}

/* FOCUS */

.input-group-custom input:focus,
.input-group-custom select:focus{

    border-color:#ff6a00;

    box-shadow:
    0 0 0 5px rgba(255,106,0,0.12);

}

/* LABEL */

.input-group-custom label{

    position:absolute;

    top:-10px;

    left:18px;

    background:#fff;

    padding:0 10px;

    font-size:13px;

    font-weight:700;

    color:#555;

}

.date-label{

    z-index:5;

}

/* =========================================
   CHECKBOX
========================================= */

.check-box{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.check-box input{

    margin-top:5px;

    width:18px;
    height:18px;

    accent-color:#ff6a00;

}

.check-box p{

    margin:0;

    font-size:14px;

    line-height:1.7;

    color:#666;

}

/* =========================================
   BUTTON
========================================= */

.submit-btn{

    width:100%;

    height:65px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff9d00
    );

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.45s ease;

    position:relative;

    overflow:hidden;

}

/* SHINE */

.submit-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
    );

    transition:.6s;

}

.submit-btn:hover::before{

    left:100%;

}

.submit-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 40px rgba(255,106,0,0.25);

}

/* =========================================
   REVEAL
========================================= */


/* =========================================
   FLOAT ANIMATION
========================================= */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}
/* Privacy Policy Section */
.privacy-policy-section {
    background: #f8f9fb;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Animated Background Glow */
.privacy-policy-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(80px);
    animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0%,100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
}

/* Badge */
.policy-badge {
    background: rgba(255,106,0,0.1);
    color: #ff6a00;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Title */
.privacy-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #071c3d;
    text-transform: uppercase;
}

/* Update Box */
.update-box {
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-weight: 600;
    color: #444;
}

.update-box i {
    color: #ff6a00;
}

/* Card */
.privacy-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card:hover {
    transform: translateY(-5px);
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6a00, #ff9d00);
}

/* Paragraph */
.privacy-card p {
    color: #555;
    line-height: 2;
    font-size: 17px;
}

/* Link */
.privacy-card a {
    color: #ff6a00;
    text-decoration: none;
    font-weight: 600;
}

/* Heading */
.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-heading .line {
    width: 50px;
    height: 4px;
    background: #ff6a00;
    border-radius: 10px;
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #071c3d;
    margin: 0;
}

.privacy-card h4 {
    font-size: 28px;
    color: #111;
    font-weight: 700;
}

/* Responsive */
@media(max-width:991px){
    .privacy-title{
        font-size:42px;
    }

    .privacy-card{
        padding:35px;
    }
}

@media(max-width:576px){
    .privacy-title{
        font-size:32px;
    }

    .privacy-card{
        padding:25px;
    }

    .privacy-card p{
        font-size:15px;
        line-height:1.8;
    }

    .section-heading h2{
        font-size:24px;
    }

    .privacy-card h4{
        font-size:22px;
    }
}
/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .contact-title{

        font-size:46px;

    }

    .form-box{

        padding:35px;

    }

    .mini-contact-card{

        display:none;

    }

}

@media(max-width:576px){

    .contact-section{

        padding:80px 0;

    }

    .contact-title{

        font-size:34px;

    }

    .contact-text{

        font-size:17px;

    }

    .form-box{

        padding:25px;

        border-radius:22px;

    }

    .input-group-custom input,
    .input-group-custom select{

        height:55px;

        border-radius:14px;

    }

    .submit-btn{

        height:58px;

        font-size:16px;

    }

}
/* RESPONSIVE FIX */
@media(max-width:991px){
  .title{font-size:34px;}
  .ai-img{max-width:280px;}
}

@media(max-width:576px){
  .title{font-size:28px;}
  .ai-img{max-width:240px;}
}
/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .advantage-section{

        padding:90px 0;

    }

    .main-title{

        font-size:50px;

    }

    .main-text{

        font-size:19px;

    }

    .acc-header{

        padding:24px;

    }

    .acc-header h3{

        font-size:24px;

    }

    .acc-number{

        font-size:40px;

    }

}

@media(max-width:576px){

    .advantage-section{

        padding:70px 0;

    }

    .main-title{

        font-size:38px;
        line-height:1.15;

    }

    .main-text{

        font-size:17px;

    }

    .mini-cards{

        flex-direction:column;

    }

    .mini-card{

        width:100%;

    }

    .acc-header{

        padding:20px;
        gap:15px;

    }

    .acc-header h3{

        font-size:20px;

    }

    .acc-number{

        font-size:28px;

    }

    .acc-item.active .acc-body{

        padding:0 20px 20px;

    }

    .acc-body p{

        font-size:16px;
        line-height:1.7;

    }

}
/* =========================================
   RESPONSIVE FIX (MAIN FIX ADDED HERE)
========================================= */

@media(max-width:991px){

    .hero-section{
        padding:70px 15px;
    }

    .hero-title{
        font-size:52px;
    }

    .hero-text{
        font-size:18px;
    }

    .hero-image{
        margin-top:40px;
    }

    .floating-card{
        display:none;
    }

    /* 🔥 FIX IMAGE POSITION ISSUE */
    .hero-section .container .row{
        display:flex;
        flex-direction:column;
    }

    .hero-content{
        order:1;
        text-align:center;
    }

    .hero-image-wrapper{
        order:2;
        margin-top:35px;
    }

    .hero-image{
        margin:0 auto;
    }
}

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-text{
        margin:15px auto;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:34px;
    }

    .hero-text{
        font-size:15px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .main-btn,
    .glass-btn{
        width:100%;
        text-align:center;
    }

    .hero-image{
        max-width:300px;
        margin:auto;
    }

}
/* =========================
   MOBILE MENU
========================= */

@media(max-width:991px){

    .navbar-collapse{

        background:#fff;
        padding:25px;
        margin-top:20px;
        border-radius:24px;
        box-shadow:0 15px 40px rgba(0,0,0,0.08);

    }

    .navbar-nav{

        gap:14px;

    }

    .navbar-nav .nav-link{

        font-size:18px;

    }

    .main-logo{

        width:180px;

    }

}

/* =========================
   SMALL DEVICES
========================= */

@media(max-width:576px){

    .main-logo{

        width:150px;

    }

}
