/*=========================================================
INDIANASTROVEDIC
SERVICES PAGE
=========================================================*/


/*=========================================================
1. GOOGLE FONTS
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================================================
2. ROOT VARIABLES
=========================================================*/

:root{

    --primary:#0B3D91;
    --primary-dark:#072B66;
    --secondary:#D4AF37;
    --secondary-dark:#B89221;

    --white:#ffffff;
    --light:#F8FAFD;
    --lighter:#FCFDFE;

    --text:#2C3E50;
    --text-light:#6B7280;

    --border:#E8ECF3;

    --success:#18B45B;
    --danger:#E53935;

    --shadow-sm:0 4px 12px rgba(0,0,0,.05);
    --shadow-md:0 10px 35px rgba(0,0,0,.08);
    --shadow-lg:0 18px 55px rgba(0,0,0,.12);

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:28px;

    --transition:.35s ease;

}


/*=========================================================
3. RESET
=========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.8;
    overflow-x:hidden;

}


/*=========================================================
4. COMMON
=========================================================*/

img{

    max-width:100%;
    height:auto;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

section{

    position:relative;
    padding:100px 0;

}

.container{

    position:relative;
    z-index:2;

}


/*=========================================================
5. TYPOGRAPHY
=========================================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--primary-dark);
    font-weight:700;
    line-height:1.3;
    margin-bottom:18px;

}

h1{

    font-size:56px;

}

h2{

    font-size:42px;

}

h3{

    font-size:28px;

}

h4{

    font-size:22px;

}

p{

    color:var(--text-light);
    margin-bottom:18px;
    font-size:16px;

}


/*=========================================================
6. SECTION COMPONENTS
=========================================================*/

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(11,61,145,.08);

    color:var(--primary);

    font-weight:600;

    font-size:14px;

    letter-spacing:.5px;

    margin-bottom:18px;

}

.section-title{

    max-width:850px;
    margin:0 auto 20px;

}

.section-description{

    max-width:760px;
    margin:0 auto;
    font-size:17px;

}


/*=========================================================
7. BUTTONS
=========================================================*/

.btn-gold{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:linear-gradient(135deg,var(--secondary),#F3D36A);

    color:#1B1B1B;

    font-weight:600;

    border-radius:50px;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.btn-gold:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-lg);

    color:#000;

}

.btn-white{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:#fff;

    color:var(--primary);

    border:1px solid var(--border);

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-white:hover{

    background:var(--primary);

    color:#fff;

}


/*=========================================================
8. COMMON CARD
=========================================================*/

.card-box{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.card-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/*=========================================================
9. ICON CIRCLE
=========================================================*/

.icon-circle{

    width:75px;
    height:75px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    background:rgba(212,175,55,.12);

    color:var(--secondary);

    margin-bottom:25px;

}


/*=========================================================
10. BACKGROUND HELPERS
=========================================================*/

.bg-light{

    background:var(--light);

}

.bg-gradient{

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 100%);

}


/*=========================================================
11. ANIMATIONS
=========================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.float{

    animation:float 4s ease-in-out infinite;

}

/*=========================================================
12. HERO SECTION
=========================================================*/

.services-hero{

    position:relative;

    overflow:hidden;

    min-height:850px;

    display:flex;

    align-items:center;

   padding:120px 0 80px;

   background:
linear-gradient(135deg,#071B3A 0%,#0D2E61 55%,#12396F 100%);

    color:#fff;

}

/* Decorative Shapes */

.services-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.45;

}

.services-hero::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,rgba(212,175,55,.16),transparent 70%);

    top:-300px;

    right:-220px;

}


/* Hero Content */

.hero-content{

    position:relative;

    z-index:5;

}

.hero-content h1{

    color:#fff;

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    letter-spacing:-1px;

    margin-bottom:28px;

    text-shadow:0 8px 30px rgba(0,0,0,.35);

}
.hero-content p{

    color:rgba(255,255,255,.88);

    font-size:20px;

    line-height:1.9;

    max-width:680px;

    margin-bottom:40px;

}


/* Badge */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    margin-bottom:25px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    border-radius:50px;

    color:#FFD76A;

    font-size:15px;

    font-weight:600;

    backdrop-filter:blur(12px);
}

.hero-badge i{
    font-size:16px;
}


/* Hero Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:15px;

}

.hero-buttons .btn-white{

    background:transparent;

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

}

.hero-buttons .btn-white:hover{

    background:#fff;

    color:var(--primary);

}


/* Right Side */

/* Right Side */

