/* =====================================================
   ORIONSOFT STYLE.CSS
   PART 1
   GLOBAL RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#1565ff;
    --primary-dark:#0d47a1;

    --white:#ffffff;

    --text:#111827;
    --text-light:#6b7280;

    --border:#e5e7eb;

    --bg:#ffffff;
    --bg-light:#f8fbff;

    --shadow:0 10px 35px rgba(0,0,0,.08);

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Plus Jakarta Sans',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

img{

    width:100%;
    display:block;

}

button{

    border:none;
    outline:none;
    background:none;
    cursor:pointer;

}

.container{

    width:100%;
    max-width:1350px;

    margin:auto;

    padding:0 25px;

}

/* ========================= */

.section-title{

    font-size:52px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:22px;

    color:var(--text);

}

.section-subtitle{

    max-width:760px;

    margin:auto;

    font-size:18px;

    color:var(--text-light);

    line-height:1.9;

}

/* ========================= */

.btn-solid{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:10px;

    font-weight:700;

    transition:.35s;

}

.btn-solid:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:10px;

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}
/* =====================================================
   PART 2
   HEADER + NAVBAR
=====================================================*/

header{

position:fixed;

top:0;
left:0;

width:100%;

background:#fff;

box-shadow:0 2px 18px rgba(0,0,0,.06);

z-index:99999;

transition:.35s;

}

.navbar{
    
    height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1450px;
    margin:0 auto;
    padding:0 40px;
}

/* ==========================
LOGO
========================== */

.logo-link{

display:flex;

align-items:center;

}

.logo-img{
    height:80px;
    width:auto;
    display:block;
}
.logo-link{
    flex:0 0 260px;
}
/* ==========================
MENU
========================== */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:1;
    gap:30px;
    margin:0 25px;
}

.nav-links li{

position:relative;

}

.nav-links li a{

font-size:15px;

font-weight:700;

color:#111827;

transition:.3s;

display:flex;

align-items:center;

gap:6px;

height:88px;

}

.nav-links li:hover>a{

color:#1565ff;

}

/* ==========================
MEGA MENU
========================== */
/* Mega Menu Dropdowns */

.has-mega-menu{
    position:static !important;
}

.has-mega-menu:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0) translateX(-50%);
}

.mega-menu{
    position:absolute;
    top:90px;
    left:50%;
    transform:translateX(-50%) translateY(15px);
    width:100%;
    background:#fff;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
    border:1px solid #e2e8f0;
    overflow:hidden;
}

/* About */

.mega-menu.about-menu{
    max-width:800px;
}

.about-mega-grid{
    display:grid;
    grid-template-columns:.45fr .55fr;
}

.about-links{
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
    border-right:1px solid #e2e8f0;
    justify-content:center;
}

.about-links a{
    padding:12px;
    font-size:15px;
    font-weight:600;
    color:#111827;
    text-decoration:none;
    transition:.3s;
}

.about-links a:hover{
    background:#eff6ff;
    color:#1565ff;
    padding-left:20px;
}

.about-insight{
    padding:30px;
    background:#fafafa;
}

.about-insight img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

/* Services + Industries */

.mega-menu.services-menu,
.mega-menu.industries-menu{
    max-width:1100px;
}

.mega-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    padding:35px;
}

.mega-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.mega-item:hover{
    background:#eff6ff;
}

.mega-icon{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
    color:#1565ff;
    border-radius:8px;
}

.mega-text{
    font-size:14px;
    font-weight:600;
    color:#111827;
}

.mega-item:hover .mega-text{
    color:#1565ff;
}
/* ==========================
RIGHT CONTACT
========================== */

.header-contact{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding-left:20px;
    gap:6px;
}

.contact-item{

display:flex;

align-items:center;

gap:10px;

}

.contact-item i{

font-size:18px;

color:#1565ff;

}

.contact-item svg{

width:18px;

height:18px;

color:#1565ff;

}

.contact-item a{

font-size:15px;

font-weight:600;

color:#111827;

white-space:nowrap;

}

.contact-divider{

width:1px;

height:34px;

background:#ddd;

}

/* ==========================
HAMBURGER
========================== */

.menu-toggle{

display:none;

width:48px;

height:48px;

border:none;

background:none;

cursor:pointer;

align-items:center;

justify-content:center;

flex-direction:column;

gap:6px;

position:relative;

z-index:1100;

}

.menu-toggle span{

width:28px;

height:3px;

background:#1565ff;

border-radius:20px;

transition:.35s;

display:block;

}

.menu-toggle.active span:nth-child(1){

transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

opacity:0;

transform:scaleX(0);

}

.menu-toggle.active span:nth-child(3){

transform:translateY(-9px) rotate(-45deg);

}

/* =====================================================
   PART 3
   HERO SECTION
=====================================================*/

.hero{

position:relative;

padding-top:88px;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

background:#fff;

}

/* Background */

.hero::before{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:linear-gradient(
135deg,
#ffffff 0%,
#f5f9ff 45%,
#eef5ff 100%
);

z-index:0;

}

/* ========================= */

.hero-video{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

object-fit:cover;

opacity:.08;

z-index:0;

}

/* ========================= */

.hero-content-wrapper{

position:relative;

z-index:2;

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:70px;

padding:90px 0;

}

/* ========================= */

.hero-left{

max-width:670px;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 22px;

border-radius:50px;

background:#eef5ff;

color:#1565ff;

font-size:14px;

font-weight:700;

margin-bottom:28px;

}

.hero-left h1{

font-size:66px;

font-weight:800;

line-height:1.08;

margin-bottom:25px;

letter-spacing:-2px;

color:#111827;

}

.hero-left h1 span{

color:#1565ff;

display:block;

}

.hero-left p{

font-size:18px;

color:#6b7280;

line-height:1.9;

margin-bottom:40px;

}

/* ========================= */

.hero-buttons{

display:flex;

align-items:center;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

/* ========================= */

.hero-stats{

display:flex;

align-items:center;

gap:45px;

flex-wrap:wrap;

}

.hero-stat h3{

font-size:36px;

font-weight:800;

color:#1565ff;

margin-bottom:5px;

}

.hero-stat span{

font-size:15px;

color:#6b7280;

}

/* ========================= */

.hero-right{

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

.hero-right img{

width:100%;

max-width:620px;

animation:heroFloat 5s ease-in-out infinite;

filter:drop-shadow(0 25px 50px rgba(0,0,0,.10));

}

/* ========================= */

.hero-card{

position:absolute;

background:#fff;

border-radius:18px;

padding:18px 22px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

display:flex;

align-items:center;

gap:15px;

}

.hero-card h4{

font-size:18px;

margin-bottom:3px;

}

.hero-card p{

font-size:14px;

color:#6b7280;

}

.hero-card i{

font-size:26px;

color:#1565ff;

}

.card-1{

top:40px;

left:-20px;

}

.card-2{

bottom:45px;

right:-20px;

}

/* ========================= */

@keyframes heroFloat{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-16px);

}

100%{

transform:translateY(0px);

}

}
/* =====================================================
   PART 4
   SERVICES + METRICS
=====================================================*/

