:root{
    --brand-blue:#1D4ED8;
    --brand-orange:#F97316;
    --brand-orange-light:#FB923C;
    --brand-dark:#0B1020;
    --brand-light:#F8FAFC;
    --white:#ffffff;
    --text:#64748B;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    background:#fff;
    color:var(--brand-dark);
}

/* COMMON */
.section-padding{
    padding:120px 0;
}

.bg-light-custom{
    background:#fff;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#EFF6FF;
    color:var(--brand-blue);
    font-weight:700;
    margin-bottom:20px;
    font-size:14px;
}

.section-tag.orange{
    background:#FFF7ED;
    color:var(--brand-orange);
}

.section-tag.white-tag{
    background:rgba(255,255,255,0.15);
    color:white;
    backdrop-filter:blur(10px);
}

.section-title{
    font-size:32px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
}

.section-title-center{
    font-size:52px;
    font-weight:900;
    margin-top:20px;
}

.section-subtitle,
.section-text{
    font-size:18px;
    line-height:1.9;
    color:var(--text);
    max-width:750px;
}

.btn-premium{
    background:linear-gradient(135deg,var(--brand-orange),var(--brand-orange-light));
    border:none;
    color:white;
    font-weight:700;
    padding:15px 34px;
    border-radius:50px;
    box-shadow:0 15px 35px rgba(249,115,22,0.35);
    transition:0.4s;
}

.btn-premium:hover{
    transform:translateY(-4px);
    color:white;
}

.btn-glass{
    border:2px solid rgba(255,255,255,0.5);
    color:white;
    padding:15px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s;
}

.btn-glass:hover{
    background:white;
    color:var(--brand-dark);
}

/* TOPBAR */
.topbar{
    background:linear-gradient(90deg, #0a2c70, #0a2c70);
    color:white;
    padding:12px 0;
    font-size:14px;
    font-weight:500;
}

.topbar-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.topbar-left{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.topbar i{
    margin-right:8px;
}

/* NAVBAR */
.navbar-premium{
    position:fixed;
    width:100%;
    top:48px;
    left:0;
    z-index:999;
    padding:1px 0;
    background:#fff;
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,0.15);
    transition:0.4s;
}

.navbar-scrolled{
    top:0;
    background:white;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.navbar-brand img{
    height:78px;
}

.nav-link{
    color:#f9781d  !important;
    font-weight:600;
    margin:0 12px;
    position:relative;
}

.navbar-scrolled .nav-link{
    color:var(--brand-dark)!important;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:var(--brand-orange);
    left:0;
    bottom:-8px;
    transition:0.4s;
    border-radius:20px;
}

.nav-link:hover::after{
    width:100%;
}

.navbar-toggler{
    background:white;
    border:none;
    padding:10px;
}

/* HERO */
.hero-section{
    margin-top:85px;
}

.hero-slide{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
}

.hero-slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(135deg, rgba(11,16,32,0.82), rgba(29,78,216,0.55)),
        linear-gradient(45deg, rgba(249,115,22,0.15), transparent);
}

.hero-slide-1{
    background-image:url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide-2{
    background-image:url('https://images.unsplash.com/photo-1456735190827-d1262f71b8a3?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide-3{
    background-image:url('https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=1600&q=80');
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:760px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
    font-weight:600;
}

.hero-content h1{
    font-size:72px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.2);
}

/* FLOAT SHAPES */
.floating-shape{
    position:absolute;
    border-radius:50%;
    animation:floaty 6s infinite ease-in-out;
}

.shape1{
    width:180px;
    height:180px;
    top:15%;
    right:8%;
    background:rgba(249,115,22,0.15);
}

.shape2{
    width:100px;
    height:100px;
    right:15%;
    bottom:20%;
    background:rgba(255,255,255,0.08);
}

.shape3{
    width:140px;
    height:140px;
    left:8%;
    bottom:12%;
    background:rgba(29,78,216,0.15);
}

@keyframes floaty{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
}

/* ABOUT */
.about-image-box{
    position:relative;
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-orange));
    border-radius:35px;
    padding:40px;
    box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

.about-image-box img{
    background:white;
    padding:30px;
    border-radius:20px;
}

.experience-badge{
    position:absolute;
    right:-20px;
    bottom:-20px;
    background:white;
    padding:25px 35px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.experience-badge h3{
    /*color:var(--brand-orange);*/
    font-weight:900;
}

.mini-card{
    background:white;
    padding:22px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.mini-card i{
    font-size:30px;
    color:var(--brand-orange);
}

/* STATS */
.stats-section{
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-dark));
    color:white;
    padding:30px 0;
}

.stat-box h2{
    font-size:38px;
    font-weight:900;
}

/* FEATURES */
.feature-card{
    background:white;
    padding:40px 30px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,0.06);
    height:100%;
}

