/*======================================
        GOOGLE FONT & RESET
======================================*/
/* =========================
   HEADER
========================= */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(11,18,32,.85);
    backdrop-filter: blur(12px);

    z-index: 999;

    padding: 3px 0;

    transition: transform 0.35s ease;
}

.header.hide{
    transform: translateY(-100%);
}

.header .container{
    width:90%;
    max-width:1250px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:140px;
    height:auto;
}

.navbar ul{
    display:flex;
    gap:40px;
    list-style:none;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;

    display: inline-block;
padding: 8px 0;
}

.navbar a:hover{
    color:#4f9cff;
}

.header-btn{
    background:#4f9cff;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.header-btn:hover{

    background:#347ef5;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(79,156,255,.35);

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Outfit',sans-serif;
    background:#f8fbff;
    color:#111827;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/*======================================
            HERO SECTION
======================================*/

.hero{


    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:150px 20px 80px;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#bfdbfe 0%,transparent 35%),
    radial-gradient(circle at bottom left,#dbeafe 0%,transparent 40%),
    linear-gradient(135deg,#f8fbff,#eef5ff);

}

.hero-container{

    max-width:1300px;

    width:100%;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

/*======================================
            LEFT SIDE
======================================*/

.hero-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    background:#e8f1ff;

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    color:#111827;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:#2563eb;

}

.hero-content p{

    font-size:18px;

    color:#64748b;

    line-height:1.9;

    max-width:620px;

    margin-bottom:40px;

}

/*======================================
            BUTTONS
======================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

.primary-btn{

    padding:17px 34px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(37,99,235,.22);

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    padding:17px 34px;

    border-radius:14px;

    border:2px solid #2563eb;

    color:#2563eb;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    background:#2563eb;

    color:#fff;

}

/*======================================
            FEATURES
======================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:10px;

}

.feature-icon{

    width:38px;

    height:38px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

}

.feature span{

    font-weight:600;

    color:#374151;

}

/*======================================
            RIGHT SIDE
======================================*/

.hero-image{

    position:relative;

    height:620px;

}

.floating-card{

    position:absolute;

    width:220px;

    background:#fff;

    padding:25px;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(15,23,42,.10);

    transition:.4s;

}

.floating-card:hover{

    transform:translateY(-8px);

}

.card-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#eef4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:18px;

}

.floating-card h3{

    font-size:22px;

    margin-bottom:8px;

}

.floating-card p{

    color:#64748b;

    line-height:1.6;

}

/*======================================
        CARD POSITIONS
======================================*/

.card1{

    top:20px;

    left:20px;

}

.card2{

    top:170px;

    right:10px;

}

.card3{

    bottom:140px;

    left:30px;

}

.card4{

    bottom:10px;

    right:30px;

}

/*======================================
        DECORATIVE CIRCLES
======================================*/

.hero-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(37,99,235,.08);

}

.hero-circle.one{

    width:250px;

    height:250px;

    top:40px;

    right:120px;

}

.hero-circle.two{

    width:140px;

    height:140px;

    bottom:150px;

    left:120px;

}

.hero-circle.three{

    width:80px;

    height:80px;

    top:300px;

    left:220px;

}

/*======================================
        SCROLL INDICATOR
======================================*/

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    text-align:center;

}

.scroll-indicator span{

    display:block;

    font-size:14px;

    color:#64748b;

    margin-bottom:10px;

}

.mouse{

    width:28px;

    height:48px;

    border:2px solid #2563eb;

    border-radius:20px;

    margin:auto;

    position:relative;

}

.wheel{

    width:6px;

    height:10px;

    background:#2563eb;

    border-radius:20px;

    position:absolute;

    top:8px;

    left:50%;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

@keyframes scroll{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translate(-50%,16px);

    }

}
/*======================================
        FLOATING ANIMATIONS
======================================*/

.card1{
    animation:floatOne 5s ease-in-out infinite;
}

.card2{
    animation:floatTwo 6s ease-in-out infinite;
}

.card3{
    animation:floatThree 5.5s ease-in-out infinite;
}

.card4{
    animation:floatFour 6.5s ease-in-out infinite;
}

@keyframes floatOne{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

}

@keyframes floatTwo{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(18px);
}

}

@keyframes floatThree{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-18px);
}

}

@keyframes floatFour{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(15px);
}

}

/*======================================
        TABLET
======================================*/