/* ==========================
SERVICES
========================== */

.services-wrapper{

padding:110px 0;

background:#fafcff;

}

.services-header{

max-width:760px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

/* ========================== */

.service-box{

background:#fff;

padding:40px 30px;

border-radius:22px;

border:1px solid #edf2f7;

transition:.35s;

position:relative;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.03);

}

.service-box::before{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:4px;

background:#1565ff;

transform:scaleX(0);

transition:.35s;

}

.service-box:hover{

transform:translateY(-10px);

box-shadow:0 25px 55px rgba(0,0,0,.08);

}

.service-box:hover::before{

transform:scaleX(1);

}

.service-icon{

width:72px;

height:72px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

background:#eef5ff;

margin-bottom:25px;

}

.service-icon img{

width:38px;

height:38px;

object-fit:contain;

}

.service-box h3{

font-size:24px;

font-weight:700;

margin-bottom:18px;

color:#111827;

}

.service-box p{

font-size:16px;

color:#6b7280;

line-height:1.8;

margin-bottom:28px;

}

.service-box a{

display:inline-flex;

align-items:center;

gap:8px;

font-size:15px;

font-weight:700;

color:#1565ff;

transition:.3s;

}

.service-box:hover a{

gap:14px;

}

/* ==========================
VIEW BUTTON
========================== */

.view-all-container{

text-align:center;

margin-top:55px;

}

.btn-view-all{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 40px;

background:#1565ff;

color:#fff;

border-radius:10px;

font-weight:700;

transition:.35s;

}

.btn-view-all:hover{

background:#0d47a1;

transform:translateY(-3px);

}

/* ==========================
METRICS
========================== */

.metrics-section{

padding:110px 0;

background:#fff;

}

.metrics-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.metric-card{

background:#fff;

padding:40px 30px;

border-radius:22px;

text-align:center;

border:1px solid #edf2f7;

transition:.35s;

box-shadow:0 10px 35px rgba(0,0,0,.03);

}

.metric-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.metric-card h2{

font-size:56px;

font-weight:800;

color:#1565ff;

margin-bottom:12px;

}

.metric-card h5{

font-size:16px;

font-weight:700;

margin-bottom:12px;

color:#111827;

}

.metric-card p{

font-size:15px;

line-height:1.8;

color:#6b7280;

}

.metric-card .brand-logos{

display:flex;

justify-content:center;

gap:12px;

margin-top:25px;

}

.metric-card .brand-logos img{

width:52px;

height:52px;

object-fit:contain;

opacity:.8;

transition:.3s;

}

.metric-card:hover .brand-logos img{

opacity:1;

transform:scale(1.05);

}
/* =====================================================
   PART 5
   AI SECTION + STRATEGY + COMPANY
=====================================================*/

/* ==========================
AI SECTION
========================== */

.ai-section{

padding:120px 0;

background:#fff;

}

.ai-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.ai-content h2{

font-size:52px;

font-weight:800;

line-height:1.15;

margin-bottom:22px;

color:#111827;

}

.ai-content p{

font-size:17px;

line-height:1.9;

color:#6b7280;

margin-bottom:35px;

}

.ai-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

background:#1565ff;

color:#fff;

border-radius:10px;

font-weight:700;

transition:.35s;

}

.ai-btn:hover{

background:#0d47a1;

transform:translateY(-3px);

}

.ai-image{

display:flex;

justify-content:center;

align-items:center;

}

.ai-image img{

width:100%;

max-width:620px;

border-radius:24px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

/* ==========================
AI FEATURES
========================== */

.ai-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

margin-top:40px;

}

.ai-feature{

background:#f8fbff;

padding:24px;

border-radius:18px;

transition:.35s;

display:flex;

gap:18px;

}

.ai-feature:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.ai-feature i{

font-size:30px;

color:#1565ff;

}

.ai-feature h4{

font-size:18px;

margin-bottom:8px;

color:#111827;

}

.ai-feature p{

font-size:15px;

color:#6b7280;

line-height:1.7;

margin:0;

}

/* ==========================
STRATEGY BANNER
========================== */

.strategy-banner{

padding:110px 0;

background:linear-gradient(135deg,#1565ff,#0d47a1);

}

.strategy-card{

background:#fff;

border-radius:28px;

padding:60px;

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.strategy-text{

flex:1;

}

.strategy-text h2{

font-size:46px;

font-weight:800;

line-height:1.15;

margin-bottom:20px;

color:#111827;

}

.strategy-text p{

font-size:17px;

line-height:1.8;

color:#6b7280;

margin-bottom:30px;

}

.strategy-image{

flex:1;

display:flex;

justify-content:center;

}

.strategy-image img{

width:100%;

max-width:520px;

border-radius:22px;

}

/* ==========================
COMPANY SECTION
========================== */

.company-section{

padding:120px 0;

background:#fff;

}

.comp-layout{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.comp-content h2{

font-size:48px;

font-weight:800;

line-height:1.15;

margin-bottom:22px;

color:#111827;

}

.comp-content p{

font-size:17px;

line-height:1.9;

color:#6b7280;

margin-bottom:25px;

}

.comp-image{

display:flex;

justify-content:center;

align-items:center;

}

.comp-image img{

width:100%;

max-width:600px;

border-radius:22px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

/* ==========================
COMMON BUTTON
========================== */

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

background:#1565ff;

color:#fff;

border-radius:10px;

font-weight:700;

transition:.35s;

}

.btn-primary:hover{

background:#0d47a1;

transform:translateY(-3px);

}
/* =====================================================
   PART 6
   CLIENT REVIEWS + TESTIMONIALS
=====================================================*/

/* ==========================
REVIEWS SECTION
========================== */

.reviews-section{

    padding:120px 0;

    background:#f8fbff;

    overflow:hidden;

}

.reviews-header{

    max-width:780px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.reviews-header h2{

    font-size:52px;

    font-weight:800;

    color:#111827;

    margin-bottom:20px;

}

.reviews-header p{

    font-size:18px;

    color:#6b7280;

    line-height:1.9;

}

/* ==========================
SLIDER
========================== */

.reviews-wrapper{

    position:relative;

    overflow:hidden;

}

.reviews-track{

    display:flex;

    gap:30px;

    transition:transform .5s ease;

    scroll-behavior:smooth;

}

/* ==========================
REVIEW CARD
========================== */

.review-card{

    flex:0 0 380px;

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid #edf2f7;

    box-shadow:0 12px 35px rgba(0,0,0,.04);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.10);

}

/* ==========================
STARS
========================== */

.review-stars{

    display:flex;

    gap:6px;

    margin-bottom:20px;

}

.review-stars i{

    color:#FFC107;

    font-size:18px;

}

/* ==========================
TEXT
========================== */

.review-text{

    font-size:16px;

    color:#555;

    line-height:1.9;

    margin-bottom:30px;

}

/* ==========================
USER
========================== */

.review-user{

    display:flex;

    align-items:center;

    gap:16px;

}

.review-user img{

    width:64px;

    height:64px;

    border-radius:50%;

    object-fit:cover;

}

.review-info h4{

    font-size:19px;

    font-weight:700;

    color:#111827;

    margin-bottom:4px;

}

.review-info span{

    font-size:14px;

    color:#6b7280;

}

/* ==========================
BUTTONS
========================== */

.review-controls{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:50px;

}

.review-btn{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#1565ff;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.review-btn:hover{

    background:#0d47a1;

    transform:translateY(-3px);

}

/* ==========================
DOTS
========================== */

.review-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:35px;

}

.review-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d1d5db;

    transition:.35s;

}

.review-dot.active{

    background:#1565ff;

    transform:scale(1.2);

}
/* =====================================================
   PART 7
   INDUSTRIES + FAQ + CONTACT
=====================================================*/

/* ==========================
INDUSTRIES SECTION
========================== */

.industries-section{

    padding:120px 0;

    background:#ffffff;

}

.industries-header{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.ind-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================
INDUSTRY CARD
========================== */

.industry-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:22px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.industry-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eef5ff;

    margin-bottom:25px;

}

.industry-icon img{

    width:38px;

}

.industry-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111827;

}