.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:650px;
    width:100%;
}

.hero-illustration{
    position:relative;
    width:100%;
    text-align:center;
    z-index:2;
}

.hero-main-image{
    width:100%;
    max-width:560px;
    height:auto;
    display:block;
    margin:0 auto;

    animation:float 6s ease-in-out infinite;

    filter:
        drop-shadow(0 35px 60px rgba(0,0,0,.45))
        drop-shadow(0 0 40px rgba(212,175,55,.18));
}
.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-illustration{
    position:relative;
}

/*=========================================================
HERO FLOATING CARDS
=========================================================*/

.hero-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:15px;

    width:230px;
    padding:16px 20px;

    background:#0B3D91;
    border:2px solid #D4AF37;
    border-radius:18px;

    color:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:20;

    transition:.35s ease;
}

.hero-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.hero-card i{
    font-size:30px;
    color:#FFD54A;
    flex-shrink:0;
}

.hero-card strong{
    display:block;
    font-size:28px;
    font-weight:700;
    line-height:1.1;
    color:#fff;
}

.hero-card span{
    display:block;
    font-size:14px;
    color:rgba(255,255,255,.85);
    margin-top:4px;
}

/* Card Positions */

.card-1{
    top:40px;
    right:0;
}

.card-2{
    top:250px;
    left:0;
}

.card-3{
    bottom:40px;
    right:20px;
}
/* Hero Features */

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:45px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:500;

}

.hero-features i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#FFD76A;

}


/* Scroll Down */
.hero-scroll{

    text-align:center;

    margin-top:-40px;

    position:relative;

    z-index:50;

}

.hero-scroll a{

    display:inline-flex;

    flex-direction:column;

    align-items:center;

    color:#fff;

    text-decoration:none;
}

/*=========================================================
Hero Responsive
=========================================================*/

@media(max-width:1200px){

.hero-content h1{

    font-size:52px;

}

}

@media(max-width:991px){

.services-hero{

    text-align:center;

    padding:110px 0 90px;

}

.hero-content{

    margin-bottom:70px;

}

.hero-content p{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    justify-content:center;

}

.hero-card{

    display:none;

}

}

@media(max-width:768px){

.hero-content h1{

    font-size:42px;

}

.hero-content p{

    font-size:16px;

}

.services-hero{

    padding:90px 0 70px;

}

.hero-features{

    gap:15px;

}

.hero-features div{

    width:100%;

    justify-content:center;

}

}

@media(max-width:576px){

.hero-content h1{

    font-size:34px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons a{

    width:100%;

}

}

.trust-item{
    background:#fff;
    border-radius:20px;
    padding:30px;
    display:flex;
    align-items:center;
    gap:20px;
    height:100%;
    border:1px solid #edf1f7;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.trust-item:hover{
    transform:translateY(-8px);
}

.trust-icon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:18px;
    background:#18489E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.trust-content{
    flex:1;
}

.trust-content h3{
    margin:0 0 8px;
    font-size:42px;
    font-weight:700;
    color:#071B3A;
}

.trust-content p{
    margin:0;
    font-size:18px;
    color:#666;
    line-height:1.5;
}

@media(max-width:991px){

.trust-item{
    flex-direction:column;
    text-align:center;
}

.trust-icon{
    margin-bottom:15px;
}

}

/*=========================================================
14./*=========================================================
WHO WE HELP
=========================================================*/

.who-we-help{

    padding:100px 0;

    background:#F7F9FC;

    position:relative;

}

.who-we-help .section-title{

    max-width:760px;

    margin:0 auto 60px;

}

.who-we-help .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.who-we-help h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.who-we-help .section-title p{

    color:#666;

    font-size:17px;

    line-height:1.9;

}

.help-card{

    background:#fff;

    border-radius:20px;

    padding:35px 30px;

    height:100%;

    text-align:center;

    box-shadow:0 15px 40px rgba(7,27,58,.08);

    transition:.35s;

    border:1px solid transparent;

}

.help-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 25px 60px rgba(7,27,58,.15);

}

.help-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:20px;

    background:linear-gradient(135deg,#071B3A,#12396F);

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    transition:.35s;

}

.help-card:hover .help-icon{

    transform:rotate(-8deg) scale(1.08);

}

.help-card h3{

    color:#071B3A;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.help-card p{

    color:#666;

    font-size:16px;

    line-height:1.8;

    margin:0;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .who-we-help{

        padding:80px 0;

    }

    .who-we-help h2{

        font-size:34px;

    }

    .help-card{

        padding:30px 25px;

    }

}