@media (max-width:1024px){

.hero{

padding:100px 30px 70px;

}

.hero-container{

grid-template-columns:1fr;

gap:60px;

text-align:center;

}

.hero-content{

max-width:750px;

margin:auto;

}

.hero-content p{

max-width:100%;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-features{

justify-content:center;

}

.hero-image{

height:520px;

max-width:650px;

margin:auto;

}

.floating-card{

width:200px;

padding:22px;

}

.hero-content h1{

font-size:52px;

}

}

/*======================================
        MOBILE
======================================*/

@media (max-width:768px){

.hero{

padding:140px 20px 60px;

min-height:auto;

}

.hero-container{

grid-template-columns:1fr;

gap:40px;

}

.hero-content{

text-align:center;

}

.hero-content h1{

font-size:38px;

line-height:1.2;

}

.hero-content p{

font-size:16px;

line-height:1.8;

}

.hero-buttons{

flex-direction:column;

align-items:center;

gap:15px;

}

.primary-btn,
.secondary-btn{

width:100%;

max-width:320px;

text-align:center;

}

.hero-features{

justify-content:center;

gap:15px;

}

.feature{

width:100%;

justify-content:center;

}

.hero-image{

height:auto;

display:grid;

grid-template-columns:1fr;

gap:20px;

position:static;

}

.floating-card{

position:relative;

width:100%;

max-width:360px;

left:auto;

right:auto;

top:auto;

bottom:auto;

margin:auto;

animation:none;

}

.hero-circle{

display:none;

}

.scroll-indicator{

display:none;

}

}

/*======================================
        SMALL MOBILE
======================================*/

@media (max-width:480px){

.hero{

padding:120px 15px 50px;

}

.hero-tag{

font-size:12px;

padding:8px 16px;

}

.hero-content h1{

font-size:30px;

}

.hero-content p{

font-size:15px;

}

.primary-btn,
.secondary-btn{

padding:15px 25px;

font-size:15px;

}

.floating-card{

padding:20px;

}

.floating-card h3{

font-size:20px;

}

.card-icon{

width:55px;

height:55px;

font-size:26px;

}

.feature span{

font-size:14px;

}

}
/*=====================================
        Google Font & Reset
======================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f8ff;
color:#111827;
overflow-x:hidden;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

/*=====================================
        Section
======================================*/

.services{
padding:90px 25px;
background:
radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
radial-gradient(circle at bottom left,#eef4ff 0%,transparent 40%),
#f8fbff;
}

.container{
max-width:1300px;
margin:auto;
}

.section-header{
text-align:center;
margin-bottom:65px;
}

.sub-title{
display:inline-block;
padding:9px 20px;
border-radius:40px;
background:#e8f1ff;
color:#2563eb;
font-size:13px;
font-weight:600;
letter-spacing:1px;
margin-bottom:20px;
}

.section-header h1{
font-size:48px;
font-weight:800;
color:#111827;
margin-bottom:18px;
}

.section-header p{
max-width:760px;
margin:auto;
font-size:18px;
line-height:1.8;
color:#64748b;
}

/*=====================================
        Grid
======================================*/

.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

align-items:stretch;

}

/*=====================================
        Card
======================================*/

.card{

position:relative;

background:#ffffff;

border-radius:26px;

padding:35px;

overflow:hidden;

border:1px solid #edf2ff;

box-shadow:
0 18px 45px rgba(15,23,42,.07);

transition:.4s ease;

display:flex;

flex-direction:column;

}

/* Animated Top Border */

.card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#2563eb,#60a5fa);

transform:scaleX(0);

transform-origin:left;

transition:.35s;

}

.card:hover::before{

transform:scaleX(1);

}

/* Decorative Glow */

.card::after{

content:"";

position:absolute;

width:220px;

height:220px;

border-radius:50%;

background:rgba(37,99,235,.05);

right:-120px;

top:-120px;

transition:.45s;

}

.card:hover::after{

transform:scale(1.35);

}

.card:hover{

transform:translateY(-12px);

box-shadow:
0 28px 65px rgba(37,99,235,.18);

}

/* Featured Card */

.featured{

border:2px solid #2563eb;

}

.featured:hover{

transform:translateY(-14px);

}

/*=====================================
        Badge
======================================*/

