/*====================================================
 ABC Publishers
 Theme Stylesheet
 Author : Pixsoul Technologies
 Version : 2.0
=====================================================*/


/*====================================================
ROOT VARIABLES
=====================================================*/

:root{

    --primary:#0D3568;
    --secondary:#C89B3C;

    --white:#ffffff;

    --light:#F8FAFC;

    --dark:#1E293B;

    --text:#475569;

    --border:#E2E8F0;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.35s ease;

}


/*====================================================
RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

    font-size:16px;

}

html,
body{
    margin:0;
    padding:0;
}

body{

    font-family:"Poppins",sans-serif;

    font-size:16px;

    color:var(--text);

    background:#fff;

    line-height:1.7;

    overflow-x:hidden;

    display:flex;

    flex-direction:column;

    min-height:100vh;

}

img{

    max-width:100%;

    display:block;

}

.site-content,
main,
#primary,
#content{
    flex:1;
}

.site-footer{
    margin-top:auto;
}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

button{

    cursor:pointer;

    border:none;

    outline:none;

    transition:var(--transition);

}

input,
textarea,
select{

    outline:none;

    font-family:inherit;

}


/*====================================================
LAYOUT
=====================================================*/

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

section{

    padding:70px 0;

}


/*====================================================
TYPOGRAPHY
=====================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--primary);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:52px;

}

h2{

    font-size:40px;

}

h3{

    font-size:28px;

}

p{

    font-size:16px;

    color:var(--dark);

    line-height:1.8;

}

.text-center{

    text-align:center;

}

.section-title{

    margin-bottom:60px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

    font-size:14px;

}

.section-title h2{

    margin:15px 0;

}

.section-title p{

    max-width:720px;

    margin:auto;

}


/*====================================================
HEADER
=====================================================*/

.main-header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.navbar{

    padding:14px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/*====================================================
LOGO
=====================================================*/

.custom-logo{

    width:180px;

    height:auto;

}


/*====================================================
NAVIGATION
=====================================================*/



.navbar-nav li{

    list-style:none;

}

.navbar-nav a{

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    position:relative;

}

.navbar-nav a:hover{

    color:var(--secondary);

}

.navbar-nav .current-menu-item>a{

    color:var(--secondary);

}

.navbar-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.navbar-nav a:hover::after{

    width:100%;

}


/*====================================================
HEADER BUTTON
=====================================================*/

.publish-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:50px;

    height:50px;

    padding:0 28px;

    border-radius:50px;

    margin-left: auto;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:15px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(200,155,60,.35);

}

.publish-btn:hover{

    transform:translateY(-3px);

    color:#fff;

    box-shadow:0 18px 40px rgba(200,155,60,.45);

}


.navbar-brand{

    flex:0 0 auto;

}

.navbar-collapse{

    display:flex;

    align-items:center;

    width:100%;

}

.navbar-nav{

    display:flex;

    justify-content:center;

    align-items:center;

    flex:1;

    gap:35px;

}

/*====================================================
HERO SECTION
=====================================================*/

.hero{

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    min-height:480px;

    padding:45px 0;

    background:linear-gradient(
        135deg,
        #082248 0%,
        #0D3568 55%,
        #184D89 100%
    );

    color:#fff;

}


/*====================================================
HERO OVERLAY
=====================================================*/

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.28);

    z-index:1;

}

.hero::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(200,155,60,.12);

    top:-220px;

    right:-180px;

    filter:blur(40px);

    z-index:1;

}


/*====================================================
CONTAINER
=====================================================*/

.hero .container{

    position:relative;

    z-index:2;

}

.hero .row{

    align-items:center;

    min-height:390px;

}


/*====================================================
LEFT CONTENT
=====================================================*/

.hero-content{

    max-width:610px;

    padding-right: 30px;

}

.hero-custom-text {

    margin-top: 28px;

    padding: 22px 28px;

    background: rgba(255, 255, 255, .10);

    border: 1px solid var(--secondary);

    border-radius: 18px;

    backdrop-filter: blur(12px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

    transition: .35s;

}

.hero-custom-text:hover{

    transform: translateY(-5px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, .25);

}

.hero-custom-text p {

    margin: 0;

    font-size: 19px;

    line-height: 1.8;

    font-weight: 500;

    color: #000000;

    letter-spacing: 2px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 28px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    color: #fff;

    margin-bottom:25px;

    box-shadow:0 15px 40px rgba(200,155,60,.45);

    text-transform: uppercase;

}


.hero-note{

    display:inline-block;
    
    margin-top:28px;
    
    padding:16px 22px;
    
    border-radius:18px;
    
    background:
    
    rgba(255,255,255,.08);
    
    border:
    
    1px solid rgba(255,255,255,.12);
    
    backdrop-filter:
    
    blur(12px);
    
    color:#fff;
    
    font-size:16px;
    
    line-height:1.7;
    
    max-width:420px;
    
    box-shadow:
    
    0 12px 30px rgba(0,0,0,.15);
    
    }

/*====================================================
HEADING
=====================================================*/

.hero h1{

    font-size:48px;

    line-height:1.15;

    color:#fff;

    margin-bottom:20px;

    font-weight:800;

    text-shadow:0 8px 25px rgba(0,0,0,.30);

}

.hero h1 span{

    color:#C89B3C;

}


/*====================================================
DESCRIPTION
=====================================================*/

.hero p{

    font-size:17px;

    color:rgba(255,255,255,.88);

    line-height:1.9;

    margin-bottom:35px;

    max-width:580px;

}


/*====================================================
RIGHT IMAGE
=====================================================*/

.hero-image-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image{

    width:100%;

    max-width:410px;

    object-fit:contain;

    filter:drop-shadow(
        0 25px 55px rgba(0,0,0,.35)
    );

    animation:heroFloat 5s ease-in-out infinite;

}


/*====================================================
FLOAT ANIMATION
=====================================================*/

@keyframes heroFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}


