/*==================================
GOOGLE FONT
==================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================
RESET
==================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/*==================================
BACKGROUND
==================================*/

.hero{

    position:relative;
    padding:90px 0;
    overflow:hidden;
    background:#f7f9fc;

}

.hero::before{

    content:'';
    position:absolute;
    width:650px;
    height:650px;
    background:#edf4ff;
    border-radius:50%;
    top:-250px;
    right:-200px;
    z-index:0;

}

.hero::after{

    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#fff4ea;
    border-radius:50%;
    bottom:-150px;
    left:-120px;

}

/*==================================
NAVBAR
==================================*/

.navbar{

    background:#fff !important;
    border-radius:20px;
    margin:20px auto;
    width:96%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.logo{

    height:65px;

}

.nav-link{

    color:#444;
    font-weight:600;
    margin:0 10px;
    transition:.3s;

}

.nav-link:hover,
.nav-link.active{

    color:#246bff;

}

.navbar .btn{

    border-radius:50px;
    padding:11px 28px;
    font-weight:600;

}

/*==================================
LEFT SIDE
==================================*/

.hero-left{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-block;
    color:#356bff;
    font-size:36px;
    font-family:cursive;
    margin-bottom:15px;

}

.hero-heading{

    font-size:72px;
    font-weight:800;
    line-height:1;
    color:#08255d;
    margin-bottom:10px;

}

.hero-heading span{

    color:#08255d;

}

.hero-location{

    font-size:50px;
    color:#246bff;
    font-weight:800;
    margin-bottom:25px;

}

.hero-line{

    width:120px;
    height:5px;
    background:#ff8b22;
    border-radius:20px;
    margin-bottom:30px;

}

.hero-text{

    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:520px;

}

/*==================================
BUTTONS
==================================*/

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:16px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;

}

.btn-primary{

    background:#246bff;
    border:none;
    box-shadow:0 20px 35px rgba(36,107,255,.28);

}

.btn-primary:hover{

    background:#0f56e9;

}

.btn-outline-primary{

    border:2px solid #246bff;
    color:#246bff;

}

.btn-outline-primary:hover{

    background:#246bff;
    color:#fff;

}

/*==================================
FEATURE BOXES
==================================*/

.hero-features{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.feature{

    display:flex;
    align-items:center;
    background:#fff;
    padding:18px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    width:180px;
    transition:.35s;

}

.feature:hover{

    transform:translateY(-6px);

}

.feature .icon{

    width:55px;
    height:55px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;

}

.feature i{

    color:#246bff;
    font-size:24px;

}

.feature h6{

    margin:0;
    font-weight:700;
    font-size:16px;

}

.feature p{

    margin:0;
    color:#777;
    font-size:13px;

}

/*==================================
RIGHT SIDE
==================================*/

.hero-right{

    position:relative;
    min-height:700px;
    z-index:2;

}

.travel-card{

    position:absolute;
    top:20px;
    left:40px;
    z-index:5;

}

.badge-ai{

    display:inline-block;
    padding:12px 26px;
    background:linear-gradient(90deg,#256cff,#00b6ff);
    color:#fff;
    border-radius:50px;
    font-size:15px;
    margin-bottom:20px;
    font-weight:600;

}

.travel-card h1{

    font-size:86px;
    font-weight:800;
    color:#08255d;
    line-height:1;

}

.travel-card h1 span{

    color:#246bff;

}

.travel-card h2{

    font-size:74px;
    font-weight:800;
    line-height:1;
    margin-top:8px;
    background:linear-gradient(90deg,#ff8b22,#ff3d00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.travel-card h3{

    font-size:58px;
    color:#08255d;
    font-weight:700;

}


/*==================================
MAIN HERO IMAGE
==================================*/

.plane{

    position:absolute;
    width:620px;
    right:20px;
    top:180px;
    border-radius:35px;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
    z-index:2;
    transition:.5s;

}

.plane:hover{

    transform:translateY(-10px) scale(1.02);

}

/*==================================
FLOATING GLASS CARDS
==================================*/

.floating-card{

    position:absolute;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:18px;
    padding:16px 22px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#08255d;
    z-index:6;
    transition:.4s;

}

.floating-card:hover{

    transform:translateY(-8px);

}

.floating-card i{

    width:48px;
    height:48px;
    border-radius:50%;
    background:#246bff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;

}

/* Card Positions */

.card1{
 
    top:120px;
    right:-10px;

}

.card2{
 


    left:-20px;
    top:350px;

}

.card3{

 
    right:70px;
    bottom:70px;

}

/*==================================
DECORATIVE CIRCLES
==================================*/

.circle{

    position:absolute;
    border-radius:50%;
    z-index:1;

}

.circle.blue{

    width:180px;
    height:180px;
    background:#dce9ff;
    right:-40px;
    top:250px;

}

.circle.orange{

    width:130px;
    height:130px;
    background:#ffe6d0;
    left:40px;
    bottom:100px;

}

.circle.light{

    width:70px;
    height:70px;
    background:#ffffff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    right:160px;
    top:100px;

}

/*==================================
GLOW EFFECT
==================================*/

.hero-right::before{

    content:'';
    position:absolute;
    width:520px;
    height:520px;
    background:radial-gradient(circle,
    rgba(36,107,255,.18) 0%,
    rgba(36,107,255,0) 70%);
    right:50px;
    top:130px;
    z-index:0;

}

.hero-right::after{

    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:radial-gradient(circle,
    rgba(255,153,0,.18) 0%,
    rgba(255,153,0,0) 70%);
    left:80px;
    bottom:40px;

}

/*==================================
FLOATING ANIMATION
==================================*/

@keyframes float{

0%{

    transform:translateY(0px);

}

50%{

    transform:translateY(-15px);

}

100%{

    transform:translateY(0px);

}

}

.plane{

    animation:float 5s ease-in-out infinite;

}

.card1{

    animation:float 4s ease-in-out infinite;

}

.card2{

    animation:float 5s ease-in-out infinite;

}

.card3{

    animation:float 6s ease-in-out infinite;

}

/*==================================
SHADOW DECORATION
==================================*/

.travel-card{

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.08));

}

/*==================================
DECORATIVE DOTS
==================================*/

.hero::before{

    box-shadow:

    80px 120px 0 rgba(36,107,255,.05),

    180px 250px 0 rgba(255,140,0,.05),

    300px 180px 0 rgba(36,107,255,.04);

}

/*==================================
IMAGE FRAME
==================================*/

.plane{

    border:12px solid #fff;

}

/*==================================
SECTION SPACING
==================================*/

.hero{

    padding-top:110px;
    padding-bottom:90px;

}

/*==================================
TEXT SHADOW
==================================*/

.travel-card h1,
.travel-card h2,
.travel-card h3{

    text-shadow:0 15px 30px rgba(0,0,0,.08);

}

/*==================================
SMOOTH TRANSITIONS
==================================*/

.feature,
.btn,
.floating-card,
.plane,
.nav-link{

    transition:all .35s ease;

}

.stats-section{
    margin-top:-40px;
    position:relative;
    z-index:20;
    padding-bottom:80px;
}

.stats-card{
    background:#fff;
    border-radius:25px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border:1px solid #edf2f7;
}

.stats-card:hover{
    transform:translateY(-8px);
}

.stats-card i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    background:#edf4ff;
    color:#246bff;
    border-radius:50%;
    font-size:32px;
}

.stats-card h3{
    font-size:34px;
    font-weight:700;
    color:#08255d;
    margin-bottom:8px;
}

.stats-card p{
    color:#777;
    margin:0;
}


/*====================================
TABLET
====================================*/

@media (max-width:991px){

.hero{
padding:60px 0;
}

.hero-left{
text-align:center;
}

.hero-line{
margin:auto;
margin-top:20px;
margin-bottom:30px;
}

.hero-buttons{
justify-content:center;
}

.hero-features{
justify-content:center;
}

.hero-right{

min-height:500px;
margin-top:60px;

}

.travel-card{

position:relative;
left:0;
top:0;
text-align:center;

}

.travel-card h1{
font-size:58px;
}

.travel-card h2{
font-size:46px;
}

.travel-card h3{
font-size:34px;
}

.plane{

position:relative;
width:100%;
right:auto;
top:20px;

}

.card1,
.card2,
.card3{

display:none;

}

.circle{

display:none;

}

.stats-section{

margin-top:30px;

}

}