.badge{

position:absolute;

top:18px;

right:18px;

padding:8px 16px;

background:linear-gradient(135deg,#2563eb,#3b82f6);

color:#fff;

font-size:12px;

font-weight:600;

border-radius:30px;

box-shadow:
0 10px 25px rgba(37,99,235,.25);

}

/*=====================================
        Icon
======================================*/

.icon{

width:78px;

height:78px;

border-radius:22px;

background:linear-gradient(135deg,#eef4ff,#dbeafe);

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:28px;

transition:.35s;

}

.card:hover .icon{

background:linear-gradient(135deg,#2563eb,#3b82f6);

color:#fff;

transform:rotate(-8deg) scale(1.08);

}

/*=====================================
        Title
======================================*/

.card h2{

font-size:26px;

font-weight:700;

line-height:1.35;

margin-bottom:18px;

color:#111827;

}

/*=====================================
        Description
======================================*/

.description{

font-size:15px;

line-height:1.8;

color:#64748b;

margin-bottom:28px;

flex-grow:1;

}

/*=====================================
        Price
======================================*/

.price{

font-size:30px;

font-weight:800;

color:#2563eb;

margin-bottom:25px;

}

.price span{

display:block;

margin-top:8px;

font-size:14px;

font-weight:500;

color:#6b7280;

}

/*=====================================
        Button
======================================*/

.btn{

display:flex;

justify-content:center;

align-items:center;

height:56px;

border-radius:14px;

background:linear-gradient(135deg,#2563eb,#3b82f6);

color:#fff;

font-weight:600;

transition:.35s;

box-shadow:
0 12px 30px rgba(37,99,235,.18);

margin-top:auto;

}

.btn:hover{

transform:translateY(-3px);

box-shadow:
0 20px 45px rgba(37,99,235,.30);

}
/*=====================================
        Responsive Design
======================================*/

/* Large Tablets */
@media (max-width: 1200px){

.container{
    max-width:100%;
    padding:0 20px;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.section-header h1{
    font-size:42px;
}

.card{
    padding:30px;
}

}

/* Tablets */
@media (max-width: 992px){

.services{
    padding:70px 20px;
}

.section-header{
    margin-bottom:50px;
}

.section-header h1{
    font-size:36px;
}

.section-header p{
    font-size:16px;
}

.service-grid{
    grid-template-columns:1fr;
    max-width:650px;
    margin:auto;
    gap:25px;
}

.card{
    padding:30px;
}

.card h2{
    font-size:24px;
}

.description{
    font-size:15px;
    margin-bottom:20px;
}

.icon{
    width:70px;
    height:70px;
    font-size:30px;
}

.badge{
    top:16px;
    right:16px;
    font-size:11px;
    padding:7px 14px;
}

}

/* Mobile */
@media (max-width: 768px){

.services{
    padding:60px 16px;
}

.section-header{
    margin-bottom:40px;
}

.sub-title{
    font-size:12px;
    padding:8px 16px;
}

.section-header h1{
    font-size:30px;
    line-height:1.3;
}

.section-header p{
    font-size:15px;
    line-height:1.7;
}

.service-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.card{
    border-radius:22px;
    padding:25px;
}

.card h2{
    font-size:22px;
    margin-bottom:15px;
}

.description{
    font-size:14px;
    line-height:1.7;
}

.icon{
    width:65px;
    height:65px;
    font-size:28px;
    margin-bottom:20px;
}

.badge{
    position:relative;
    top:0;
    right:0;
    display:inline-block;
    margin-bottom:18px;
}

.card:hover{
    transform:none;
}

.featured:hover{
    transform:none;
}

.btn{
    height:52px;
    font-size:15px;
}

}

/* Small Mobile */
@media (max-width:480px){

.services{
    padding:50px 12px;
}

.section-header h1{
    font-size:26px;
}

.section-header p{
    font-size:14px;
}

.card{
    padding:22px;
    border-radius:20px;
}

.card h2{
    font-size:20px;
}

.icon{
    width:58px;
    height:58px;
    font-size:24px;
}

.badge{
    font-size:10px;
    padding:6px 12px;
}

.description{
    font-size:13px;
}

}

/*====================================
        WHY CHOOSE KATARIAX
=====================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Outfit',sans-serif;

background:#f7faff;

color:#111827;

}

.why-katariax{

padding:100px 20px;

background:
radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
radial-gradient(circle at bottom left,#eef4ff 0%,transparent 40%),
#f8fbff;

}

.why-header{

max-width:760px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.section-tag{

display:inline-block;

padding:8px 20px;

background:#eef4ff;

color:#2563eb;

border-radius:40px;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:18px;

}

.why-header h2{

font-size:48px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

}

.why-header span{

color:#2563eb;

}

.why-header p{

font-size:18px;

line-height:1.8;

color:#64748b;

}

.why-grid{

max-width:1280px;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:25px;

position:relative;

overflow:hidden;

border:1px solid #edf2ff;

transition:.4s;

box-shadow:0 15px 40px rgba(15,23,42,.07);

}

.why-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#2563eb,#60a5fa);

transform:scaleX(0);

transform-origin:left;

transition:.35s;

}

.why-card:hover::before{

transform:scaleX(1);

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(37,99,235,.18);

}

.why-icon{

width:75px;

height:75px;

border-radius:22px;

background:linear-gradient(135deg,#eef4ff,#dbeafe);

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:25px;

transition:.35s;

}

.why-card:hover .why-icon{

background:linear-gradient(135deg,#2563eb,#3b82f6);

color:#fff;

transform:rotate(-8deg) scale(1.08);

}

.why-card h3{

font-size:25px;

font-weight:700;

margin-bottom:15px;

color:#111827;

}

.why-card p{

font-size:16px;

line-height:1.8;

color:#64748b;

}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:1100px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-katariax{

padding:70px 18px;

}

.why-header{

margin-bottom:45px;

}

.why-header h2{

font-size:34px;

}

.why-header p{

font-size:15px;

}

.why-grid{

grid-template-columns:1fr;

gap:20px;

}

.why-card{

padding:28px;

}

.why-icon{

width:65px;

height:65px;

font-size:28px;

}

.why-card h3{

font-size:22px;

}

.why-card p{

font-size:15px;

}

}

/*=====================================
        HOW WE WORK
======================================*/

.workflow{

padding:100px 20px;

background:#ffffff;

}

.workflow-header{

text-align:center;

max-width:760px;

margin:0 auto 70px;

}

.workflow-subtitle{

display:inline-block;

padding:8px 20px;

background:#eef4ff;

color:#2563eb;

border-radius:40px;

font-size:13px;

font-weight:600;

letter-spacing:1px;

margin-bottom:20px;

}

.workflow-header h2{

font-size:46px;

font-weight:800;

margin-bottom:18px;

color:#111827;

}

.workflow-header p{

font-size:17px;

line-height:1.8;

color:#64748b;

}

.workflow-container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

max-width:1300px;

margin:auto;

position:relative;

}

.step{

position:relative;

background:#fff;

padding:40px 30px;

border-radius:25px;

text-align:center;

border:1px solid #edf2ff;

box-shadow:0 15px 40px rgba(15,23,42,.06);

transition:.35s;

overflow:hidden;

}

.step:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(37,99,235,.18);

}

.step::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#2563eb,#60a5fa);

transform:scaleX(0);

transition:.35s;

transform-origin:left;

}

.step:hover::before{

transform:scaleX(1);

}

.step-number{

position:absolute;

top:20px;

right:20px;

font-size:48px;

font-weight:800;

color:#e5edff;

}

.step-icon{

width:85px;

height:85px;

margin:0 auto 25px;

border-radius:24px;

background:linear-gradient(135deg,#eef4ff,#dbeafe);

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

transition:.35s;

}

.step:hover .step-icon{

background:linear-gradient(135deg,#2563eb,#3b82f6);

color:#fff;

transform:rotate(-8deg) scale(1.08);

}

.step h3{

font-size:24px;

margin-bottom:18px;

font-weight:700;

color:#111827;

}

.step p{

font-size:15px;

line-height:1.8;

color:#64748b;

}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:1100px){

.workflow-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.workflow{

padding:70px 18px;

}

.workflow-header h2{

font-size:34px;

}

.workflow-header p{

font-size:15px;

}

.workflow-container{

grid-template-columns:1fr;

gap:22px;

}

.step{

padding:35px 25px;

}

.step-number{

font-size:40px;

}

.step-icon{

width:70px;

height:70px;

font-size:30px;

}

.step h3{

font-size:22px;

}

}

/*======================================
        INDUSTRIES WE SERVE
======================================*/

.industries{

    padding:100px 20px;

    background:#ffffff;

}

.industries-container{

    max-width:1300px;

    margin:auto;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.industry-card{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    border:1px solid #e5e7eb;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#2563eb;

    box-shadow:0 20px 45px rgba(37,99,235,.18);

}

.industry-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

}

.industry-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111827;

}

.industry-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;

}

/*==============================
      Responsive
==============================*/

@media(max-width:1100px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.industries{

padding:70px 20px;

}

.industry-grid{

grid-template-columns:1fr;

}

.industry-card{

padding:30px;

}

}

/*======================================
        PORTFOLIO
======================================*/

.portfolio{

    padding:100px 20px;

    background:#f8fbff;

}

.portfolio-container{

    max-width:1300px;

    margin:auto;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.project-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    border:1px solid #e5e7eb;

    box-shadow:0 18px 40px rgba(15,23,42,.08);

    transition:.35s;

    position:relative;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(37,99,235,.18);

}

.featured-project{

    border:2px solid #2563eb;

}

.project-year{

    position:absolute;

    top:25px;

    right:25px;

    background:#2563eb;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.project-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#fff;

    margin-bottom:25px;

}

.project-card h2{

    font-size:28px;

    margin-bottom:10px;

    color:#111827;

}

.project-type{

    display:inline-block;

    color:#2563eb;

    font-weight:600;

    margin-bottom:18px;

}

.project-card p{

    color:#64748b;

    line-height:1.8;

}

/*======================================
        Responsive
======================================*/

@media(max-width:992px){

.portfolio-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.portfolio{

padding:70px 20px;

}

.project-card{

padding:28px;

}

.project-card h2{

font-size:24px;

}

}

/*======================================
            CTA
======================================*/

.cta{

    padding:100px 20px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    text-align:center;

}

.cta-container{

    max-width:900px;

    margin:auto;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta .primary-btn{

    background:#fff;

    color:#2563eb;

}

.cta .secondary-btn{

    border:2px solid #fff;

    color:#fff;

}

.cta .secondary-btn:hover{

    background:#fff;

    color:#2563eb;

}

/*======================================
            FOOTER
======================================*/

.footer{

    background:#0b1220;

    color:#cbd5e1;

    padding:80px 20px 25px;

}

.footer-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

}

.footer-logo img{

    width:160px;

    margin-bottom:25px;

}

.footer-column p{

    color:#94a3b8;

    line-height:1.9;

}

.footer-column h3{

    color:#ffffff;

    margin-bottom:25px;

    font-size:22px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:16px;

}

.footer-column ul li a{

    color:#94a3b8;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#3b82f6;

    padding-left:5px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1e293b;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    transition:.35s;

}

.social-icons a:hover{

    background:#2563eb;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-tagline{

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    margin-bottom:12px;

}

.footer-bottom p:last-child{

    color:#94a3b8;

    font-size:15px;

}

/*======================================
        Responsive
======================================*/

@media(max-width:992px){

.footer-container{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

}

@media(max-width:768px){

.footer{

padding:60px 20px 20px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.footer-logo img{

margin:auto auto 20px;

}

.social-icons{

justify-content:center;

}

}

/*======================================
        MOBILE HEADER
======================================*/

.menu-toggle{

    display:none;

    font-size:32px;

    cursor:pointer;

    color:#ffffff;

}

.mobile-consult-btn{

    display:none;

}

@media(max-width:768px){

.header{

    padding:0px 0;

}

.navbar{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#0b1220;

    padding:25px 0;

}

.navbar.active{

    display:block;

    animation:fadeDown .35s;

}

.navbar ul{

    flex-direction:column;

    align-items:center;

    gap:25px;

}

.header-btn{

    display:none;

}

.menu-toggle{

    display:block;

}

/* Mobile Consultation Button */

.mobile-consult-btn{

    display:inline-block;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff !important;

    padding:14px 26px;

    border-radius:12px;

    margin-top:12px;

    text-align:center;

    font-weight:600;

}

}

@keyframes fadeDown{

from{

    opacity:0;
    transform:translateY(-20px);

}

to{

    opacity:1;
    transform:translateY(0);

}

}
/*======================================
        SERVICES PAGE
======================================*/

.services-page{

    padding:100px 20px;

    background:#f8fbff;

}

.services-grid{

    max-width:1300px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    border:1px solid #e5e7eb;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:420px;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(37,99,235,.18);

}

.service-icon{

    font-size:55px;

    margin-bottom:20px;

}

.service-card h2{

    font-size:26px;

    margin-bottom:18px;

    color:#111827;

}

.service-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;

    margin-bottom:30px;

}

.service-price{

    margin-bottom:30px;

    color:#2563eb;

    font-size:34px;

    font-weight:800;

}

.service-price span{

    display:block;

    font-size:14px;

    color:#64748b;

    margin-bottom:8px;

    font-weight:500;

}



.service-btn{

    display:block;

    background:#2563eb;

    color:#ffffff;

    padding:15px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    background:#1d4ed8;

}

.purchase{

    background:#16a34a;

}

.purchase:hover{

    background:#15803d;

}

.consultation{

    background:#7c3aed;

}

.consultation:hover{

    background:#6d28d9;

}



@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-page{

    padding:70px 2px;

}

.services-grid{

    grid-template-columns:1fr;

    gap:20px;

    margin-top:40px;

}

.service-card{

    min-height:auto;

    padding:30px 25px;

}

}

/*======================================
        BUSINESS LAUNCH PACKAGES
======================================*/

.katariax-packages{
    padding:100px 20px;
    overflow:hidden;
}

.katariax-heading{
    max-width:750px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.katariax-heading h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.katariax-heading p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

.katariax-container{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.katariax-card{
    background:#fff;
    border-radius:28px;
    padding:40px 35px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    border:1px solid #edf2ff;
    box-shadow:0 20px 45px rgba(15,23,42,.07);
}

.katariax-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.katariax-card:hover::before{
    transform:scaleX(1);
}

.katariax-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
    right:-120px;
    top:-120px;
    transition:.4s;
}

.katariax-card:hover::after{
    transform:scale(1.3);
}

.katariax-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(37,99,235,.16);
}

.katariax-featured{
    border:2px solid #2563eb;
    transform:scale(1.03);
}

.katariax-featured:hover{
    transform:scale(1.03) translateY(-12px);
}

.katariax-badge{
    position:absolute;
    top:-10px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    padding:10px 24px;
    border-radius:40px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 12px 30px rgba(37,99,235,.3);
}

.katariax-card h3{
    font-size:30px;
    line-height:1.3;
    margin:20px 0;
}

.katariax-offer{
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.katariax-price{
    font-size:54px;
    color:#2563eb;
    font-weight:800;
    margin-bottom:25px;
}


.katariax-card ul{
    list-style:none;
    margin-bottom:30px;
}

.katariax-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#4b5563;
    margin-bottom:14px;
    font-size:16px;
}

.katariax-card ul li::before{
    content:"✓";
    width:24px;
    height:24px;
    border-radius:50%;
    background:#eef4ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    flex-shrink:0;
}

.katariax-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:16px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    transition:.3s;
}