/*====================================================
SLIDER
=====================================================*/

.heroSwiper{

    width:100%;

    overflow:hidden;

}

.heroSwiper .swiper-slide{

    display:flex;

    align-items:center;

    min-height:560px;

}

.heroSwiper .swiper-pagination{

    bottom:20px !important;

}

.heroSwiper .swiper-pagination-bullet{

    width:11px;

    height:11px;

    background:#ffffff;

    opacity:.5;

}

.heroSwiper .swiper-pagination-bullet-active{

    opacity:1;

    background:#C89B3C;

}


/*====================================================
ARROWS
=====================================================*/

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

    color:#ffffff;

    width:50px;

    height:50px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    transition:.3s;

}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{

    background:#C89B3C;

    color:#fff;

}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{

    font-size:20px;

    font-weight:700;

}

/*====================================================
HERO BUTTONS
=====================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    height:56px;

    padding:0 30px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(200,155,60,.35);

}

.hero-btn:hover{

    transform:translateY(-4px);

    color:#fff;

    box-shadow:0 22px 45px rgba(200,155,60,.45);

}

.hero-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    height:56px;

    padding:0 30px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.70);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.hero-outline:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-4px);

}


/*====================================================
HERO STATS
=====================================================*/

.hero-stats{

    display:flex;

    gap:18px;

    margin-top:34px;

    flex-wrap: wrap;

}

.hero-stat{

    display:flex;

    flex-direction:column;

}

.hero-stat-card{


    flex: 1;

    min-width: 160px;

    padding: 20px 18px;

    background: rgba(255, 255, 255, .10);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 18px;

    backdrop-filter: blur(10px);

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.hero-stat-card:hover{

    transform: translateY(-8px);

    border-color: var(--secondary);

    box-shadow: 0 18px 45px rgba(0,0,0,.22);

}

.hero-stat-text{

    font-size: 15px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, .92);

    margin-bottom: 14px;

    display:flex;

    align-items: center;

    gap: 8px;
}

.hero-stat-value{

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

    color: var(--secondary);

    text-shadow: 0 5px 18px rgba(216,176,68,.35);
}

.hero-stat h3{

    color:#D4A53C;

    font-size:42px;

    margin-bottom:10px;

    line-height: 1;

    font-weight:800;

}

.hero-stat span{

    color:rgba(255,255,255,.85);

    font-size:18px;

    font-weight: 600;

    letter-spacing: 5px;

}


/*====================================================
FEATURE CARDS
=====================================================*/

.hero-feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:55px;

}

.hero-feature{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    padding:22px;

    transition:.35s;

}

.hero-feature:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.hero-feature i{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#C89B3C;

    color:#fff;

    font-size:24px;

    margin-bottom:18px;

}

.hero-feature h4{

    color:#fff;

    font-size:20px;

    margin-bottom:10px;

}

.hero-feature p{

    color:rgba(255,255,255,.80);

    font-size:15px;

    margin:0;

}


/*====================================================
CONTENT SPACING
=====================================================*/

.hero-content>*{

    position:relative;

    z-index:5;

}

.hero-image-wrapper{

    position:relative;

    z-index:5;

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.hero{

    padding:70px 0;

    text-align:center;

}

.hero h1{

    font-size:42px;

}

.hero p{

    max-width:100%;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

    gap:35px;

}

.hero-feature-grid{

    grid-template-columns:repeat(2,1fr);

}

.hero-image-wrapper{

    margin-top:45px;

}

.hero-image{

    max-width:360px;

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.hero{

    min-height:auto;

    padding:60px 0;

}

.hero h1{

    font-size:34px;

    line-height:1.3;

}

.hero p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    gap:15px;

}

.hero-btn,
.hero-outline{

    width:100%;

}

.hero-stats{

    flex-direction:column;

    gap:20px;

    align-items:center;

}

.hero-feature-grid{

    grid-template-columns:1fr;

}

.hero-image{

    max-width:280px;

}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

    display:none;

}

}

/*====================================================
ABOUT SECTION
=====================================================*/

.about-section{

    padding:70px 0;

    background:#ffffff;

}

.about-section .row{

    align-items:center;

    row-gap:50px;

}

/*====================================================
LEFT CONTENT
=====================================================*/

