/* ==========================================
   Sakhi Infotech V3
   Base + Header + Hero
========================================== */

:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#0f172a;
    --text:#475569;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e2e8f0;
    --shadow:0 10px 30px rgba(15,23,42,.08);
    --shadow-lg:0 25px 60px rgba(15,23,42,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid var(--border);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    height:82px;
}

/* ===== Logo ===== */

.logo{
    flex:0 0 auto;
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.site-logo{
    height:72px;
    width:auto;
    display:block;
    transition:.3s;
}

@media (max-width:768px){

.site-logo{
    height:52px;
}

}

.menu{
    display:flex;
    gap:32px;
}

.menu a{
    color:#334155;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:var(--primary);
}

.call-btn{
    background:var(--primary);
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.call-btn:hover{
    background:var(--primary-dark);
}
/* ==========================
MOBILE MENU
========================== */

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:0;
    z-index:1002;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#0f172a;
    margin:6px auto;
    border-radius:3px;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* HERO */

.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#0f172a,#2563eb);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:14px;
    margin-bottom:25px;
}

.hero h1{
    color:#fff;
    font-size:56px;
    line-height:1.15;
    margin-bottom:25px;
}

.hero p{
    color:#e2e8f0;
    font-size:18px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.primary-btn{
    background:#fff;
    color:#2563eb;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.primary-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    padding:16px 30px;
    border-radius:14px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.secondary-btn:hover{
    background:#fff;
    color:#2563eb;
}

.hero-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-tags span{
    padding:10px 16px;
    background:rgba(255,255,255,.12);
    color:#fff;
    border-radius:30px;
    font-size:14px;
}

.support-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.support-card h3{
    color:#0f172a;
    font-size:28px;
    margin-bottom:15px;
}

.support-card p{
    color:#64748b;
    margin-bottom:20px;
}

.support-card ul{
    list-style:none;
}

.support-card li{
    padding:12px 0;
    border-bottom:1px solid var(--border);
}

/* TRUST BAR */

.trust{
    padding:35px 0;
    background:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-grid div{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
    text-align:center;
    font-weight:600;
}

/* COMMON */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

/* ==========================================
SERVICES
========================================== */

.services{

padding:100px 0;

background:#F8FAFC;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

margin-top:60px;

}

.service-card{

background:#fff;

border-radius:24px;

padding:35px;

border:1px solid #E2E8F0;

transition:.35s;

box-shadow:0 10px 25px rgba(15,23,42,.05);

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#2563EB,#38BDF8);

transform:scaleX(0);

transition:.35s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(37,99,235,.15);

}

.service-icon{

width:72px;

height:72px;

border-radius:18px;

background:#DBEAFE;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:25px;

}

.service-card h3{

font-size:25px;

margin-bottom:15px;

color:#0F172A;

}

.service-card p{

color:#64748B;

line-height:1.8;

}

/* ==========================================
BUSINESS PROBLEMS
========================================== */

.problems{

padding:100px 0;

background:#ffffff;

}

.problems-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:22px;

margin-top:50px;

}

.problem-item{

padding:22px;

border-left:5px solid #2563EB;

background:#F8FAFC;

border-radius:16px;

font-weight:600;

transition:.3s;

}

.problem-item:hover{

background:#2563EB;

color:#fff;

transform:translateX(8px);

}

/* ==========================================
WHY US
========================================== */

.why-us{

padding:100px 0;

background:#EEF5FF;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

transition:.35s;

box-shadow:0 10px 30px rgba(15,23,42,.06);

}

.why-card:hover{

transform:translateY(-10px);

}

.icon{

font-size:48px;

margin-bottom:20px;

}

.why-card h3{

font-size:24px;

margin-bottom:15px;

color:#0F172A;

}

.why-card p{

color:#64748B;

line-height:1.8;

}

/* ==========================================
PROCESS
========================================== */

.process{

padding:100px 0;

background:#fff;

}

.process-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:30px;

margin-top:60px;

}

.step{

background:#F8FAFC;

padding:35px;

border-radius:24px;

text-align:center;

transition:.3s;

}

.step:hover{

transform:translateY(-8px);

}

.step-number{

width:70px;

height:70px;

margin:auto auto 25px;

background:linear-gradient(135deg,#2563EB,#38BDF8);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:28px;

font-weight:700;

}

/* ==========================================
INDUSTRIES
========================================== */

.industries{

padding:100px 0;

background:#F8FAFC;

}

.industry-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:60px;

}

.industry-card{

background:#fff;

padding:40px 30px;

border-radius:22px;

text-align:center;

transition:.35s;

border:1px solid #E2E8F0;

box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.industry-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(37,99,235,.12);

}

.industry-card{

font-size:50px;

}

.industry-card h3{

margin-top:20px;

font-size:24px;

color:#0F172A;

margin-bottom:12px;

}

.industry-card p{

color:#64748B;

line-height:1.8;

}

/* ==========================================
ABOUT
========================================== */

.about{

padding:110px 0;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

}

.about-content h2{

font-size:44px;

margin-bottom:25px;

color:#0F172A;

}

.about-content p{

margin-bottom:22px;

color:#64748B;

font-size:17px;

}

.about-box{

background:linear-gradient(135deg,#2563EB,#3B82F6);

padding:45px;

border-radius:26px;

color:#fff;

box-shadow:0 30px 60px rgba(37,99,235,.20);

}

.about-box h3{

font-size:30px;

margin-bottom:25px;

}

.about-box ul{

list-style:none;

}

.about-box li{

padding:14px 0;

border-bottom:1px solid rgba(255,255,255,.18);

}

/* ==========================================
STATS
========================================== */

.stats{

padding:90px 0;

background:#0F172A;

color:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

text-align:center;

}

.stats h2{

font-size:42px;

margin-bottom:12px;

color:#38BDF8;

}

.stats p{

font-size:18px;

opacity:.9;

}

/* ==========================================
BENEFITS
========================================== */

.benefits{

padding:100px 0;

background:#EEF5FF;

}

.benefits-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:60px;

}

.benefit-card{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

transition:.35s;

box-shadow:0 12px 30px rgba(15,23,42,.06);

}

.benefit-card:hover{

transform:translateY(-10px);

}

.benefit-icon{

width:80px;

height:80px;

margin:auto auto 25px;

border-radius:50%;

background:linear-gradient(135deg,#2563EB,#38BDF8);

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

color:#fff;

}

.benefit-card h3{

font-size:24px;

margin-bottom:15px;

color:#0F172A;

}

.benefit-card p{

color:#64748B;

line-height:1.8;

}

/* ===== Fix Industry Cards ===== */

.industry-card{
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
}

.industry-card p{
    font-size:16px !important;
    line-height:1.8 !important;
    color:#64748B;
    margin-top:15px;
    word-break:break-word;
    overflow-wrap:break-word;
}

.industry-card h3{
    font-size:26px;
    margin-top:20px;
    margin-bottom:10px;
}

/* ==========================================
CONTACT SECTION
========================================== */

.contact{
    padding:100px 0;
    background:#ffffff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    margin-top:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-info h3{
    font-size:32px;
    color:#0F172A;
    margin-bottom:10px;
}

.contact-info p{
    color:#64748B;
    line-height:1.8;
}

.contact-card{
    background:#F8FAFC;
    padding:24px;
    border-radius:18px;
    border:1px solid #E2E8F0;
    transition:.3s;
}

.contact-card:hover{

border-color:#2563EB;

transform:translateY(-6px);

}

.contact-card h4{
    color:#2563EB;
    margin-bottom:10px;
}

.contact-card a{
    color:#0F172A;
    font-weight:600;
}

.contact-form{
    background:#fff;
    border-radius:24px;
    padding:40px;
    border:1px solid #E2E8F0;
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:16px;
    border:1px solid #CBD5E1;
    border-radius:12px;
    font-family:inherit;
    font-size:15px;
    outline:none;
    transition:.3s;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#2563EB;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);

}

.contact-form textarea{

    resize:vertical;
    margin-bottom:25px;

}

/* ==========================================
BOTTOM CTA
========================================== */

.bottom-cta{

    padding:90px 0;
    text-align:center;
    color:#fff;
    background:linear-gradient(135deg,#0F172A,#2563EB);

}

.bottom-cta h2{

    font-size:42px;
    margin-bottom:20px;

}

.contact-form button{

background:#2563EB;

color:#fff;

border:none;

padding:18px 35px;

border-radius:14px;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#1D4ED8;

transform:translateY(-2px);

}

/* ==========================================
FOOTER
========================================== */

.footer{

    background:#0F172A;
    color:#fff;
    padding:80px 0 50px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:45px;

}

.footer-column h3,
.footer-column h4{

    margin-bottom:20px;

}

.footer-column p{

    color:#CBD5E1;
    line-height:1.8;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#CBD5E1;
    transition:.3s;

}

.footer-column a:hover{

    color:#38BDF8;
    padding-left:5px;

}

/* ==========================================
LEGAL
========================================== */

.legal{

    background:#08111F;
    color:#CBD5E1;
    text-align:center;
    padding:25px 0;
    font-size:14px;
    line-height:1.8;

}

.copyright{

    background:#050B14;
    color:#94A3B8;
    text-align:center;
    padding:18px 0;
    font-size:14px;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.hero-grid,
.about-grid{

grid-template-columns:1fr;

}

.form-row{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.menu-toggle{
    display:block;
}

.menu{
    position:fixed;
    top:82px;
    left:-100%;
    width:100%;
    background:#fff;
    display:flex;
    flex-direction:column;
    gap:0;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    z-index:999;
}

.menu.active{
    left:0;
}

.menu a{
    width:100%;
    padding:18px 25px;
    border-bottom:1px solid #e5e7eb;
}

.call-btn{
    display:none;
}

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:34px;

}

.bottom-cta h2{

font-size:32px;

}

.trust-grid{

grid-template-columns:1fr 1fr;

}

.stats-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:576px){

.trust-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.hero{

padding:70px 0;

}

.primary-btn,
.secondary-btn{

width:100%;

}

}

/* ============================
FLOATING BUTTONS
============================ */
.floating-buttons{

position:fixed !important;

right:20px !important;

bottom:20px !important;

top:auto !important;

left:auto !important;

display:flex;

flex-direction:column;

gap:15px;

z-index:99999;

}

.floating-call,
.floating-contact{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:24px;

text-decoration:none;

color:#fff;

box-shadow:0 15px 30px rgba(0,0,0,.2);

}

.floating-call{

background:#2563EB;

}

.floating-contact{

background:#10B981;

}
/* ============================
SCROLL BUTTON
============================ */

.scroll-top{
display:flex;
align-items:center;
justify-content:center;
line-height:1;
}

.scroll-top span{
display:flex;
align-items:center;
justify-content:center;
}
@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,99,235,.45);
}

70%{
box-shadow:0 0 0 15px rgba(37,99,235,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,99,235,0);
}

}

.floating-call{

animation:pulse 2s infinite;

}

/* ===========================
LOGO
=========================== */

.site-logo{

height:60px;

width:auto;

display:block;

transition:.3s;

}

.site-logo:hover{

transform:scale(1.03);

}

@media(max-width:768px){

.site-logo{

height:48px;

}

}