.feature-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:32px;
}

.orange-bg{
    background:linear-gradient(135deg,var(--brand-orange),var(--brand-orange-light));
}

.blue-bg{
    background:linear-gradient(135deg,var(--brand-blue),#2563EB);
}

.dark-bg{
    background:linear-gradient(135deg,var(--brand-dark),var(--brand-blue));
}

/* PRODUCTS */
.product-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    height:100%;
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.product-content{
    padding:30px;
}

/* FAQ */
.faq-accordion .accordion-item{
    border:none;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button{
    font-weight:700;
    padding:25px;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:white;
    color:var(--brand-dark);
}

/* CTA */
.cta-section{
    padding:120px 0;
}

.cta-box{
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-orange));
    padding:80px;
    border-radius:35px;
    color:white;
}

.cta-box h2{
    font-size:56px;
    font-weight:900;
}

/* CONTACT */
.contact-section{
    background:#00091e;
    padding:120px 0;
    color:white;
}

.contact-title{
    font-size:38px;
    font-weight:700;
}

.contact-text{
    color:#CBD5E1;
    font-size:18px;
    line-height:1.9;
}

.contact-info div{
    margin-bottom:18px;
    color:#CBD5E1;
}

.contact-info i{
    color:var(--brand-orange);
    margin-right:10px;
}

.contact-form-box{
    background:rgba(255,255,255,0.08);
    padding:45px;
    border-radius:30px;
    backdrop-filter:blur(16px);
}

.form-control{
    padding:16px 18px;
    border-radius:16px;
    border:none;
}

/* FOOTER */
.footer{
    background:#000f33;
    color:white;
    padding:100px 0 30px;
}

.footer-logo{
    height:90px;
    background:white;
    padding:10px;
    border-radius:16px;
}

.footer p,
.footer li,
.footer a{
    color:#CBD5E1;
    text-decoration:none;
    list-style:none;
}

.footer ul{
    padding-left:0;
}

.newsletter-box{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:24px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.social-links a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--brand-blue);
    color:white;
    margin-left:10px;
}

/* SCROLL */
.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--brand-orange),var(--brand-orange-light));
    color:white;
    text-decoration:none;
    z-index:999;
}

/* RESPONSIVE */
@media(max-width:991px){

    .navbar-premium{
        top:0;
        background:white;
    }

    .nav-link{
        color:var(--brand-dark)!important;
        margin:10px 0;
    }

    .navbar-brand img{
        height:58px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .section-title,
    .section-title-center,
    .cta-box h2,
    .contact-title{
        font-size:38px;
    }

    .cta-box{
        padding:50px 30px;
    }

    .experience-badge{
        position:static;
        margin-top:20px;
    }

    .contact-form-box{
        padding:30px;
    }
}

@media(max-width:767px){

    .topbar-wrap{
        justify-content:center;
        text-align:center;
    }

    .topbar-left{
        justify-content:center;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-premium,
    .btn-glass{
        width:100%;
        text-align:center;
    }

    .section-padding{
        padding:80px 0;
    }

    .section-title,
    .section-title-center,
    .cta-box h2,
    .contact-title{
        font-size:28px;
    }

    .stat-box h2{
        font-size:42px;
    }

    .cta-box{
        padding:35px 20px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
        gap:20px;
    }

    .social-links a{
        margin:5px;
    }
}

@media(max-width:480px){

    .hero-slide{
        min-height:85vh;
    }

    .hero-badge{
        font-size:12px;
    }

    .product-card img{
        height:220px;
    }

    .contact-form-box{
        padding:20px;
    }
}
/* FOREGROUND HERO IMAGE SLIDER */
.hero-section {
    margin-top: 93px;
    background: #ffffff;
    overflow: hidden;
}

.hero-banner-wrap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    background-size: 50%;
}

/* INDICATORS */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.7;
    margin: 0 6px;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators {
        bottom: 10px;
    }
}
/* PREMIUM ABOUT */
.about-premium {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.about-visual-wrap {
    position: relative;
    padding: 30px;
}

.about-main-image {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.about-main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(29, 78, 216, 0.15),
        rgba(249, 115, 22, 0.08)
    );
    z-index: 1;
}