.industry-card p{

    color:#6b7280;

    line-height:1.8;

}

.industry-details{

    margin-top:20px;

    border-top:1px solid #edf2f7;

    padding-top:20px;

    color:#6b7280;

    line-height:1.8;

}

/* ==========================
FAQ
========================== */

.accordion{

    margin-top:80px;

}

.accordion-item{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

}

.accordion-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

}

.accordion-header i{

    transition:.35s;

    color:#1565ff;

}

.accordion-item.active .accordion-header i{

    transform:rotate(180deg);

}

.accordion-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    padding:0 28px;

}

.accordion-item.active .accordion-content{

    max-height:400px;

    padding:0 28px 28px;

}

.accordion-content p{

    color:#6b7280;

    line-height:1.9;

}

/* ==========================
CONTACT
========================== */

.connect-section{

    padding:120px 0;

    background:#f8fbff;

}

.connect-box{

    max-width:1000px;

    margin:auto;

    background:#fff;

    border-radius:28px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.connect-box h2{

    font-size:46px;

    text-align:center;

    margin-bottom:15px;

    color:#111827;

}

.connect-box p{

    text-align:center;

    color:#6b7280;

    margin-bottom:45px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.input-group{

    display:flex;

    flex-direction:column;

}

.input-group label{

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

    color:#111827;

}

.input-group input,

.input-group textarea,

.input-group select{

    width:100%;

    padding:16px 18px;

    border:1px solid #dbe4ec;

    border-radius:12px;

    font-size:15px;

    transition:.3s;

    background:#fff;

}

.input-group input:focus,

.input-group textarea:focus,

.input-group select:focus{

    border-color:#1565ff;

    box-shadow:0 0 0 4px rgba(21,101,255,.08);

    outline:none;

}

.input-group textarea{

    min-height:150px;

    resize:vertical;

}

.input-group.full-width{

    grid-column:1 / -1;

}

.btn-submit-large{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-top:35px;

    width:100%;

    padding:18px;

    background:#1565ff;

    color:#fff;

    border-radius:12px;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.btn-submit-large:hover{

    background:#0d47a1;

    transform:translateY(-2px);

}
/* =====================================================
   PART 8
   FOOTER + UTILITIES + ANIMATIONS
=====================================================*/

/* ==========================
FOOTER
========================== */

.footer{

background:#0f172a;

color:#fff;

padding:90px 0 30px;

}

.footer-top{

display:grid;

grid-template-columns:1.5fr 1fr 1fr 1fr;

gap:50px;

margin-bottom:50px;

}

.footer-brand img{

max-width:180px;

margin-bottom:20px;

}

.footer-brand p{

color:#cbd5e1;

line-height:1.8;

}

.footer-links h4{

font-size:20px;

margin-bottom:22px;

font-weight:700;

}

.footer-links ul{

list-style:none;

}

.footer-links li{

margin-bottom:14px;

}

.footer-links a{

color:#cbd5e1;

transition:.3s;

}

.footer-links a:hover{

color:#1565ff;

padding-left:8px;

}

/* ==========================
SOCIAL
========================== */

.footer-social{

display:flex;

gap:14px;

margin-top:22px;

}

.footer-social a{

width:44px;

height:44px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.08);

transition:.35s;

font-size:18px;

}

.footer-social a:hover{

background:#1565ff;

transform:translateY(-4px);

}

/* ==========================
FOOTER BOTTOM
========================== */

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

margin-top:50px;

padding-top:25px;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom p{

font-size:14px;

color:#94a3b8;

}

.footer-bottom a{

color:#94a3b8;

transition:.3s;

}

.footer-bottom a:hover{

color:#1565ff;

}

/* ==========================
WHATSAPP
========================== */

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

box-shadow:0 12px 25px rgba(0,0,0,.18);

z-index:9999;

transition:.35s;

}

.whatsapp-float:hover{

transform:scale(1.08);

}

/* ==========================
SCROLL TOP
========================== */

.scroll-top{

position:fixed;

right:25px;

bottom:100px;

width:52px;

height:52px;

border-radius:50%;

background:#1565ff;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9998;

}

.scroll-top.show{

opacity:1;

visibility:visible;

}

/* ==========================
ANIMATION
========================== */

.fade-up{

opacity:0;

transform:translateY(40px);

transition:.8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

.zoom-in{

opacity:0;

transform:scale(.92);

transition:.8s ease;

}

.zoom-in.show{

opacity:1;

transform:scale(1);

}

/* ==========================
UTILITIES
========================== */

.text-center{

text-align:center;

}

.mt-20{

margin-top:20px;

}

.mt-40{

margin-top:40px;

}

.mb-20{

margin-bottom:20px;

}

.mb-40{

margin-bottom:40px;

}

.radius{

border-radius:20px;

}

.shadow{

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.hidden{

display:none !important;

}
/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:#1155cc;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-size:20px;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:991px){

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-links{

    position:fixed;

    top:80px;

    left:-100%;

    width:300px;

    height:calc(100vh - 80px);

    background:#fff;

    flex-direction:column;

    align-items:flex-start;

    padding:30px;

    gap:18px;

    transition:.35s;

    overflow-y:auto;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.nav-links.active{

    left:0;

}

.btn-quote{

    display:none;

}

.navbar{

    padding:20px 0;

}

.logo img{

    height:42px;

}

}
/*==================================================
CONTACT PAGE CSS - PART 1
OrionSoft Technologies
==================================================*/

/* ================= HERO ================= */

.contact-hero{
    position:relative;
    overflow:hidden;
    padding:140px 0 90px;
    background:
    radial-gradient(circle at top right,#3b82f633 0%,transparent 35%),
    linear-gradient(135deg,#07152f 0%,#0b2d63 45%,#1155cc 100%);
}

.contact-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
}

.contact-content{
    position:relative;
    z-index:2;
}

.contact-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-size:13px;

    letter-spacing:1px;

    margin-bottom:25px;

}

.contact-content h1{

    color:#fff;

    font-size:62px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

}

.contact-content h1 span{

    color:#8fd3ff;

}

.contact-content p{

    color:#d8e7ff;

    font-size:18px;

    line-height:1.9;

    max-width:600px;

}

/* ================= BUTTONS ================= */

.contact-action{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.primary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:56px;

    padding:0 34px;

    border-radius:50px;

    background:#fff;

    color:#1155cc;

    font-weight:700;

    transition:.35s;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}

.primary-btn:hover{

    transform:translateY(-5px);

}

.secondary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:56px;

    padding:0 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.3);

    color:#fff;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:#1155cc;

}

/* ================= STATS ================= */

.contact-features{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

    margin-top:55px;

}

.contact-features div{

    width:160px;

    padding:22px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

}

.contact-features h2{

    color:#fff;

    font-size:36px;

    margin-bottom:8px;

}

.contact-features p{

    color:#c9dcff;

    font-size:14px;

}

/* ================= IMAGE ================= */

.contact-image{

    position:relative;

}

.contact-image img{

    width:100%;

    border-radius:28px;

    box-shadow:0 30px 60px rgba(0,0,0,.28);

}

.floating-card{

    position:absolute;

    left:-30px;

    bottom:35px;

    width:260px;

    background:#fff;

    padding:22px;

    border-radius:20px;

    box-shadow:0 18px 45px rgba(0,0,0,.16);

}

.floating-card h3{

    color:#1155cc;

    margin-bottom:10px;

}

.floating-card p{

    color:#555;

    line-height:1.7;

}

/* ================= CONTACT SECTION ================= */

.contact-section{

    padding:100px 0;

    background:#f8fbff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:50px;

}

/* LEFT */

.contact-left{

    background:#07152f;

    color:#fff;

    border-radius:28px;

    padding:45px;

}

.contact-left h2{

    font-size:34px;

    margin-bottom:35px;

}

.info-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.info-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    background:#1155cc;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    flex-shrink:0;

}