.katariax-btn:hover{
    transform:translateY(-3px);
}

/*===============================
        RESPONSIVE
===============================*/

@media (max-width:1200px){

.katariax-container{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.katariax-heading h2{
    font-size:42px;
}

.katariax-price{
    font-size:48px;
}

}

@media (max-width:768px){

.katariax-packages{
    padding:70px 20px;
}

.katariax-heading{
    margin-bottom:50px;
}

.katariax-heading h2{
    font-size:34px;
}

.katariax-heading p{
    font-size:16px;
}

.katariax-container{
    grid-template-columns:1fr;
}

.katariax-card{
    padding:35px 28px;
}

.katariax-featured{
    transform:none;
}

.katariax-featured:hover{
    transform:translateY(-8px);
}

}

@media (max-width:480px){

.katariax-packages{
    padding:60px 15px;
}

.katariax-heading h2{
    font-size:28px;
}

.katariax-heading p{
    font-size:15px;
}

.katariax-card{
    padding:28px 22px;
}

.katariax-card h3{
    font-size:22px;
}

.katariax-price{
    font-size:34px;
}

}

/*======================================
        BUSINESS GROWTH PLANS
======================================*/

.growth-plans{

    padding:100px 20px;

    background:#ffffff;

}

.growth-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.growth-card{

    background:#f8fbff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    border:1px solid #e5e7eb;

    transition:.35s;

}

.growth-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.growth-icon{

    font-size:50px;

    margin-bottom:20px;

}

.growth-card h3{

    font-size:26px;

    margin-bottom:15px;

}

.growth-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;

}