/* LOGO FLOAT */
.about-logo-card {
    position: absolute;
    top: 70px;
    left: -20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.about-logo-card img {
    height: 70px;
}

/* EXPERIENCE */
.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 60px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: white;
    padding: 28px 36px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(249,115,22,0.35);
    z-index: 2;
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
}

.experience-badge p {
    margin: 0;
    font-weight: 500;
}

/* MINI CARDS */
.mini-card {
    background: white;
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.4s;
}

.mini-card:hover {
    transform: translateY(-8px);
}

.mini-card i {
    font-size: 34px;
    color: #F97316;
    margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 991px) {
    .about-main-image img {
        height: 500px;
    }

    .about-logo-card {
        left: 10px;
        top: 20px;
    }

    .experience-badge {
        right: 10px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-main-image img {
        height: 350px;
    }

    .about-logo-card img {
        height: 50px;
    }

    .experience-badge {
        padding: 18px 22px;
    }

    .experience-badge h3 {
        font-size: 28px;
    }

    .experience-badge p {
        font-size: 13px;
    }
}
/* PREMIUM PRODUCTS */
.premium-products-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.premium-products-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(29, 78, 216, 0.04);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.premium-products-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.premium-product-card {
    background: rgba(255,255,255,0.92);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: 0.45s ease;
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
}

.premium-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.14);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

.premium-product-card:hover img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11,16,32,0.10),
        rgba(11,16,32,0.75)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.premium-product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(249,115,22,0.35);
}

.product-btn:hover {
    color: white;
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.product-badge.blue {
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
}

.product-content {
    padding: 30px;
}

.product-content h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0B1020;
    margin-bottom: 14px;
}

.product-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748B;
    margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {
    .product-image-wrap img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .premium-products-section {
        padding: 80px 0;
    }

    .product-image-wrap img {
        height: 220px;
    }

    .product-content {
        padding: 22px;
    }

    .product-content h4 {
        font-size: 20px;
    }
}
/* PREMIUM CTA */
.premium-cta-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    border-radius: 0;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(11,16,32,0.88),
            rgba(29,78,216,0.68)
        );
    z-index: 2;
}

/* GLOW EFFECTS */
.cta-glow {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    filter: blur(80px);
}

.glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(249,115,22,0.22);
    top: 40px;
    left: 8%;
}

.glow-2 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.12);
    right: 10%;
    bottom: 40px;
}

/* CTA BOX */
.premium-cta-box {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: auto;
    padding: 70px 60px;
    border-radius: 35px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.premium-cta-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 20px 0 25px;
}

.premium-cta-box p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    max-width: 800px;
    margin: auto;
}

/* STATS */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-stat-item h4 {
    color: #F97316;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
}

.cta-stat-item span {
    color: white;
    opacity: 0.9;
    font-size: 15px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(249,115,22,0.35);
    transition: 0.4s;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    color: white;
}

.cta-btn-secondary {
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: 0.4s;
}

.cta-btn-secondary:hover {
    background: white;
    color: #0B1020;
}

/* MOBILE */
@media (max-width: 991px) {
    .premium-cta-box {
        padding: 50px 30px;
    }

    .premium-cta-box h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .premium-cta-section {
        padding: 90px 0;
    }

    .premium-cta-box {
        padding: 35px 20px;
        border-radius: 24px;
    }

    .premium-cta-box h2 {
        font-size: 28px;
    }

    .premium-cta-box p {
        font-size: 15px;
    }

    .cta-stat-item h4 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}
.hero-section{
    position: relative;
    overflow: hidden;
}