.info-item h3{

    margin-bottom:6px;

    color:#fff;

}

.info-item p{

    color:#c6d7ef;

    line-height:1.7;

}
/*==================================================
CONTACT FORM
==================================================*/

.contact-form{

    background:#fff;

    border-radius:28px;

    padding:50px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    position:relative;

}

.contact-form::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(90deg,#1155cc,#2b7fff,#56b8ff);

}

.contact-form h2{

    font-size:38px;

    color:#07152f;

    margin-bottom:35px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

/*======================
FORM ROW
======================*/

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

}

/*======================
INPUTS
======================*/

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #d7e3f3;

    border-radius:14px;

    font-size:15px;

    color:#222;

    background:#fff;

    transition:.35s;

    outline:none;

}

.contact-form textarea{

    resize:vertical;

    min-height:170px;

}

/*======================
FOCUS EFFECT
======================*/

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#1155cc;

    box-shadow:0 0 0 4px rgba(17,85,204,.10);

}

/*======================
PLACEHOLDER
======================*/

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#8b97aa;

}

/*======================
SELECT
======================*/

.contact-form select{

    cursor:pointer;

}

/*======================
SUBMIT
======================*/

.contact-form button{

    height:58px;

    border:none;

    border-radius:50px;

    background:linear-gradient(90deg,#1155cc,#0b75ff);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 18px 45px rgba(17,85,204,.30);

}

.contact-form button:hover{

    transform:translateY(-5px);

    box-shadow:0 25px 60px rgba(17,85,204,.40);

}

/*======================
INPUT ICON STYLE
======================*/

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover{

    border-color:#aacbff;

}

/*======================
ANIMATION
======================*/

.contact-form{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================================
 WHY ORIONSOFT
==================================================*/

.why-orionsoft{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#1155cc;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    margin:18px 0;
    color:#07152f;
    font-weight:800;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#667085;
    line-height:1.8;
}

/*========================================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #edf2f8;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(17,85,204,.15);

}

.why-icon{

    width:70px;

    height:70px;

    background:#1155cc;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    font-size:32px;

    margin-bottom:22px;

}
.why-icon svg{
    width:34px;
    height:34px;
    stroke:#fff;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    display:block;
}

.why-icon i{
    font-size:50px;
    color:#1155cc;
    display:block;
}

.why-card h3{

    color:#07152f;

    font-size:24px;

    margin-bottom:15px;

}

.why-card p{

    color:#667085;

    line-height:1.8;

}


/*==================================================
 OUR PROCESS
==================================================*/

.our-process{

    padding:100px 0;

    background:#f8fbff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.process-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.process-card .number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#1155cc;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.process-card h3{

    color:#07152f;

    margin-bottom:12px;

    font-size:24px;

}

.process-card p{

    color:#667085;

    line-height:1.8;

}

/*==================================================
 TECH STACK
==================================================*/

.tech-stack{

    padding:100px 0;

    background:#fff;

}

.tech-grid{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    justify-content:center;

}

.tech-grid span{

    padding:15px 28px;

    border-radius:50px;

    background:#eef5ff;

    color:#1155cc;

    font-weight:700;

    transition:.3s;

}

.tech-grid span:hover{

    background:#1155cc;

    color:#fff;

    transform:translateY(-5px);

}

/*==================================================
 CTA
==================================================*/

.contact-cta{

    padding:100px 0;

    background:linear-gradient(135deg,#07152f,#1155cc);

}

.cta-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    color:#fff;

}

.cta-box h2{

    font-size:46px;

    margin-bottom:15px;

}

.cta-box p{

    max-width:650px;

    color:#d7e7ff;

    line-height:1.8;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border-radius:50px;

    background:#fff;

    color:#1155cc;

    font-weight:700;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-5px);

}
/*==================================================
 TESTIMONIALS
==================================================*/

.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    border:1px solid #e7edf5;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(17,85,204,.15);
}