.monthly-price{

    font-size:36px;

    color:#2563eb;

    font-weight:800;

    margin-bottom:25px;

}

.monthly-price span{

    font-size:18px;

    color:#64748b;

}

.growth-btn{

    display:block;

    background:#2563eb;

    color:#fff;

    padding:15px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.growth-btn:hover{

    background:#1d4ed8;

}

@media(max-width:992px){

.growth-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.growth-plans{

    padding:70px 10px;

}

.growth-grid{

    grid-template-columns:1fr;

    gap:22px;

    margin-top:40px;

}

.growth-card{

    padding:32px 24px;

    border-radius:22px;

}

.growth-icon{

    font-size:60px;

}

.growth-card h3{

    font-size:28px;

}

.growth-card p{

    font-size:16px;

}

.monthly-price{

    font-size:42px;

}

}

/*======================================
        HOW WE WORK
======================================*/

.work-process{

    padding:100px 20px;

    background:#f8fbff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;

}

.process-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    border:1px solid #e5e7eb;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:18px;

    font-weight:800;

    color:#d1d5db;

}

.process-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#eef4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin-bottom:25px;

}

.process-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#111827;

}

.process-card p{

    font-size:15px;

    color:#64748b;

    line-height:1.8;

}

/*==============================
        Responsive
==============================*/

@media(max-width:1200px){

.process-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

.process-card{

padding:30px 20px;

}

}

/*======================================
        ABOUT HERO SECTION
======================================*/

.about-hero{

    padding:160px 20px 100px;

    background:
    radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
    radial-gradient(circle at bottom left,#eef4ff 0%,transparent 40%),
    linear-gradient(135deg,#f8fbff,#eef5ff);

}

.about-hero .container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.about-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#e8f1ff;

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.about-content h1{

    font-size:60px;

    font-weight:800;

    line-height:1.15;

    color:#111827;

    margin-bottom:25px;

}

.about-content h1 span{

    color:#2563eb;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748b;

    margin-bottom:40px;

    max-width:650px;

}

.about-buttons{

    display:flex;

    gap:18px;

}

.about-image{

    position:relative;

    height:550px;

}

.about-card{

    position:absolute;

    width:230px;

    background:#ffffff;

    padding:25px;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(15,23,42,.10);

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-10px);

}

.card-one{

    top:20px;

    left:20px;

}

.card-two{

    top:180px;

    right:10px;

}

.card-three{

    bottom:30px;

    left:70px;

}

.card-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:#eef4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:18px;

}

.about-card h3{

    font-size:22px;

    margin-bottom:10px;

}

.about-card p{

    color:#64748b;

    line-height:1.7;

}

.about-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(37,99,235,.08);

}

.about-circle.one{

    width:220px;

    height:220px;

    top:40px;

    right:120px;

}

.about-circle.two{

    width:120px;

    height:120px;

    bottom:80px;

    left:180px;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:992px){

.about-hero .container{

grid-template-columns:1fr;

text-align:center;

}

.about-content{

margin:auto;

}

.about-buttons{

justify-content:center;

flex-wrap:wrap;

}

.about-image{

height:auto;

display:grid;

grid-template-columns:1fr;

gap:20px;

}

.about-card{

position:relative;

left:auto;

right:auto;

top:auto;

bottom:auto;

width:100%;

max-width:350px;

margin:auto;

}

.about-circle{

display:none;

}

}

@media(max-width:768px){

.about-hero{

padding:130px 20px 70px;

}

.about-content h1{

font-size:38px;

}

.about-content p{

font-size:16px;

}

.about-buttons{

flex-direction:column;

align-items:center;

}

.primary-btn,

.secondary-btn{

width:100%;

max-width:320px;

text-align:center;

}

}

/* ===========================
   Founder Message
=========================== */

.founder-message{

    padding:100px 8%;
    background:#08111f;
}

.founder-container{

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:350px 1fr;
    gap:70px;
    align-items:center;
}