@media(max-width:767px){

    .who-we-help{

        padding:60px 0;

    }

    .who-we-help h2{

        font-size:28px;

    }

    .who-we-help .section-title{

        margin-bottom:40px;

    }

    .who-we-help .section-title p{

        font-size:16px;

    }

    .help-card{

        padding:28px 22px;

    }

    .help-icon{

        width:70px;

        height:70px;

        font-size:28px;

    }

    .help-card h3{

        font-size:22px;

    }

}
/*=========================================================
Who Help Bottom Banner
=========================================================*/

.help-banner{

    margin-top:70px;

    border-radius:24px;

    background:linear-gradient(135deg,#0B3D91,#144FAF);

    padding:60px;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.help-banner::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-100px;

    top:-100px;

}

.help-banner h2{

    color:#fff;

    margin-bottom:15px;

}

.help-banner p{

    color:rgba(255,255,255,.88);

    margin-bottom:25px;

}


/*=========================================================
Responsive
=========================================================*/

@media(max-width:991px){

.trust-wrapper{

    padding:30px;

}

.trust-item{

    margin-bottom:25px;

}

.help-banner{

    text-align:center;

    padding:40px 30px;

}

}

@media(max-width:767px){

.trust-item{

    flex-direction:column;

    text-align:center;

}

.trust-icon{

    margin:auto;

}

.help-card{

    padding:35px 25px;

}

.help-icon{

    width:82px;

    height:82px;

    font-size:30px;

}

.help-banner{

    padding:35px 25px;

}

}

@media(max-width:576px){

.trust-content h3{

    font-size:28px;

}

.help-card h3{

    font-size:22px;

}

}

/*=========================================================
15./*=========================================================
FEATURED SERVICE
=========================================================*/

.featured-service{

    padding:100px 0;

    background:#ffffff;

    position:relative;

}

.featured-image{

    position:relative;

    text-align:center;

}

.featured-image img{

    width:100%;

    max-width:520px;

    border-radius:24px;

    padding:35px;

    background:#fff;

    box-shadow:0 20px 60px rgba(7,27,58,.10);

    transition:.4s;

}

.featured-image img:hover{

    transform:translateY(-8px);

}

.featured-service .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.featured-service h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:25px;

}

.featured-service p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

.featured-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.featured-item{

    display:flex;

    align-items:flex-start;

    gap:14px;

    background:#F7F9FC;

    padding:16px 18px;

    border-radius:15px;

    transition:.3s;

}

.featured-item:hover{

    background:#071B3A;

    transform:translateX(6px);

}

.featured-item i{

    color:#D4AF37;

    font-size:18px;

    margin-top:3px;

}

.featured-item span{

    color:#071B3A;

    font-weight:500;

    line-height:1.6;

    transition:.3s;

}

.featured-item:hover span{

    color:#fff;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .featured-service{

        padding:80px 0;

    }

    .featured-service h2{

        font-size:34px;

        margin-top:30px;

    }

    .featured-list{

        grid-template-columns:1fr;

    }

    .featured-image{

        margin-bottom:20px;

    }

}

@media(max-width:767px){

    .featured-service{

        padding:60px 0;

    }

    .featured-service h2{

        font-size:28px;

    }

    .featured-service p{

        font-size:16px;

    }

    .featured-image img{

        padding:20px;

    }

    .featured-item{

        padding:14px 16px;

    }

}

/*=========================================================
16. /*=========================================================
OUR SERVICES
=========================================================*/

.services-grid-section{

    padding:100px 0;

    background:#F7F9FC;

    position:relative;

}

.services-grid-section .section-title{

    max-width:760px;

    margin:0 auto 60px;

}

.services-grid-section .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.services-grid-section h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.services-grid-section .section-title p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/*=========================================================
SERVICE CARD
=========================================================*/

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px 35px;

    height:100%;

    border-top:4px solid transparent;

    box-shadow:0 15px 40px rgba(7,27,58,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#D4AF37,#F5D76E);

    transform:scaleX(0);

    transition:.35s;

    transform-origin:left;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(7,27,58,.15);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:linear-gradient(135deg,#071B3A,#12396F);

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:30px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}

.service-card h3{

    color:#071B3A;

    font-size:26px;

    font-weight:700;

    margin-bottom:18px;

}

.service-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;

    margin-bottom:28px;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#071B3A;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.service-card a:hover{

    color:#D4AF37;

}

.service-card a i{

    transition:.3s;

}