.about-content{

    max-width:620px;

}

.about-tag{

    display:inline-block;

    padding:8px 22px;

    background:rgba(200,155,60,.12);

    color:var(--secondary);

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

    line-height:1.25;

}

.about-content p{

    color:var(--text);

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}


/*====================================================
ABOUT IMAGE
=====================================================*/

.about-image{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.about-image img{

    width:100%;

    transition:.45s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(13,53,104,.15),

        transparent

    );

}


/*====================================================
FEATURE GRID
=====================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}


/*====================================================
FEATURE CARD
=====================================================*/

.about-feature{

    display:flex;

    align-items:flex-start;

    gap:16px;

    padding:22px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.about-feature:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

    box-shadow:0 18px 35px rgba(0,0,0,.10);

}


/*====================================================
ICON
=====================================================*/

.about-feature i{

    width:58px;

    height:58px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        #D2A339,

        #C89B3C

    );

    color:#fff;

    font-size:22px;

}


/*====================================================
TEXT
=====================================================*/

.about-feature h4{

    color:var(--primary);

    font-size:20px;

    margin-bottom:8px;

}

.about-feature p{

    font-size:15px;

    color:var(--text);

    line-height:1.7;

    margin:0;

}


/*====================================================
ABOUT BUTTON
=====================================================*/

.about-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap: 12px;

    min-width:220px;

    height:58px;

    margin-top:40px;

    border-radius:60px;

    background:linear-gradient(

        135deg,

        #D2A339,

        #C89B3C

    );

    font-size: 16px;

    color:#ffffff;

    font-weight:700;

    letter-spacing: .3px;

    transition:all .35s  ease;

    box-shadow:0 15px 35px rgba(200,155,60,.35);

    position: relative;

    overflow: hidden;

}

.about-btn::before{

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255,255,255, .45),transparent);

    transform: skewX(-25deg);

    transition: .8s;

}

.about-btn:hover::before{

    left: 150%;

}

.about-btn:hover{

    transform: translateY(-5px);

    color:#ffffff;

    transform:translateY(-4px);

    box-shadow:0 22px 50px rgba(200,155,60,.45);

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.about-content{

    max-width:100%;

}

.about-features{

    grid-template-columns:1fr 1fr;

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.about-section{

    padding:70px 0;

}

.about-content{

    text-align:center;

}

.about-content h2{

    font-size:34px;

}

.about-features{

    grid-template-columns:1fr;

}

.about-feature{

    text-align:left;

}

.about-btn{

    width:100%;

}

}

/*====================================================
SERVICES SECTION
=====================================================*/

.services{

    padding:90px 0;

    background:#F8FAFC;

}

.services .section-title{

    margin-bottom:60px;

}


/*====================================================
SERVICES GRID
=====================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/*====================================================
SERVICE CARD
=====================================================*/

.service-card{

    position:relative;

    background:#ffffff;

    padding:35px 30px;

    border-radius:20px;

    border:1px solid var(--border);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:all .35s ease;

    overflow:hidden;

    height:100%;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    border-color:rgba(200,155,60,.40);

}

.service-card:hover::before{

    transform:scaleX(1);

}


/*====================================================
SERVICE ICON
=====================================================*/

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:32px;

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}


/*====================================================
TITLE
=====================================================*/

.service-card h3{

    font-size:24px;

    color:var(--primary);

    margin-bottom:18px;

    line-height:1.3;

}


/*====================================================
DESCRIPTION
=====================================================*/

.service-card p{

    color:var(--text);

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}


/*====================================================
READ MORE BUTTON
=====================================================*/

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--secondary);

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    color:var(--primary);

    gap:14px;

}


/*====================================================
SERVICE NUMBER
=====================================================*/

.service-number{

    position:absolute;

    top:22px;

    right:25px;

    font-size:55px;

    font-weight:700;

    color:rgba(13,53,104,.05);

    user-select:none;

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.services{

    padding:70px 0;

}

.services-grid{

    grid-template-columns:1fr;

}

.service-card{

    padding:30px 25px;

}

.service-icon{

    width:70px;

    height:70px;

    font-size:28px;

}

.service-card h3{

    font-size:22px;

}

}

/*====================================================
WHY CHOOSE US
=====================================================*/

.why-us{

    padding:90px 0;

    background:#ffffff;

}

.why-us .row{

    align-items:center;

    row-gap:50px;

}


/*====================================================
LEFT CONTENT
=====================================================*/

.why-content{

    max-width:620px;

}

.why-tag{

    display:inline-block;

    padding:8px 22px;

    border-radius:40px;

    background:rgba(200,155,60,.12);

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.why-content h2{

    font-size:42px;

    color:var(--primary);

    line-height:1.25;

    margin-bottom:20px;

}

.why-content p{

    font-size:17px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:35px;

}


/*====================================================
FEATURE LIST
=====================================================*/

.why-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}


/*====================================================
FEATURE CARD
=====================================================*/

.why-feature{

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:22px;

    border-radius:18px;

    background:#fff;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.why-feature:hover{

    transform:translateY(-8px);

    border-color:var(--secondary);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}