.hero-banner-wrap{
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item::before{
/*    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;*/
}

.carousel-caption{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.hero-content h5{
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-btn{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn .btn{
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next{
    width: 6%;
    z-index: 5;
}

.carousel-indicators{
    z-index: 5;
}

@media(max-width:991px){

    .hero-banner-wrap{
        height: 70vh;
    }

    .hero-content h1{
        font-size: 38px;
    }

    .hero-content p{
        font-size: 16px;
    }
}

@media(max-width:576px){

    .hero-banner-wrap{
        height: 60vh;
    }

    .hero-content h1{
        font-size: 28px;
    }

    .hero-content h5{
        font-size: 14px;
    }

    .hero-content p{
        font-size: 14px;
    }

    .hero-btn .btn{
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* =====================================
   ULTRA PREMIUM ABOUT FEATURES
===================================== */

.premium-feature-grid{
    position:relative;
}

.premium-feature-box{
    position:relative;
    height:100%;
    padding:30px;
    border-radius:24px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(15px);
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.4);

    box-shadow:
    0 15px 35px rgba(0,0,0,.05),
    0 5px 15px rgba(29,78,216,.05);
}

.premium-feature-box:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(
        180deg,
        #F97316,
        #FB923C,
        #1D4ED8
    );
}

.premium-feature-box:hover{
    transform:translateY(-10px);
    box-shadow:
    0 30px 60px rgba(0,0,0,.12),
    0 10px 30px rgba(249,115,22,.12);
}

.premium-feature-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.premium-feature-number{
        font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: rgba(29, 78, 216, .15);
}

.premium-feature-icon{
    width:65px;
    height:65px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #F97316,
        #FB923C
    );

    color:#fff;
    font-size:26px;

    box-shadow:
    0 15px 35px rgba(249,115,22,.30);
    display: none;
}

.premium-feature-text{
    font-size:17px;
    font-weight:600;
    line-height:1.8;
    color:#0B1020;
}

/* Glow Effect */
.premium-feature-box::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(249,115,22,.05);
    right:-80px;
    top:-80px;
}

/* Mobile */
@media(max-width:768px){

    .premium-feature-box{
        padding:22px;
    }

    .premium-feature-number{
        font-size:32px;
    }

    .premium-feature-icon{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .premium-feature-text{
        font-size:15px;
    }

}
/*========================================
 WHY CHOOSE US ULTRA PREMIUM
========================================*/

.premium-why-section{
    padding:120px 0;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
}

.premium-why-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(29,78,216,.04);
    top:-250px;
    left:-250px;
}

.premium-why-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(249,115,22,.04);
    bottom:-200px;
    right:-200px;
}

/* HEADER */

.section-heading{
    max-width:850px;
    margin:auto;
}

.section-title-center{
    font-size:38px;
    font-weight:700;
    color:#0B1020;
    margin-bottom:20px;
    line-height:1.2;
}

.section-subtitle{
    font-size:18px;
    color:#64748B;
    line-height:1.9;
}

/* TIMELINE */

.ultra-why-wrapper{
    position:relative;
    max-width:1300px;
    margin:auto;
    margin-top:80px;
}

.ultra-why-wrapper::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    transform:translateX(-50%);
    background:
    linear-gradient(
        180deg,
        #F97316,
        #FB923C,
        #1D4ED8
    );
    border-radius:50px;
}

/* ITEM */

.ultra-why-item{
    position:relative;
    margin-bottom:40px;
}

.ultra-step-number{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #FB923C);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 25px 60px rgba(249, 115, 22, .35);
}

/* CARD */

.ultra-why-card{
    width:46%;
    position:relative;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(15px);

    border-radius:35px;
    overflow:hidden;

    transition:.5s;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.ultra-why-item:nth-child(odd) .ultra-why-card{
    margin-right:auto;
}

.ultra-why-item:nth-child(even) .ultra-why-card{
    margin-left:auto;
}

.ultra-why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 35px 90px rgba(0,0,0,.15);
}

/* IMAGE */

.ultra-why-image{
    overflow:hidden;
        text-align: center;
}

.ultra-why-image img{
        width: 100px;
    /* height: 320px; */
    /* object-fit: cover; */
    transition: .6s;
    margin: auto !important;
}

.ultra-why-card:hover .ultra-why-image img{
    transform:scale(1.08);
}

/* CONTENT */

.ultra-why-content{
    padding:35px;
}

.ultra-tag{
    display:inline-block;
    padding:8px 18px;

    border-radius:50px;

    background:
    rgba(249,115,22,.08);

    color:#F97316;

    font-weight:700;
    font-size:14px;

    margin-bottom:18px;
}

.ultra-why-content h3{
    font-size:18px;
    font-weight:700;
    color:#0B1020;
    margin-bottom:15px;
}

.ultra-why-content p{
    font-size:16px;
    color:#64748B;
    line-height:1.9;
    margin:0;
}

/* DECORATIVE GLOW */

.ultra-why-card::before{
    content:'';
    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(249,115,22,.04);

    top:-120px;
    right:-120px;
}

/* CTA */

.premium-footer-cta{
    margin-top:80px;
}

.premium-footer-box{
    background:
    linear-gradient(
        135deg,
        #1D4ED8,
        #0B1020
    );

    border-radius:35px;

    padding:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

    color:#fff;

    box-shadow:
    0 25px 70px rgba(29,78,216,.20);
}

.footer-left h3{
    font-size:34px;
    font-weight:900;
    margin-bottom:10px;
}

.footer-left p{
    color:rgba(255,255,255,.85);
    margin:0;
}

.why-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #F97316,
        #FB923C
    );

    box-shadow:
    0 15px 35px rgba(249,115,22,.35);

    transition:.4s;
}