.service-card a:hover i{

    transform:translateX(6px);

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .services-grid-section{

        padding:80px 0;

    }

    .services-grid-section h2{

        font-size:34px;

    }

    .service-card{

        padding:30px;

    }

}

@media(max-width:767px){

    .services-grid-section{

        padding:60px 0;

    }

    .services-grid-section h2{

        font-size:28px;

    }

    .services-grid-section .section-title{

        margin-bottom:40px;

    }

    .service-card{

        padding:28px 22px;

    }

    .service-icon{

        width:70px;

        height:70px;

        font-size:28px;

    }

    .service-card h3{

        font-size:22px;

    }

}

/*=========================================================
17. /*=========================================================
WHY CHOOSE
=========================================================*/

.why-choose{

    padding:100px 0;

    background:#ffffff;

    position:relative;

}

.why-choose .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.why-choose h2{

    font-size:42px;

    font-weight:700;

    color:#071B3A;

    line-height:1.3;

    margin-bottom:25px;

}

.why-choose p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================================================
WHY LIST
=========================================================*/

.why-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:40px;

}

.why-item{

    display:flex;

    align-items:center;

    gap:16px;

    background:#F7F9FC;

    padding:16px 20px;

    border-radius:16px;

    transition:.35s;

}

.why-item:hover{

    background:#071B3A;

    transform:translateX(8px);

}

.why-item i{

    color:#D4AF37;

    font-size:20px;

}

.why-item span{

    color:#071B3A;

    font-size:16px;

    font-weight:500;

    transition:.35s;

}

.why-item:hover span{

    color:#fff;

}

/*=========================================================
RIGHT GRID
=========================================================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.why-box{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:20px;

    border-top:4px solid #D4AF37;

    box-shadow:0 15px 40px rgba(7,27,58,.08);

    transition:.35s;

}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(7,27,58,.15);

}

.why-box h3{

    font-size:42px;

    font-weight:700;

    color:#071B3A;

    margin-bottom:12px;

}

.why-box p{

    margin:0;

    color:#666;

    font-size:16px;

    line-height:1.6;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .why-choose{

        padding:80px 0;

    }

    .why-choose h2{

        font-size:34px;

        margin-top:20px;

    }

    .why-grid{

        margin-top:20px;

    }

}

@media(max-width:767px){

    .why-choose{

        padding:60px 0;

    }

    .why-choose h2{

        font-size:28px;

    }

    .why-choose p{

        font-size:16px;

    }

    .why-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .why-box{

        padding:30px 20px;

    }

    .why-box h3{

        font-size:34px;

    }

    .why-item{

        padding:14px 16px;

    }

}

/*=========================================================
18./*=========================================================
CONSULTATION PROCESS
=========================================================*/

.consultation-process{

    padding:100px 0;

    background:#F7F9FC;

    position:relative;

}

.consultation-process .section-title{

    max-width:760px;

    margin:0 auto 70px;

}

.consultation-process .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.consultation-process h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.consultation-process .section-title p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/*=========================================================
PROCESS WRAPPER
=========================================================*/

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    position:relative;

}

.process-wrapper::before{

    content:"";

    position:absolute;

    top:75px;

    left:8%;

    width:84%;

    height:2px;

    background:#D4AF37;

    z-index:0;

}

.process-step{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(7,27,58,.08);

    transition:.35s;

    z-index:2;

}

.process-step:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(7,27,58,.15);

}

.process-number{

    position:absolute;

    top:-16px;

    left:50%;

    transform:translateX(-50%);

    width:42px;

    height:42px;

    border-radius:50%;

    background:#D4AF37;

    color:#071B3A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

    font-weight:700;

}

.process-icon{

    width:85px;

    height:85px;

    margin:20px auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#071B3A,#12396F);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#D4AF37;

    font-size:34px;

    transition:.35s;

}

.process-step:hover .process-icon{

    transform:rotateY(180deg);

}

.process-step h3{

    color:#071B3A;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.process-step p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1199px){

    .process-wrapper{

        grid-template-columns:repeat(3,1fr);

    }

    .process-wrapper::before{

        display:none;

    }

}

@media(max-width:991px){

    .consultation-process{

        padding:80px 0;

    }

    .consultation-process h2{

        font-size:34px;

    }

}