.stars{
    font-size:22px;
    margin-bottom:18px;
}

.testimonial-card p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    color:#07152f;
}

.client span{
    color:#888;
    font-size:14px;
}

/*==================================================
 FAQ
==================================================*/

.faq-section{
    padding:100px 0;
    background:#f8fbff;
}

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.faq-btn{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 30px;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:700;
    color:#07152f;
}

.faq-content{
    display:none;
    padding:0 30px 25px;
    color:#667085;
    line-height:1.8;
}

/*==================================================
 QUICK CONTACT
==================================================*/

.quick-contact{
    padding:100px 0;
    background:#fff;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.quick-card{
    background:linear-gradient(135deg,#1155cc,#0a2f6d);
    color:#fff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    transition:.35s;
}

.quick-card:hover{
    transform:translateY(-10px);
}

.quick-icon{
    font-size:46px;
    margin-bottom:18px;
}

.quick-card h3{
    margin-bottom:10px;
}

.quick-card p{
    margin-bottom:25px;
    color:#d8e8ff;
}

.quick-card a{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    background:#fff;
    color:#1155cc;
    font-weight:700;
    transition:.3s;
}

.quick-card a:hover{
    background:#eef5ff;
}

/*==================================================
 FINAL CTA
==================================================*/

.final-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#07152f,#1155cc);
}

.final-box{
    text-align:center;
    color:#fff;
}

.final-box h2{
    font-size:52px;
    margin-bottom:20px;
}

.final-box p{
    max-width:720px;
    margin:0 auto 35px;
    color:#d7e7ff;
    line-height:1.8;
}

.final-box a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    height:60px;
    padding:0 40px;
    border-radius:50px;
    background:#fff;
    color:#1155cc;
    font-weight:700;
    transition:.35s;
}

.final-box a:hover{
    transform:translateY(-5px);
}

/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:991px){

.contact-grid,
.contact-wrapper,
.why-grid,
.process-grid,
.testimonial-grid,
.quick-grid,
.form-row,
.cta-box{

grid-template-columns:1fr;
display:grid;

}

.contact-content h1{

font-size:46px;

}

.section-title h2{

font-size:36px;

}

.cta-box{

text-align:center;

}

.contact-image{

margin-top:40px;

}

.floating-card{

position:static;
width:100%;
margin-top:20px;

}

}

@media(max-width:576px){

.contact-hero{

padding:120px 0 70px;

}

.contact-content h1{

font-size:34px;

}

.contact-left,
.contact-form{

padding:30px;

}

.section-title h2{

font-size:30px;

}

.final-box h2{

font-size:34px;

}

.primary-btn,
.secondary-btn,
.cta-btn,
.final-box a{

width:100%;

}

.contact-features{

justify-content:center;

}

}
/*=====================================================
INDUSTRIES PAGE
OrionSoft Technologies
=====================================================*/

/*==========================
HERO
==========================*/

.industry-hero{
    position:relative;
    overflow:hidden;
    padding:150px 0 100px;
    background:linear-gradient(135deg,#07152f,#1155cc);
}

.industry-hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    right:-250px;
    top:-250px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.industry-hero .container{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;

}

/*==========================*/

.industry-left{

    position:relative;
    z-index:2;

}

.industry-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-size:13px;

    letter-spacing:1px;

    margin-bottom:25px;

    border:1px solid rgba(255,255,255,.18);

}

.industry-left h1{

    font-size:64px;

    color:#fff;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

}

.industry-left h1 span{

    color:#8fd3ff;

}

.industry-left p{

    color:#d8e7ff;

    font-size:18px;

    line-height:1.9;

    max-width:620px;

}

/*==========================
BUTTONS
==========================*/

.industry-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.industry-buttons a{

    text-decoration:none;

}

.primary-btn{

    height:56px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:0 34px;

    background:#fff;

    color:#1155cc;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.secondary-btn{

    height:56px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:0 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.3);

    color:#fff;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:#1155cc;

}

/*==========================
STATS
==========================*/

.industry-awards{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

    margin-top:55px;

}

.industry-awards div{

    width:170px;

    padding:22px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

}

.industry-awards h3{

    color:#fff;

    font-size:34px;

    margin-bottom:8px;

}

.industry-awards span{

    color:#d9e8ff;

    font-size:14px;

}

/*==========================
IMAGE
==========================*/

.industry-slider{

    position:relative;

}

.industry-slider img{

    width:100%;

    border-radius:30px;

    box-shadow:0 35px 70px rgba(0,0,0,.30);

    transition:.5s;

}

/*==========================
INTRO
==========================*/

.industry-intro{

    padding:90px 0 40px;

    text-align:center;

}

.industry-intro h2{

    font-size:48px;

    color:#07152f;

    margin-bottom:18px;

}

.industry-intro p{

    max-width:760px;

    margin:auto;

    color:#667085;

    line-height:1.9;

}

/*==========================
HEADING
==========================*/

.industry-heading{

    text-align:center;

    margin-bottom:60px;

}

.industry-heading h2{

    font-size:46px;

    color:#07152f;

    margin-bottom:18px;

}

.industry-heading p{

    max-width:700px;

    margin:auto;

    color:#667085;

    line-height:1.8;

}
/*====================================================
INDUSTRY CARDS
====================================================*/

.industry-grid{

    padding:80px 0 100px;

    background:#fff;

}

.industry-cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*================================*/

.industry-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:#fff;

    min-height:420px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

}

.industry-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(17,85,204,.20);

}

.industry-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.6s;

}

.industry-card:hover img{

    transform:scale(1.12);

}

/*================================*/

.industry-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:28px;

    z-index:2;

    background:linear-gradient(to top,
    rgba(4,16,42,.97),
    rgba(4,16,42,.75),
    transparent);

}

.industry-overlay span{

    display:inline-flex;

    width:46px;

    height:46px;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#1155cc;

    color:#fff;

    font-weight:700;

    margin-bottom:18px;

}

.industry-overlay h3{

    color:#fff;

    font-size:24px;

    margin-bottom:14px;

}

.industry-overlay p{

    color:#dbe7ff;

    line-height:1.8;

    margin-bottom:22px;

    font-size:15px;

}

/*================================*/

.industry-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 28px;

    border-radius:50px;

    background:#fff;

    color:#1155cc;

    font-weight:700;

    transition:.35s;

}

.industry-btn:hover{

    background:#1155cc;

    color:#fff;

}

/*==================================
BLUE GLOW
==================================*/

.industry-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    180deg,
    transparent,
    rgba(17,85,204,.08));

    opacity:0;

    transition:.35s;

    pointer-events:none;

}