/*====================================
MOBILE
====================================*/

@media (max-width:767px){

.logo{
height:50px;
}

.navbar{
width:100%;
border-radius:0;
margin:0;
}

.hero{

padding-top:40px;

}

.hero-tag{

font-size:26px;

}

.hero-heading{

font-size:40px;

}

.hero-location{

font-size:30px;

}

.hero-text{

font-size:16px;

}

.hero-buttons .btn{

width:100%;
margin-bottom:15px;

}

.feature{

width:100%;

}

.travel-card h1{

font-size:42px;

}

.travel-card h2{

font-size:34px;

}

.travel-card h3{

font-size:26px;

}

.badge-ai{

font-size:13px;
padding:10px 18px;

}

.hero-right{

min-height:auto;

}

.plane{

margin-top:30px;
border-width:6px;

}

.stats-card{

padding:25px;

}

.stats-card h3{

font-size:28px;

}

}

/*====================================
SMALL MOBILE
====================================*/

@media (max-width:480px){

.hero-heading{

font-size:34px;

}

.hero-location{

font-size:24px;

}

.travel-card h1{

font-size:34px;

}

.travel-card h2{

font-size:28px;

}

.travel-card h3{

font-size:22px;

}

}


/*=========================================
ABOUT SECTION
=========================================*/

.about-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#eef5ff;
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    z-index: 0;
    background:#fff5e8;
    border-radius:50%;
    bottom:-120px;
    left:-80px;
}

/*=========================================
LEFT CONTENT
=========================================*/

.about-content{
    position:relative;
    z-index:2;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#edf4ff;
    color:#246bff;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.section-badge i{
    font-size:18px;
}

.about-title{
    font-size:52px;
    font-weight:800;
    color:#08255d;
    line-height:1.2;
}

.about-title span{
    color:#246bff;
}

.about-subtitle{
    margin-top:15px;
    color:#ff8a00;
    font-weight:700;
    font-size:24px;
}

.title-line{
    width:110px;
    height:5px;
    background:#246bff;
    border-radius:20px;
    margin:25px 0;
}

.about-text{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}

/*=========================================
FEATURE BOXES
=========================================*/

.about-feature{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.about-feature:hover{
    transform:translateY(-6px);
}

.about-feature i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#246bff;
    font-size:22px;
    flex-shrink:0;
}

.about-feature h6{
    margin:0;
    font-weight:700;
    color:#08255d;
}

.about-feature p{
    margin:0;
    color:#777;
    font-size:14px;
}

/*=========================================
BUTTON
=========================================*/

.about-content .btn{
    margin-top:15px;
    border-radius:50px;
    padding:15px 35px;
    font-weight:600;
    box-shadow:0 15px 30px rgba(36,107,255,.20);
}

/*=========================================
RIGHT IMAGE AREA
=========================================*/

.about-image-area{
    position:relative;
    min-height:700px;
}

.image-bg{
    position:absolute;
    width:520px;
    height:520px;
    background:linear-gradient(135deg,#246bff,#6aa8ff);
    border-radius:40px;
    transform:rotate(-8deg);
    right:20px;
    top:60px;
    z-index:1;
}

.office-image{
    position:absolute;
    width:520px;
    right:45px;
    top:35px;
    border-radius:35px;
    box-shadow:0 35px 70px rgba(0,0,0,.18);
    z-index:2;
    transition:.4s;
}

.office-image:hover{
    transform:scale(1.02);
}

/*=========================================
FLOATING WRAPPER
=========================================*/

.stats-wrapper{
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index:5;
}



/*=========================================
STATISTICS GRID
=========================================*/

.stats-grid{
    position:absolute;
    right:-10px;
    bottom:20px;
    width:420px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    z-index:10;
}

.stat-card{

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border-radius:22px;
    padding:22px;

    display:flex;
    align-items:center;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    transition:.35s;

    border:1px solid rgba(255,255,255,.7);

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.16);

}

/*=========================================
ICON
=========================================*/

.stat-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-right:18px;

    flex-shrink:0;

}