@media(max-width:767px){

    .consultation-process{

        padding:60px 0;

    }

    .consultation-process h2{

        font-size:28px;

    }

    .consultation-process .section-title{

        margin-bottom:45px;

    }

    .process-wrapper{

        grid-template-columns:1fr;

        gap:35px;

    }

    .process-step{

        padding:35px 22px;

    }

    .process-icon{

        width:70px;

        height:70px;

        font-size:28px;

    }

    .process-step h3{

        font-size:20px;

    }

}
/*=========================================================
19. /*=========================================================
TESTIMONIALS
=========================================================*/

.services-testimonials{

    padding:100px 0;

    background:#ffffff;

    position:relative;

}

.services-testimonials .section-title{

    max-width:760px;

    margin:0 auto 60px;

}

.services-testimonials .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.services-testimonials h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.services-testimonials .section-title p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/*=========================================================
TESTIMONIAL CARD
=========================================================*/

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    border-top:4px solid transparent;

    box-shadow:0 15px 40px rgba(7,27,58,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#D4AF37,#F5D76E);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(7,27,58,.15);

}

.testimonial-card:hover::before{

    transform:scaleX(1);

}

.stars{

    color:#D4AF37;

    font-size:18px;

    margin-bottom:20px;

}

.stars i{

    margin-right:4px;

}

.testimonial-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;

    margin-bottom:30px;

    font-style:italic;

}

.client-info{

    display:flex;

    align-items:center;

    gap:18px;

}

.client-avatar{

    width:65px;

    height:65px;

    border-radius:50%;

    background:linear-gradient(135deg,#071B3A,#12396F);

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.client-info h4{

    margin:0 0 5px;

    font-size:20px;

    font-weight:700;

    color:#071B3A;

}

.client-info span{

    color:#888;

    font-size:14px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .services-testimonials{

        padding:80px 0;

    }

    .services-testimonials h2{

        font-size:34px;

    }

}

@media(max-width:767px){

    .services-testimonials{

        padding:60px 0;

    }

    .services-testimonials h2{

        font-size:28px;

    }

    .services-testimonials .section-title{

        margin-bottom:40px;

    }

    .testimonial-card{

        padding:28px 22px;

    }

    .client-avatar{

        width:55px;

        height:55px;

        font-size:20px;

    }

    .client-info h4{

        font-size:18px;

    }

}

/*=========================================================
20./*=========================================================
FAQ
=========================================================*/

.services-faq{

    padding:100px 0;

    background:#F7F9FC;

    position:relative;

}

.services-faq .section-title{

    max-width:760px;

    margin:0 auto 60px;

}

.services-faq .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.services-faq h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.services-faq .section-title p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/*=========================================================
ACCORDION
=========================================================*/

.services-faq .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 12px 35px rgba(7,27,58,.08);

    background:#fff;

}

.services-faq .accordion-button{

    background:#fff;

    color:#071B3A;

    font-size:18px;

    font-weight:600;

    padding:24px 28px;

    box-shadow:none;

}

.services-faq .accordion-button:not(.collapsed){

    background:#071B3A;

    color:#fff;

}

.services-faq .accordion-button:focus{

    box-shadow:none;

    border:none;

}

.services-faq .accordion-button::after{

    filter:brightness(0);

}

.services-faq .accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

}

.services-faq .accordion-body{

    padding:25px 28px;

    color:#666;

    font-size:16px;

    line-height:1.9;

    background:#fff;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .services-faq{

        padding:80px 0;

    }

    .services-faq h2{

        font-size:34px;

    }

}

@media(max-width:767px){

    .services-faq{

        padding:60px 0;

    }

    .services-faq h2{

        font-size:28px;

    }

    .services-faq .section-title{

        margin-bottom:40px;

    }

    .services-faq .accordion-button{

        font-size:16px;

        padding:20px;

    }

    .services-faq .accordion-body{

        padding:20px;

        font-size:15px;

    }

}

/*=========================================================
21./*=========================================================
SEO CONTENT
=========================================================*/

.seo-content{

    padding:100px 0;

    background:#ffffff;

    position:relative;

}

.seo-box{

    max-width:1100px;

    margin:0 auto;

    background:#fff;

    padding:60px;

    border-radius:24px;

    box-shadow:0 18px 50px rgba(7,27,58,.08);

    border-top:5px solid #D4AF37;

}

.seo-content .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.12);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:22px;

}

.seo-content h2{

    color:#071B3A;

    font-size:42px;

    font-weight:700;

    margin-bottom:30px;

    line-height:1.3;

}

.seo-content p{

    color:#666;

    font-size:17px;

    line-height:2;

    margin-bottom:25px;

    text-align:justify;

}

.seo-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

}