.industry-card:hover::after{

    opacity:1;

}

/*==================================
IMAGE SHINE
==================================*/

.industry-card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:120px;

    height:220%;

    background:rgba(255,255,255,.18);

    transform:rotate(30deg);

    transition:.7s;

    z-index:5;

    pointer-events:none;

}

.industry-card:hover::before{

    left:140%;

}

/*==================================
BADGE
==================================*/

.industry-badge{

    position:absolute;

    top:20px;

    right:20px;

    background:#fff;

    color:#1155cc;

    padding:8px 16px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

    z-index:10;

}

/*==================================
ANIMATION
==================================*/

.industry-card{

    animation:industryFade .8s ease;

}

@keyframes industryFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*=====================================================
 WHY ORIONSOFT
=====================================================*/

.industry-why{

    padding:100px 0;

    background:#f8fbff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(17,85,204,.18);

}

.why-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1155cc;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.why-card h3{

    font-size:24px;

    color:#07152f;

    margin-bottom:15px;

}

.why-card p{

    color:#667085;

    line-height:1.8;

}

/*=====================================================
 PROCESS
=====================================================*/

.industry-process{

    padding:110px 0;

    background:#fff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-box{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.process-box:hover{

    transform:translateY(-8px);

}

.step{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#1155cc,#2f8fff);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.process-box h3{

    color:#07152f;

    font-size:24px;

    margin-bottom:15px;

}

.process-box p{

    color:#667085;

    line-height:1.8;

}

/*=====================================================
 CTA
=====================================================*/

.industry-cta{

    padding:110px 0;

    background:
    linear-gradient(135deg,#07152f,#1155cc);

    overflow:hidden;

    position:relative;

}

.industry-cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    right:-180px;

    top:-180px;

}

.cta-box{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.cta-box h2{

    font-size:54px;

    margin-bottom:22px;

}

.cta-box p{

    max-width:760px;

    margin:auto;

    color:#dbe7ff;

    line-height:1.9;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    text-decoration:none;

}

/*=====================================================
 HOVER EFFECT
=====================================================*/

.process-box::before,
.why-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    border:2px solid transparent;

    transition:.35s;

    pointer-events:none;

}

.process-box:hover::before,
.why-card:hover::before{

    border-color:#1155cc;

}

/*=====================================================
 FLOATING ANIMATION
=====================================================*/

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.why-card:nth-child(2){

    animation:floatCard 5s infinite;

}

.why-card:nth-child(4){

    animation:floatCard 6s infinite;

}
.hero-partners{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-partners img{
    width:auto !important;
    height:32px;
    max-width:120px;
    object-fit:contain;
    display:block;
}

@media (max-width:768px){
    .hero-partners{
        gap:18px;
    }

    .hero-partners img{
        height:24px;
        max-width:90px;
    }
}
#industryImage{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:30px;
    transition:opacity .8s ease;
}
/* style.css ke sabse niche ye add karein */
header .navbar {
    height: 90px !important;
    padding: 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1450px !important;
    margin: 0 auto !important;
}