.stat-icon.blue{

    background:linear-gradient(135deg,#246bff,#4b8cff);

}

.stat-icon.orange{

    background:linear-gradient(135deg,#ff9800,#ff6b00);

}

.stat-icon.green{

    background:linear-gradient(135deg,#00c853,#2ecc71);

}

.stat-icon.purple{

    background:linear-gradient(135deg,#7c4dff,#9c6bff);

}

/*=========================================
TEXT
=========================================*/

.stat-content h3{

    margin:0;

    font-size:34px;

    font-weight:800;

    color:#08255d;

}

.stat-content p{

    margin:5px 0 0;

    color:#666;

    font-size:14px;

}

/*=========================================
BOTTOM FLOATING CARDS
=========================================*/

.bottom-info{

    position:absolute;

    left:25px;

    bottom:70px;

    display:flex;

    flex-direction:column;

    gap:18px;

    z-index:12;

}

.mini-card{

    background:#fff;

    border-radius:18px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 18px 40px rgba(0,0,0,.10);

    min-width:260px;

    transition:.35s;

}

.mini-card:hover{

    transform:translateX(8px);

}

.mini-card i{

    font-size:34px;

}

.mini-card h6{

    margin:0;

    color:#08255d;

    font-weight:700;

}

.mini-card span{

    color:#777;

    font-size:13px;

}

/*=========================================
IMAGE EFFECT
=========================================*/

.office-image{

    animation:floatImage 6s ease-in-out infinite;

}

@keyframes floatImage{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
BACKGROUND DECORATION
=========================================*/

.about-image-area::before{

content:"";

position:absolute;

width:140px;

height:140px;

background:#edf4ff;

border-radius:50%;

right:-40px;

top:20px;

z-index:0;

}

.about-image-area::after{

content:"";

position:absolute;

width:90px;

height:90px;

background:#fff2e2;

border-radius:50%;

left:40px;

bottom:30px;

z-index:0;

}

/*=========================================
SMALL DECORATIVE DOTS
=========================================*/

.stats-wrapper::before{

content:"";

position:absolute;

left:70px;

top:40px;

width:12px;

height:12px;

background:#246bff;

border-radius:50%;

box-shadow:

30px 25px #ff9800,

65px 0px #246bff,

90px 35px #ff9800,

120px 15px #246bff;

opacity:.45;

}

/*=========================================
HOVER EFFECTS
=========================================*/

.office-image,
.stat-card,
.mini-card{

transition:all .4s ease;

}


/*=========================================
SERVICES STRIP
=========================================*/

.services-strip{
    padding:80px 0;
    background:#f7f9fc;
    position:relative;
    overflow:hidden;
}

.services-strip::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#eef5ff;
    top:-220px;
    right:-180px;
}

.services-strip::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#fff5eb;
    bottom:-160px;
    left:-120px;
}

/*=========================================
SERVICE BOX
=========================================*/

.service-box{

    background:#fff;

    border-radius:22px;

    padding:30px 20px;

    text-align:center;

    height:100%;

    position:relative;

    z-index:2;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    border:1px solid #edf2f7;

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

}

.service-icon.blue{
background:linear-gradient(135deg,#246bff,#4d8dff);
}

.service-icon.orange{
background:linear-gradient(135deg,#ff9800,#ff6600);
}

.service-icon.green{
background:linear-gradient(135deg,#00c853,#36d676);
}

.service-icon.purple{
background:linear-gradient(135deg,#7c4dff,#9b73ff);
}

.service-box h5{

    font-size:19px;

    font-weight:700;

    color:#08255d;

    margin-bottom:12px;

}

.service-box p{

    color:#777;

    font-size:14px;

    line-height:1.7;

    margin:0;

}

/*=========================================
BOTTOM TEXT
=========================================*/

.service-footer{

    margin-top:30px;

    font-size:22px;

    font-weight:600;

    color:#08255d;

}

.service-footer span{

    color:#246bff;

    font-weight:700;

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

.about-section{

padding:70px 0;

}

.about-title{

font-size:42px;

}

.about-image-area{

min-height:auto;

margin-top:60px;

}

.image-bg{

position:relative;

width:100%;

height:350px;

transform:none;

right:0;

top:0;

}

.office-image{

position:absolute;

width:90%;

left:5%;

right:auto;

top:20px;

}

.stats-grid{

position:relative;

width:100%;

right:auto;

bottom:auto;

margin-top:40px;

}

.bottom-info{

position:relative;

left:auto;

bottom:auto;

margin-top:30px;

flex-direction:row;

flex-wrap:wrap;

}

.mini-card{

flex:1;

min-width:250px;

}

.services-strip{

padding:60px 0;

}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

.about-title{

font-size:34px;

}

.about-subtitle{

font-size:20px;

}

.about-text{

font-size:15px;

}

.about-content{

text-align:center;

}

.title-line{

margin:20px auto;

}

.section-badge{

font-size:13px;

}

.about-content .btn{

width:100%;

}

.image-bg{

height:260px;

}

.office-image{

position:absolute;

width:92%;

left:4%;

top:15px;

border-radius:25px;

}

.stats-grid{

grid-template-columns:1fr;

gap:15px;

margin-top:25px;

}

.stat-card{

padding:18px;

}

.stat-content h3{

font-size:28px;

}

.bottom-info{

flex-direction:column;

}

.mini-card{

min-width:100%;

}

.service-box{

padding:25px 18px;

}

.service-icon{

width:70px;

height:70px;

font-size:28px;

}

.service-box h5{

font-size:17px;

}

.service-footer{

font-size:18px;

}

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

.about-section{

padding:50px 0;

}

.about-title{

font-size:28px;

}

.about-subtitle{

font-size:18px;

}

.about-feature{

padding:15px;

}

.about-feature i{

width:45px;

height:45px;

font-size:18px;

}

.stat-icon{

width:55px;

height:55px;

font-size:22px;

}

.service-icon{

width:60px;

height:60px;

font-size:24px;

}

.service-footer{

font-size:16px;

}

}

/*=========================================
ANIMATIONS
=========================================*/

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.about-content,
.about-image-area,
.service-box{

animation:fadeUp .8s ease both;

}


/*=====================================================
PRIZE SECTION
=====================================================*/

.prize-section{
    padding:100px 0;
    background:#f8faff;
    position:relative;
    overflow:hidden;
}

.prize-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#eef5ff;
    top:-220px;
    left:-180px;
}

.prize-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#fff4ea;
    right:-120px;
    bottom:-150px;
}

/*=====================================================
LEFT SIDE
=====================================================*/

.prize-content{
    position:relative;
    z-index:5;
}

.prize-title{
    font-size:58px;
    font-weight:800;
    color:#071d4b;
    line-height:1.1;
}

.prize-title span{
    color:#ff6b00;
}

.prize-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

.build-text{
    margin-top:25px;
    color:#246bff;
    font-weight:700;
}

.stars{
    color:#ff9800;
    font-size:18px;
    letter-spacing:8px;
}

/*=====================================================
RIGHT SIDE
=====================================================*/

.prize-wrapper{
    position:relative;
    min-height:560px;
}

.prize-dots{
    position:absolute;
    top:0;
    left:120px;
    display:grid;
    grid-template-columns:repeat(3,10px);
    gap:12px;
}

.prize-dots span{
    width:8px;
    height:8px;
    background:#b7cdfd;
    border-radius:50%;
}

/*=====================================================
PRIZE CARD
=====================================================*/

.prize-card{

    position:relative;

    background:#fff;

    border-radius:30px;

    text-align:center;

    padding:30px 25px;

    border:1px solid #d9e6ff;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}

.prize-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.14);

}

.prize-card.first{

    transform:translateY(-30px);

    border:2px solid #b9d1ff;

}

.prize-card.first:hover{

    transform:translateY(-40px);

}

.prize-card.second,
.prize-card.third{

    margin-top:70px;

}

/*=====================================================
POSITION BADGE
=====================================================*/

.position-badge{

    width:58px;
    height:58px;

    border-radius:50%;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

}

.gold{

    background:linear-gradient(180deg,#ffd84a,#ff9800);

}

.silver{

    background:linear-gradient(180deg,#d6d6d6,#8f8f8f);

}

.bronze{

    background:linear-gradient(180deg,#ffb05b,#d66a00);

}

/*=====================================================
RANK
=====================================================*/

.prize-rank{

    display:inline-block;

    background:#fff2e6;

    color:#ff6b00;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

/*=====================================================
TROPHY
=====================================================*/

.trophy-img{

    width:180px;

    margin:10px auto 20px;

    display:block;

    transition:.4s;

}

.prize-card:hover .trophy-img{

    transform:scale(1.08);

}

/*=====================================================
AMOUNT
=====================================================*/

.amount{

    background:linear-gradient(90deg,#1f4fff,#153ed3);

    color:#fff;

    font-size:28px;

    font-weight:700;

    padding:14px;

    border-radius:16px;

    margin:20px 0;

    box-shadow:0 12px 25px rgba(20,70,255,.25);

}

/*=====================================================
LIST
=====================================================*/

.prize-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.prize-card li{

    color:#08255d;

    margin:10px 0;

    font-size:16px;

}

.prize-card li::before{

    content:"+ ";

    color:#246bff;

    font-weight:700;

}

/*=====================================================
CONFETTI
=====================================================*/

.confetti span{

    position:absolute;

    width:8px;

    height:8px;

    border-radius:2px;

    animation:floatConfetti 4s linear infinite;

}

.confetti span:nth-child(1){

    background:#ff9800;

    left:20px;

    top:60px;

}

.confetti span:nth-child(2){

    background:#4caf50;

    right:30px;

    top:90px;

}

.confetti span:nth-child(3){

    background:#ff4f81;

    left:45px;

    bottom:140px;

}

.confetti span:nth-child(4){

    background:#246bff;

    right:55px;

    bottom:120px;

}

.confetti span:nth-child(5){

    background:#ffc107;

    left:80px;

    top:140px;

}

.confetti span:nth-child(6){

    background:#7c4dff;

    right:80px;

    top:150px;

}

@keyframes floatConfetti{

0%{

transform:translateY(0) rotate(0deg);

}

50%{

transform:translateY(-12px) rotate(180deg);

}

100%{

transform:translateY(0) rotate(360deg);

}

}



/*=====================================================
BENEFITS STRIP
=====================================================*/

.benefits-strip{
    margin-top:70px;
    background:#fff;
    border-radius:30px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
    z-index:5;
}

.benefits-strip::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#246bff,#00b7ff,#ff9800);
}

/*=====================================================
BENEFIT ITEM
=====================================================*/

.benefit-item{

    display:flex;
    align-items:center;
    gap:15px;

    padding:20px;

    height:100%;

    border-right:1px solid #edf2f7;

    transition:.35s;

}

.benefit-item:last-child{

    border-right:none;

}

.benefit-item:hover{

    transform:translateY(-8px);

}

/*=====================================================
ICON
=====================================================*/

.benefit-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.benefit-icon.blue{
    background:linear-gradient(135deg,#246bff,#5b95ff);
}

.benefit-icon.orange{
    background:linear-gradient(135deg,#ff9800,#ff6b00);
}

.benefit-icon.green{
    background:linear-gradient(135deg,#00c853,#35d67a);
}

/*=====================================================
TEXT
=====================================================*/

.benefit-item h6{

    margin:0 0 8px;

    font-size:15px;

    font-weight:700;

    color:#08255d;

    letter-spacing:.4px;

}

.benefit-item p{

    margin:0;

    color:#666;

    line-height:1.6;

    font-size:14px;

}

/*=====================================================
HOVER EFFECT
=====================================================*/

.benefit-item:hover .benefit-icon{

    transform:rotate(10deg) scale(1.08);

}

.benefit-icon{

    transition:.35s;

}

/*=====================================================
LIGHT BACKGROUND
=====================================================*/

.benefits-strip::after{

    content:'';

    position:absolute;

    width:240px;
    height:240px;

    border-radius:50%;

    background:rgba(36,107,255,.05);

    right:-120px;
    bottom:-120px;

}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px){

.benefit-item{

border-right:none;

border-bottom:1px solid #edf2f7;

}

.benefit-item:last-child{

border-bottom:none;

}

}

@media(max-width:767px){

.benefits-strip{

padding:15px;

border-radius:20px;

}

.benefit-item{

padding:18px 10px;

}

.benefit-icon{

width:55px;
height:55px;
font-size:22px;

}

.benefit-item h6{

font-size:14px;

}

.benefit-item p{

font-size:13px;

}

}



/*==================================================
IMPORTANT INFORMATION SECTION
==================================================*/

.info-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.info-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#eef5ff;
    top:-220px;
    right:-200px;
}

.info-section::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#fff4ea;
    left:-120px;
    bottom:-120px;
}

/*===================================
LEFT CONTENT
===================================*/

.info-left{
    position:sticky;
    top:100px;
}

.info-title{

    font-size:54px;

    font-weight:800;

    color:#08255d;

    line-height:1.2;

}

.info-title span{

    color:#246bff;

}

.info-text{

    color:#666;

    line-height:1.9;

    margin:25px 0;

    font-size:17px;

}

/*===================================
TRAVEL KIT IMAGE
===================================*/

.travel-kit{

    max-width:100%;

    margin-top:30px;

    animation:floatKit 5s ease-in-out infinite;

}

@keyframes floatKit{

0%{transform:translateY(0);}

50%{transform:translateY(-12px);}

100%{transform:translateY(0);}

}

/*===================================
INFO CARD
===================================*/

.info-card{

    background:#fff;

    border-radius:24px;

    padding:30px 22px;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #edf2f7;

    position:relative;

    overflow:hidden;

}

.info-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.info-card::before{

    content:'';

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#246bff,#00b6ff);

}

/*===================================
ICON
===================================*/

.info-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:20px;

}

.info-icon.blue{

    background:linear-gradient(135deg,#246bff,#5f97ff);

}

.info-icon.orange{

    background:linear-gradient(135deg,#ff9800,#ff6b00);

}

.info-icon.green{

    background:linear-gradient(135deg,#00c853,#33d67a);

}

.info-icon.purple{

    background:linear-gradient(135deg,#7c4dff,#9a6cff);

}

/*===================================
TEXT
===================================*/

.info-card h6{

    color:#888;

    font-size:13px;

    margin-bottom:10px;

    letter-spacing:.6px;

    font-weight:700;

}

.info-card h3{

    color:#08255d;

    font-size:28px;

    font-weight:800;

    margin-bottom:10px;

}

.info-card h5{

    color:#246bff;

    font-size:18px;

    font-weight:700;

    margin-bottom:12px;

}

.info-card p{

    margin:0;

    color:#666;

    line-height:1.7;

    font-size:15px;

}

/*===================================
ICON HOVER
===================================*/

.info-card:hover .info-icon{

    transform:rotate(8deg) scale(1.1);

}

.info-icon{

    transition:.35s;

}

/*===================================
GRID GAP
===================================*/

.info-section .row.g-4{

    --bs-gutter-y:1.8rem;

}

/*===================================
TABLET
===================================*/

@media(max-width:991px){

.info-left{

position:relative;

top:0;

margin-bottom:40px;

text-align:center;

}

.info-title{

font-size:42px;

}

.travel-kit{

max-width:320px;

}

}

/*===================================
MOBILE
===================================*/

@media(max-width:767px){

.info-section{

padding:70px 0;

}

.info-title{

font-size:34px;

}

.info-text{

font-size:15px;

}

.info-card{

padding:22px;

}

.info-card h3{

font-size:22px;

}

.info-card h5{

font-size:16px;

}

.info-icon{

width:60px;
height:60px;
font-size:24px;

}

.travel-kit{

max-width:250px;

margin:auto;
display:block;

}

}

/*===================================
SMALL MOBILE
===================================*/

@media(max-width:480px){

.info-title{

font-size:28px;

}

.info-card{

padding:20px;

}

.info-card h3{

font-size:20px;

}

.info-card p{

font-size:14px;

}

.info-icon{

width:55px;
height:55px;
font-size:22px;

}

}


/*=========================================================
SPONSOR SECTION
=========================================================*/

.sponsor-section{
    position:relative;
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

.sponsor-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#eef5ff;
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.sponsor-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#fff4e8;
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

/*=========================================================
LEFT CONTENT
=========================================================*/

.sponsor-content{
    position:relative;
    z-index:5;
}

.sponsor-title{

    font-size:56px;
    font-weight:800;
    line-height:1.15;
    color:#08255d;

}

.sponsor-title span{

    color:#246bff;

}

.sponsor-text{

    color:#666;
    line-height:1.9;
    font-size:17px;

}

/*=========================================================
RIGHT HERO
=========================================================*/

.sponsor-hero{

    position:relative;
    min-height:420px;

}

/*=========================================================
WORLD MAP
=========================================================*/

.world-map{

    position:absolute;

    inset:0;

    background:url("../images/sponsors/world-map.png")
    center center no-repeat;

    background-size:85%;

    opacity:.12;

}

/*=========================================================
AIRPLANE
=========================================================*/

.airplane{

    position:absolute;

    width:420px;

    top:20px;

    right:40px;

    animation:planeMove 5s ease-in-out infinite;

    z-index:4;

}

@keyframes planeMove{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*=========================================================
SUITCASE
=========================================================*/

.travel-bag{

    position:absolute;

    width:120px;

    left:80px;

    bottom:30px;

    animation:bagFloat 6s ease-in-out infinite;

}

@keyframes bagFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/*=========================================================
LOCATION PIN
=========================================================*/

.location-pin{

    position:absolute;

    width:55px;

    right:150px;

    top:130px;

    animation:pinBounce 2.5s infinite;

}

@keyframes pinBounce{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

/*=========================================================
CLOUDS
=========================================================*/

.cloud{

    position:absolute;

    background:#fff;

    border-radius:60px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.cloud::before{

    content:"";

    position:absolute;

    background:#fff;

    border-radius:50%;

}

.cloud1{

    width:80px;
    height:32px;

    top:40px;
    left:80px;

}

.cloud1::before{

    width:35px;
    height:35px;

    left:10px;
    top:-15px;

}

.cloud2{

    width:90px;
    height:36px;

    top:140px;
    right:20px;

}

.cloud2::before{

    width:40px;
    height:40px;

    left:18px;
    top:-18px;

}

.cloud3{

    width:70px;
    height:30px;

    bottom:90px;
    left:180px;

}

.cloud3::before{

    width:30px;
    height:30px;

    left:12px;
    top:-12px;

}

/*=========================================================
TITLE SPONSOR CARD
=========================================================*/

.title-sponsor-card{

    margin-top:70px;

    background:#fff;

    border-radius:30px;

    padding:35px;

    position:relative;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    overflow:hidden;

}

.title-sponsor-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:6px;

    background:linear-gradient(90deg,#246bff,#00b7ff,#ff9800);

}

/*=========================================================
LABEL
=========================================================*/

.title-label{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(90deg,#246bff,#4d8dff);

    color:#fff;

    padding:10px 28px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

}

.title-label i{

    margin:0 8px;

    color:#ffd54f;

}

/*=========================================================
LOGO
=========================================================*/

.logo-box{

    background:#f8fbff;

    border:2px dashed #d9e6ff;

    border-radius:20px;

    padding:25px;

    text-align:center;

}

.logo-box img{

    max-height:90px;

}

/*=========================================================
TITLE CONTENT
=========================================================*/

.title-content h4{

    font-size:26px;

    font-weight:700;

    color:#08255d;

}

.title-content p{

    color:#666;

    line-height:1.8;

}

/*=========================================================
FEATURES
=========================================================*/

.title-feature{

    display:flex;

    gap:12px;

    align-items:flex-start;

    padding-left:20px;

    border-left:1px solid #edf2f7;

}

.feature-icon{

    width:48px;

    height:48px;

    background:#edf4ff;

    color:#246bff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.title-feature h6{

    margin:0;

    color:#08255d;

    font-weight:700;

}

.title-feature p{

    margin:4px 0 0;

    color:#777;

    font-size:13px;

}

/*=========================================================
SPONSOR CATEGORY
=========================================================*/

.sponsor-category{
    background:#fff;
    border-radius:28px;
    padding:30px;
    height:100%;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.sponsor-category:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.15);
}

.sponsor-category::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
}

/*=========================================================
CATEGORY TITLE
=========================================================*/

.category-title{

    text-align:center;

    padding:14px;

    border-radius:40px;

    color:#fff;

    font-size:15px;

    font-weight:700;

    margin-bottom:30px;

    letter-spacing:.5px;

}

.category-title i{

    margin:0 8px;

}

/*=========================================================
COLORS
=========================================================*/

.category-title.platinum{
    background:linear-gradient(90deg,#00b4db,#0083b0);
}

.sponsor-category:has(.platinum)::before{
    background:linear-gradient(90deg,#00b4db,#0083b0);
}

.category-title.gold{
    background:linear-gradient(90deg,#ffb300,#ff7b00);
}

.sponsor-category:has(.gold)::before{
    background:linear-gradient(90deg,#ffb300,#ff7b00);
}

.category-title.silver{
    background:linear-gradient(90deg,#9ea7b8,#6b7280);
}

.sponsor-category:has(.silver)::before{
    background:linear-gradient(90deg,#9ea7b8,#6b7280);
}

/*=========================================================
LOGO GRID
=========================================================*/

.logo-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

/*=========================================================
LOGO CARD
=========================================================*/

.logo-item{

    background:#f8fbff;

    border:1px solid #edf2f7;

    border-radius:18px;
 height: 310px !important;


  

    align-items:center;

    justify-content:center;

    padding:18px;

    transition:.35s;

}

.logo-item:hover{

    background:#fff;

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.logo-item img{

    max-width:100%;

    max-height:320px !important;

    object-fit:contain;

    filter:grayscale(100%);

    transition:.35s;

}

.logo-item:hover img{

    filter:grayscale(0);

    transform:scale(1.08);

}

/*=========================================================
CATEGORY DECORATION
=========================================================*/

.sponsor-category::after{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    border-radius:50%;

    background:rgba(36,107,255,.05);

    right:-80px;

    bottom:-80px;

}

/*=========================================================
SECTION SPACING
=========================================================*/

.sponsor-section .row.mt-5{

    margin-top:70px !important;

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.logo-grid{

grid-template-columns:repeat(2,1fr);

}

.sponsor-category{

margin-bottom:30px;

}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.logo-grid{

grid-template-columns:1fr;

}

.logo-item{

height:100px;

}

.logo-item img{

max-height:45px;

}

.category-title{

font-size:14px;

padding:12px;

}

}

.sponsor-platinum::before{
    background:linear-gradient(90deg,#00b4db,#0083b0);
}

.sponsor-gold::before{
    background:linear-gradient(90deg,#ffb300,#ff7b00);
}

.sponsor-silver::before{
    background:linear-gradient(90deg,#9ea7b8,#6b7280);
}


/*=========================================================
SUPPORTING & COMMUNITY PARTNERS
=========================================================*/

.partner-box{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.partner-box:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.14);
}

.partner-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#246bff,#00b7ff);
}

.partner-title{
    display:inline-block;
    padding:12px 24px;
    border-radius:40px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    margin-bottom:30px;
}

.partner-title.supporting{
    background:linear-gradient(90deg,#246bff,#4b8cff);
}

.partner-title.community{
    background:linear-gradient(90deg,#ff9800,#ff6b00);
}

/*=========================================================
PARTNER GRID
=========================================================*/

.partner-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.partner-logo{
    height:110px;
    border-radius:18px;
    background:#f8fbff;
    border:1px solid #edf2f7;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    transition:.35s;
}

.partner-logo:hover{
    background:#fff;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.partner-logo img{
    max-width:100%;
    max-height:45px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.35s;
}

.partner-logo:hover img{
    filter:none;
    transform:scale(1.08);
}

/*=========================================================
CTA SECTION
=========================================================*/

.sponsor-cta{
    margin-top:70px;
    background:linear-gradient(135deg,#246bff,#0f56e9);
    border-radius:35px;
    padding:45px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.sponsor-cta::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-120px;
    top:-120px;
}

.sponsor-cta::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-70px;
    bottom:-70px;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:20px;
    position:relative;
    z-index:2;
}

.cta-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    flex-shrink:0;
}

.cta-left h4{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
}

.cta-left p{
    margin:0;
    color:rgba(255,255,255,.9);
    line-height:1.8;
}

/*=========================================================
CTA BUTTONS
=========================================================*/

.cta-buttons{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

.cta-buttons .btn{
    padding:15px 28px;
    border-radius:50px;
    font-weight:600;
}

.btn-gradient{
    background:linear-gradient(90deg,#ff9800,#ff6b00);
    color:#fff;
    border:none;
    box-shadow:0 15px 30px rgba(255,107,0,.25);
}

.btn-gradient:hover{
    background:linear-gradient(90deg,#ff8a00,#ff5500);
    color:#fff;
    transform:translateY(-3px);
}

.cta-buttons .btn-outline-primary{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.cta-buttons .btn-outline-primary:hover{
    background:#fff;
    color:#246bff;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.sponsor-title{
    font-size:42px;
}

.sponsor-content{
    text-align:center;
    margin-bottom:40px;
}

.sponsor-hero{
    min-height:300px;
}

.airplane{
    width:280px;
    right:20px;
}

.travel-bag{
    width:80px;
    left:20px;
}

.location-pin{
    width:40px;
}

.partner-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta-left{
    flex-direction:column;
    text-align:center;
}

.cta-buttons{
    justify-content:center;
    margin-top:30px;
}

.title-feature{
    border-left:none;
    padding-left:0;
    margin-top:25px;
}

}

@media(max-width:767px){

.sponsor-section{
    padding:70px 0;
}

.sponsor-title{
    font-size:34px;
}

.sponsor-text{
    font-size:15px;
}

.title-sponsor-card{
    padding:25px;
}

.logo-box{
    margin-bottom:25px;
}

.partner-grid{
    grid-template-columns:1fr;
}

.partner-logo{
    height:90px;
}

.partner-logo img{
    max-height:40px;
}

.sponsor-cta{
    padding:30px 20px;
}

.cta-left h4{
    font-size:24px;
}

.cta-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.cta-buttons .btn{
    width:100%;
}

.airplane{
    width:220px;
    right:0;
}

.travel-bag,
.location-pin,
.cloud{
    display:none;
}

}

@media(max-width:480px){

.sponsor-title{
    font-size:28px;
}

.partner-box{
    padding:22px;
}

.partner-title{
    font-size:13px;
    padding:10px 18px;
}

.cta-left h4{
    font-size:20px;
}

.cta-left p{
    font-size:14px;
}

}

/*=========================================================
IMPORTANT DATES & RULES
=========================================================*/

.dates-rules-section{
    padding:100px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.dates-rules-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#eef5ff;
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.dates-rules-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#fff4e8;
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

/*=========================================================
SECTION TITLE
=========================================================*/

.section-title{
    margin-bottom:70px;
}

.section-title h2{

    font-size:60px;
    font-weight:800;
    color:#08255d;

}

.section-title h2 span{

    color:#ff6b00;

}

.section-title h2 i{

    color:#246bff;
    margin:0 12px;
    font-size:48px;

}

.section-title p{

    font-size:20px;
    color:#666;
    margin-top:20px;

}

.title-divider{

    margin-top:25px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

}

.title-divider span{

    width:12px;
    height:12px;
    border-radius:50%;
    background:#c8d9ff;

}

.title-divider span.active{

    width:70px;
    height:6px;
    border-radius:50px;
    background:#246bff;

}

/*=========================================================
TIMELINE BOX
=========================================================*/

.timeline-box{

    background:#fff;

    border-radius:28px;

    padding:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.timeline-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#246bff,#00b7ff);

}

/*=========================================================
BOX TITLE
=========================================================*/

.box-title{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 24px;

    background:#edf4ff;

    border-radius:50px;

    color:#246bff;

    font-weight:700;

    font-size:18px;

    margin-bottom:35px;

}

.box-title i{

    font-size:24px;

}

/*=========================================================
TIMELINE
=========================================================*/

.timeline{

    position:relative;

    padding-left:35px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:30px;

    top:20px;

    bottom:20px;

    width:3px;

    background:#d9e6ff;

}

/*=========================================================
TIMELINE ITEM
=========================================================*/

.timeline-item{

    position:relative;

    display:flex;

    margin-bottom:35px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

/*=========================================================
ICON
=========================================================*/

.timeline-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:26px;

    position:absolute;

    left:-35px;

    z-index:5;

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.timeline-icon.blue{

    background:linear-gradient(135deg,#246bff,#4b8cff);

}

.timeline-icon.orange{

    background:linear-gradient(135deg,#ff9800,#ff6b00);

}

.timeline-icon.purple{

    background:linear-gradient(135deg,#7c4dff,#9b73ff);

}

/*=========================================================
CONTENT
=========================================================*/

.timeline-content{

    margin-left:55px;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px dashed #e7edf7;

    padding-bottom:25px;

}

.timeline-item:last-child .timeline-content{

    border-bottom:none;

    padding-bottom:0;

}

.timeline-left{

    width:55%;

}

.timeline-left h5{

    font-size:20px;

    font-weight:700;

    color:#08255d;

    margin-bottom:8px;

}

.timeline-left h4{

    font-size:28px;

    font-weight:800;

    color:#246bff;

}

.timeline-right{

    width:40%;

    color:#666;

    line-height:1.7;

    font-size:15px;

}

/*=========================================================
NOTE
=========================================================*/

.timeline-note{

    margin-top:40px;

    background:#f6f9ff;

    border:1px solid #dce8ff;

    border-radius:18px;

    padding:18px 22px;

    color:#246bff;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:12px;

}

.timeline-note i{

    font-size:24px;

}

/*=========================================================
RULES BOX
=========================================================*/

.rules-box{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.rules-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff9800,#ff6b00);
}

/*=========================================================
RULES TITLE
=========================================================*/

.box-title.rules{
    background:#fff4ea;
    color:#ff6b00;
}

/*=========================================================
RULE LIST
=========================================================*/

.rules-list{
    margin-top:15px;
}

/*=========================================================
RULE ITEM
=========================================================*/

.rule-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px 0;
    border-bottom:1px dashed #e8edf6;
    transition:.35s;
}

.rule-item:last-child{
    border-bottom:none;
}

.rule-item:hover{
    transform:translateX(8px);
}

/*=========================================================
RULE ICON
=========================================================*/

.rule-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#ff9800,#ff6b00);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:24px;
    box-shadow:0 12px 25px rgba(255,107,0,.25);
    transition:.35s;
}

.rule-item:hover .rule-icon{
    transform:rotate(8deg) scale(1.08);
}

/*=========================================================
RULE CONTENT
=========================================================*/

.rule-content{
    flex:1;
}

.rule-content h5{
    margin:0 0 10px;
    color:#08255d;
    font-size:20px;
    font-weight:700;
}

.rule-content p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.rule-content strong{
    color:#246bff;
}

/*=========================================================
DECORATION
=========================================================*/

.rules-box::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,152,0,.05);
    border-radius:50%;
    right:-80px;
    bottom:-80px;
}

/*=========================================================
HOVER EFFECT
=========================================================*/

.rule-item:hover .rule-content h5{
    color:#ff6b00;
}

/*=========================================================
SMALL ANIMATION
=========================================================*/

@keyframes fadeRule{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.rule-item{
    animation:fadeRule .5s ease;
}

/*=========================================================
CONTACT BAR
=========================================================*/

.contact-bar{
    margin-top:70px;
    background:linear-gradient(135deg,#246bff,#0f56e9);
    border-radius:35px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.contact-bar::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-100px;
    top:-100px;
}

.contact-bar::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-80px;
    bottom:-80px;
}

/*=========================================================
FAQ INFO
=========================================================*/

.faq-info{
    display:flex;
    align-items:center;
    gap:20px;
    position:relative;
    z-index:2;
}

.faq-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    flex-shrink:0;
}

.faq-info h4{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
}

.faq-info p{
    margin:0;
    color:rgba(255,255,255,.90);
    line-height:1.8;
}

/*=========================================================
RIGHT AREA
=========================================================*/

.contact-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

/*=========================================================
EMAIL
=========================================================*/

.contact-email{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    border-radius:50px;
    padding:14px 24px;
}

.contact-email i{
    font-size:22px;
    color:#fff;
}

.contact-email a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}

.contact-email a:hover{
    color:#ffe082;
}

/*=========================================================
BUTTONS
=========================================================*/

.contact-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.contact-buttons .btn{
    border-radius:50px;
    padding:14px 28px;
    font-weight:600;
}

.contact-buttons .btn-outline-primary{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.contact-buttons .btn-outline-primary:hover{
    background:#fff;
    color:#246bff;
}

.contact-buttons .btn-primary{
    background:#ff9800;
    border:none;
    box-shadow:0 15px 30px rgba(255,152,0,.25);
}

.contact-buttons .btn-primary:hover{
    background:#ff7b00;
}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.section-title h2{
    font-size:42px;
}

.timeline-content{
    flex-direction:column;
    align-items:flex-start;
}

.timeline-left,
.timeline-right{
    width:100%;
}

.timeline-right{
    margin-top:12px;
}

.contact-bar{
    text-align:center;
}

.faq-info{
    flex-direction:column;
    margin-bottom:30px;
}

.contact-right{
    justify-content:center;
}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.dates-rules-section{
    padding:70px 0;
}

.section-title h2{
    font-size:32px;
}

.section-title h2 i{
    display:none;
}

.section-title p{
    font-size:16px;
}

.timeline-box,
.rules-box{
    padding:25px;
}

.timeline{
    padding-left:22px;
}

.timeline::before{
    left:18px;
}

.timeline-icon{
    width:48px;
    height:48px;
    left:-24px;
    font-size:20px;
}

.timeline-content{
    margin-left:40px;
}

.timeline-left h5{
    font-size:16px;
}

.timeline-left h4{
    font-size:22px;
}

.timeline-right{
    font-size:14px;
}

.rule-item{
    gap:14px;
}

.rule-icon{
    width:48px;
    height:48px;
    font-size:20px;
}

.rule-content h5{
    font-size:17px;
}

.rule-content p{
    font-size:14px;
}

.contact-bar{
    padding:30px 20px;
}

.faq-icon{
    width:65px;
    height:65px;
    font-size:28px;
}

.faq-info h4{
    font-size:22px;
}

.contact-email{
    width:100%;
    justify-content:center;
}

.contact-buttons{
    width:100%;
}

.contact-buttons .btn{
    width:100%;
}

}

/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:480px){

.section-title h2{
    font-size:28px;
}

.timeline-left h4{
    font-size:20px;
}

.timeline-note{
    font-size:14px;
}

.contact-email{
    padding:12px 18px;
}

.contact-email a{
    font-size:14px;
    word-break:break-word;
}

}



/*=========================================================
FOOTER CTA
=========================================================*/

.footer-cta{
    padding:90px 0 40px;
    background:#f8fbff;
    position:relative;
}

.cta-card{

    background:#fff;

    border-radius:30px;

    padding:45px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.cta-card::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:#eef5ff;

    left:-120px;

    top:-120px;

}

.cta-card::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:#fff4ea;

    right:-100px;

    bottom:-100px;

}

/*=========================================================
LEFT
=========================================================*/

.cta-left{

    display:flex;

    align-items:center;

    gap:25px;

    position:relative;

    z-index:2;

}

.rocket-icon{

    width:110px;

    height:110px;

    border-radius:50%;

    background:#edf4ff;

    color:#246bff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:52px;

    flex-shrink:0;

    animation:rocketFloat 4s ease-in-out infinite;

}

@keyframes rocketFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

.cta-content h2{

    font-size:46px;

    font-weight:800;

    color:#08255d;

    line-height:1.2;

}

.cta-content h2 span{

    color:#ff6b00;

}

.cta-content h2 .blue{

    color:#246bff;

}

.cta-content p{

    margin:18px 0;

    color:#666;

    font-size:18px;

}

.cta-tags{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta-tags span{

    font-weight:700;

    font-size:20px;

}

.cta-tags span:nth-child(1){

    color:#246bff;

}

.cta-tags span:nth-child(2){

    color:#ff6b00;

}

.cta-tags span:nth-child(3){

    color:#7c4dff;

}

/*=========================================================
RIGHT BOXES
=========================================================*/

.cta-box{

    text-align:center;

    padding:20px;

    border-left:1px solid #edf2f7;

    position:relative;

    z-index:2;

}

.cta-box-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#edf4ff;

    color:#246bff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:34px;

    margin-bottom:20px;

}

.cta-box h4{

    color:#08255d;

    font-weight:700;

    margin-bottom:10px;

}

.cta-box p{

    color:#666;

    margin-bottom:20px;

    line-height:1.7;

}

.cta-box .btn{

    border-radius:50px;

    padding:14px 28px;

    font-weight:600;

}

.cta-box .btn-primary{

    background:#246bff;

    border:none;

}

.cta-box .btn-primary:hover{

    background:#0f56e9;

}

.cta-box .btn-outline-primary:hover{

    color:#fff;

    background:#246bff;

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.cta-left{

flex-direction:column;

text-align:center;

margin-bottom:35px;

}

.cta-box{

border-left:none;

border-top:1px solid #edf2f7;

padding-top:35px;

margin-top:20px;

}

.cta-content h2{

font-size:36px;

}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.footer-cta{

padding:60px 0 30px;

}

.cta-card{

padding:25px;

}

.rocket-icon{

width:80px;

height:80px;

font-size:36px;

}

.cta-content h2{

font-size:28px;

}

.cta-content p{

font-size:15px;

}

.cta-tags{

justify-content:center;

}

.cta-tags span{

font-size:17px;

}

.cta-box{

padding:25px 0;

}

.cta-box .btn{

width:100%;

}

}



/*==============================
SIMPLE FOOTER
==============================*/

.simple-footer{

background:#fff;

padding:60px 0 25px;

border-top:1px solid #e9eef7;

}

.footer-logo{

height:65px;

margin-bottom:15px;

}

.footer-desc{

color:#6b7280;

line-height:1.8;

font-size:15px;

margin:0;

}

.footer-menu{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

list-style:none;

padding:0;

margin:0;

}

.footer-menu li{

list-style:none;

}

.footer-menu a{

text-decoration:none;

color:#1f2937;

font-weight:600;

transition:.3s;

}

.footer-menu a:hover{

color:#246bff;

}

.footer-contact-small{

display:flex;

flex-direction:column;

gap:10px;

margin-bottom:20px;

}

.footer-contact-small a{

text-decoration:none;

color:#374151;

font-size:15px;

}

.footer-contact-small i{

color:#246bff;

margin-right:8px;

}

.footer-social-small{

display:flex;

justify-content:flex-end;

gap:12px;

}

.footer-social-small a{

width:42px;

height:42px;

border-radius:50%;

background:#f3f6fb;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

color:#246bff;

transition:.3s;

}

.footer-social-small a:hover{

background:#246bff;

color:#fff;

transform:translateY(-4px);

}

.simple-footer hr{

margin:35px 0 20px;

border-color:#e5e7eb;

}

.footer-bottom-small{

font-size:14px;

color:#6b7280;

}

.footer-bottom-small a{

text-decoration:none;

color:#246bff;

margin-left:10px;

}

.footer-bottom-small a:hover{

text-decoration:underline;

}

@media(max-width:991px){

.footer-menu{

margin:30px 0;

}

.footer-contact-small{

align-items:center;

}

.footer-social-small{

justify-content:center;

margin-top:15px;

}

.footer-bottom-small{

text-align:center;

}

.footer-bottom-small .text-md-end{

margin-top:12px;

text-align:center !important;

}

}

@media(max-width:767px){

.simple-footer{

padding:40px 0 20px;

}

.footer-logo{

height:55px;

}

.footer-menu{

gap:12px;

}

.footer-menu a{

font-size:14px;

}

.footer-contact-small a{

font-size:14px;

}

}
/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.footer-about,
.footer-links,
.footer-social{
    margin-bottom:40px;
}

.footer-logo{
    max-width:180px;
}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.main-footer{
    padding:60px 0 30px;
}

.footer-links h4,
.footer-social h4{
    font-size:20px;
}

.newsletter-top{
    flex-direction:column;
    text-align:center;
}

.newsletter-icon{
    margin:auto;
}

.social-icons{
    justify-content:center;
}

.newsletter-form .input-group{
    flex-direction:column;
}

.newsletter-form .form-control{
    border-radius:50px;
    margin-bottom:12px;
}

.newsletter-form .btn{
    border-radius:50px;
    width:100%;
    height:50px;
}

}


/*=========================================================
FOOTER BOTTOM
=========================================================*/

.footer-bottom{
    margin-top:70px;
    padding-top:35px;
    border-top:1px solid rgba(255,255,255,.10);
    position:relative;
    z-index:2;
}

/*=========================================================
PRIVACY BOX
=========================================================*/

.privacy-box{

    display:flex;
    align-items:center;
    gap:18px;

}

.privacy-box i{

    width:60px;
    height:60px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#4b8cff;

    font-size:28px;

    flex-shrink:0;

}

.privacy-box h5{

    margin-bottom:6px;

    font-weight:700;

    color:#fff;

}

.privacy-box p{

    margin:0;

    color:rgba(255,255,255,.70);

    line-height:1.8;

}

.privacy-box a{

    color:#4b8cff;

    text-decoration:none;

}

.privacy-box a:hover{

    color:#fff;

}

/*=========================================================
COPYRIGHT
=========================================================*/

.copyright{

    text-align:center;

}

.copyright p{

    margin-bottom:8px;

    color:#fff;

    font-size:17px;

}

.copyright strong{

    color:#4b8cff;

}

.copyright span{

    color:rgba(255,255,255,.65);

    font-size:14px;

}

/*=========================================================
GREEN HOSTING
=========================================================*/

.green-host{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:18px;

}

.green-host i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#57d163;

    font-size:28px;

    flex-shrink:0;

}

.green-host h5{

    margin-bottom:6px;

    color:#fff;

    font-weight:700;

}

.green-host p{

    margin:0;

    color:rgba(255,255,255,.70);

}

.green-host span{

    color:#57d163;

    font-weight:700;

}

/*=========================================================
BACK TO TOP
=========================================================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:#246bff;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:24px;

    box-shadow:0 15px 35px rgba(36,107,255,.35);

    z-index:999;

    transition:.35s;

}

.back-top:hover{

    background:#0f56e9;

    color:#fff;

    transform:translateY(-6px);

}

/*=========================================================
SMALL HOVER EFFECTS
=========================================================*/

.footer-contact li:hover i,
.privacy-box:hover i,
.green-host:hover i{

    transform:rotate(10deg) scale(1.08);

}

.footer-contact i,
.privacy-box i,
.green-host i{

    transition:.35s;

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.footer-bottom{

text-align:center;

}

.privacy-box,
.green-host{

justify-content:center;

margin-bottom:30px;

}

.green-host{

margin-top:25px;

}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.footer-bottom{

margin-top:50px;

padding-top:25px;

}

.privacy-box,
.green-host{

flex-direction:column;

text-align:center;

}

.copyright{

margin:25px 0;

}

.back-top{

width:48px;

height:48px;

right:18px;

bottom:18px;

font-size:20px;

}

}

/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:480px){

.privacy-box h5,
.green-host h5{

font-size:18px;

}

.privacy-box p,
.green-host p,
.copyright span{

font-size:13px;

}

.back-top{

width:45px;

height:45px;

font-size:18px;

}

}

/*=========================================================
GLOBAL SMOOTH EFFECTS
=========================================================*/

.footer-links a,
.social-icons a,
.cta-box,
.partner-logo,
.logo-item,
.info-card,
.stat-card,
.service-box,
.prize-card,
.about-feature{

transition:all .35s ease;

}

/*=========================================================
SCROLLBAR (OPTIONAL)
=========================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#edf2f7;

}

::-webkit-scrollbar-thumb{

background:#246bff;

border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

background:#0f56e9;

}


/* faq codes */
/*=========================================================
FAQ HERO
=========================================================*/

.faq-hero{
    position:relative;
    padding:100px 0 70px;
    background:#f8fbff;
    overflow:hidden;
}

.faq-hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:transparent;
    left:-180px;
    top:-180px;
}

.faq-hero::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#fff4e8;
    right:-120px;
    bottom:-120px;
}

/*=========================================================
CONTENT
=========================================================*/

.faq-title{

    font-size:58px;

    font-weight:800;

    color:#08255d;

    line-height:1.15;

}

.faq-title span{

    color:#246bff;

}

.faq-text{

    margin-top:25px;

    font-size:18px;

    line-height:1.9;

    color:#666;

    max-width:520px;

}

.faq-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.faq-buttons .btn{

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

}

/*=========================================================
FAQ IMAGE
=========================================================*/

.faq-image{

    position:relative;

    z-index:2;

}

.faq-image img{

    max-width:420px;

    animation:faqFloat 5s ease-in-out infinite;

}

@keyframes faqFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/*=========================================================
STATS
=========================================================*/

.faq-stats{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.faq-stat{

    background:#fff;

    border-radius:20px;

    padding:22px;

    min-width:140px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.faq-stat h3{

    margin:0;

    font-size:34px;

    color:#246bff;

    font-weight:800;

}

.faq-stat span{

    color:#666;

    font-size:15px;

}

/*=========================================================
SEARCH
=========================================================*/

.faq-search-section{

    padding:0 0 70px;

    background:#f8fbff;

}

.search-box{

    background:#fff;

    border-radius:70px;

    padding:15px;

    max-width:760px;

    margin:auto;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.search-box .input-group-text{

    background:#246bff;

    border:none;

    color:#fff;

    font-size:22px;

    border-radius:50px;

    width:65px;

    justify-content:center;

}

.search-box .form-control{

    border:none;

    font-size:17px;

    padding:18px;

}

.search-box .form-control:focus{

    box-shadow:none;

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.faq-hero{

text-align:center;

padding:80px 0 60px;

}

.faq-title{

font-size:42px;

}

.faq-text{

max-width:100%;

margin:auto;
margin-top:20px;

}

.faq-buttons{

justify-content:center;

}

.faq-stats{

justify-content:center;

margin-bottom:40px;

}

.faq-image{

margin-top:40px;

}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.faq-hero{

padding:60px 0 50px;

}

.faq-title{

font-size:32px;

}

.faq-text{

font-size:15px;

}

.faq-buttons{

flex-direction:column;

}

.faq-buttons .btn{

width:100%;

}

.faq-image img{

max-width:260px;

}

.faq-stat{

flex:1;

min-width:110px;

padding:18px;

}

.faq-stat h3{

font-size:26px;

}

.search-box{

border-radius:25px;

padding:10px;

}

.search-box .input-group{

flex-wrap:nowrap;

}

.search-box .input-group-text{

width:50px;

font-size:18px;

}

.search-box .form-control{

font-size:15px;

padding:14px;

}

}

/*=========================================================
FAQ CATEGORY SECTION
=========================================================*/

.faq-category-section{
    padding:0 0 70px;
    background:#f8fbff;
}

.faq-category-card{

    background:#fff;

    border-radius:25px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.faq-category-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:50%;

    background:#edf4ff;

    right:-70px;

    top:-70px;

    transition:.35s;

}

.faq-category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.faq-category-card:hover::before{

    transform:scale(1.2);

}

/*=========================================================
CATEGORY ICON
=========================================================*/

.faq-category-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:linear-gradient(135deg,#246bff,#4d8dff);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin:auto auto 22px;

    position:relative;

    z-index:2;

}

.faq-category-icon.blue{

    background:linear-gradient(135deg,#00b4db,#0083b0);

}

.faq-category-icon.orange{

    background:linear-gradient(135deg,#ff9800,#ff6b00);

}

.faq-category-icon.purple{

    background:linear-gradient(135deg,#7c4dff,#9b73ff);

}

.faq-category-card h4{

    font-size:24px;

    font-weight:700;

    color:#08255d;

    margin-bottom:12px;

    position:relative;

    z-index:2;

}

.faq-category-card p{

    color:#666;

    line-height:1.8;

    margin:0;

    position:relative;

    z-index:2;

}

/*=========================================================
FAQ SECTION
=========================================================*/

.faq-section{

    padding:80px 0 100px;

    background:#fff;

}

/*=========================================================
ACCORDION
=========================================================*/

.custom-faq .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:20px !important;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

}

.custom-faq .accordion-button{

    background:#fff;

    color:#08255d;

    font-size:18px;

    font-weight:600;

    padding:22px 28px;

    border:none;

    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#246bff;

    color:#fff;

}

.custom-faq .accordion-button i{

    color:#ff9800;

    font-size:22px;

}

.custom-faq .accordion-button:not(.collapsed) i{

    color:#fff;

}

/*=========================================================
PLUS / MINUS ICON
=========================================================*/

.custom-faq .accordion-button::after{

    width:36px;

    height:36px;
 
    background-size:20px;

    border-radius:50%;

    background-color:#edf4ff;

}

.custom-faq .accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

    background-color:rgba(255,255,255,.20);

}

/*=========================================================
BODY
=========================================================*/

.custom-faq .accordion-body{

    background:#fff;

    padding:25px 30px;

    color:#666;

    line-height:1.9;

    font-size:16px;

    border-top:1px solid #edf2f7;

}

/*=========================================================
HOVER
=========================================================*/

.custom-faq .accordion-item:hover{

    transform:translateY(-4px);

    transition:.3s;

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.faq-category-card{

margin-bottom:25px;

}

.custom-faq .accordion-button{

font-size:17px;

padding:20px;

}

.custom-faq .accordion-body{

padding:22px;

}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.faq-category-section{

padding-bottom:50px;

}

.faq-category-card{

padding:25px 18px;

}

.faq-category-icon{

width:70px;

height:70px;

font-size:28px;

}

.faq-category-card h4{

font-size:20px;

}

.custom-faq .accordion-button{

font-size:15px;

padding:18px;

}

.custom-faq .accordion-button i{

font-size:18px;

margin-right:10px !important;

}

.custom-faq .accordion-body{

font-size:14px;

padding:18px;

line-height:1.8;

}

}

/*=========================================================
FAQ CONTACT SECTION
=========================================================*/

.faq-contact{
    padding:90px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.faq-contact::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#eef5ff;
    border-radius:50%;
    left:-180px;
    top:-180px;
}

.faq-contact::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#fff4ea;
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

/*=========================================================
HELP BOX
=========================================================*/

.help-box{

    background:linear-gradient(135deg,#246bff,#0f56e9);

    border-radius:30px;

    padding:45px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(36,107,255,.25);

}

.help-box::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:transparent;

    right:-100px;

    top:-100px;

}

.help-box::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:transparent;

    left:-60px;

    bottom:-60px;

}

/*=========================================================
HELP CONTENT
=========================================================*/

.help-content{

    display:flex;

    align-items:center;

    gap:25px;

    position:relative;

    z-index:2;

}

.help-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    color:#fff;

    flex-shrink:0;

}

.help-content h2{

    font-size:36px;

    font-weight:700;

    margin-bottom:10px;

    color:#fff;

}

.help-content p{

    margin:0;

    font-size:17px;

    color:rgba(255,255,255,.92);

    line-height:1.8;

}

/*=========================================================
BUTTONS
=========================================================*/

.help-box .btn{

    border-radius:50px;

    padding:14px 30px;

    font-weight:600;

    margin-left:10px;

}

.help-box .btn-outline-light:hover{

    background:#fff;

    color:#246bff;

}

.help-box .btn-success{

    background:#25d366;

    border:none;

}

.help-box .btn-success:hover{

    background:#1ebe5d;

}

/*=========================================================
ANIMATION
=========================================================*/

.help-box{

    animation:helpFade .8s ease;

}

@keyframes helpFade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

.help-box{

padding:35px;

text-align:center;

}

.help-content{

flex-direction:column;

margin-bottom:30px;

}

.help-icon{

margin:auto;

}

.help-box .text-lg-end{

text-align:center !important;

}

.help-box .btn{

margin:8px;

}

}

/*=========================================================
MOBILE
=========================================================*/

@media(max-width:767px){

.faq-contact{

padding:60px 0;

}

.help-box{

padding:28px 20px;

border-radius:22px;

}

.help-content h2{

font-size:26px;

}

.help-content p{

font-size:15px;

}

.help-icon{

width:70px;

height:70px;

font-size:30px;

}

.help-box .btn{

display:block;

width:100%;

margin:10px 0;

}

}

/*=========================================================
EXTRA SMALL
=========================================================*/

@media(max-width:480px){

.help-content h2{

font-size:22px;

}

.help-content p{

font-size:14px;

}

}