.seo-highlights span{

    display:flex;

    align-items:center;

    gap:10px;

    background:#F7F9FC;

    padding:14px 20px;

    border-radius:40px;

    color:#071B3A;

    font-weight:600;

    transition:.35s;

}

.seo-highlights span:hover{

    background:#071B3A;

    color:#fff;

    transform:translateY(-5px);

}

.seo-highlights i{

    color:#D4AF37;

    font-size:16px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .seo-content{

        padding:80px 0;

    }

    .seo-box{

        padding:40px;

    }

    .seo-content h2{

        font-size:34px;

    }

}

@media(max-width:767px){

    .seo-content{

        padding:60px 0;

    }

    .seo-box{

        padding:28px 22px;

    }

    .seo-content h2{

        font-size:28px;

    }

    .seo-content p{

        font-size:16px;

        text-align:left;

    }

    .seo-highlights{

        flex-direction:column;

    }

    .seo-highlights span{

        width:100%;

        justify-content:flex-start;

    }

}

/*=========================================================
22./*=========================================================
FINAL CTA
=========================================================*/

.final-cta{

    padding:100px 0;

    background:#F7F9FC;

}

.cta-box{

    background:linear-gradient(135deg,#071B3A,#12396F);

    border-radius:30px;

    padding:70px;

    overflow:hidden;

    position:relative;

    box-shadow:0 25px 60px rgba(7,27,58,.18);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    right:-120px;

    top:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-80px;

    bottom:-80px;

}

.final-cta .section-badge{

    display:inline-block;

    background:rgba(212,175,55,.15);

    color:#D4AF37;

    padding:8px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.final-cta h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.3;

}

.final-cta p{

    color:rgba(255,255,255,.85);

    font-size:17px;

    line-height:1.9;

    margin:0;

}

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:20px;

    align-items:stretch;

}

.cta-buttons a{

    text-align:center;

    padding:18px 28px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.btn-gold{

    background:#D4AF37;

    color:#071B3A;

}

.btn-gold:hover{

    background:#fff;

    color:#071B3A;

    transform:translateY(-4px);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.3);

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#071B3A;

}

.btn-gold i,
.btn-outline-light i{

    margin-right:10px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .final-cta{

        padding:80px 0;

    }

    .cta-box{

        padding:50px 35px;

        text-align:center;

    }

    .final-cta h2{

        font-size:34px;

    }

    .cta-buttons{

        margin-top:35px;

    }

}

@media(max-width:767px){

    .final-cta{

        padding:60px 0;

    }

    .cta-box{

        padding:35px 22px;

        border-radius:20px;

    }

    .final-cta h2{

        font-size:28px;

    }

    .final-cta p{

        font-size:16px;

    }

    .cta-buttons a{

        padding:16px;

    }

}

/*=========================================================
23. SECTION SPACING
=========================================================*/

section{

    scroll-margin-top:90px;

}

.section-title{

    margin-bottom:20px;

}

.section-description{

    margin-bottom:50px;

}


/*=========================================================
24. SMOOTH HOVER
=========================================================*/

.service-card,
.help-card,
.feature-box,
.process-card,
.testimonial-card,
.card-box{

    will-change:transform;

}

.service-card:hover,
.help-card:hover,
.feature-box:hover,
.process-card:hover,
.testimonial-card:hover{

    transition:all .35s ease;

}


/*=========================================================
25. RESPONSIVE
=========================================================*/

@media(max-width:1200px){

.final-cta h2{

    font-size:38px;

}

.seo-content{

    padding:50px;

}

}

@media(max-width:991px){

.final-cta{

    text-align:center;

}

.cta-features{

    display:inline-block;

    text-align:left;

    margin-bottom:40px;

}

.cta-card{

    margin-top:20px;

}

}

@media(max-width:768px){

.seo-content{

    padding:35px;

}

.seo-content h2{

    font-size:32px;

}

.seo-content h3{

    font-size:24px;

}

.final-cta h2{

    font-size:32px;

}

.cta-card{

    padding:30px;

}

}

@media(max-width:576px){

.seo-content{

    padding:25px;

}

.seo-content p{

    text-align:left;

}

.final-cta h2{

    font-size:28px;

}

.cta-features li{

    font-size:15px;

}

}

/*=========================================================
REVEAL ANIMATION
=========================================================*/

.reveal{

    opacity:0;

    transform:translate3d(0,40px,0);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);

    will-change:opacity,transform;

}

.revealed{

    opacity:1;

    transform:translate3d(0,0,0);

}