.why-btn:hover{
    color:#fff;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-title-center{
        font-size:40px;
    }

    .ultra-why-wrapper::before{
        left:30px;
    }

    .ultra-step-number{
        left:30px;

        width:70px;
        height:70px;

        font-size:22px;
    }

    .ultra-why-card{
        width:calc(100% - 90px);
        margin-left:90px !important;
    }

    .ultra-why-image img{
        height:240px;
    }

    .premium-footer-box{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:767px){

    .premium-why-section{
        padding:80px 0;
    }

    .section-title-center{
        font-size:30px;
    }

    .ultra-why-content{
        padding:25px;
    }

    .ultra-why-content h3{
        font-size:22px;
    }

    .ultra-why-image img{
        height:200px;
    }

    .footer-left h3{
        font-size:26px;
    }

    .premium-footer-box{
        padding:30px 25px;
    }

}

/*=========================================
PREMIUM MISSION VISION
=========================================*/

.ultra-mission-section{
    padding:120px 0;
    background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
    position:relative;
    overflow:hidden;
}

.ultra-mission-section:before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(249,115,22,.05);
    top:-250px;
    right:-250px;
}

.ultra-image-wrapper{
    position:relative;
}

.ultra-image-wrapper img{
    width:100%;
    height:750px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:20px 28px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.floating-card h3{
    font-size:32px;
    font-weight:900;
    color:#F97316;
    margin:0;
}

.floating-card span{
    font-size:14px;
    color:#64748B;
}

.card-1{
    top:30px;
    left:-20px;
}

.card-2{
    right:-20px;
    bottom:140px;
}

.card-3{
    left:20px;
    bottom:30px;
}

.ultra-glass-card{
    display:flex;
    gap:25px;
    padding:35px;
    border-radius:30px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
}

.ultra-glass-card:hover{
    transform:translateY(-10px);
}

.ultra-icon{
    width:90px;
    min-width:90px;
    height:90px;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
}

.ultra-icon.blue{
    background:linear-gradient(135deg,#1D4ED8,#2563EB);
}

.ultra-icon.orange{
    background:linear-gradient(135deg,#F97316,#FB923C);
}

.mini-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#EFF6FF;
    color:#1D4ED8;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
}

.mini-badge.orange{
    background:#FFF7ED;
    color:#F97316;
}

.ultra-content h3{
    font-size:28px;
    font-weight:800;
    color:#0B1020;
    margin-bottom:15px;
}

.ultra-content p{
    color:#64748B;
    line-height:1.9;
    margin:0;
}

.premium-value-card{
    height:100%;
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
}

.premium-value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.premium-value-card i{
    font-size:42px;
    color:#F97316;
    margin-bottom:18px;
}

.premium-value-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.premium-value-card p{
    color:#64748B;
    margin:0;
}

/* MOBILE */

@media(max-width:991px){

    .ultra-image-wrapper img{
        height:500px;
        margin-bottom:40px;
    }

    .floating-card{
        display:none;
    }

    .ultra-glass-card{
        flex-direction:column;
    }

    .ultra-icon{
        width:80px;
        height:80px;
    }
}

@media(max-width:576px){

    .ultra-mission-section{
        padding:80px 0;
    }

    .ultra-image-wrapper img{
        height:350px;
    }

    .ultra-content h3{
        font-size:22px;
    }

    .ultra-glass-card{
        padding:25px;
    }
}