/* ==========================================================
   BLUE RISE MARKET RESEARCH
   Professional Corporate Theme
   Version : 1.0
   ========================================================== */


/* ==========================================================
   GOOGLE FONT
========================================================== */

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


/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root{

--primary:#003E87;
--secondary:#0A6CFF;
--dark:#021B3A;
--light:#F5F9FF;
--white:#ffffff;
--black:#1B1B1B;
--gray:#6B7280;
--border:#E5E7EB;

--success:#28a745;
--danger:#dc3545;
--warning:#ffc107;

--gradient:
linear-gradient(135deg,#003E87,#0A6CFF);

--shadow:

0 10px 30px rgba(0,0,0,.08);

--radius:12px;

--transition:.35s ease;

}


/* ==========================================================
RESET
========================================================== */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

color:var(--black);

background:var(--white);

overflow-x:hidden;

line-height:1.8;

}


/* ==========================================================
SCROLLBAR
========================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--secondary);

}


/* ==========================================================
TYPOGRAPHY
========================================================== */

h1,h2,h3,h4,h5,h6{

font-weight:700;

color:var(--dark);

margin-bottom:20px;

}

h1{

font-size:58px;

line-height:1.2;

}

h2{

font-size:42px;

}

h3{

font-size:28px;

}

h4{

font-size:22px;

}

p{

color:#666;

margin-bottom:20px;

}

a{

text-decoration:none;

transition:var(--transition);

}

img{

max-width:100%;

display:block;

}


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

section{

padding:65px 0;

position:relative;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

background:#EAF3FF;

color:var(--secondary);

padding:8px 20px;

border-radius:40px;

font-weight:600;

margin-bottom:20px;

}

.section-title h2{

margin-bottom:15px;

}

.section-title p{

max-width:720px;

margin:auto;

}


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

.btn{

border-radius:50px;

padding:14px 34px;

font-weight:600;

transition:var(--transition);

}

.btn-primary{

background:var(--gradient);

border:none;

}

.btn-primary:hover{

transform:translateY(-3px);

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

}

.btn-outline{

border:2px solid var(--white);

color:var(--white);

padding:14px 34px;

border-radius:50px;

font-weight:600;

}

.btn-outline:hover{

background:#fff;

color:var(--primary);

}


/* ==========================================================
CARDS
========================================================== */

.card{

border:none;

border-radius:var(--radius);

box-shadow:var(--shadow);

transition:var(--transition);

overflow:hidden;

}

.card:hover{

transform:translateY(-10px);

}

.card-body{

padding:35px;

}


/* ==========================================================
ICONS
========================================================== */

.icon-box{

width:75px;

height:75px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#EDF5FF;

color:var(--secondary);

font-size:32px;

margin-bottom:25px;

transition:var(--transition);

}

.card:hover .icon-box{

background:var(--secondary);

color:#fff;

}


/* ==========================================================
PROGRESS BAR
========================================================== */

#progress-bar{

position:fixed;

top:0;
left:0;

height:4px;

width:0;

background:var(--secondary);

z-index:99999;

}


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

#backToTop{

position:fixed;

right:25px;

bottom:100px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--secondary);

color:#fff;

font-size:20px;

display:none;

cursor:pointer;

box-shadow:var(--shadow);

transition:.3s;

z-index:999;

}

#backToTop:hover{

background:var(--primary);

transform:translateY(-4px);

}


/* ==========================================================
UTILITY CLASSES
========================================================== */

.bg-primary{

background:var(--gradient)!important;

}

.bg-light-blue{

background:#F5F9FF;

}

.text-primary{

color:var(--secondary)!important;

}

.rounded-xl{

border-radius:20px;

}

.shadow-lg{

box-shadow:var(--shadow)!important;

}

.py-120{

padding-top:70px;

padding-bottom:70px;

}

.mb-60{

margin-bottom:60px;

}

/* ==========================================================
   TOP BAR
========================================================== */

.top-bar{
    background: var(--dark);
    color: #ffffff;
    padding: 7px 0;
    font-size: 13px;
}

.top-contact,
.top-social{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-contact li{
    margin-right: 30px;
}

.top-contact li i{
    color: #4DA3FF;
    margin-right: 8px;
}

.top-contact li a{
    color: #ffffff;
}

.top-contact li a:hover{
    color: #4DA3FF;
}

.top-social{
    justify-content: end;
}

.top-social li{
    margin-left: 12px;
}

.top-social a{
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.top-social a:hover{
    background: var(--secondary);
    transform: translateY(-3px);
}


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

.navbar{

    background:#ffffff;

    transition:.35s;

    padding:10px 0;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    z-index:999;

}

.navbar.scrolled{

    background:#ffffff;

    padding:6px 0;

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

}

.navbar-brand{

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

}

.logo{

    height:96px;

    transition:.3s;

}

.navbar.scrolled .logo{

    height:80px;

}

.navbar-nav .nav-item{

    margin-left:12px;

}

.navbar-nav .nav-link{

    color:var(--dark);

    font-weight:600;

    font-size:15px;

    transition:.3s;

    position:relative;

}

.navbar-nav .nav-link:hover{

    color:var(--secondary);

}

.navbar-nav .nav-link.active{

    color:var(--secondary);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

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

    width:100%;

}

.btn-nav{

    border-radius:40px;

    padding:12px 28px;

    font-size:15px;

    font-weight:600;

}


/* ==========================================================
   DROPDOWN MENU
========================================================== */

.dropdown-menu{

    border:none;

    border-radius:15px;

    padding:15px;

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

}

.dropdown-item{

    padding:12px 18px;

    border-radius:10px;

    font-size:15px;

    transition:.3s;

}

.dropdown-item:hover{

    background:var(--secondary);

    color:#fff;

}


/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    position:relative;

    overflow:hidden;

    min-height:90vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(rgba(2,27,58,.85),
    rgba(2,27,58,.80)),
    url("../images/background/hero-bg.jpg");

    background-size:cover;

    background-position:center;

}

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

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

    right:-200px;

    top:-120px;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

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

    border-radius:50%;

    left:-120px;

    bottom:-120px;

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

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

    color:#fff;

    font-weight:500;

    font-size:18px;

    margin-bottom:20px;

}

.hero h1{

    color:#fff;

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero h1 span{

    color:#58B3FF;

}

.hero p{

    color:#E6EAF2;

    font-size:18px;

    max-width:650px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:190px;

}


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

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:50px;

}

.hero-feature{

    display:flex;

    align-items:center;

    color:#fff;

}

.hero-feature i{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#0A6CFF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    font-size:18px;

}


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

.hero-image{

    position:relative;

    z-index:2;

    text-align:center;

}

.hero-image img{

    max-width:100%;

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

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/* ==========================================================
   FLOATING INFO CARDS
========================================================== */

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:15px;

    padding:18px 24px;

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

    animation:floatCard 3.5s infinite;

}

.floating-card h5{

    margin-bottom:5px;

    font-size:18px;

}

.floating-card p{

    margin:0;

    font-size:14px;

}

.card-1{

    top:12%;

    left:-50px;

}

.card-2{

    bottom:12%;

    right:-30px;

}

@keyframes floatCard{

    50%{

        transform:translateY(-12px);

    }

}


/* ==========================================================
   HERO SHAPES
========================================================== */

.hero-shape{

    position:absolute;

    opacity:.12;

    animation:rotateShape 15s linear infinite;

}

.shape-1{

    top:120px;

    right:100px;

}

.shape-2{

    bottom:100px;

    left:80px;

}

@keyframes rotateShape{

    100%{

        transform:rotate(360deg);

    }

}


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