/* ===== SynapseIndia-inspired mobile navigation ===== */
@media (max-width:991px){
  #universal-header{height:76px!important;background:#fff!important;z-index:10000!important}
  #universal-header .navbar{height:76px!important;padding:10px 16px!important;display:flex!important;align-items:center!important;justify-content:space-between!important}
  #universal-header .logo-img{max-height:46px!important;width:auto!important}
  #universal-header .header-contact{display:none!important}
  #universal-header .menu-toggle{display:flex!important;flex-direction:column!important;gap:5px!important;width:44px!important;height:44px!important;background:transparent!important;border-radius:0!important;z-index:10003!important}
  #universal-header .menu-toggle span{display:block!important;width:30px!important;height:4px!important;background:#111!important;border-radius:0!important;transition:.25s!important}
  #universal-header .menu-toggle.active span:nth-child(1){transform:translateY(9px) rotate(45deg)!important}
  #universal-header .menu-toggle.active span:nth-child(2){opacity:0!important}
  #universal-header .menu-toggle.active span:nth-child(3){transform:translateY(-9px) rotate(-45deg)!important}
  #universal-header .nav-links{position:fixed!important;top:76px!important;left:0!important;width:100%!important;height:calc(100dvh - 76px - 74px)!important;background:#fff!important;padding:14px 0 20px!important;gap:0!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;transform:translateX(-105%)!important;transition:transform .3s ease!important;overflow-y:auto!important;box-shadow:none!important;z-index:10002!important}
  #universal-header .nav-links.active{transform:translateX(0)!important}
  #universal-header .nav-links>li{width:100%!important;margin:0!important;border-bottom:1px dashed #ddd!important;position:relative!important}
  #universal-header .nav-links>li>a{display:block!important;padding:17px 58px 17px 22px!important;color:#e31e2b!important;font-size:17px!important;font-weight:600!important;line-height:1.2!important}
  #universal-header .nav-links>li.has-mega-menu>a:after{content:'+';position:absolute;right:22px;top:10px;width:42px;height:42px;border:1px dashed #ddd;display:grid;place-items:center;font-size:30px;font-weight:400;color:#e31e2b}
  #universal-header .nav-links>li.has-mega-menu.mobile-open>a:after{content:'−'}
  #universal-header .mega-menu{display:none!important;position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;width:100%!important;min-width:0!important;box-shadow:none!important;border:0!important;padding:0 22px 14px!important;background:#fff!important}
  #universal-header .has-mega-menu.mobile-open>.mega-menu{display:block!important}
  #universal-header .mega-grid,#universal-header .about-mega-grid{display:block!important;padding:0!important}
  #universal-header .mega-item,#universal-header .about-links a{display:flex!important;align-items:center!important;gap:12px!important;padding:10px 2px!important;border:0!important;color:#111!important;font-size:16px!important;background:transparent!important}
  #universal-header .mega-icon{width:24px!important;height:24px!important;min-width:24px!important;color:#1155cc!important}
  #universal-header .about-insight{display:none!important}
  .mobile-overlay{display:none!important}
  body.menu-open{overflow:hidden!important}
  .mobile-contact-bar{display:none;position:fixed;left:0;right:0;bottom:0;height:74px;background:#fff;border-top:1px solid #ddd;z-index:10004;grid-template-columns:repeat(3,1fr)}
  body.menu-open .mobile-contact-bar{display:grid}
  .mobile-contact-bar a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;color:#111!important;text-decoration:none!important;font-size:13px!important}
  .mobile-contact-bar svg{width:27px;height:27px;fill:none;stroke:#111;stroke-width:1.7}
}
@media (min-width:992px){.mobile-contact-bar{display:none!important}}

/* ===== Mobile nav polish + alliance marquee fix ===== */
@media (max-width:991px){
  #universal-header{position:relative!important;height:76px!important}
  #universal-header .navbar{position:relative!important;width:100%!important;max-width:none!important;height:76px!important;padding:8px 16px!important}
  #universal-header .menu-toggle{position:absolute!important;right:16px!important;top:16px!important;left:auto!important;margin:0!important;padding:7px!important;width:44px!important;height:44px!important;align-items:center!important;justify-content:center!important;border:0!important;box-shadow:none!important;background:transparent!important}
  #universal-header .menu-toggle:before,#universal-header .menu-toggle:after{display:none!important;content:none!important}
  #universal-header .menu-toggle span{width:27px!important;height:3px!important;background:#111!important;border:0!important;box-shadow:none!important;margin:0!important}
  #universal-header .menu-toggle.active span:nth-child(1){transform:translateY(8px) rotate(45deg)!important}
  #universal-header .menu-toggle.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)!important}
  #universal-header .nav-links{top:76px!important;height:calc(100dvh - 76px - 68px)!important;padding:4px 0 12px!important}
  #universal-header .nav-links>li{border-bottom:1px solid #e8edf5!important}
  #universal-header .nav-links>li>a{padding:14px 56px 14px 20px!important;color:#1155cc!important;font-size:15px!important;font-weight:700!important}
  #universal-header .nav-links>li.has-mega-menu>a:after{right:16px!important;top:7px!important;width:36px!important;height:36px!important;border:1px solid #dbe5f3!important;color:#1155cc!important;font-size:25px!important;border-radius:4px!important}
  #universal-header .mega-menu{padding:0 20px 10px!important}
  #universal-header .mega-item,#universal-header .about-links a{padding:8px 2px!important;font-size:14px!important;line-height:1.3!important}
  .mobile-contact-bar{height:68px!important}
  .alliances-section{padding:55px 0!important;overflow:hidden!important}
  .alliances-section h2{font-size:2rem!important;margin-bottom:30px!important}
  .alliance-marquee-container{width:100%!important;overflow:hidden!important}
  .alliance-marquee-wrapper{width:max-content!important;display:flex!important;gap:14px!important;will-change:transform!important}
  .alliance-marquee-track{width:auto!important;display:flex!important;justify-content:flex-start!important;gap:14px!important;padding:0!important;flex-shrink:0!important}
  .alliance-card-node{width:145px!important;height:110px!important;padding:16px 12px!important;flex:0 0 145px!important;box-sizing:border-box!important}
  .alliance-card-node img{max-width:100px!important;max-height:38px!important;margin-bottom:10px!important}
}

/* OrionSoft final alignment/navigation fixes */
html{scroll-behavior:smooth} body{overflow-x:hidden}.navbar,.nav-container{gap:18px}.nav-links{gap:22px}.service-grid,.services-grid{align-items:stretch}.service-box,.service-card{height:100%;display:flex;flex-direction:column}.service-box .btn-link,.service-card .btn-link{margin-top:auto}.exp-card,.ai-feature-card{cursor:pointer}.exp-card:focus,.ai-feature-card:focus{outline:2px solid #2563eb;outline-offset:4px}section{scroll-margin-top:90px}.footer-links-row{align-items:start}
@media(max-width:1024px){section{padding-top:60px!important;padding-bottom:60px!important}.service-grid,.services-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.nav-links{gap:12px}.container{width:min(94%,1200px)}}
@media(max-width:768px){section{padding-top:42px!important;padding-bottom:42px!important}.service-grid,.services-grid,.exp-grid,.reviews-grid,.metrics-grid{grid-template-columns:1fr!important}.strategy-card,.comp-layout,.ind-layout,.mkt-box{flex-direction:column!important}.strategy-card{padding:32px 22px!important}.navbar,.nav-container{min-height:64px}.footer-links-row{grid-template-columns:1fr!important}.service-box,.service-card{min-height:auto!important}}

/* ===== FINAL MOBILE HAMBURGER FIX: only 3 black lines / black X ===== */
@media (max-width: 991px) {
  #universal-header .menu-toggle {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    gap: 5px !important;
  }
  #universal-header .menu-toggle span {
    display: block !important;
    position: static !important;
    width: 27px !important;
    height: 3px !important;
    min-height: 3px !important;
    background: #111 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
  }
  #universal-header .menu-toggle span::before,
  #universal-header .menu-toggle span::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
  }
  #universal-header .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
    background: #111 !important;
  }
  #universal-header .menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  #universal-header .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
    background: #111 !important;
  }
}

/* === Navigation mega-menu stability fix === */
#universal-header, .navbar { overflow: visible !important; }
.navbar { position: relative; }
.mega-menu.services-menu, .mega-menu.industries-menu {
  width: min(1100px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
  max-height: calc(100vh - 100px);
  overflow-y: auto !important;
  overflow-x: hidden !important;
  box-sizing: border-box;
}
.mega-grid { box-sizing: border-box; }
@media (max-width: 900px) { .mega-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; padding: 24px !important; } }
@media (max-width: 768px) {
 .mega-menu.services-menu, .mega-menu.industries-menu { width:100% !important; max-width:100% !important; max-height:none; overflow:visible !important; }
 .mega-grid { grid-template-columns:1fr !important; padding:12px !important; gap:6px !important; }
}


/* =====================================================
   FINAL UNIVERSAL DESKTOP HEADER NORMALIZATION
   Keeps the same compact navbar on every page and prevents
   fixed header from covering/cutting page content.
===================================================== */
@media (min-width: 992px) {
  html body { padding-top: 86px !important; }
  #universal-header {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important;
    height: 86px !important;
    background: #fff !important;
    z-index: 99999 !important;
  }
  #universal-header .navbar {
    height: 86px !important;
    min-height: 86px !important;
    max-width: 1450px !important;
    margin: 0 auto !important;
    padding: 0 28px !important;
    gap: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  #universal-header .logo-link {
    flex: 0 0 255px !important;
    height: 86px !important;
    display: flex !important;
    align-items: center !important;
  }
  #universal-header .logo-img {
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  #universal-header .nav-links {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 0 12px !important;
    padding: 0 !important;
  }
  #universal-header .nav-links > li > a {
    height: 86px !important;
    padding: 0 3px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
  #universal-header .header-contact {
    flex: 0 0 310px !important;
    padding-left: 16px !important;
    gap: 6px !important;
    min-height: 58px !important;
  }
  #universal-header .contact-item { gap: 9px !important; }
  #universal-header .contact-item a { font-size: 14px !important; white-space: nowrap !important; }
  #universal-header .contact-item svg { width: 19px !important; height: 19px !important; flex: 0 0 19px !important; color: #1565ff !important; }
  #universal-header .mega-menu { top: 86px !important; }
  #universal-header .mega-menu.services-menu,
  #universal-header .mega-menu.industries-menu { max-width: 1050px !important; }
  #universal-header .mega-grid { gap: 10px 18px !important; padding: 26px 30px !important; }
  #universal-header .mega-item { padding: 8px !important; }
  #universal-header .mega-menu.about-menu { max-width: 760px !important; }
}