/*====================================================
ICON
=====================================================*/

.why-feature i{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:22px;

    flex-shrink:0;

}


/*====================================================
TEXT
=====================================================*/

.why-feature h4{

    font-size:20px;

    color:var(--primary);

    margin-bottom:8px;

}

.why-feature p{

    margin:0;

    font-size:15px;

    line-height:1.7;

    color:var(--text);

}


/*====================================================
RIGHT IMAGE
=====================================================*/

.why-image{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.why-image img{

    width:100%;

    transition:.45s;

}

.why-image:hover img{

    transform:scale(1.05);

}

.why-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(13,53,104,.15),

        transparent

    );

}


/*====================================================
BUTTON
=====================================================*/

.why-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:35px;

    min-width:190px;

    height:54px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(200,155,60,.35);

}

.why-btn:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(200,155,60,.45);

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.why-content{

    max-width:100%;

}

.why-features{

    grid-template-columns:1fr 1fr;

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.why-us{

    padding:70px 0;

}

.why-content{

    text-align:center;

}

.why-content h2{

    font-size:34px;

}

.why-features{

    grid-template-columns:1fr;

}

.why-feature{

    text-align:left;

}

.why-btn{

    width:100%;

}

}

/*====================================================
PUBLICATION PROCESS
=====================================================*/

.process-section{

    padding:70px 0;

    background:#F8FAFC;

}


/*====================================================
SECTION TITLE
=====================================================*/

.process-section .section-title{

    margin-bottom:60px;

}


/*====================================================
PROCESS GRID
=====================================================*/

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*====================================================
PROCESS CARD
=====================================================*/

.process-card{

    position:relative;

    background:#ffffff;

    border-radius:22px;

    padding:35px 28px;

    border:1px solid var(--border);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s ease;

    overflow:hidden;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:rgba(200,155,60,.45);

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}


/*====================================================
TOP BORDER
=====================================================*/

.process-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

}


/*====================================================
STEP NUMBER
=====================================================*/

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

    box-shadow:0 15px 30px rgba(200,155,60,.30);

}


/*====================================================
TITLE
=====================================================*/

.process-card h3{

    font-size:24px;

    color:var(--primary);

    margin-bottom:15px;

    line-height:1.3;

}


/*====================================================
DESCRIPTION
=====================================================*/

.process-card p{

    font-size:16px;

    color:var(--text);

    line-height:1.8;

}


/*====================================================
CONNECTOR LINE
=====================================================*/

.process-card::after{

    content:"";

    position:absolute;

    right:-35px;

    top:65px;

    width:70px;

    height:2px;

    background:#D9DEE7;

}

.process-card:last-child::after{

    display:none;

}


/*====================================================
HOVER EFFECT
=====================================================*/

.process-card:hover .step-number{

    transform:rotate(360deg);

    transition:.6s;

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.process-grid{

    grid-template-columns:repeat(2,1fr);

}

.process-card::after{

    display:none;

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.process-section{

    padding:70px 0;

}

.process-grid{

    grid-template-columns:1fr;

}

.process-card{

    padding:30px 24px;

}

.step-number{

    width:60px;

    height:60px;

    font-size:20px;

}

.process-card h3{

    font-size:22px;

}

}

/*====================================================
STATISTICS SECTION
=====================================================*/

.stats-section{

    position:relative;

    padding:70px 0;

    background:linear-gradient(
        135deg,
        #081F43 0%,
        #0D3568 60%,
        #174A88 100%
    );

    overflow:hidden;

}

.stats-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;

    left:-150px;

}

.stats-section::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(200,155,60,.12);

    bottom:-140px;

    right:-120px;

}


/*====================================================
GRID
=====================================================*/

.stats-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*====================================================
STAT CARD
=====================================================*/

.stat-card{

    text-align:center;

    padding:40px 25px;

    border-radius:22px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

}


/*====================================================
ICON
=====================================================*/

.stat-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:32px;

    box-shadow:0 15px 35px rgba(200,155,60,.35);

}


/*====================================================
NUMBER
=====================================================*/

.stat-card h2{

    color:#ffffff;

    font-size:48px;

    font-weight:700;

    margin-bottom:10px;

}


/*====================================================
LABEL
=====================================================*/

.stat-card p{

    color:rgba(255,255,255,.85);

    font-size:16px;

    margin:0;

}


/*====================================================
HOVER EFFECT
=====================================================*/

.stat-card:hover .stat-icon{

    transform:rotate(10deg) scale(1.08);

}

.stat-card:hover h2{

    color:#C89B3C;

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.stats-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.stats-section{

    padding:70px 0;

}

.stats-grid{

    grid-template-columns:1fr;

}

.stat-card{

    padding:35px 20px;

}

.stat-icon{

    width:70px;

    height:70px;

    font-size:28px;

}

.stat-card h2{

    font-size:40px;

}

}

/*====================================================
TESTIMONIALS SECTION
=====================================================*/

.testimonials{

    padding:90px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.testimonials::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(200,155,60,.08);

    top:-140px;

    right:-120px;

}