@media(max-width:991px){

.top-bar{

display:none;

}

.hero{

padding:120px 0 80px;

text-align:center;

}

.hero h1{

font-size:42px;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.hero-image{

margin-top:60px;

}

.floating-card{

display:none;

}

.navbar-collapse{

background:#fff;

padding:20px;

margin-top:20px;

border-radius:15px;

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

}

}

@media(max-width:576px){

.hero h1{

font-size:34px;

}

.hero-subtitle{

font-size:15px;

}

.hero-buttons .btn{

width:100%;

}

.logo{

height:64px;

}

}

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

.about-section{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-badge{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:var(--gradient);
    color:#fff;
    padding:25px;
    border-radius:20px;
    width:220px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-badge h3{
    color:#fff;
    font-size:34px;
    margin-bottom:5px;
}

.about-content h6{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.about-content ul{
    padding:0;
    list-style:none;
    margin-top:30px;
}

.about-content ul li{
    margin-bottom:15px;
    font-weight:500;
}

.about-content ul li i{
    color:var(--secondary);
    margin-right:12px;
}

/* ==========================================================
WHY CHOOSE US
========================================================== */

.why-section{
    background:#F7FAFF;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.why-card:hover{
    transform:translateY(-12px);
    background:var(--gradient);
}

.why-card:hover h4,
.why-card:hover p,
.why-card:hover i{
    color:#fff;
}

.why-card i{
    font-size:50px;
    color:var(--secondary);
    margin-bottom:25px;
}

.why-card h4{
    margin-bottom:15px;
}

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

.stats-section{
    background:var(--gradient);
    color:#fff;
    position:relative;
}

.stats-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../images/background/world-map.png") center/cover;
    opacity:.08;
}

.stat-box{
    position:relative;
    z-index:2;
    text-align:center;
    padding:30px;
}

.stat-box h2{
    color:#fff;
    font-size:54px;
    font-weight:800;
}

.stat-box p{
    color:#fff;
    margin-top:10px;
    font-size:17px;
}

.stat-box i{
    font-size:46px;
    margin-bottom:20px;
}

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

.services-section{
    background:#fff;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
    height:100%;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:var(--secondary);
    transition:.35s;
}

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

.service-card:hover::before{
    width:100%;
    opacity:.05;
}

.service-card i{
    font-size:52px;
    color:var(--secondary);
    margin-bottom:25px;
}

.service-card h4{
    margin-bottom:18px;
}

.service-card p{
    margin-bottom:20px;
}

.service-card a{
    color:var(--secondary);
    font-weight:600;
}

.service-card a:hover{
    letter-spacing:1px;
}

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

.service-icon{
    width:80px;
    height:80px;
    background:#EDF5FF;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.35s;
}

.service-card:hover .service-icon{
    background:var(--secondary);
}

.service-card:hover .service-icon i{
    color:#fff;
}

/* ==========================================================
INDUSTRIES
========================================================== */

.industry-section{
    background:#F5F9FF;
}

.industry-card{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:35px 25px;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.industry-card:hover{
    transform:translateY(-10px);
    background:var(--gradient);
}

.industry-card:hover h5,
.industry-card:hover p,
.industry-card:hover i{
    color:#fff;
}

.industry-card i{
    font-size:48px;
    color:var(--secondary);
    margin-bottom:20px;
}

.industry-card h5{
    margin-bottom:12px;
}

/* ==========================================================
COUNTRY COVERAGE
========================================================== */

.country-box{
    background:#fff;
    border-radius:15px;
    padding:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.country-box:hover{
    background:var(--secondary);
    color:#fff;
}

.country-box:hover h6,
.country-box:hover p{
    color:#fff;
}

/* ==========================================================
SECTION BACKGROUND SHAPE
========================================================== */

.section-shape{
    position:absolute;
    opacity:.05;
    z-index:-1;
}

.shape-left{
    left:-120px;
    top:50px;
}

.shape-right{
    right:-120px;
    bottom:50px;
}

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

.fade-up{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

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

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

}

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

@media(max-width:991px){

.about-badge{
display:none;
}

.about-content{
margin-top:50px;
}

.stat-box{
margin-bottom:30px;
}

.service-card{
margin-bottom:30px;
}

.industry-card{
margin-bottom:25px;
}

}

@media(max-width:576px){

.stat-box h2{
font-size:40px;
}

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

.service-card,
.industry-card,
.why-card{
padding:30px 20px;
}

}

/* ==========================================================
   GLOBAL COVERAGE SECTION
========================================================== */

.global-section{

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.world-map{

    position:relative;

    text-align:center;

}

.world-map img{

    width:100%;

    max-width:950px;

    opacity:.95;

}

/* Animated Country Dots */

.map-dot{

    position:absolute;

    width:18px;

    height:18px;

    background:#0A6CFF;

    border-radius:50%;

    animation:pulse 2s infinite;

    cursor:pointer;

}

@keyframes pulse{

0%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(10,108,255,.7);

}

70%{

box-shadow:0 0 0 20px rgba(10,108,255,0);

}

100%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(10,108,255,0);

}

}

/* Example Country Positions */

.india{

top:48%;

left:67%;

}

.usa{

top:33%;

left:18%;

}

.uk{

top:23%;

left:45%;

}

.germany{

top:28%;

left:49%;

}

.australia{

bottom:18%;

right:13%;

}

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

.global-card{

background:#fff;

padding:35px;

border-radius:20px;

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

margin-top:50px;

}

.global-card h3{

margin-bottom:20px;

}

.global-card ul{

list-style:none;

padding:0;

}

.global-card li{

margin-bottom:12px;

font-weight:500;

}

.global-card li i{

color:#0A6CFF;

margin-right:10px;

}


/* ==========================================================
RESEARCH PROCESS
========================================================== */

.process-section{

background:#F7FAFF;

}


/* ==========================================================
TESTIMONIALS
========================================================== */

.testimonial-section{

background:#ffffff;

}

.testimonial-card{

background:#fff;

border-radius:20px;

padding:40px;

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

position:relative;

}

.testimonial-card::before{

content:"\201C";

position:absolute;

top:15px;

right:30px;

font-size:80px;

color:#EAF3FF;

font-weight:700;

}

.testimonial-card p{

font-style:italic;

margin-bottom:30px;

}

.client-info{

display:flex;

align-items:center;

}

.client-info img{

width:70px;

height:70px;

border-radius:50%;

margin-right:20px;

}

.client-info h5{

margin-bottom:5px;

}

.client-rating{

color:#FFC107;

margin-top:8px;

}


/* ==========================================================
CLIENT LOGOS
========================================================== */

.client-section{

background:#F7FAFF;

}

.client-logo{

background:#fff;

border-radius:15px;

padding:30px;

text-align:center;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.client-logo img{

max-height:60px;

margin:auto;

filter:grayscale(100%);

transition:.35s;

}

.client-logo:hover{

transform:translateY(-8px);

}

.client-logo:hover img{

filter:grayscale(0);

}


/* ==========================================================
CALL TO ACTION
========================================================== */

.cta-banner{

background:linear-gradient(135deg,#003E87,#0A6CFF);

border-radius:25px;

padding:70px;

text-align:center;

color:#fff;

overflow:hidden;

position:relative;

}

.cta-banner::before{

content:"";

position:absolute;

width:450px;

height:450px;

border-radius:50%;

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

top:-180px;

right:-120px;

}

.cta-banner::after{

content:"";

position:absolute;

width:280px;

height:280px;

border-radius:50%;

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

bottom:-120px;

left:-80px;

}

.cta-banner h2{

color:#fff;

font-size:46px;

margin-bottom:20px;

}

.cta-banner p{

color:#EAF3FF;

max-width:750px;

margin:auto auto 35px;

}

.cta-banner .btn{

margin:10px;

}


/* ==========================================================
AWARDS
========================================================== */

.award-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

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

transition:.35s;

}

.award-card:hover{

transform:translateY(-10px);

}

.award-card i{

font-size:50px;

color:#0A6CFF;

margin-bottom:20px;

}


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

@media(max-width:991px){

.cta-banner{

padding:45px 30px;

}

.cta-banner h2{

font-size:34px;

}

}

@media(max-width:576px){

.cta-banner h2{

font-size:28px;

}

.testimonial-card{

padding:30px;

}

.global-card{

padding:25px;

}

}

/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-section{
    background:#F7FAFF;
}

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
    transition:.35s;
}

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

.contact-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#EDF5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.contact-icon i{
    color:#0A6CFF;
    font-size:30px;
}

.contact-card h4{
    margin-bottom:15px;
}

.contact-card a{
    color:#444;
}

.contact-card a:hover{
    color:#0A6CFF;
}

/* ==========================================================
CONTACT FORM
========================================================== */

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.contact-form .form-label{
    font-weight:600;
    margin-bottom:8px;
}

.contact-form .form-control,
.contact-form .form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #dfe4ea;
    box-shadow:none;
    transition:.3s;
}

.contact-form textarea.form-control{
    height:180px;
    resize:none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus{
    border-color:#0A6CFF;
    box-shadow:0 0 0 .2rem rgba(10,108,255,.15);
}

/* ==========================================================
GOOGLE MAP
========================================================== */

.map-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:500px;
    border:0;
}

/* ==========================================================
JOIN PANEL
========================================================== */

.join-panel{
    background:#ffffff;
}

.join-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.join-benefit{
    display:flex;
    margin-bottom:25px;
}

.join-benefit i{
    width:60px;
    height:60px;
    background:#EAF3FF;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0A6CFF;
    font-size:26px;
    margin-right:20px;
}

.join-benefit h5{
    margin-bottom:6px;
}

/* ==========================================================
JOIN FORM
========================================================== */

.join-form{
    background:#F7FAFF;
    border-radius:20px;
    padding:40px;
}

.join-form .form-control,
.join-form .form-select{
    height:55px;
    border-radius:12px;
}

.join-form textarea{
    min-height:150px;
}

.join-form .btn{
    width:100%;
}

/* ==========================================================
PANEL BOOK
========================================================== */

.panelbook-section{
    background:#fff;
}

.panelbook-box{
    background:#F7FAFF;
    border-radius:25px;
    padding:60px;
}

.panelbook-box h2{
    margin-bottom:20px;
}

.panelbook-box p{
    font-size:17px;
}

.panel-features{
    margin-top:35px;
}

.panel-features li{
    list-style:none;
    margin-bottom:15px;
    font-weight:500;
}

.panel-features li i{
    color:#0A6CFF;
    margin-right:12px;
}

/* ==========================================================
DOWNLOAD FORM
========================================================== */

.download-form{
    margin-top:40px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.download-form h4{
    margin-bottom:25px;
}

.download-form .form-control{
    height:55px;
    border-radius:12px;
}

.download-form button{
    width:100%;
    height:55px;
}

/* ==========================================================
FORM SUCCESS
========================================================== */

.alert-success{
    border:none;
    border-left:5px solid #198754;
    border-radius:12px;
}

.alert-danger{
    border:none;
    border-left:5px solid #dc3545;
    border-radius:12px;
}

/* ==========================================================
INPUT ICONS
========================================================== */

.input-group-text{
    background:#EDF5FF;
    border:1px solid #dfe4ea;
    color:#0A6CFF;
}

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

.faq-section{
    background:#F7FAFF;
}

.accordion-item{
    border:none;
    border-radius:15px !important;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.accordion-button{
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#0A6CFF;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

/* ==========================================================
NEWSLETTER
========================================================== */

.newsletter-box{
    background:linear-gradient(135deg,#003E87,#0A6CFF);
    padding:50px;
    border-radius:20px;
    color:#fff;
}

.newsletter-box h2{
    color:#fff;
}

.newsletter-box .form-control{
    height:55px;
    border-radius:50px;
}

.newsletter-box .btn{
    border-radius:50px;
}

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

@media(max-width:991px){

.contact-form,
.join-form,
.download-form,
.panelbook-box{
    padding:30px;
}

.map-box iframe{
    height:350px;
}

}

@media(max-width:576px){

.contact-form,
.join-form,
.download-form,
.panelbook-box{
    padding:25px;
}

.newsletter-box{
    padding:30px 20px;
}

.contact-card{
    margin-bottom:25px;
}

}

/* ==========================================================
   BLUE RISE WEBSITE
   STYLE.CSS
   PART 6
   FINAL
==========================================================*/


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

.fade-in{
animation:fadeIn 1s ease forwards;
}

.slide-up{
animation:slideUp 1s ease forwards;
}

.slide-left{
animation:slideLeft 1s ease forwards;
}

.slide-right{
animation:slideRight 1s ease forwards;
}

.zoom-in{
animation:zoomIn .8s ease forwards;
}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes slideUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes slideLeft{

from{

opacity:0;

transform:translateX(-60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes slideRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes zoomIn{

from{

opacity:0;

transform:scale(.7);

}

to{

opacity:1;

transform:scale(1);

}

}

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

.hover-up{

transition:.35s;

}

.hover-up:hover{

transform:translateY(-8px);

}

.hover-shadow:hover{

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

}

.hover-primary:hover{

background:var(--primary);

color:#fff;

}

.hover-scale{

transition:.35s;

}

.hover-scale:hover{

transform:scale(1.05);

}

/* ==========================================================
IMAGE EFFECTS
==========================================================*/

.image-box{

overflow:hidden;

border-radius:18px;

}

.image-box img{

transition:.5s;

}

.image-box:hover img{

transform:scale(1.08);

}

/* ==========================================================
OVERLAY
==========================================================*/

.overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

}

.overlay-blue{

background:rgba(2,27,58,.75);

}

/* ==========================================================
SWIPER
==========================================================*/

.swiper{

padding-bottom:50px;

}

.swiper-pagination-bullet{

background:#0A6CFF;

}

.swiper-button-next,
.swiper-button-prev{

color:#0A6CFF;

}

/* ==========================================================
AOS
==========================================================*/

[data-aos]{

transition-duration:1000ms;

}

/* ==========================================================
BADGES
==========================================================*/

.badge-primary{

background:var(--gradient);

padding:8px 18px;

border-radius:40px;

font-weight:600;

}

/* ==========================================================
TABLES
==========================================================*/

.table{

background:#fff;

border-radius:15px;

overflow:hidden;

}

.table th{

background:#003E87;

color:#fff;

}

.table td{

vertical-align:middle;

}

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

.check-list{

list-style:none;

padding:0;

}

.check-list li{

margin-bottom:15px;

}

.check-list li i{

color:#0A6CFF;

margin-right:12px;

}

/* ==========================================================
SPACING HELPERS
==========================================================*/

.mt-80{

margin-top:80px;

}

.mb-80{

margin-bottom:80px;

}

.py-80{

padding-top:80px;

padding-bottom:80px;

}

.py-120{

padding-top:70px;

padding-bottom:70px;

}

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

.text-blue{

color:#003E87;

}

.text-light-blue{

color:#0A6CFF;

}

.text-gray{

color:#666;

}

.fw-600{

font-weight:600;

}

.fw-700{

font-weight:700;

}

.fw-800{

font-weight:800;

}

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

.bg-gradient{

background:linear-gradient(135deg,#003E87,#0A6CFF);

}

.bg-soft{

background:#F7FAFF;

}

.bg-dark-blue{

background:#021B3A;

color:#fff;

}

/* ==========================================================
BORDER
==========================================================*/

.rounded-20{

border-radius:20px;

}

.rounded-30{

border-radius:30px;

}

.shadow-custom{

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

}

/* ==========================================================
PRINT
==========================================================*/

@media print{

.navbar,
.footer,
.top-bar,
.whatsapp-btn,
#backToTop{

display:none;

}

body{

background:#fff;

}

}

/* ==========================================================
LARGE DESKTOP
==========================================================*/

@media(min-width:1400px){

.container{

max-width:1320px;

}

}

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

@media(max-width:991px){

h1{

font-size:44px;

}

h2{

font-size:34px;

}

section{

padding:55px 0;

}

}

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

@media(max-width:767px){

body{

font-size:15px;

}

h1{

font-size:34px;

}

h2{

font-size:28px;

}

h3{

font-size:24px;

}

.btn{

width:100%;

margin-bottom:15px;

}

.section-title{

margin-bottom:45px;

}

}

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

@media(max-width:480px){

.logo{

height:54px;

}

section{

padding:45px 0;

}

.container{

padding-left:20px;

padding-right:20px;

}

}

/* ==========================================================
END OF STYLE.CSS
BLUE RISE
==========================================================*/

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

.btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

width:15px;

height:15px;

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

border-radius:50%;

transform:scale(0);

animation:rippleEffect .7s linear;

pointer-events:none;

}

@keyframes rippleEffect{

100%{

transform:scale(25);

opacity:0;

}

}

/*==========================================================
COUNTER
==========================================================*/

.counter{

font-size:inherit;

font-weight:inherit;

color:inherit;

display:inline;

}

.counter-plus{

display:inline-block;

}

/*==========================================================
FADE EFFECT
==========================================================*/

.fade-in{

opacity:0;

animation:fadeInAnimation .8s forwards;

}

@keyframes fadeInAnimation{

to{

opacity:1;

}

}

/*==========================================================
IMAGE ZOOM
==========================================================*/

.zoom-in{

animation:imageZoom .8s ease;

}

@keyframes imageZoom{

from{

transform:scale(.85);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

/*==========================================================
PREMIUM HERO
==========================================================*/

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

background:

linear-gradient(

135deg,

rgba(2,27,58,.92),

rgba(3,62,135,.82)

),

url("../images/background/hero-bg.jpg");

background-size:cover;

background-position:center;

background-attachment:fixed;

}

.hero-overlay{

position:absolute;

inset:0;

background:

linear-gradient(

90deg,

rgba(2,27,58,.85),

rgba(2,27,58,.45)

);

}

.hero-circle{

position:absolute;

border-radius:50%;

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

animation:floatCircle 12s infinite linear;

}

.hero-circle-1{

width:350px;

height:350px;

top:-120px;

right:-100px;

}

.hero-circle-2{

width:220px;

height:220px;

bottom:-70px;

left:-70px;

}

@keyframes floatCircle{

50%{

transform:translateY(-25px);

}

}

.hero-content{

position:relative;

z-index:5;

}

.hero-subtitle{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 24px;

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

backdrop-filter:blur(12px);

border-radius:50px;

color:#58B3FF;

font-weight:600;

font-size:18px;

margin-bottom:25px;

}

.hero-content h1{

font-size:72px;

font-weight:800;

line-height:1.1;

color:#fff;

margin-bottom:25px;

}

.hero-content h1 span{

color:#58B3FF;

}

.hero-content p{

font-size:20px;

line-height:1.8;

color:#E7EEF8;

margin-bottom:40px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-buttons .btn{

padding:15px 35px;

font-weight:600;

border-radius:50px;

}

.hero-image{

position:relative;

z-index:5;

}

.hero-image img{

max-width:100%;

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

}

.trusted-section{

color:#fff;

}

.trusted-items{

display:flex;

gap:8px;

margin-top:15px;

flex-wrap:nowrap;

}

.trusted-items span{

padding:8px 14px;

border-radius:30px;

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

backdrop-filter:blur(10px);

font-size:13px;

white-space:nowrap;

transition:.3s;

}

.trusted-items span:hover{

background:#0A6CFF;

}

@media(max-width:991px){

.hero{

padding:120px 0 80px;

text-align:center;

background-attachment:scroll;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:18px;

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:60px;

}

.trusted-items{

justify-content:center;

flex-wrap:wrap;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:36px;

}

.hero-buttons .btn{

width:100%;

}

}

/*==========================================================
FLOATING KPI CARDS
==========================================================*/

.hero-image{

position:relative;

}

.floating-card{

position:absolute;

display:flex;

align-items:center;

gap:18px;

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

backdrop-filter:blur(15px);

padding:18px 24px;

border-radius:18px;

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

color:#fff;

width:270px;

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

}

.floating-card h3{

color:#fff;

margin:5px 0;

font-size:34px;

}

.floating-card p{

color:#f4f4f4;

margin:0;

font-size:14px;

}

.floating-card small{

color:#CFE4FF;

}

.card-icon{

width:65px;

height:65px;

background:#0A6CFF;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

}

.card-one{

top:40px;

right:-40px;

}

.card-two{

top:240px;

right:-70px;

}

.card-three{

bottom:30px;

right:-30px;

}

@keyframes floatCard{

50%{

transform:translateY(-12px);

}

}

/*==========================================================
BOTTOM STATISTICS
==========================================================*/

.hero-bottom{

background:#ffffff;

padding:35px 0;

margin-top:-30px;

position:relative;

z-index:20;

border-radius:35px 35px 0 0;

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

}

.hero-stat{

text-align:center;

}

.hero-stat i{

font-size:34px;

color:#0A6CFF;

margin-bottom:15px;

}

.hero-stat h2{

font-size:42px;

color:#003E87;

margin-bottom:10px;

font-weight:800;

white-space:nowrap;

}

.hero-stat p{

margin:0;

}

@media(max-width:1199px){

.hero-stat h2{

font-size:28px;

}

.hero-stat i{

font-size:24px;

margin-bottom:8px;

}

}

@media(max-width:576px){

.hero-stat h2{

font-size:22px;

}

}

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

.scroll-down{

position:absolute;

left:50%;

bottom:120px;

transform:translateX(-50%);

z-index:50;

}

.scroll-down a{

width:70px;

height:70px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#ffffff;

color:#0A6CFF;

font-size:28px;

text-decoration:none;

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

animation:bounce 2s infinite;

}

@keyframes bounce{

50%{

transform:translateY(12px);

}

}

/*==========================================================
SVG WAVE
==========================================================*/

.hero-wave{

position:absolute;

bottom:-2px;

width:100%;

line-height:0;

}

.hero-wave svg{

display:block;

width:100%;

height:120px;

}

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

@media(max-width:991px){

.floating-card{

display:none;

}

.hero-bottom{

margin-top:0;

border-radius:0;

}

.hero-stat{

margin-bottom:35px;

}

.scroll-down{

display:none;

}

}

/*==========================================================
HERO PARTICLES
==========================================================*/

.hero-particles{

position:absolute;

inset:0;

overflow:hidden;

pointer-events:none;

z-index:2;

}

.particle{

position:absolute;

display:block;

width:10px;

height:10px;

border-radius:50%;

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

animation:particleFloat 12s linear infinite;

}

.p1{

left:10%;

top:15%;

animation-duration:10s;

}

.p2{

left:30%;

top:70%;

width:16px;

height:16px;

animation-duration:14s;

}

.p3{

right:18%;

top:25%;

width:8px;

height:8px;

animation-duration:12s;

}

.p4{

right:10%;

bottom:15%;

width:18px;

height:18px;

animation-duration:16s;

}

.p5{

left:60%;

bottom:18%;

animation-duration:13s;

}

.p6{

left:75%;

top:40%;

width:14px;

height:14px;

animation-duration:15s;

}

@keyframes particleFloat{

0%{

transform:translateY(0);

opacity:.25;

}

50%{

opacity:.9;

}

100%{

transform:translateY(-120px);

opacity:0;

}

}


/*==========================================================
BLUE GLOW
==========================================================*/

.hero-glow{

position:absolute;

border-radius:50%;

filter:blur(120px);

opacity:.35;

pointer-events:none;

}

.glow-left{

width:420px;

height:420px;

background:#5AAEFF;

left:-120px;

top:120px;

}

.glow-right{

width:520px;

height:520px;

background:#0A6CFF;

right:-180px;

bottom:50px;

}


/*==========================================================
HERO ENTRANCE
==========================================================*/

.hero-content>*{

opacity:0;

transform:translateY(40px);

animation:heroReveal .9s forwards;

}

.hero-content>*:nth-child(1){

animation-delay:.2s;

}

.hero-content>*:nth-child(2){

animation-delay:.4s;

}

.hero-content>*:nth-child(3){

animation-delay:.6s;

}

.hero-content>*:nth-child(4){

animation-delay:.8s;

}

.hero-content>*:nth-child(5){

animation-delay:1s;

}

@keyframes heroReveal{

to{

opacity:1;

transform:translateY(0);

}

}


/*==========================================================
CLIENT TAG ANIMATION
==========================================================*/

.trusted-items span{

transition:.35s;

}

.trusted-items span:hover{

transform:translateY(-5px);

background:#0A6CFF;

color:#fff;

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

}


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

.hero-buttons .btn{

transition:.35s;

}

.hero-buttons .btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(0,0,0,.18);

}


/*==========================================================
IMAGE GLOW
==========================================================*/

.hero-image::before{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:rgba(90,174,255,.18);

filter:blur(70px);

left:50%;

top:50%;

transform:translate(-50%,-50%);

z-index:-1;

}


/*==========================================================
MOUSE PARALLAX
==========================================================*/

.hero{

transform-style:preserve-3d;

}


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

@media(max-width:991px){

.hero-glow{

display:none;

}

.hero-particles{

display:none;

}

}

/*==========================================================
ABOUT HOME
==========================================================*/

.about-section{

background:#fff;

position:relative;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:30px;

}

.experience-badge{

position:absolute;

bottom:35px;

right:-25px;

background:linear-gradient(135deg,#003E87,#0A6CFF);

color:#fff;

padding:25px;

border-radius:25px;

text-align:center;

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

width:180px;

}

.experience-badge h2{

font-size:48px;

color:#fff;

margin-bottom:10px;

font-weight:800;

}

.section-subtitle{

display:inline-block;

padding:14px 30px;

background:#EDF5FF;

border-radius:40px;

color:#0A6CFF;

font-weight:700;

font-size:20px;

letter-spacing:0.5px;

margin-bottom:20px;

}

.section-subtitle.text-white{

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

}

.feature-box{

background:#fff;

padding:25px;

border-radius:20px;

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

height:100%;

transition:.35s;

}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-box i{

font-size:36px;

color:#0A6CFF;

margin-bottom:20px;

}

.feature-box h5{

margin-bottom:15px;

}

@media(max-width:991px){

.experience-badge{

display:none;

}

}

/*==========================================================
WHY CHOOSE US
==========================================================*/

.why-icon{

width:90px;

height:90px;

margin:auto auto 25px;

background:#EDF5FF;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

transition:.35s;

}

.why-icon i{

font-size:38px;

color:#0A6CFF;

}

.why-card:hover .why-icon{

background:#0A6CFF;

}

.why-card:hover .why-icon i{

color:#fff;

}

.check-list{

padding:0;

list-style:none;

}

.check-list li{

margin-bottom:18px;

font-size:17px;

}

.check-list i{

color:#0A6CFF;

margin-right:12px;

}

/*==========================================================
SERVICE HOME
==========================================================*/

.services-section{

position:relative;

overflow:hidden;

}

.services-section::before{

content:"";

position:absolute;

top:-200px;

right:-200px;

width:450px;

height:450px;

background:rgba(10,108,255,.05);

border-radius:50%;

}

.services-section::after{

content:"";

position:absolute;

bottom:-180px;

left:-180px;

width:400px;

height:400px;

background:rgba(10,108,255,.04);

border-radius:50%;

}

.service-card{

position:relative;

z-index:2;

height:100%;

}

.service-card h4{

font-size:22px;

margin-bottom:18px;

}

.service-card p{

margin-bottom:20px;

}

.service-card a{

font-weight:600;

text-decoration:none;

}

.service-card a i{

margin-left:8px;

transition:.3s;

}

.service-card:hover a i{

margin-left:14px;

}

/*==========================================================
INDUSTRIES
==========================================================*/

.industries-section{

background:#F7FAFF;

position:relative;

}

.industry-card{

background:#fff;

padding:40px 25px;

border-radius:20px;

text-align:center;

height:100%;

transition:.35s;

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

}

.industry-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.industry-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

background:#EDF5FF;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

transition:.35s;

}

.industry-icon i{

font-size:36px;

color:#0A6CFF;

}

.industry-card:hover .industry-icon{

background:#0A6CFF;

}

.industry-card:hover .industry-icon i{

color:#fff;

}

.industry-card h4{

margin-bottom:18px;

font-size:22px;

}

.industry-card p{

margin:0;

}

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

.stats-section{

position:relative;

background:linear-gradient(135deg,#003E87,#0A6CFF);

overflow:hidden;

}

.stats-overlay{

position:absolute;

inset:0;

background:url("../images/background/dots.png");

opacity:.08;

}

.stats-card{

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

backdrop-filter:blur(10px);

border-radius:25px;

padding:40px 25px;

text-align:center;

color:#fff;

transition:.35s;

height:100%;

}

.stats-card:hover{

transform:translateY(-10px);

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

}

.stats-icon{

width:85px;

height:85px;

margin:auto;

margin-bottom:25px;

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

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

}

.stats-icon i{

font-size:36px;

color:#fff;

}

.stats-card h2{

font-size:52px;

font-weight:800;

margin-bottom:10px;

color:#fff;

}

.stats-card h5{

margin-bottom:15px;

color:#fff;

}

.stats-card p{

color:#E6EEF8;

margin:0;

}

.stats-strip{

margin-top:20px;

background:#fff;

border-radius:60px;

padding:20px 30px;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:nowrap;

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

}

.strip-item{

font-weight:600;

color:#003E87;

display:flex;

align-items:center;

gap:8px;

margin:0;

white-space:nowrap;

font-size:15px;

}

.strip-item i{

color:#0A6CFF;

}

@media(max-width:991px){

.stats-strip{

border-radius:20px;

justify-content:center;

flex-wrap:wrap;

}

.strip-item{

white-space:normal;

margin:10px;

}

}

/*==========================================================
GLOBAL MAP
==========================================================*/

.world-map-wrapper{

position:relative;

}

.world-map-wrapper img{

width:100%;

}

.map-dot{

position:absolute;

width:18px;

height:18px;

background:#0A6CFF;

border-radius:50%;

cursor:pointer;

animation:pulse 2s infinite;

}

.map-dot::after{

content:"";

position:absolute;

inset:-6px;

border-radius:50%;

border:2px solid #0A6CFF;

animation:ring 2s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.3);

}

}

@keyframes ring{

100%{

transform:scale(2);

opacity:0;

}

}

/* Country Positions */

.india{top:55%;left:67%;}

.usa{top:33%;left:17%;}

.canada{top:21%;left:18%;}

.uk{top:28%;left:47%;}

.germany{top:33%;left:51%;}

.france{top:37%;left:48%;}

.japan{top:39%;left:83%;}

.singapore{top:63%;left:73%;}

.australia{top:82%;left:82%;}

.tooltip-box{

position:absolute;

left:25px;

top:-10px;

background:#003E87;

color:#fff;

padding:12px;

border-radius:10px;

width:170px;

font-size:13px;

opacity:0;

visibility:hidden;

transition:.3s;

}

.map-dot:hover .tooltip-box{

opacity:1;

visibility:visible;

}

.global-card{

background:#fff;

padding:35px;

border-radius:20px;

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

}

.global-card h3{

margin-bottom:20px;

}

.global-card ul{

list-style:none;

padding:0;

margin-top:25px;

}

.global-card li{

margin-bottom:15px;

}

.global-card i{

color:#0A6CFF;

margin-right:10px;

}

/*==========================================================
RESEARCH PROCESS
==========================================================*/

.process-section{

background:#ffffff;

}

/*==========================================================
TESTIMONIALS
==========================================================*/

.testimonials-section{

background:#F7FAFF;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

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

height:100%;

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.stars{

color:#FFC107;

margin-bottom:20px;

font-size:18px;

}

.testimonial-user{

display:flex;

align-items:center;

margin-top:25px;

}

.avatar{

width:60px;

height:60px;

border-radius:50%;

background:#0A6CFF;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;

margin-right:15px;

}

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

.cta-section{

background:#F7FAFF;

padding-top:60px;

padding-bottom:60px;

}

.home-cta-wrapper{

position:relative;

overflow:hidden;

background:linear-gradient(135deg,#003E87,#0A6CFF);

padding:80px;

border-radius:35px;

color:#fff;

}

.home-cta-wrapper h2{

font-size:48px;

font-weight:800;

margin:20px 0;

color:#fff;

}

.home-cta-wrapper p{

font-size:18px;

color:#E9F3FF;

max-width:700px;

}

.cta-subtitle{

display:inline-block;

padding:12px 26px;

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

border-radius:30px;

font-weight:600;

font-size:18px;

}

.cta-buttons{

margin-top:40px;

display:flex;

gap:20px;

flex-wrap:wrap;

}

.contact-box{

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

backdrop-filter:blur(12px);

padding:35px;

border-radius:20px;

}

.contact-box ul{

padding:0;

list-style:none;

margin-top:25px;

}

.contact-box li{

margin-bottom:20px;

display:flex;

gap:15px;

}

.contact-box i{

color:#7EC4FF;

margin-top:4px;

}

.cta-circle{

position:absolute;

border-radius:50%;

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

}

.c1{

width:250px;

height:250px;

top:-100px;

right:-60px;

}

.c2{

width:180px;

height:180px;

bottom:-60px;

left:-40px;

}

.c3{

width:120px;

height:120px;

top:50%;

right:18%;

}

@media(max-width:991px){

.home-cta-wrapper{

padding:50px 35px;

}

.home-cta-wrapper h2{

font-size:34px;

}

.contact-box{

margin-top:40px;

}

}

/*==========================================================
ABOUT HERO
==========================================================*/

.about-page-hero{

position:relative;

padding:140px 0;

background:linear-gradient(135deg,#EEF7FF,#FFFFFF);

overflow:hidden;

}

.about-page-hero::before{

content:"";

position:absolute;

right:-150px;

top:-150px;

width:420px;

height:420px;

background:rgba(10,108,255,.06);

border-radius:50%;

}

.about-page-hero::after{

content:"";

position:absolute;

left:-120px;

bottom:-120px;

width:320px;

height:320px;

background:rgba(10,108,255,.04);

border-radius:50%;

}

.about-page-hero h1{

font-size:56px;

font-weight:800;

color:#003E87;

margin:25px 0;

line-height:1.2;

}

.about-page-hero p{

font-size:18px;

line-height:1.8;

margin-bottom:35px;

}

.hero-tag{

display:inline-block;

padding:12px 24px;

background:#0A6CFF;

color:#fff;

border-radius:30px;

font-size:18px;

font-weight:600;

letter-spacing:1px;

}

.breadcrumb{

background:none;

padding:0;

margin-bottom:25px;

}

.breadcrumb a{

color:#0A6CFF;

text-decoration:none;

}

@media(max-width:991px){

.about-page-hero{

text-align:center;

padding:100px 0;

}

.about-page-hero h1{

font-size:40px;

}

.about-page-hero img{

margin-top:50px;

}

}

/*==========================================================
COMPANY STORY
==========================================================*/

.company-story{

background:#fff;

}

.story-stats{

display:flex;

gap:16px;

flex-wrap:nowrap;

margin-top:40px;

}

.story-item{

background:#F7FAFF;

padding:20px 12px;

border-radius:18px;

text-align:center;

flex:1;

min-width:0;

transition:.35s;

}

.story-item:hover{

background:#0A6CFF;

color:#fff;

transform:translateY(-8px);

}

.story-item h3{

font-size:30px;

font-weight:800;

margin-bottom:8px;

color:#0A6CFF;

}

.story-item:hover h3{

color:#fff;

}

.story-item span{

font-size:15px;

font-weight:500;

}

@media(max-width:480px){

.story-stats{

flex-wrap:wrap;

}

.story-item{

flex:1 1 calc(50% - 8px);

}

}

/*==========================================================
MISSION & VISION
==========================================================*/

.mission-vision{

background:#F7FAFF;

}

.purpose-card{

background:#fff;

padding:45px;

border-radius:25px;

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

height:100%;

transition:.35s;

text-align:center;

}

.purpose-card:hover{

transform:translateY(-10px);

}

.purpose-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#EAF4FF;

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

color:#0A6CFF;

}

.purpose-card h3{

font-weight:700;

margin-bottom:20px;

}

.purpose-card p{

line-height:1.8;

font-size:16px;

}

/*==========================================================
CORE VALUES
==========================================================*/

.core-values{

background:#ffffff;

}

.value-card{

background:#fff;

padding:40px 30px;

border-radius:24px;

text-align:center;

height:100%;

transition:.35s;

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

border:1px solid #EEF4FF;

}

.value-card:hover{

transform:translateY(-10px);

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

}

.value-icon{

width:85px;

height:85px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#EEF6FF;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#0A6CFF;

transition:.35s;

}

.value-card:hover .value-icon{

background:#0A6CFF;

color:#fff;

}

.value-card h4{

font-weight:700;

margin-bottom:15px;

}

.value-card p{

font-size:15px;

line-height:1.8;

color:#666;

}

/*==========================================================
WHY BLUE RISE
==========================================================*/

.about-why{

background:#F7FAFF;

}

.feature-list{

margin-top:40px;

}

.feature-item{

display:flex;

align-items:flex-start;

gap:20px;

background:#fff;

padding:25px;

border-radius:18px;

margin-bottom:20px;

transition:.35s;

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

}

.feature-item:hover{

transform:translateX(8px);

box-shadow:0 15px 35px rgba(10,108,255,.15);

}

.feature-icon{

width:70px;

height:70px;

background:#EAF4FF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#0A6CFF;

flex-shrink:0;

}

.feature-item h5{

font-weight:700;

margin-bottom:8px;

}

.feature-item p{

margin:0;

line-height:1.7;

color:#666;

}

/*==========================================================
METHODOLOGY
==========================================================*/

.methodology{

background:#fff;

}

.timeline{

max-width:900px;

margin:auto;

position:relative;

}

.timeline::before{

content:"";

position:absolute;

left:40px;

top:0;

bottom:0;

width:3px;

background:#D7E8FF;

}

.timeline-item{

display:flex;

align-items:flex-start;

margin-bottom:45px;

position:relative;

}

.timeline-icon{

width:80px;

height:80px;

background:#0A6CFF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:30px;

flex-shrink:0;

z-index:2;

}

.timeline-content{

margin-left:30px;

background:#F7FAFF;

padding:30px;

border-radius:20px;

width:100%;

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

transition:.3s;

}

.timeline-content:hover{

transform:translateX(10px);

}

.timeline-content h4{

font-weight:700;

margin-bottom:15px;

}

/*==========================================================
INDUSTRY EXPERTISE
==========================================================*/

.industry-expertise{

background:#F7FAFF;

}

.industry-card{

background:#fff;

border-radius:22px;

padding:35px 25px;

text-align:center;

height:100%;

transition:.35s;

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

border:1px solid #EEF4FF;

}

.industry-card:hover{

transform:translateY(-10px);

background:#0A6CFF;

color:#fff;

}

.industry-card i{

font-size:42px;

color:#0A6CFF;

margin-bottom:25px;

transition:.35s;

}

.industry-card:hover i{

color:#fff;

}

.industry-card h5{

font-weight:700;

margin-bottom:15px;

}

.industry-card p{

font-size:15px;

line-height:1.7;

margin-bottom:0;

}

/*==========================================================
GLOBAL PRESENCE
==========================================================*/

.global-presence{

background:#ffffff;

}

.global-stat{

background:#F7FAFF;

padding:40px;

border-radius:25px;

text-align:center;

transition:.35s;

height:100%;

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

}

.global-stat:hover{

background:#0A6CFF;

color:#fff;

transform:translateY(-10px);

}

.global-stat i{

font-size:42px;

color:#0A6CFF;

margin-bottom:20px;

transition:.35s;

}

.global-stat:hover i{

color:#fff;

}

.global-stat h2{

font-size:42px;

font-weight:800;

margin-bottom:10px;

}

.region-wrapper{

background:#F7FAFF;

padding:50px;

border-radius:30px;

}

.region-grid{

display:grid;

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

gap:25px;

}

.region-card{

background:#fff;

padding:22px;

border-radius:18px;

text-align:center;

font-weight:600;

transition:.3s;

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

}

.region-card:hover{

background:#0A6CFF;

color:#fff;

}

@media(max-width:768px){

.region-grid{

grid-template-columns:1fr;

}

}

/*==========================================================
QUALITY ASSURANCE
==========================================================*/

.quality-section{
background:#F7FAFF;
}

.quality-item{
display:flex;
gap:20px;
padding:22px;
background:#fff;
border-radius:18px;
margin-bottom:18px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

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

.quality-item i{
font-size:32px;
color:#0A6CFF;
margin-top:5px;
}

.compliance-box{
background:#fff;
padding:40px;
border-radius:24px;
margin-top:20px;
box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.badge-wrapper{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-top:25px;
justify-content:center;
}

.compliance-badge{
padding:12px 24px;
background:#EAF4FF;
border-radius:30px;
font-weight:600;
color:#0A6CFF;
}

.workflow{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:15px;
margin-top:60px;
}

.workflow-step{
padding:18px 26px;
background:#0A6CFF;
color:#fff;
border-radius:40px;
font-weight:700;
}

.workflow-arrow{
font-size:22px;
color:#0A6CFF;
}

@media(max-width:768px){

.workflow{
flex-direction:column;
}

.workflow-arrow{
transform:rotate(90deg);
}

}

/*==========================================================
QUALITY ASSURANCE 2
==========================================================*/

.quality-section{
background:#F7FAFF;
}

.quality-item{
display:flex;
gap:20px;
padding:22px;
background:#fff;
border-radius:18px;
margin-bottom:18px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

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

.quality-item i{
font-size:32px;
color:#0A6CFF;
margin-top:5px;
}

.compliance-box{
background:#fff;
padding:40px;
border-radius:24px;
margin-top:20px;
box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.badge-wrapper{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-top:25px;
justify-content:center;
}

.compliance-badge{
padding:12px 24px;
background:#EAF4FF;
border-radius:30px;
font-weight:600;
color:#0A6CFF;
}

.workflow{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:15px;
margin-top:60px;
}

.workflow-step{
padding:18px 26px;
background:#0A6CFF;
color:#fff;
border-radius:40px;
font-weight:700;
}

.workflow-arrow{
font-size:22px;
color:#0A6CFF;
}

@media(max-width:768px){

.workflow{
flex-direction:column;
}

.workflow-arrow{
transform:rotate(90deg);
}

}


/*==========================================================
ABOUT CTA
==========================================================*/

.about-cta{

background:#ffffff;

}

.about-cta-box{

position:relative;

overflow:hidden;

padding:80px;

border-radius:35px;

background:linear-gradient(135deg,#003E87,#0A6CFF);

}

.about-cta-box h2{

font-size:48px;

font-weight:800;

}

.about-cta-box p{

font-size:18px;

line-height:1.9;

opacity:.95;

}

.about-cta-box .shape{

position:absolute;

border-radius:50%;

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

}

.s1{

width:240px;

height:240px;

top:-80px;

right:-80px;

}

.s2{

width:160px;

height:160px;

bottom:-40px;

left:-50px;

}

.s3{

width:120px;

height:120px;

right:22%;

top:55%;

}

@media(max-width:991px){

.about-cta-box{

padding:45px;

text-align:center;

}

.about-cta-box img{

margin-top:40px;

}

.about-cta-box h2{

font-size:36px;

}

}

/*==========================================================
SERVICES HERO
==========================================================*/

.services-hero{

position:relative;

overflow:hidden;

padding:140px 0 110px;

background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);

}

.hero-bg-circle{

position:absolute;

border-radius:50%;

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

filter:blur(10px);

}

.circle-1{

width:320px;

height:320px;

left:-120px;

top:-80px;

}

.circle-2{

width:260px;

height:260px;

right:-80px;

bottom:20px;

}

.hero-title{

font-size:52px;

font-weight:800;

line-height:1.2;

color:#0B1F3A;

}

.hero-description{

font-size:18px;

line-height:1.9;

color:#5B6575;

max-width:620px;

}

.hero-buttons .btn{

padding:15px 34px;

border-radius:50px;

font-weight:600;

}

.hero-service-image{

max-width:100%;

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

}

.hero-stats{

display:flex;

gap:25px;

flex-wrap:wrap;

}

.hero-stat{

background:#fff;

padding:25px 30px;

border-radius:20px;

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

min-width:150px;

transition:.35s;

}

.hero-stat:hover{

transform:translateY(-8px);

}

.hero-stat h3{

font-size:34px;

font-weight:800;

color:#0A6CFF;

margin-bottom:5px;

}

.hero-stat span{

color:#666;

font-size:15px;

}

@keyframes floatImage{

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

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

100%{transform:translateY(0px);}

}

@media(max-width:991px){

.services-hero{

padding:100px 0 70px;

text-align:center;

}

.hero-title{

font-size:38px;

}

.hero-stats{

justify-content:center;

margin-bottom:40px;

}

.hero-service-image{

margin-top:40px;

}

}

/*==========================================================
RESEARCH CATEGORIES
==========================================================*/

.research-categories{

background:#fff;

}

.service-category-card{

display:block;

background:#fff;

border-radius:25px;

padding:35px;

text-align:center;

text-decoration:none;

height:100%;

border:1px solid #EEF3FB;

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

transition:.35s;

color:#222;

}

.service-category-card:hover{

transform:translateY(-10px);

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

border-color:#0A6CFF;

text-decoration:none;

}

.service-category-card img{

height:160px;

margin-bottom:25px;

transition:.35s;

}

.service-category-card:hover img{

transform:scale(1.05);

}

.service-category-card h4{

font-size:24px;

font-weight:700;

margin-bottom:15px;

}

.service-category-card p{

font-size:16px;

line-height:1.8;

color:#666;

margin-bottom:0;

}

.service-category-card:hover h4{

color:#0A6CFF;

}

/*==========================================================
SERVICE SECTION
==========================================================*/

.service-section{

background:#fff;

}

.service-image{

background:linear-gradient(135deg,#EEF7FF,#F5F9FF);

border-radius:24px;

padding:30px;

text-align:center;

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

}

.service-image img{

max-width:100%;

border-radius:14px;

transition:.4s;

}

.service-image:hover img{

transform:translateY(-10px);

}

.service-feature-list{

display:grid;

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

gap:18px;

}

.feature-item{

background:#F7FAFF;

padding:16px 20px;

border-radius:14px;

font-weight:600;

transition:.3s;

}

.feature-item:hover{

background:#0A6CFF;

color:#fff;

}

.feature-item i{

color:#0A6CFF;

margin-right:10px;

}

.feature-item:hover i{

color:#fff;

}

.service-badges{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.service-badges span{

background:#EEF6FF;

padding:12px 20px;

border-radius:30px;

font-weight:600;

color:#0A6CFF;

}

@media(max-width:768px){

.service-feature-list{

grid-template-columns:1fr;

}

}

/*==========================================================
ALTERNATE SERVICE SECTION
==========================================================*/

.service-section-alt{

background:#F8FBFF;

}

/*==========================================================
BEST FOR BOX
==========================================================*/

.best-for-box{

background:#F4F9FF;

border-left:5px solid #0A6CFF;

padding:25px;

border-radius:15px;

margin-top:30px;

}

.best-for-box h5{

font-weight:700;

margin-bottom:10px;

color:#0A6CFF;

}

.best-for-box p{

margin:0;

line-height:1.8;

color:#555;

}

/*==========================================================
DELIVERABLES
==========================================================*/

.deliverables-box{

background:#fff;

padding:28px;

border-radius:18px;

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

margin-top:30px;

}

.deliverables-box h5{

font-weight:700;

margin-bottom:20px;

color:#0A6CFF;

}

.deliverables-grid{

display:grid;

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

gap:15px;

}

.deliverables-grid span{

background:#F4F9FF;

padding:14px 18px;

border-radius:12px;

font-weight:600;

display:flex;

align-items:center;

gap:10px;

transition:.3s;

}

.deliverables-grid span:hover{

background:#0A6CFF;

color:#fff;

}

.deliverables-grid span i{

color:#0A6CFF;

}

.deliverables-grid span:hover i{

color:#fff;

}

@media(max-width:768px){

.deliverables-grid{

grid-template-columns:1fr;

}

}
/*==========================================================
CAPABILITIES
==========================================================*/

.capabilities-box{

background:#F8FBFF;

padding:28px;

border-radius:18px;

margin-top:30px;

border-left:5px solid #0A6CFF;

}

.capabilities-box h5{

font-weight:700;

margin-bottom:20px;

color:#0A6CFF;

}

.capabilities-box ul{

padding-left:20px;

margin-bottom:0;

}

.capabilities-box li{

margin-bottom:12px;

line-height:1.8;

color:#555;

}

/*==========================================================
WORKFLOW MINI
==========================================================*/

.workflow-mini{

background:#fff;

padding:28px;

border-radius:18px;

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

margin-top:30px;

}

.workflow-mini h5{

font-weight:700;

margin-bottom:20px;

color:#0A6CFF;

}

.workflow-steps{

display:flex;

align-items:center;

justify-content:space-between;

flex-wrap:wrap;

gap:10px;

}

.workflow-steps span{

background:#EEF6FF;

padding:10px 18px;

border-radius:30px;

font-weight:600;

color:#0A6CFF;

}

.workflow-steps i{

color:#0A6CFF;

}

@media(max-width:768px){

.workflow-steps{

flex-direction:column;

}

.workflow-steps i{

transform:rotate(90deg);

}

}

/*==========================================================
INSIGHT BOX
==========================================================*/

.insight-box{

background:linear-gradient(135deg,#0A6CFF,#0052CC);

padding:30px;

border-radius:18px;

margin-top:30px;

color:#fff;

}

.insight-box h5{

font-weight:700;

margin-bottom:15px;

}

.insight-box p{

margin:0;

line-height:1.8;

opacity:.95;

}

/*==========================================================
INDUSTRIES SERVED
==========================================================*/

.industries-served{

background:#fff;

}

.industry-grid{

display:grid;

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

gap:22px;

}

.industry-card{

background:#F8FBFF;

padding:25px;

border-radius:18px;

transition:.35s;

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

height:100%;

}

.industry-card:hover{

background:#0A6CFF;

color:#fff;

transform:translateY(-8px);

}

.industry-card i{

font-size:34px;

color:#0A6CFF;

margin-bottom:18px;

transition:.35s;

}

.industry-card:hover i{

color:#fff;

}

.industry-card h5{

font-weight:700;

margin-bottom:10px;

}

.industry-card p{

margin:0;

line-height:1.7;

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

}

/*==========================================================
WHY SERVICES
==========================================================*/

.why-services{

background:#F8FBFF;

}

.capability-stat{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

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

transition:.35s;

}

.capability-stat:hover{

transform:translateY(-8px);

}

.capability-stat h2{

font-size:42px;

font-weight:800;

color:#0A6CFF;

margin-bottom:10px;

}

.capability-box{

background:#fff;

padding:30px;

border-radius:20px;

margin-bottom:25px;

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

transition:.35s;

height:100%;

}

.capability-box:hover{

transform:translateY(-8px);

}

.capability-box i{

font-size:38px;

color:#0A6CFF;

margin-bottom:20px;

}

.capability-box h4{

font-weight:700;

margin-bottom:15px;

}

.capability-box p{

margin:0;

line-height:1.8;

color:#666;

}

.trust-badges{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.trust-badges span{

background:#fff;

padding:14px 24px;

border-radius:40px;

font-weight:600;

color:#0A6CFF;

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

transition:.3s;

}

.trust-badges span:hover{

background:#0A6CFF;

color:#fff;

}

/*==========================================================
SERVICES FAQ
==========================================================*/

.services-faq{

background:#fff;

}

.custom-faq .accordion-item{

border:none;

margin-bottom:20px;

border-radius:18px;

overflow:hidden;

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

}

.custom-faq .accordion-button{

padding:24px;

font-weight:700;

font-size:18px;

background:#F8FBFF;

}

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

background:#0A6CFF;

color:#fff;

}

.custom-faq .accordion-body{

padding:25px;

line-height:1.9;

color:#555;

}

/*==========================================================
SERVICES CTA
==========================================================*/

.services-cta{

padding:120px 0;

background:#fff;

}

.services-cta-wrapper{

background:linear-gradient(135deg,#0A6CFF,#0048C4);

border-radius:35px;

padding:70px;

overflow:hidden;

position:relative;

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

}

.services-cta-wrapper::before{

content:"";

position:absolute;

width:350px;

height:350px;

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

border-radius:50%;

top:-120px;

right:-100px;

}

.services-cta-wrapper::after{

content:"";

position:absolute;

width:220px;

height:220px;

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

border-radius:50%;

bottom:-80px;

left:-80px;

}

.services-cta-wrapper>*{

position:relative;

z-index:2;

}

.cta-features{

display:grid;

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

gap:20px;

}

.cta-features div{

color:#fff;

font-weight:600;

}

.cta-features i{

margin-right:10px;

color:#9BFFB0;

}

.btn-outline-light{

border-width:2px;

}

.btn-outline-light:hover{

background:#fff;

color:#0A6CFF;

}

@media(max-width:992px){

.services-cta-wrapper{

padding:45px;

text-align:center;

}

.cta-features{

grid-template-columns:1fr;

}

.services-cta-wrapper img{

margin-top:40px;

}

}

/*==========================================================
JOIN PANEL HERO
==========================================================*/

.panel-hero{

padding:120px 0;

background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);

overflow:hidden;

}

.hero-title{

font-size:52px;

font-weight:800;

line-height:1.2;

color:#0B2341;

}

.hero-description{

font-size:18px;

line-height:1.9;

color:#666;

}

.hero-features{

display:grid;

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

gap:18px;

}

.hero-features div{

font-weight:600;

color:#444;

}

.hero-features i{

margin-right:10px;

color:#0A6CFF;

}

.panel-hero img{

max-width:100%;

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

}

@keyframes floatImage{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:991px){

.panel-hero{

text-align:center;

}

.hero-title{

font-size:38px;

}

.hero-features{

grid-template-columns:1fr;

}

.panel-hero img{

margin-top:50px;

}

}

/*==========================================================
WHY JOIN
==========================================================*/

.why-join{

background:#fff;

}

.why-image img{

width:100%;

}

.join-highlights{

display:flex;

flex-direction:column;

gap:25px;

}

.highlight-item{

display:flex;

align-items:flex-start;

gap:20px;

padding:22px;

background:#F8FBFF;

border-radius:18px;

transition:.35s;

}

.highlight-item:hover{

transform:translateX(8px);

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

}

.highlight-item i{

font-size:32px;

color:#0A6CFF;

min-width:40px;

margin-top:5px;

}

.highlight-item h5{

font-weight:700;

margin-bottom:8px;

}

.highlight-item p{

margin:0;

color:#666;

line-height:1.7;

}

/*==========================================================
PANEL BENEFITS
==========================================================*/

.panel-benefits{

background:#F8FBFF;

}

.benefits-grid{

display:grid;

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

gap:25px;

}

.benefit-card{

background:#fff;

padding:30px;

border-radius:20px;

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

transition:.35s;

height:100%;

}

.benefit-card:hover{

transform:translateY(-8px);

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

}

.benefit-card i{

font-size:38px;

color:#0A6CFF;

margin-bottom:20px;

}

.benefit-card h4{

font-weight:700;

margin-bottom:15px;

}

.benefit-card p{

margin:0;

line-height:1.8;

color:#666;

}

@media(max-width:991px){

.benefits-grid{

grid-template-columns:1fr;

margin-top:40px;

}

}

/*==========================================================
HOW IT WORKS
==========================================================*/

.how-it-works{

background:#fff;

}

.process-timeline{

position:relative;

padding-left:35px;

}

.process-timeline::before{

content:"";

position:absolute;

left:18px;

top:10px;

bottom:10px;

width:3px;

background:#D8E9FF;

}

.process-step{

display:flex;

align-items:flex-start;

gap:25px;

margin-bottom:40px;

position:relative;

}

.step-number{

width:40px;

height:40px;

background:#0A6CFF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-weight:700;

font-size:18px;

flex-shrink:0;

z-index:2;

box-shadow:0 8px 20px rgba(10,108,255,.25);

}

.step-content{

background:#F8FBFF;

padding:22px;

border-radius:18px;

flex:1;

transition:.3s;

}

.step-content:hover{

background:#EEF6FF;

transform:translateX(6px);

}

.step-content h4{

font-weight:700;

margin-bottom:10px;

}

.step-content p{

margin:0;

color:#666;

line-height:1.8;

}

/*==========================================================
RESEARCH OPPORTUNITIES
==========================================================*/

.research-opportunities{

background:#F8FBFF;

}

.research-grid{

display:grid;

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

gap:25px;

}

.research-card{

background:#fff;

padding:28px;

border-radius:20px;

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

transition:.35s;

height:100%;

}

.research-card:hover{

transform:translateY(-8px);

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

}

.research-card i{

font-size:34px;

color:#0A6CFF;

margin-bottom:18px;

}

.research-card h5{

font-weight:700;

margin-bottom:12px;

}

.research-card p{

margin:0;

color:#666;

line-height:1.8;

}

@media(max-width:991px){

.research-grid{

grid-template-columns:1fr;

margin-top:40px;

}

}

/*==========================================================
WHO CAN JOIN
==========================================================*/

.who-can-join{

background:#fff;

}

.eligibility-grid{

display:grid;

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

gap:25px;

}

.eligibility-card{

background:#F8FBFF;

padding:30px;

border-radius:20px;

transition:.35s;

height:100%;

}

.eligibility-card:hover{

background:#0A6CFF;

color:#fff;

transform:translateY(-8px);

}

.eligibility-card i{

font-size:36px;

color:#0A6CFF;

margin-bottom:20px;

transition:.3s;

}

.eligibility-card:hover i{

color:#fff;

}

.eligibility-card h4{

font-weight:700;

margin-bottom:15px;

}

.eligibility-card p{

margin:0;

line-height:1.8;

}

.eligibility-note{

display:flex;

gap:20px;

align-items:flex-start;

background:#EEF6FF;

padding:30px;

border-left:5px solid #0A6CFF;

border-radius:18px;

}

.eligibility-note i{

font-size:28px;

color:#0A6CFF;

margin-top:5px;

}

.eligibility-note h5{

font-weight:700;

margin-bottom:10px;

}

.eligibility-note p{

margin:0;

line-height:1.8;

color:#555;

}

@media(max-width:991px){

.eligibility-grid{

grid-template-columns:1fr;

margin-top:40px;

}

}

/*==========================================================
REWARDS
==========================================================*/

.panel-rewards{

background:#F8FBFF;

}

.reward-flow{

display:flex;

flex-direction:column;

gap:10px;

}

.reward-step{

display:flex;

align-items:center;

gap:20px;

background:#fff;

padding:22px;

border-radius:18px;

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

transition:.3s;

}

.reward-step:hover{

transform:translateX(8px);

}

.reward-icon{

width:70px;

height:70px;

background:#EEF6FF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.reward-icon i{

font-size:28px;

color:#0A6CFF;

}

.reward-arrow{

text-align:center;

font-size:24px;

color:#0A6CFF;

padding:6px 0;

}

.reward-note{

background:#fff;

padding:30px;

border-radius:18px;

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

}

.reward-note h5{

font-weight:700;

margin-bottom:20px;

}

.reward-note ul{

margin:0;

padding-left:20px;

}

.reward-note li{

margin-bottom:12px;

line-height:1.8;

}
/*==========================================================
PRIVACY & SECURITY
==========================================================*/

.privacy-security{

background:#fff;

}

.privacy-grid{

display:grid;

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

gap:25px;

}

.privacy-card{

background:#F8FBFF;

padding:28px;

border-radius:18px;

transition:.35s;

height:100%;

}

.privacy-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(10,108,255,.10);

}

.privacy-card i{

font-size:34px;

color:#0A6CFF;

margin-bottom:18px;

}

.privacy-card h5{

font-weight:700;

margin-bottom:12px;

}

.privacy-card p{

margin:0;

line-height:1.8;

color:#666;

}

.privacy-note{

display:flex;

gap:20px;

align-items:flex-start;

background:#EEF6FF;

padding:35px;

border-left:5px solid #0A6CFF;

border-radius:20px;

margin-top:60px;

}

.privacy-note i{

font-size:30px;

color:#0A6CFF;

margin-top:5px;

}

.privacy-note h5{

font-weight:700;

margin-bottom:12px;

}

.privacy-note p{

margin:0;

line-height:1.8;

color:#555;

}

@media(max-width:991px){

.privacy-grid{

grid-template-columns:1fr;

margin-top:40px;

}

}

/*==========================================================
PANEL FAQ CTA
==========================================================*/

.faq-contact-box{

margin-top:70px;

background:linear-gradient(135deg,#0A6CFF,#0048C4);

padding:60px;

border-radius:25px;

text-align:center;

color:#fff;

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

}

.faq-contact-box h3{

font-size:34px;

font-weight:700;

margin-bottom:20px;

}

.faq-contact-box p{

font-size:18px;

line-height:1.8;

opacity:.95;

margin-bottom:30px;

max-width:700px;

margin-left:auto;

margin-right:auto;

}

.faq-contact-box .btn{

padding:15px 40px;

border-radius:50px;

font-weight:600;

}

/*==========================================================
REGISTER CTA
==========================================================*/

.register-cta{

background:#fff;

padding:120px 0;

}

.register-cta-wrapper{

background:linear-gradient(135deg,#0A6CFF,#0048C4);

border-radius:35px;

padding:70px;

position:relative;

overflow:hidden;

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

}

.register-cta-wrapper::before{

content:"";

position:absolute;

width:350px;

height:350px;

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

border-radius:50%;

top:-120px;

right:-80px;

}

.register-cta-wrapper::after{

content:"";

position:absolute;

width:220px;

height:220px;

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

border-radius:50%;

left:-70px;

bottom:-70px;

}

.register-cta-wrapper>*{

position:relative;

z-index:2;

}

.register-features{

display:grid;

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

gap:18px;

}

.register-features div{

color:#fff;

font-weight:600;

}

.register-features i{

color:#9BFFB0;

margin-right:10px;

}

.register-cta img{

max-width:100%;

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

}

@keyframes floatPanel{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:991px){

.register-cta-wrapper{

padding:45px;

text-align:center;

}

.register-features{

grid-template-columns:1fr;

}

.register-cta img{

margin-top:40px;

}

}
/* ==========================================================
   LEGAL PAGES (Privacy / Terms / Cookie Policy)
========================================================== */
.legal-content h3{
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0A2E5C;
}
.legal-content p,
.legal-content li{
    color: #555;
    line-height: 1.8;
}
.legal-content ul{
    padding-left: 20px;
}

/* ==========================================================
   FOOTER
========================================================== */
.footer{
    background: var(--dark);
    color: rgba(255,255,255,.75);
    padding: 80px 0 30px;
}

.footer h5{
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 18px;
}

.footer p{
    color: rgba(255,255,255,.65);
    line-height: 1.8;
}

.footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li{
    margin-bottom: 14px;
}

.footer ul:not(.footer-contact) li a{
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: .3s;
}

.footer ul:not(.footer-contact) li a:hover{
    color: var(--secondary);
    padding-left: 4px;
}

.footer-brand{
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo{
    height: 62px;
}

.footer-social{
    display: flex;
    gap: 12px;
}

.footer-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover{
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.65);
}

.footer-contact li i{
    color: var(--secondary);
    margin-top: 4px;
    width: 18px;
}

.footer-contact li a{
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: .3s;
}

.footer-contact li a:hover{
    color: var(--secondary);
}

.footer-contact-label{
    color: rgba(255,255,255,.4);
    font-size: 13px;
}

.footer hr{
    border-color: rgba(255,255,255,.12);
    margin: 40px 0 25px;
}

.footer .copyright{
    color: rgba(255,255,255,.55);
    margin: 0;
    font-size: 14px;
}

.footer .col-lg-6.text-lg-end a{
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer .col-lg-6.text-lg-end a:hover{
    color: var(--secondary);
}

/* Floating WhatsApp button */
.whatsapp-btn{
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 999;
    transition: .3s;
}

.whatsapp-btn:hover{
    background: #1DA851;
    color: #ffffff;
    transform: scale(1.08);
}

@media(max-width:576px){
    .footer{
        padding: 60px 0 25px;
        text-align: center;
    }
    .footer-brand{
        justify-content: center;
    }
    .footer-social{
        justify-content: center;
    }
    .footer-contact li{
        justify-content: center;
        text-align: left;
    }
    .footer .col-lg-6.text-lg-end{
        text-align: center !important;
        margin-top: 16px;
    }
    .whatsapp-btn{
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================
   COUNTER SIZE FIX
   (.hero-stat span is also used by services-hero.php for a
   small text label in a different layout; scope this override
   with higher specificity so the homepage counter numbers keep
   their intended large size instead of inheriting that 15px rule)
========================================================== */
.hero-stat h2 .counter,
.floating-card h3 .counter,
.stats-card h2 .counter{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    display: inline;
}

/* ==========================================================
   CTA BUTTON EMPHASIS (Request a Proposal)
========================================================== */
.cta-buttons .btn-light{
    border: 2px solid #0A6CFF;
    color: #003E87;
    font-weight: 700;
}

.cta-buttons .btn-light:hover{
    background: #0A6CFF;
    border-color: #0A6CFF;
    color: #fff;
}

/* ==========================================================
   WORLD MAP (inline SVG + markers)
   Previously unstyled: the .svg-map / .country / .marker /
   .connection-svg elements used in sections/global.php had no
   matching CSS (only ".world-map img" existed, which never
   matched the inline <svg>), so the map rendered at the SVG
   default size (tiny) with default black fills.
========================================================== */
.world-map-wrapper{
    position: relative;
    width: 100%;
}

.svg-map{
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.country{
    fill: #DCE9FF;
    stroke: #B7D3FF;
    stroke-width: 1.5;
    transition: .3s;
}

.country:hover{
    fill: #0A6CFF;
}

.connection-svg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-svg .route{
    stroke: #0A6CFF;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    opacity: .55;
    animation: dashMove 3s linear infinite;
}

@keyframes dashMove{
    to{ stroke-dashoffset: -24; }
}

.marker{
    position: absolute;
    width: 14px;
    height: 14px;
    background: #0A6CFF;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(10,108,255,.25);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(10,108,255,.5);
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse{
    0%{ transform: scale(.6); opacity: 1; }
    100%{ transform: scale(1.8); opacity: 0; }
}

.marker-tooltip{
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #ffffff;
    color: #021B3A;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    font-size: 13px;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 5;
}

.marker-tooltip h6{
    margin: 0 0 4px;
    color: #003E87;
    font-size: 13px;
    font-weight: 700;
}

.marker:hover .marker-tooltip{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media(max-width:768px){
    .marker-tooltip{
        display: none;
    }
}

/* ==========================================================
   RESEARCH PROCESS GRID (sections/process.php, homepage)
   Renamed from .process-timeline/.process-step/.process-icon
   because those class names were also used by a completely
   different vertical numbered-step design in
   sections/panel/how-it-works.php, and the two conflicting
   rulesets were corrupting each other.
========================================================== */
.research-process-grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
    position: relative;
}

.research-process-grid::before{
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E3EEFF;
    z-index: 1;
}

.research-process-step{
    position: relative;
    text-align: center;
    z-index: 2;
}

.research-process-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    background: #fff;
    border: 4px solid #0A6CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #0A6CFF;
    transition: .3s;
}

.research-process-step:hover .research-process-icon{
    background: #0A6CFF;
    color: #fff;
    transform: translateY(-8px);
}

.research-process-step h5{
    margin-top: 20px;
    font-weight: 700;
}

.research-process-step p{
    font-size: 14px;
    margin-top: 8px;
    color: #6B7280;
}

@media(max-width:1200px){
    .research-process-grid{
        grid-template-columns: repeat(4, 1fr);
        row-gap: 50px;
    }
    .research-process-grid::before{
        display: none;
    }
}

@media(max-width:768px){
    .research-process-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .research-process-grid{
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   FOOTER CTA BOX (includes/footer.php, appears on every page)
   Previously this had no background at all -- just
   text-white headings sitting directly on the light
   .cta-section background, making them invisible. Wrapped
   in a proper dark gradient card matching the other CTAs.
========================================================== */
.footer-cta-box{
    background: linear-gradient(135deg, #003E87, #0A6CFF);
    border-radius: 30px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.footer-cta-box p{
    color: #E9F3FF;
}

.footer-cta-box .btn-light{
    border: 2px solid #0A6CFF;
    color: #003E87;
    font-weight: 700;
}

.footer-cta-box .btn-light:hover{
    background: #0A6CFF;
    border-color: #0A6CFF;
    color: #fff;
}

@media(max-width:991px){
    .footer-cta-box{
        padding: 40px 30px;
        text-align: center;
    }
}

/* ==========================================================
   THEMED IMAGE FRAME
   Many stock/AI-generated illustrations ship with a flat
   white background baked in, which looks like a mismatched
   box when dropped onto the site's light-blue section
   backgrounds. Wrapping them in this frame gives every image
   a consistent, on-brand backdrop instead.
========================================================== */
.themed-image-frame{
    background: linear-gradient(135deg, #EEF7FF, #F5F9FF);
    border-radius: 24px;
    padding: 30px;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(10,108,255,.08);
}

.themed-image-frame img{
    border-radius: 14px;
    max-width: 100%;
}

/* Dark variant for images sitting inside dark gradient CTA boxes */
.themed-image-frame-dark{
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 25px;
    display: inline-block;
}

.themed-image-frame-dark img{
    border-radius: 14px;
    max-width: 100%;
}

/* ==========================================================
   DEFENSIVE OVERRIDE: "How It Works" timeline (join-panel.php)
   Scoped with the #how-it-works id for higher specificity so
   this always renders as a vertical list regardless of any
   other same-named rule that may still be cached/active.
========================================================== */
#how-it-works .process-timeline{
    display: block !important;
    position: relative !important;
    padding-left: 35px !important;
}

#how-it-works .process-step{
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 25px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

#how-it-works .step-number{
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
}

#how-it-works .step-content{
    flex: 1 1 auto !important;
    width: auto !important;
}