.founder-left{

    text-align:center;
}

.founder-image{

    width:260px;
    height:260px;

    margin:auto;
    border-radius:50%;
    overflow:hidden;

    border:5px solid rgba(0,162,255,.3);

    box-shadow:
    0 20px 60px rgba(0,162,255,.15);
}

.founder-image img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.founder-details{

    margin-top:25px;
}

.founder-details h3{

    color:#4da6ff;
    font-size:18px;
    margin-bottom:5px;
}

.founder-details h2{

    color:#fff;
    font-size:32px;
    margin-bottom:8px;
}

.founder-details p{

    color:#9da9b8;
}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#10233d;

    color:#4da6ff;

    border-radius:30px;

    margin-bottom:25px;
}

.founder-right h2{

    color:#fff;
    font-size:42px;
    margin-bottom:30px;
}

.founder-right p{

    color:#c4cfdb;

    line-height:1.9;

    margin-bottom:22px;

    font-size:17px;
}

blockquote{

    margin:40px 0;

    padding-left:25px;

    border-left:4px solid #2b83ff;

    color:#ffffff;

    font-size:22px;

    font-style:italic;
}

.official-note{

    margin-top:45px;

    display:flex;

    gap:20px;

    background:#10233d;

    padding:28px;

    border-radius:18px;

    border:1px solid rgba(77,166,255,.2);
}

.icon{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#2b83ff;

    color:white;

    font-size:24px;

    flex-shrink:0;
}

.official-note h4{

    color:#fff;

    margin-bottom:12px;
}

.official-note p{

    margin-bottom:12px;
}

@media(max-width:900px){

.founder-container{

grid-template-columns:1fr;

text-align:center;
}

blockquote{

text-align:left;
}

.official-note{

text-align:left;
}
}



/*======================================
        OUR JOURNEY
======================================*/

.journey{

    padding:100px 20px;

    background:#f8fbff;

}

.journey-timeline{

    position:relative;

    max-width:1100px;

    margin:70px auto 0;

}

.journey-timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#2563eb;

    transform:translateX(-50%);

}

.journey-item{

    width:50%;

    padding:20px 40px;

    position:relative;

}

.journey-item.left{

    left:0;

}

.journey-item.right{

    left:50%;

}

.journey-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    position:relative;

    transition:.35s;

    animation:floatJourney 6s ease-in-out infinite;

}

.journey-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(37,99,235,.18);

}

.year{

    display:inline-block;

    background:#2563eb;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:18px;

}

.journey-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#eef4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

}

.journey-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.journey-card p{

    color:#64748b;

    line-height:1.8;

}

.journey-item::after{

    content:"";

    position:absolute;

    top:60px;

    width:22px;

    height:22px;

    background:#2563eb;

    border:5px solid #fff;

    border-radius:50%;

    z-index:5;

}

.journey-item.left::after{

    right:-11px;

}

.journey-item.right::after{

    left:-11px;

}