.testimonials .section-title{

    margin-bottom:60px;

}


/*====================================================
TESTIMONIAL GRID
=====================================================*/

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/*====================================================
TESTIMONIAL CARD
=====================================================*/

.testimonial-card{

    position:relative;

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    border:1px solid var(--border);

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.35s ease;

    overflow:hidden;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    border-color:rgba(200,155,60,.40);

}


/*====================================================
QUOTE ICON
=====================================================*/

.quote-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#fff;

    font-size:24px;

    margin-bottom:25px;

    box-shadow:0 12px 30px rgba(200,155,60,.30);

}


/*====================================================
REVIEW TEXT
=====================================================*/

.testimonial-card p{

    font-size:16px;

    color:var(--text);

    line-height:1.9;

    margin-bottom:30px;

    font-style:italic;

}


/*====================================================
RATING
=====================================================*/

.rating{

    display:flex;

    gap:5px;

    margin-bottom:25px;

}

.rating i{

    color:#F4B400;

    font-size:16px;

}


/*====================================================
AUTHOR
=====================================================*/

.testimonial-author{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-author img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #C89B3C;

}

.author-info h4{

    margin:0;

    font-size:19px;

    color:var(--primary);

}

.author-info span{

    display:block;

    margin-top:4px;

    font-size:14px;

    color:#777;

}


/*====================================================
HOVER EFFECT
=====================================================*/

.testimonial-card:hover .quote-icon{

    transform:rotate(-12deg) scale(1.08);

}

.testimonial-card:hover img{

    transform:scale(1.05);

    transition:.35s;

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.testimonial-grid{

    grid-template-columns:repeat(2,1fr);

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.testimonials{

    padding:70px 0;

}

.testimonial-grid{

    grid-template-columns:1fr;

}

.testimonial-card{

    padding:28px 22px;

}

.testimonial-author{

    align-items:flex-start;

}

.quote-icon{

    width:55px;

    height:55px;

}

}

/*====================================================
CALL TO ACTION (CTA)
=====================================================*/

.services-cta{

    padding:90px 0;

    background:#ffffff;

}

.cta-box{

    position:relative;

    overflow:hidden;

    padding:70px 60px;

    border-radius:28px;

    background:linear-gradient(
        135deg,
        #081F43 0%,
        #0D3568 55%,
        #1A5BA8 100%
    );

    text-align:center;

    box-shadow:0 25px 60px rgba(13,53,104,.28);

}


/*====================================================
BACKGROUND EFFECTS
=====================================================*/

.cta-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-140px;

    left:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(200,155,60,.18);

    right:-90px;

    bottom:-90px;

}


/*====================================================
CONTENT
=====================================================*/

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content h2{

    color:#ffffff;

    font-size:46px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:20px;

}

.cta-content p{

    max-width:760px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

}


/*====================================================
BUTTON
=====================================================*/

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    height:58px;

    padding:0 34px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #D2A339,
        #C89B3C
    );

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    transition:.35s ease;

    box-shadow:0 18px 40px rgba(200,155,60,.35);

}

.cta-btn:hover{

    color:#ffffff;

    transform:translateY(-5px);

    box-shadow:0 25px 55px rgba(200,155,60,.45);

}

.cta-btn i{

    transition:.35s;

}

.cta-btn:hover i{

    transform:translateX(6px);

}


/*====================================================
SECONDARY BUTTON
=====================================================*/

.cta-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:58px;

    margin-left:18px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.35);

    color:#ffffff;

    font-weight:600;

    transition:.35s;

}

.cta-outline:hover{

    background:#ffffff;

    color:var(--primary);

}


/*====================================================
BUTTON GROUP
=====================================================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}


/*====================================================
TABLET
=====================================================*/

@media(max-width:991px){

.cta-box{

    padding:60px 40px;

}

.cta-content h2{

    font-size:38px;

}

}


/*====================================================
MOBILE
=====================================================*/

@media(max-width:767px){

.services-cta{

    padding:70px 0;

}

.cta-box{

    padding:45px 25px;

}

.cta-content h2{

    font-size:30px;

}

.cta-content p{

    font-size:16px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-btn,
.cta-outline{

    width:100%;

    margin-left:0;

}

}

.service-icon-img{

    width:42px;
    
    height:42px;
    
    object-fit:contain;
    
    }

    .service-text-d p{
        color: #ffffff;
    }

    .service-text-g a{
        color: #C89B3C;
    }
    
.cta-box h2{

    color: #C89B3C;

}

.stat-box h2{

    color: #ffffff;
}

.stat-box p{

    color:#C89B3C;
}

.why-icon-img{
    width:48px;
    height:48px;
    object-fit:contain;
}


/*======================================
WHY CHOOSE US V2
======================================*/

.why-us{
    padding:100px 0;
    background:#fff;
}

.why-us .section-tag{
    display:inline-block;
    background:#C89B3C;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:25px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:50px;
    box-shadow:0 10px 25px rgba(200,155,60,.25);
}

.why-us h2{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#0D3568;
    margin-bottom:22px;
}

.why-us p{
    font-size:17px;
    line-height:1.9;
    color:#64748B;
    margin-bottom:35px;
}

.feature-list{
    display:flex;
    flex-direction:column;
    gap:22px;
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-icon{
    width:56px;
    height:56px;
    min-width:56px;
    border-radius:16px;
    background:#C89B3C;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    box-shadow:0 12px 30px rgba(200,155,60,.25);
}

.feature-content h4{
    font-size:21px;
    font-weight:700;
    color:#0D3568;
    margin:0 0 8px;
}

.feature-content p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#64748B;
}

.why-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:50px;
    background:#C89B3C;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 15px 35px rgba(200,155,60,.25);
}