/* =====================================================
   NAVBAR REFINEMENT - consistent on every page
===================================================== */
@media (min-width: 992px) {
  html body { padding-top: 78px !important; }
  #universal-header { height: 78px !important; }
  #universal-header .navbar {
    height: 78px !important; min-height: 78px !important;
    max-width: 1540px !important; padding: 0 18px !important; gap: 8px !important;
  }
  #universal-header .logo-link { flex: 0 0 225px !important; height: 78px !important; }
  #universal-header .logo-img { height: 74px !important; max-height: 74px !important; }
  #universal-header .nav-links {
    flex: 1 1 auto !important; justify-content: center !important;
    gap: 27px !important; margin: 0 8px !important; align-self: stretch !important;
  }
  #universal-header .nav-links > li { display:flex !important; align-items:center !important; }
  #universal-header .nav-links > li > a,
  #universal-header .nav-links > li.has-mega-menu > a {
    height: 78px !important; padding: 0 !important; margin:0 !important;
    font-size: 15px !important; line-height: 1 !important; font-weight: 600 !important;
    transform: none !important; position: static !important;
  }
  #universal-header .header-contact {
    flex: 0 0 292px !important; margin-left: auto !important;
    padding-left: 14px !important; min-height: 54px !important; align-items:flex-start !important;
  }
  #universal-header .mega-menu { top: 78px !important; }
}

@media (max-width: 991px) {
  html body { padding-top: 68px !important; }
  #universal-header { height: 68px !important; position:fixed !important; top:0 !important; }
  #universal-header .navbar { height:68px !important; min-height:68px !important; padding:5px 14px !important; }
  #universal-header .logo-img { height:58px !important; max-height:58px !important; }
  #universal-header .menu-toggle { top:12px !important; right:14px !important; width:42px !important; height:42px !important; }
  #universal-header .nav-links { top:68px !important; height:calc(100dvh - 68px) !important; }
  #universal-header .nav-links > li > a { font-weight:600 !important; }
}

/* =====================================================
   GET IN TOUCH DROPDOWN (navbar) — replaces raw phone/email
===================================================== */
.git-dropdown{ position:relative; }
.git-btn{
  display:flex; align-items:center; gap:8px;
  background:#1155cc; color:#fff; border:none;
  padding:11px 20px; border-radius:30px;
  font-size:14px; font-weight:700; white-space:nowrap;
  cursor:pointer; transition:.25s;
}
.git-btn:hover{ background:#0d3f99; }
.git-btn .git-caret{ width:14px; height:14px; transition:.25s; }
.git-dropdown.open .git-btn .git-caret,
.git-dropdown:hover .git-btn .git-caret{ transform:rotate(180deg); }
.git-menu{
  position:absolute; top:calc(100% + 12px); right:0;
  background:#fff; border:1px solid #e2e8f0; border-radius:14px;
  box-shadow:0 20px 45px rgba(15,23,42,.15);
  min-width:220px; padding:8px; z-index:1000;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:.2s;
}
.git-dropdown:hover .git-menu,
.git-dropdown.open .git-menu{
  opacity:1; visibility:visible; transform:translateY(0);
}
.git-item{
  display:flex; align-items:center; gap:12px;
  padding:11px 12px; border-radius:9px;
  font-size:14px; font-weight:600; color:#111827;
  transition:.2s;
}
.git-item:hover{ background:#eff6ff; color:#1155cc; }
.git-item svg{ width:20px; height:20px; flex:0 0 20px; }
.git-item.git-email svg{ color:#1155cc; }
.git-item.git-call svg{ color:#1155cc; }
.git-item.git-whatsapp svg{ color:#25D366; }
@media (max-width:991px){
  .header-contact{ display:flex !important; border-left:none !important; padding-left:0 !important; }
  .git-btn{ padding:9px 16px; font-size:13px; }
}

/* =====================================================
   FLOATING WHATSAPP BUTTON — every page
===================================================== */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; z-index:99998;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  transition:.25s;
}
.whatsapp-float:hover{ transform:scale(1.08); box-shadow:0 14px 32px rgba(0,0,0,.3); }
.whatsapp-float svg{ width:32px; height:32px; }
@media (max-width:600px){
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; }
  .whatsapp-float svg{ width:28px; height:28px; }
}

/* =====================================================
   FINAL LAPTOP GAP CONSISTENCY FIX
   Ensures the nav menu items and mega-menu dropdowns keep
   the same small, tidy spacing across all laptop widths
   (this rule wins over earlier conflicting breakpoint rules
   because it is later in the file and uses the header ID).
===================================================== */
@media (min-width: 992px) {
  #universal-header .nav-links{
    gap: 18px !important;
  }
  #universal-header .nav-links > li > a{
    padding: 0 2px !important;
  }
  #universal-header .mega-grid{
    gap: 6px 16px !important;
    padding: 20px 24px !important;
  }
  #universal-header .mega-item{
    padding: 6px 8px !important;
  }
}
@media (min-width: 901px){
  #universal-header .mega-menu.services-menu .mega-grid,
  #universal-header .mega-menu.industries-menu .mega-grid{
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  }
}

/* =====================================================
   GENERAL MARGIN / SPACING CONSISTENCY PASS
===================================================== */
.container{ box-sizing:border-box; }
section{ box-sizing:border-box; }
.footer-col ul li, .about-links a, .mega-item{ box-sizing:border-box; }
@media (min-width: 1401px){
  .container{ padding: 0 40px; }
}
@media (max-width: 480px){
  .container{ padding: 0 18px; }
  .section-title{ margin-bottom: 30px; }
}

/* =====================================================
   NAVBAR RIGHT-SIDE GAP FIX
   header-contact was a fixed-width box with the button
   left-aligned inside it, leaving a big empty gap between
   the button and the navbar's right edge (bigger than the
   logo's gap on the left). Right-align it so both gaps match.
===================================================== */
@media (min-width: 992px){
  #universal-header .header-contact{ align-items:flex-end !important; }
}

/* Final dropdown icon sizing + alliance spacing fixes */
#universal-header .mega-icon{width:34px!important;height:34px!important;min-width:34px!important;background:#eef5ff!important;border-radius:9px!important;display:flex!important;align-items:center!important;justify-content:center!important}
#universal-header .mega-icon svg{width:22px!important;height:22px!important}