@keyframes floatJourney{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

@media(max-width:900px){

.journey-timeline::before{

left:20px;

}

.journey-item{

width:100%;

padding-left:60px;

padding-right:20px;

left:0 !important;

}

.journey-item::after{

left:10px;

}

}

/*======================================
        MISSION & VISION
======================================*/

.mission-vision{

    padding:100px 20px;

    background:#ffffff;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.mission-card{

    background:#fff;

    border:1px solid #edf2ff;

    border-radius:28px;

    padding:45px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

.mission-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.mission-card:hover::before{

    transform:scaleX(1);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(37,99,235,.16);

}

.mission-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:24px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    margin-bottom:30px;

    transition:.35s;

}

.mission-card:hover .mission-icon{

    transform:rotate(-8deg) scale(1.08);

}

.mission-card h3{

    font-size:32px;

    margin-bottom:20px;

    color:#111827;

}

.mission-card p{

    font-size:17px;

    color:#64748b;

    line-height:1.9;

}

@media(max-width:992px){

.mission-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.mission-vision{

padding:70px 20px;

}

.mission-card{

padding:35px 28px;

}

.mission-card h3{

font-size:28px;

}

.mission-card p{

font-size:16px;

}

.mission-icon{

width:80px;

height:80px;

font-size:36px;

}

}

@media(max-width:480px){

.mission-card{

padding:28px 22px;

}

.mission-card h3{

font-size:24px;

}

.mission-card p{

font-size:15px;

}

}

/*======================================
        CORE VALUES
======================================*/

.core-values{

    position:relative;

    padding:110px 20px;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
    radial-gradient(circle at bottom left,#eef4ff 0%,transparent 40%),
    #f8fbff;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.value-card{

    position:relative;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(15px);

    border:1px solid rgba(37,99,235,.08);

    border-radius:28px;

    padding:40px 30px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.value-card:hover::before{

    transform:scaleX(1);

}

.value-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(37,99,235,.18);

}

.value-icon{

    width:85px;

    height:85px;

    border-radius:22px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:40px;

    margin-bottom:25px;

    transition:.4s;

}

.value-card:hover .value-icon{

    transform:rotate(-10deg) scale(1.08);

}

.value-card h3{

    font-size:28px;

    color:#111827;

    margin-bottom:15px;

}

.value-card p{

    font-size:16px;

    line-height:1.8;

    color:#64748b;

}

/* Floating Decorative Circles */

.value-circle{

    position:absolute;

    border-radius:50%;

    background:rgba(37,99,235,.07);

    animation:floatValue 8s ease-in-out infinite;

}

.value-circle.one{

    width:220px;

    height:220px;

    top:-60px;

    right:-70px;

}

.value-circle.two{

    width:140px;

    height:140px;

    bottom:80px;

    left:-50px;

}

.value-circle.three{

    width:90px;

    height:90px;

    bottom:220px;

    right:120px;

}

@keyframes floatValue{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

/* Tablet */

@media(max-width:992px){

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.core-values{

padding:80px 20px;

}

.values-grid{

grid-template-columns:1fr;

gap:22px;

}

.value-card{

padding:30px;

}

.value-card h3{

font-size:24px;

}

.value-icon{

width:75px;

height:75px;

font-size:34px;

}

.value-circle{

display:none;

}

}

/* Small Mobile */

@media(max-width:480px){

.value-card{

padding:25px;

}

.value-card h3{

font-size:22px;

}

.value-card p{

font-size:15px;

}

}

/*======================================
        CALL TO ACTION
======================================*/

.about-cta{

    position:relative;

    overflow:hidden;

    padding:100px 20px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    text-align:center;

}

.cta-content{

    max-width:850px;

    margin:auto;

    position:relative;

    z-index:2;

}

.about-cta .sub-title{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.about-cta h2{

    font-size:52px;

    color:#fff;

    margin:25px 0;

    font-weight:800;

}

.about-cta p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.8;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.about-cta .primary-btn{

    background:#fff;

    color:#2563eb;

    box-shadow:none;

}

.about-cta .primary-btn:hover{

    transform:translateY(-5px);

}

.cta-secondary{

    border:2px solid #fff;

    color:#fff;

}

.cta-secondary:hover{

    background:#fff;

    color:#2563eb;

}

/* Floating Shapes */

.cta-shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:ctaFloat 8s ease-in-out infinite;

}

.cta-shape.one{

    width:220px;

    height:220px;

    top:-70px;

    left:-70px;

}

.cta-shape.two{

    width:150px;

    height:150px;

    bottom:-40px;

    right:80px;

}

.cta-shape.three{

    width:90px;

    height:90px;

    top:50px;

    right:220px;

}

@keyframes ctaFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/* Tablet */

@media(max-width:768px){

.about-cta{

padding:80px 20px;

}

.about-cta h2{

font-size:38px;

}

.about-cta p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.about-cta .primary-btn,
.cta-secondary{

width:100%;

max-width:320px;

text-align:center;

}

}

/* Mobile */

@media(max-width:480px){

.about-cta{

padding:70px 15px;

}

.about-cta h2{

font-size:30px;

line-height:1.3;

}

.about-cta p{

font-size:15px;

}

.cta-shape{

display:none;

}

}

/*======================================
        CONTACT HERO
======================================*/

.contact-hero{

    position:relative;

    min-height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:120px 20px 80px;

    background:url("images/contactbackground.png") center center/cover no-repeat;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:rgba(8,18,40,.65);

}

.contact-hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

    text-align:center;

    color:#fff;

}

.contact-hero-content .hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    margin-bottom:25px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}

.contact-hero-content h1{

    font-size:62px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.contact-hero-content h1 span{

    color:#60a5fa;

}

.contact-hero-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

    color:#f1f5f9;

}

.contact-hero .hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:768px){

.contact-hero{

min-height:700px;

padding:140px 20px 70px;

}

.contact-hero-content{

max-width:100%;

}

.contact-hero-content h1{

font-size:36px;

line-height:1.2;

}

.contact-hero-content p{

font-size:15px;

line-height:1.8;

margin-bottom:30px;

}

.contact-hero .hero-buttons{

flex-direction:column;

align-items:center;

gap:18px;

}

.contact-hero .hero-buttons a{

width:100%;

max-width:320px;

text-align:center;

}

}

@media(max-width:480px){

.contact-hero{

min-height:650px;

padding:120px 15px 60px;

}

.contact-hero-content h1{

font-size:30px;

line-height:1.25;

}

.contact-hero-content p{

font-size:14px;

line-height:1.7;

}

.contact-hero .hero-buttons a{

max-width:100%;

}

}


/*======================================
        CONTACT SECTION
======================================*/

.contact-section{

    padding:100px 20px;

    background:
    radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
    radial-gradient(circle at bottom left,#eef4ff 0%,transparent 40%),
    #f8fbff;

}

.contact-section .container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

/*======================================
        LEFT SIDE
======================================*/

.section-title{

    margin-bottom:40px;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#111827;

    margin:18px 0;

}

.section-title p{

    color:#64748b;

    line-height:1.8;

    font-size:17px;

}

.info-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:22px;

    margin-bottom:22px;

    border:1px solid #edf2ff;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(37,99,235,.16);

}

.info-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#fff;

    flex-shrink:0;

}

.info-content h3{

    font-size:22px;

    margin-bottom:8px;

    color:#111827;

}

.info-content p{

    color:#64748b;

    line-height:1.6;

}

.info-content span{

    display:block;

    margin-top:5px;

    color:#2563eb;

    font-weight:600;

}

/*======================================
        RIGHT SIDE
======================================*/

.contact-form-box{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:28px;

    padding:40px;

    box-shadow:0 25px 60px rgba(15,23,42,.10);

}

.form-heading{

    margin-bottom:30px;

}

.form-heading h2{

    font-size:34px;

    margin-bottom:10px;

    color:#111827;

}

.form-heading p{

    color:#64748b;

    line-height:1.7;

}

.input-group{

    margin-bottom:24px;

}

.input-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

    color:#374151;

}

.input-group input,

.input-group textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #dbeafe;

    border-radius:14px;

    background:#fff;

    font-size:16px;

    font-family:'Outfit',sans-serif;

    transition:.3s;

}

.input-group textarea{

    resize:vertical;

    min-height:160px;

}

.input-group input:focus,

.input-group textarea:focus{

    outline:none;

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.contact-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.contact-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 45px rgba(37,99,235,.35);

}

/*======================================
        TABLET
======================================*/

@media(max-width:992px){

.contact-section .container{

grid-template-columns:1fr;

gap:50px;

}

.section-title{

text-align:center;

}

.contact-info{

max-width:700px;

margin:auto;

}

.contact-form-box{

max-width:700px;

margin:auto;

width:100%;

}

}

/*======================================
        MOBILE
======================================*/