.why-btn:hover{
    background:#0D3568;
    color:#fff;
    transform:translateY(-3px);
}

.why-image{
    max-width:100%;
    width:500px;
}

.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#C89B3C,#D9AE52);
    color:#fff !important;
    padding:16px 38px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    margin-top:35px;
    transition:.35s ease;
    box-shadow:0 15px 35px rgba(200,155,60,.30);
}

.btn-primary-custom:hover{
    background:#0D3568;
    color:#fff !important;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(13,53,104,.30);
}


/*====================================
SECTION BADGE V2
====================================*/

.section-title span,
.section-tag{

display:inline-block;
background:linear-gradient(135deg,#C89B3C,#D9AE52);
color:#fff;
padding:12px 28px;
border-radius:50px;
font-size:15px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
box-shadow:0 12px 30px rgba(200,155,60,.28);
margin-bottom:22px;

}

/*====================================
SECTION TITLE
====================================*/

.section-title h2,
.why-us h2{

font-size:56px;
font-weight:800;
line-height:1.15;
color:#0D3568;
margin-bottom:18px;

}

/*====================================
SECTION DESCRIPTION
====================================*/

.section-title p,
.why-us p{

font-size:18px;
line-height:1.9;
color:#5B6478;
max-width:760px;
margin:0 auto;

}

.why-us p{

margin:0;

}

/*====================================
SECTION SPACING
====================================*/

.services,
.process,
.testimonials,
.why-us{

padding:110px 0;

}

/* Our Services thoda upar */

.services{

padding-top:70px;

}

/*====================================
CENTER ALIGN
====================================*/

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title{

    position:relative;
    
    }
    
    .section-title::after{
    
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#C89B3C;
    border-radius:20px;
    margin:22px auto 0;
    
    }

    /*==========================================
PREMIUM TESTIMONIALS
==========================================*/

.testimonialSwiper{

    padding:20px 10px 90px;
    
    overflow:hidden;
    
    }
    
    .testimonial-card{
    
    position:relative;
    
    height:100%;
    
    background:#fff;
    
    border-radius:24px;
    
    padding:35px;
    
    border:1px solid rgba(200,155,60,.18);
    
    box-shadow:0 18px 45px rgba(13,53,104,.08);
    
    transition:.45s;
    
    overflow:hidden;
    
    }
    
    .testimonial-card::before{
    
    content:"";
    
    position:absolute;
    
    top:0;
    
    left:0;
    
    width:100%;
    
    height:6px;
    
    background:linear-gradient(90deg,#C89B3C,#E7C46A);
    
    }
    
    .testimonial-card::after{
    
    content:"❝";
    
    position:absolute;
    
    top:18px;
    
    right:25px;
    
    font-size:90px;
    
    font-weight:700;
    
    line-height:1;
    
    color:rgba(200,155,60,.10);
    
    }
    
    .testimonial-card:hover{
    
    transform:translateY(-12px);
    
    box-shadow:0 30px 70px rgba(13,53,104,.16);
    
    }
    
    
    
    /*=========================
    Header
    =========================*/
    
    .testimonial-header{
    
    display:flex;
    
    align-items:center;
    
    gap:18px;
    
    margin-bottom:22px;
    
    }
    
    .testimonial-image{
    
    width:90px;
    
    height:90px;
    
    border-radius:50%;
    
    object-fit:cover;
    
    border:4px solid #C89B3C;
    
    box-shadow:0 10px 30px rgba(200,155,60,.25);
    
    }
    
    .testimonial-user h3{
    
    font-size:24px;
    
    font-weight:700;
    
    margin:0;
    
    color:#0D3568;
    
    }
    
    .qualification{
    
    display:inline-block;
    
    margin-top:6px;
    
    padding:4px 12px;
    
    background:#F8F3E7;
    
    color:#C89B3C;
    
    border-radius:30px;
    
    font-size:13px;
    
    font-weight:700;
    
    }
    
    .organization{
    
    margin-top:8px;
    
    font-size:15px;
    
    color:#6B7280;
    
    }
    
    
    
    /*=========================
    Publication Title
    =========================*/
    
    .publication-title{
    
    margin:20px 0 12px;
    
    font-size:20px;
    
    font-weight:700;
    
    color:#0D3568;
    
    line-height:1.4;
    
    }
    
    
    
    /*=========================
    Description
    =========================*/
    
    .testimonial-description{
    
    font-size:16px;
    
    line-height:1.9;
    
    color:#5B6478;
    
    margin-bottom:25px;
    
    }
    
    
    
    /*=========================
    Stars
    =========================*/
    
    .testimonial-card .stars{
    
    display:flex;
    
    gap:5px;
    
    color:#F5B301;
    
    font-size:18px;
    
    margin-bottom:20px;
    
    }
    
    
    
    /*=========================
    Bottom Border
    =========================*/
    
    .testimonial-card:hover::before{
    
    height:100%;
    
    opacity:.03;
    
    }
    
    
    
    /*=========================
    Navigation
    =========================*/
    
    .swiper-button-next,
    .swiper-button-prev{
    
    width:54px;
    
    height:54px;
    
    border-radius:50%;
    
    background:#fff;
    
    box-shadow:0 12px 30px rgba(13,53,104,.12);
    
    color:#C89B3C;
    
    transition:.35s;
    
    }
    
    .swiper-button-next:hover,
    .swiper-button-prev:hover{
    
    background:#C89B3C;
    
    color:#fff;
    
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after{
    
    font-size:18px;
    
    font-weight:bold;
    
    }
    
    
    
    /*=========================
    Pagination
    =========================*/
    
    .swiper-pagination{
    
    bottom:10px !important;
    
    }
    
    .swiper-pagination-bullet{
    
    width:12px;
    
    height:12px;
    
    background:#D8D8D8;
    
    opacity:1;
    
    transition:.3s;
    
    }
    
    .swiper-pagination-bullet-active{
    
    width:34px;
    
    border-radius:30px;
    
    background:#C89B3C;
    
    }
    
    
    
    /*=========================
    Responsive
    =========================*/
    
    @media(max-width:768px){
    
    .testimonial-card{
    
    padding:25px;
    
    }
    
    .testimonial-image{
    
    width:70px;
    
    height:70px;
    
    }
    
    .testimonial-user h3{
    
    font-size:20px;
    
    }
    
    .publication-title{
    
    font-size:18px;
    
    }
    
    }

    /*=========================
Statistics Number
=========================*/

.stat-number{

    font-size:64px;
    
    font-weight:800;
    
    color:#ffffff;
    
    line-height:1;
    
    margin:18px 0 12px;
    
    letter-spacing:-2px;
    
    }
    
    .stat-number .counter{
    
    color:#ffffff;
    
    }
    
    .stat-number span{
    
    color:#ffffff;
    
    }
    
    
    
    /*=========================
    Statistics Title
    =========================*/
    
    .stat-title{
    
    font-size:22px;
    
    font-weight:700;
    
    color:#C89B3C;
    
    margin-bottom:15px;
    
    line-height:1.4;
    
    }
    
    
    
    /*=========================
    Statistics Description
    =========================*/
    
    .stat-description{
    
    font-size:15px;
    
    line-height:1.8;
    
    color:rgba(255,255,255,.80);
    
    }

    /*==============================
STATISTICS IMAGE
==============================*/

.stat-image{

    width:100px;
    
    height:100px;
    
    margin:0 auto 25px;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    }
    
    .stat-image img{
    
    width:100%;
    
    height:100%;
    
    object-fit:contain;
    
    display:block;
    
    }
    
    
    /*==============================
    DEFAULT ICON
    ==============================*/
    
    .stat-icon{
    
    width:100px;
    
    height:100px;
    
    margin:0 auto 25px;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
    
    border-radius:50%;
    
    background:linear-gradient(
    135deg,
    #C89B3C,
    #E6C55A
    );
    
    box-shadow:0 15px 35px rgba(200,155,60,.35);
    
    }
    
    .stat-default-icon{
    
    font-size:42px;
    
    color:var(--primary);
    
    }


/*======================================
FOOTER
======================================*/

.site-footer{
    position:relative;
    background:#ffffff;
    color:var(--primary);
    padding:70px 0 0;
    overflow:hidden;
}

.site-footer a{
    color:var(--primary);
    text-decoration:none;
    transition:all .3s ease;
}

.site-footer a:hover{
    color:var(--secondary);
}

.site-footer .container{
    position:relative;
    z-index:2;
}

/*======================================
LOGO
======================================*/

.footer-logo{
    display:inline-flex;
    align-items:center;
    margin-bottom:20px;
    
}

.footer-logo img,
.footer-logo .custom-logo,
.footer-logo .footer-logo-img{
    max-width:100%;
    width:280px;
    height:auto;
    display:block;
}

.footer-logo h3{
    color: var(--primary);
    margin:0;
    font-size:30px;
    font-weight:700;
}

/*======================================
ABOUT
======================================*/

.footer-about{
    margin:20px 0 30px;
    color:rgba(58, 58, 58, 0.8);
    line-height:1.9;
    font-size:15px;
}

/*======================================
SOCIAL
======================================*/

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    border:1px solid var(--primary);
    color:var(--secondary);
    transition:.3s ease;
}

.footer-social a:hover{
    background:var(--secondary);
    border-color:var(--secondary);
    color:#0B2343;
    transform:translateY(-3px);
}

.footer-social i{
    font-size:16px;
}

/*======================================
FOOTER LINKS
======================================*/

.footer-links h5{
    color:var(--primary);
    font-size:20px;
    font-weight:700;
    margin-bottom:22px;
    position:relative;
}

.footer-links h5::after{
    content:"";
    width:45px;
    height:2px;
    background:var(--secondary);
    display:block;
    margin-top:10px;
}

.footer-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li:last-child{
    margin-bottom:0;
}

.footer-links ul li a{
    color:rgba(12, 14, 122, 0.8);
    font-size:15px;
    transition:.3s ease;
}

.footer-links ul li a:hover{
    color:var(--secondary);
    padding-left:6px;
}

/*======================================
CONTACT
======================================*/

.footer-links p{
    margin:0 0 18px;
    color:rgba(14, 17, 179, 0.8);
    line-height:1.8;
    font-size:15px;
}

.footer-links p:last-child{
    margin-bottom:0;
}

.footer-links strong{
    display:block;
    color:var(--primary);
    font-size:16px;
    font-weight:600;
    margin-bottom:6px;
}

.footer-links p a{
    color:rgba(17, 6, 168, 0.8);
    word-break:break-word;
}

.footer-links p a:hover{
    color:var(--secondary);
}

/*======================================
DIVIDER
======================================*/

.footer-divider{
    margin:50px 0 25px;
    border:0;
    border-top:1px solid rgba(14, 16, 122, 0.63);
    opacity:1;
}

/*======================================
FOOTER BOTTOM
======================================*/

.footer-bottom{
    padding:22px 0;
    text-align:center;
}

.footer-bottom .row{
    align-items:center;
}

.footer-bottom p{
    margin:0;
    color:rgba(19, 6, 134, 0.75);
    font-size:15px;
    line-height:1.8;
}

.footer-bottom a{
    color:var(--primary);
    font-weight:500;
}

.footer-bottom a:hover{
    color:var(--secondary);
}

/*======================================
UTILITY
======================================*/

.footer-links,
.footer-about,
.footer-social{
    position:relative;
    z-index:2;
}

.footer-links ul li,
.footer-links p{
    word-break:break-word;
}

.footer-links p br{
    display:block;
    margin-bottom:4px;
    content:"";
}

.footer-logo img{
    max-height:280px;
    object-fit:contain;
}

.footer-social a i{
    transition:.3s ease;
}

.footer-social a:hover i{
    transform:scale(1.08);
}

/*======================================
SMOOTH SPACING
======================================*/

.site-footer .row>[class*="col-"]{
    margin-bottom:25px;
}

.site-footer .row>[class*="col-"]:last-child{
    margin-bottom:0;
}

/*======================================
RESPONSIVE
======================================*/

/* Large Devices */
@media (max-width:1199.98px){

    .site-footer{
        padding-top:60px;
    }

    .footer-logo img,
    .footer-logo .custom-logo,
    .footer-logo .footer-logo-img{
        max-width:200px;
    }

    .footer-links h5{
        font-size:19px;
    }

}

/* Medium Devices */
@media (max-width:991.98px){

    .site-footer{
        padding-top:55px;
    }

    .site-footer .row>[class*="col-"]{
        margin-bottom:40px;
    }

    .footer-about{
        margin-bottom:25px;
    }

    .footer-links{
        margin-top:5px;
    }

    .footer-links h5{
        margin-bottom:18px;
    }

    .footer-divider{
        margin:30px 0 20px;
    }

    .footer-bottom{
        text-align:center;
    }

}

/* Tablets */
@media (max-width:767.98px){

    .site-footer{
        padding-top:50px;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-about{
        max-width:100%;
        margin:20px auto 25px;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-links{
        margin-bottom:35px;
    }

    .footer-links h5::after{
        margin:10px auto 0;
    }

    .footer-links ul{
        text-align:center;
    }

    .footer-links p{
        text-align:center;
    }

    .footer-links strong{
        margin-bottom:4px;
    }

    .footer-bottom{
        padding:18px 0;
    }

    .footer-bottom p{
        font-size:14px;
    }

}

/* Mobile */
@media (max-width:575.98px){

    .site-footer{
        padding-top:40px;
    }

    .footer-logo img,
    .footer-logo .custom-logo,
    .footer-logo .footer-logo-img{
        max-width:170px;
    }

    .footer-about{
        font-size:14px;
        line-height:1.8;
    }

    .footer-links h5{
        font-size:18px;
    }

    .footer-links ul li{
        margin-bottom:10px;
    }

    .footer-links ul li a{
        font-size:14px;
    }

    .footer-links p{
        font-size:14px;
    }

    .footer-social{
        gap:10px;
    }

    .footer-social a{
        width:40px;
        height:40px;
    }

    .footer-social i{
        font-size:15px;
    }

    .footer-divider{
        margin:25px 0 18px;
    }

    .footer-bottom{
        padding:15px 0;
    }

    .footer-bottom p{
        font-size:13px;
        line-height:1.7;
    }

}