@media(max-width:768px){

.contact-section{

padding:70px 20px;

}

.section-title h2{

font-size:32px;

}

.form-heading h2{

font-size:28px;

}

.info-card{

padding:20px;

gap:16px;

}

.info-icon{

width:60px;

height:60px;

font-size:26px;

}

.info-content h3{

font-size:20px;

}

.contact-form-box{

padding:30px;

}

.input-group input,

.input-group textarea{

padding:16px;

}

}

/*======================================
        SMALL MOBILE
======================================*/

@media(max-width:480px){

.contact-section{

padding:60px 15px;

}

.section-title h2{

font-size:28px;

}

.section-title p{

font-size:15px;

}

.form-heading h2{

font-size:24px;

}

.contact-form-box{

padding:22px;

border-radius:20px;

}

.info-card{

flex-direction:column;

text-align:center;

}

.info-icon{

margin-bottom:8px;

}

.contact-btn{

font-size:15px;

padding:16px;

}

}

/*======================================
            FAQ SECTION
======================================*/

.faq-section{

    padding:100px 20px;

    background:#f8fbff;

}

.faq-section .container{

    max-width:1000px;

    margin:auto;

}

.faq-heading{

    text-align:center;

    margin-bottom:60px;

}

.faq-tag{

    display:inline-block;

    padding:10px 22px;

    background:#e8f1ff;

    color:#2563eb;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.faq-heading h2{

    font-size:48px;

    color:#111827;

    font-weight:800;

    margin-bottom:20px;

}

.faq-heading h2 span{

    color:#2563eb;

}

.faq-heading p{

    max-width:700px;

    margin:auto;

    color:#64748b;

    line-height:1.8;

    font-size:17px;

}

/* FAQ Cards */

.faq-container{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq-item{

    background:#fff;

    border-radius:20px;

    border:1px solid #edf2ff;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 28px 55px rgba(37,99,235,.14);

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 30px;

    cursor:pointer;

}

.faq-question h3{

    font-size:20px;

    color:#111827;

    font-weight:700;

    padding-right:20px;

}

.faq-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    font-weight:700;

    transition:.35s;

    flex-shrink:0;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 30px;

    color:#64748b;

    line-height:1.8;

    font-size:16px;

}

/* Active */

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

    background:#0f172a;

}

/*==============================
        Tablet
===============================*/

@media(max-width:768px){

.faq-section{

padding:70px 20px;

}

.faq-heading h2{

font-size:36px;

}

.faq-heading p{

font-size:15px;

}

.faq-question{

padding:22px;

}

.faq-question h3{

font-size:18px;

}

.faq-answer p{

padding:0 22px 22px;

font-size:15px;

}

}

/*==============================
        Mobile
===============================*/

@media(max-width:480px){

.faq-section{

padding:60px 15px;

}

.faq-heading h2{

font-size:30px;

line-height:1.3;

}

.faq-question{

padding:18px;

}

.faq-question h3{

font-size:16px;

line-height:1.5;

}

.faq-icon{

width:36px;

height:36px;

font-size:22px;

}

.faq-answer p{

padding:0 18px 18px;

font-size:14px;

}

}

/*======================================
    CONSULTATION POPUP MODAL
======================================*/

.consultation-modal{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

    visibility:hidden;

    opacity:0;

    transition:.35s ease;

    z-index:9999;

}

.consultation-modal.active{

    visibility:visible;

    opacity:1;

}

.consultation-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(8px);

}

.consultation-popup{

    position:relative;

    width:100%;

    max-width:1100px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1.1fr;

    box-shadow:0 30px 80px rgba(0,0,0,.25);

    z-index:2;

    transform:scale(.9);

    transition:.35s ease;

}

.consultation-modal.active .consultation-popup{

    transform:scale(1);

}

/* Left Side */

.consultation-left{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    padding:60px 45px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.popup-tag{

    display:inline-block;

    width:max-content;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.18);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.consultation-left h2{

    font-size:38px;

    line-height:1.25;

    margin-bottom:20px;

}

.consultation-left p{

    font-size:16px;

    line-height:1.8;

    margin-bottom:35px;

    color:#e5e7eb;

}

.popup-benefits{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.benefit{

    display:flex;

    align-items:center;

    gap:15px;

}

.benefit-icon{

    width:38px;

    height:38px;

    border-radius:50%;

    background:#fff;

    color:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

/* Right Side */

.consultation-right{

    padding:45px;

    background:#fff;

}

#consultation-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:#1e293b;

}

.form-group input,

.form-group select,

.form-group textarea{

    width:100%;

    padding:15px 16px;

    border:1px solid #dbe4f0;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

    font-family:inherit;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.consultation-submit{

    border:none;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    padding:18px;

    border-radius:14px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.consultation-submit:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(37,99,235,.25);

}

/* Close Button */

.close-modal{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111827;

    font-size:28px;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

    z-index:5;

}

.close-modal:hover{

    transform:rotate(90deg);

    background:#2563eb;

    color:#fff;

}

/* Tablet */

@media(max-width:991px){

.consultation-popup{

grid-template-columns:1fr;

max-width:700px;

}

.consultation-left{

padding:45px 35px;

}

.consultation-left h2{

font-size:30px;

}

.consultation-right{

padding:35px;

}

}

/*======================================
      MOBILE POPUP
======================================*/

@media (max-width:768px){

.consultation-modal{

    padding:0;

}

.consultation-popup{

    width:100%;

    height:100vh;

    max-width:100%;

    border-radius:0;

    grid-template-columns:1fr;

    overflow-y:auto;

}

.consultation-left{

    padding:35px 25px;

}

.consultation-left h2{

    font-size:28px;

}

.consultation-left p{

    font-size:15px;

}

.popup-benefits{

    gap:12px;

}

.benefit{

    font-size:14px;

}

.consultation-right{

    padding:25px;

}

.form-row{

    grid-template-columns:1fr;

}

.form-group input,

.form-group select,

.form-group textarea{

    font-size:16px;

    padding:14px;

}

.consultation-submit{

    width:100%;

    padding:16px;

    font-size:16px;

}

.close-modal{

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    font-size:26px;

    position:fixed;

    z-index:10000;

}

}





