/* Top Bar */

.top-bar{
    background: linear-gradient(
        90deg,
        #003D8F 0%,
        #0A5CCF 35%,
        #1E88E5 70%,
        #42A5F5 100%
    );
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 61, 143, 0.25);
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    position:relative;
    transition:all .3s ease;
}

.top-bar a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#8FD3FF;
    transition:.3s;
}

.top-bar a:hover{
    color:#8FD3FF;
}

.top-bar a:hover::after{
    width:100%;
}

.top-bar i{

    margin-right:6px;

}


.top-bar i{
    /* color:#8FD3FF; */
    margin-right:6px;
    font-size:16px;
    transition:.3s;
}

.top-bar a:hover i{
    color:#FFD54A;
    transform:scale(1.15);
}


@media(max-width:768px){

.top-bar{

    text-align:center;

}

.top-bar .text-end{

    text-align:center!important;

    margin-top:8px;

}

.top-bar a{

    display:inline-block;

    margin:5px 8px;

}

}

.logo{
    height:70px;
}

.navbar-nav .nav-link{
    color:#003B8E;
    font-weight:600;
    padding:28px 12px;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0A5CCF;
}

.social-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#EEF4FF;
    color:#0A5CCF;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:6px;
    text-decoration:none;
    transition:.3s;
}

.social-icon:hover{
    background:#0A5CCF;
    color:#fff;
}

.btn-primary{
    background:#0A5CCF;
    border:none;
    border-radius:30px;
    padding:10px 22px;
}

.btn-primary:hover{
    background:#003B8E;
}

.navbar{
    padding:0;
}

.navbar-nav .nav-link{
    padding:8px 14px;
    line-height:1.2;
    font-size:15px;
}

/* Navbar Links */
.navbar-nav .nav-link{
    position: relative;
    color: #003B8E;
    font-weight: 600;
    padding: 10px 14px;
    font-size: 15px;
    transition: all .3s ease;
}

/* Underline */
.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,#003D8F,#1E88E5);
    border-radius: 10px;
    transition: all .3s ease;
    transform: translateX(-50%);
}

/* Hover & Active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color: #0A5CCF;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: 80%;
}





/* Category Card */

.card{
    overflow: hidden;
    border-radius:15px;
    transition:all .35s ease;
    cursor:pointer;
}

.card img{
    transition:all .4s ease;
}

.card:hover{

    background:#fff;

    border-radius:18px;

    transform:translateY(-8px);

    box-shadow:0 12px 30px rgba(0,0,0,.15)!important;

}

.card:hover img{

    transform:scale(1.08);

}

.card-body h6{

    transition:.3s;

    font-weight:600;

}

.card:hover h6{

    color:#0d6efd;

    letter-spacing:.5px;

}

/* ===========================
   Banner Card
=========================== */

.banner-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Image */

.banner-card img{
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

/* Hover */

.banner-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.banner-card:hover img{
    transform: scale(1.08);
}

/* Shine Effect */

.banner-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition: .7s;
    z-index: 2;
}

.banner-card:hover::before{
    left: 130%;
}


.carousel-item{
    overflow: hidden;
}

.carousel-item img{
    width: 100%;
    transition: transform 6s ease-in-out;
}

.carousel-item.active img{
    transform: scale(1.10);
}


/* No Slide Animation */
#homeSlider .carousel-item{
    transition: opacity .2s ease !important;
    overflow: hidden;
}

/* Image */
#homeSlider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Zoom Animation Only on Active Image */
#homeSlider .carousel-item.active img{
    animation: zoomInOut 4s linear;
}

/* Zoom In -> Zoom Out */
@keyframes zoomInOut{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}
/*====================================
 Premium Animated Divider
====================================*/

.animated-divider{

    position:relative;
    width:100%;
    height:2px;               /* Thin Line */
    background:#e9eef5;
    overflow:hidden;
    border-radius:20px;
    margin:35px 0;

}

/* Left → Right */

.line-one{

    position:absolute;
    top:0;
    left:-35%;
    width:35%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        #003B8E,
        #0A5CCF,
        #1E88E5,
        #58C400,
        transparent
    );

    animation:moveRight 3s linear infinite;

}

/* Right → Left */

.line-two{

    position:absolute;
    top:0;
    right:-35%;
    width:35%;
    height:100%;

    background:linear-gradient(
        270deg,
        transparent,
        #58C400,
        #1E88E5,
        #0A5CCF,
        #003B8E,
        transparent
    );

    animation:moveLeft 3s linear infinite;

}

/* Animation */

@keyframes moveRight{

    from{
        left:-35%;
    }

    to{
        left:100%;
    }

}

@keyframes moveLeft{

    from{
        right:-35%;
    }

    to{
        right:100%;
    }

}

/*=================================
  Latest Job Section
==================================*/

.job-section{
    background:#f8fbff;
    padding:30px 0;
}

/* Heading */

.job-heading{
    color:#003B8E;
    font-size:30px;
    font-weight:700;
    margin:0;
}

.job-subheading{
    color:#666;
    font-size:15px;
    margin-left:15px;
}

/* Swiper */

.jobSwiper{
    padding:10px 0;
    overflow:hidden;
}

.jobSwiper .swiper-wrapper{
    transition-timing-function:linear !important;
}

.jobSwiper .swiper-slide{
    width:220px !important;
    height:auto;
}

/* Job Card */

.job-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

.job-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.job-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    transition:transform .4s ease;
}

.job-card:hover img{
    transform:scale(1.08);
}

/* Card Body */

.job-body{
    padding:12px;
    text-align:center;
}

.job-body h6{
    color:#003B8E;
    font-size:16px;
    font-weight:700;
    margin-bottom:6px;
}

.job-body p{
    color:#666;
    font-size:13px;
    margin-bottom:10px;
}

.job-body i{
    color:#0A5CCF;
}

/* Button */

.job-body .btn{
    width:100%;
    border:none;
    border-radius:30px;
    background:#0A5CCF;
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:8px 0;
    transition:.3s;
}

.job-body .btn:hover{
    background:#003B8E;
    transform:translateY(-2px);
}

/* View All Button */

.job-section .btn-outline-primary{
    border-radius:30px;
    padding:8px 20px;
    font-weight:600;
}

/* Responsive */

@media (max-width:991px){

    .jobSwiper .swiper-slide{
        width:200px !important;
    }

}

@media (max-width:768px){

    .job-heading{
        font-size:24px;
    }

    .job-subheading{
        display:block;
        margin:5px 0 0 0;
        font-size:14px;
    }

    .jobSwiper .swiper-slide{
        width:170px !important;
    }

    .job-card img{
        height:130px;
    }

    .job-body{
        padding:10px;
    }

    .job-body h6{
        font-size:14px;
    }

    .job-body p{
        font-size:12px;
    }

}


/* Company Recruitment Banner */

.banner-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.banner-card img{
    width:100%;
    transition:.5s;
}

.banner-card:hover img{
    transform:scale(1.05);
}

.badge{
    font-size:14px;
    letter-spacing:1px;
}

.btn-primary{
    background:#0A5CCF;
    border:none;
}

.btn-primary:hover{
    background:#003B8E;
}

.btn-outline-primary:hover{
    color:#fff;
}
/*==================================
  FinTech Services Section
==================================*/

.fintech-section{
    background:#F8FBFF;
    padding:10px 0;
}

/* Heading */

.service-heading{
    font-size:32px;
    font-weight:700;
    color:#003B8E;
    margin-bottom:5px;
}

.service-subheading{
    font-size:15px;
    color:#6c757d;
}

/* Card */

.service-card{
    background:#fff;
    border-radius:14px;
    border-top:4px solid #0A5CCF;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

/* Body */

.service-card .card-body{
    padding:18px 12px;
}

/* Icon */

.service-icon,
.service-card i{
    font-size:40px;
    color:#0A5CCF;
    display:block;
    margin-bottom:12px;
    transition:.35s;
}

.service-card:hover i{
    transform:scale(1.15) rotate(5deg);
    color:#003B8E;
}

/* Title */

.service-card h6{
    font-size:16px;
    font-weight:700;
    color:#003B8E;
    margin-bottom:6px;
}

/* Description */

.service-card small{
    display:block;
    color:#777;
    font-size:13px;
    min-height:35px;
    margin-bottom:15px;
}

/* Button */

.service-card .btn{
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    padding:8px 0;
    background:#0A5CCF;
    border:none;
    transition:.3s;
}

.service-card .btn:hover{
    background:#003B8E;
    transform:translateY(-2px);
}

/* View All Button */

.fintech-section .btn-outline-primary{
    border-radius:30px;
    font-weight:600;
    padding:8px 22px;
}

/* Responsive */

@media(max-width:992px){

    .service-heading{
        font-size:28px;
    }

}

@media(max-width:768px){

    .fintech-section{
        padding:30px 0;
    }

    .service-heading{
        font-size:24px;
    }

    .service-subheading{
        font-size:13px;
    }

    .service-card .card-body{
        padding:15px 10px;
    }

    .service-card i{
        font-size:32px;
    }

    .service-card h6{
        font-size:14px;
    }

    .service-card small{
        font-size:11px;
        min-height:28px;
    }

    .service-card .btn{
        font-size:12px;
        padding:7px 0;
    }

}
/*=========================
IT Services Cards
=========================*/

.service-card{
    background:#fff;
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-card .card-body{
    padding:20px;
}

.service-icon{
    font-size:40px;
    color:#0A5CCF;
    margin-bottom:15px;
    display:block;
}

.service-card h5{
    color:#003B8E;
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    font-size:14px;
    color:#666;
    min-height:60px;
}

.service-card .btn{
    border-radius:30px;
    font-weight:600;
}

/*==================================
Business Service Banner
==================================*/

.service-banner{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:300px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.service-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

/* Zoom Effect */

.service-banner:hover img{
    transform:scale(1.08);
}

/* Dark Overlay */

.service-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.80) 5%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.10) 100%
    );
    z-index:1;
    transition:.4s;
}

.service-banner:hover::before{
    background:linear-gradient(
        to top,
        rgba(0,59,142,.90),
        rgba(10,92,207,.35),
        rgba(0,0,0,.05)
    );
}

/* Text */

.banner-overlay{

    position:absolute;
    right:30px;
    bottom:25px;

    left:auto;
    top:auto;

    z-index:2;

    width:55%;

    text-align:right;

    color:#fff;

}

.banner-overlay h3{

    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
    color:#fff;

    text-shadow:0 3px 10px rgba(0,0,0,.45);

}

.banner-overlay p{

    font-size:16px;
    margin-bottom:18px;
    color:#f5f5f5;

    text-shadow:0 2px 8px rgba(0,0,0,.45);

}

/* Button */

.banner-overlay .btn{

    background:#fff;
    color:#003B8E;
    border:none;
    padding:10px 26px;
    font-weight:600;
    border-radius:30px;
    transition:.3s;

}

.banner-overlay .btn:hover{

    background:#0A5CCF;
    color:#fff;
    transform:translateY(-3px);

}

/* Mobile */

@media(max-width:768px){

.service-banner{

height:230px;

}

.banner-overlay{

right:20px;
left:20px;
width:auto;
text-align:left;

}

.banner-overlay h3{

font-size:22px;

}

.banner-overlay p{

font-size:14px;

}

}

/*==========================
Yoga Section
==========================*/

.yoga-section{
    background:#F5FFF8;
}

.yogaSwiper{
    overflow:hidden;
    padding:10px 0;
}

.yogaSwiper .swiper-slide{
    width:220px !important;
}

.yoga-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
    transition:.35s;

}

.yoga-card:hover{

    transform:translateY(-8px);

}

.yoga-card img{

    width:100%;
    height:160px;
    object-fit:cover;
    transition:.5s;

}

.yoga-card:hover img{

    transform:scale(1.08);

}

.yoga-body{

    padding:15px;
    text-align:center;

}

.yoga-body h6{

    color:#18864B;
    font-weight:700;

}

.yoga-body p{

    color:#666;
    font-size:13px;

}

.yoga-body h5{

    color:#0F9D58;
    font-weight:700;

}

.yoga-body .btn{

    border-radius:30px;
    background:#0F9D58;
    border:none;

}

.yoga-body .btn:hover{

    background:#0B7A44;

}

.feedback-section{

    background:#fff;

}

.feedback-tag{

    background:#FFF2E7;
    color:#F26A1B;

    padding:6px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.feedback-title{

    font-size:38px;

    font-weight:700;

}

.feedback-title span{

    color:#0A5CCF;

}

.feedbackSwiper{

    overflow:hidden;

    padding:10px 0;

}

.feedbackSwiper .swiper-slide{

    width:300px !important;

}

.feedback-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 30px rgba(0,0,0,.15);

    transition:.4s;

}

.feedback-card:hover{

    transform:translateY(-8px);

}

.insta-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px;

}

.profile{

    display:flex;

    align-items:center;

}

.profile img{

    width:45px;

    height:45px;

    border-radius:50%;

    object-fit:cover;

    /* border:2px solid #E1306C; */

    margin-right:10px;

}

.profile h6{

    margin:0;

    font-size:14px;

    font-weight:700;

}

.profile small{

    color:#777;

}

.view-profile{

    background:#405DE6;

    color:#fff;

    padding:7px 15px;

    border-radius:20px;

    text-decoration:none;

    font-size:12px;

}

.feedback-card video{

    width:100%;

    height:520px;

    object-fit:cover;

    background:#000;

}

.insta-footer{

    padding:12px;

}

.view-more{

    display:block;

    margin-bottom:12px;

    color:#405DE6;

    text-decoration:none;

}

.social-actions{

    display:flex;

    gap:20px;

    font-size:28px;

}

.social-actions i{

    cursor:pointer;

    transition:.3s;

}

.social-actions i:hover{

    color:#E1306C;

}

@media(max-width:768px){

.feedback-title{

font-size:28px;

}

.feedbackSwiper .swiper-slide{

width:260px !important;

}

.feedback-card video{

height:430px;

}

}

/* Swiper */

.feedbackSwiper{
    overflow: hidden;
    padding:10px 0;
}

.feedbackSwiper .swiper-slide{
    width:260px !important;   /* पहले 300 था */
}

/* Card */

.feedback-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    transition:.3s;
}

.feedback-card:hover{
    transform:translateY(-6px);
}

/* Header */

.insta-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 10px;
}

.profile img{
    width:38px;
    height:38px;
    border-radius:50%;
    object-fit:cover;
    margin-right:8px;
}

.profile h6{
    font-size:13px;
    margin:0;
    font-weight:700;
}

.profile small{
    font-size:11px;
}

.view-profile{
    padding:5px 12px;
    font-size:11px;
    border-radius:20px;
}

/* Video */

.feedback-card video{
    width:100%;
    height:360px;          /* पहले 520px था */
    object-fit:cover;
    display:block;
    background:#000;
}

/* Footer */

.insta-footer{
    padding:8px 10px;
}

.view-more{
    font-size:12px;
    display:block;
    margin-bottom:8px;
    text-decoration:none;
}

.social-actions{
    display:flex;
    gap:18px;
}

.social-actions i{
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.social-actions i:hover{
    color:#E1306C;
    transform:scale(1.1);
}

/*==================================
Recruitment Partner Companies
==================================*/

.partner-company-section{

    background:#F8FBFF;

}

.partner-tag{

    display:inline-block;

    background:#0A5CCF;

    color:#fff;

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.partner-title{

    font-size:38px;

    font-weight:700;

    color:#003B8E;

}

.partner-subtitle{

    color:#666;

    max-width:850px;

    margin:auto;

    font-size:16px;

}

.company-logo-card{

    background:#fff;

    height:110px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.35s;

}

.company-logo-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.company-logo-card img{

    max-width:120px;

    max-height:55px;

    filter:grayscale(100%);

    transition:.35s;

}

.company-logo-card:hover img{

    filter:none;

    transform:scale(1.08);

}

@media(max-width:768px){

.partner-title{

font-size:28px;

}

.partner-subtitle{

font-size:14px;

}

.company-logo-card{

height:90px;

}

.company-logo-card img{

max-width:90px;

}

}

/*==================================
WHY CHOOSE US
==================================*/

.why-section{

    background:#F8FBFF;

}

.section-tag{

    display:inline-block;

    background:#0A5CCF;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.section-title{

    font-size:38px;

    font-weight:700;

    color:#003B8E;

}

.section-subtitle{

    color:#666;

    max-width:720px;

    margin:auto;

    font-size:16px;

}

/* Card */

.why-card{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.why-icon{

    width:80px;

    height:80px;

    background:#EEF5FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 20px;

}

.why-icon i{

    font-size:36px;

    color:#0A5CCF;

}

.why-card h5{

    color:#003B8E;

    font-weight:700;

    margin-bottom:12px;

}

.why-card p{

    color:#666;

    font-size:15px;

    margin:0;

}

@media(max-width:768px){

.section-title{

font-size:28px;

}

.section-subtitle{

font-size:14px;

}

.why-card{

padding:25px 15px;

}

.why-icon{

width:65px;

height:65px;

}

.why-icon i{

font-size:28px;

}

}


























/*==================================
NEWSLETTER
==================================*/

.newsletter-section{

    background:linear-gradient(135deg,#0046B8,#0A5CCF,#2196F3);
    padding:60px 0;
    position:relative;
    overflow:hidden;

}

.newsletter-section::before{

    content:"";
    position:absolute;
    top:-150px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);

}

.newsletter-section::after{

    content:"";
    position:absolute;
    bottom:-180px;
    left:-150px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.05);

}

.newsletter-section .container{

    position:relative;
    z-index:2;

}

.newsletter-section h3{

    color:#fff;
    font-size:34px;
    font-weight:700;

}

.newsletter-section p{

    color:#dcecff;
    font-size:16px;
    margin:0;

}

.newsletter-section .input-group{

    border-radius:50px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.newsletter-section .form-control{

    border:none;
    height:58px;
    padding-left:22px;
    font-size:15px;

}

.newsletter-section .form-control:focus{

    box-shadow:none;

}

.newsletter-section .btn{

    border:none;
    background:#FFC107;
    color:#003B8E;
    font-weight:700;
    padding:0 35px;
    transition:.35s;

}

.newsletter-section .btn:hover{

    background:#ffffff;
    color:#003B8E;

}
/*==================================
FOOTER
==================================*/

.footer{

    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#04152F,#082B63,#0A4CC4);

    color:#fff;

    padding:70px 0 25px;

}

/*==============================
Background Effects
==============================*/

.footer::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.footer::after{

    content:"";

    position:absolute;

    left:-180px;
    bottom:-180px;

    width:380px;
    height:380px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

.footer .container{

    position:relative;

    z-index:2;

}

/*==============================
Logo
==============================*/

.footer-logo{

    height:85px;

    width:auto;

    margin-bottom:25px;

    display:block;

}

/*==============================
About
==============================*/

.footer p{

    color:#D8E6FF;

    font-size:15px;

    line-height:30px;

}

/*==============================
Heading
==============================*/

.footer h5{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

    position:relative;

}

.footer h5::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:55px;

    height:3px;

    border-radius:50px;

    background:#3EB8FF;

}

/*==============================
Menu
==============================*/

.footer ul{

    margin:0;

    padding:0;

}

.footer ul li{

    list-style:none;

    margin-bottom:14px;

}

.footer ul li a{

    color:#D8E6FF;

    text-decoration:none;

    transition:.35s;

}

.footer ul li a:hover{

    color:#56D0FF;

    padding-left:8px;

}

/*==============================
Contact
==============================*/

.footer-contact p{

    margin-bottom:16px;

}

.footer-contact i{

    color:#56D0FF;

    width:24px;

    margin-right:6px;

}

/*==============================
Social Icons
==============================*/

.social-links{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-top:25px;

}

.social-links a{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:#fff;

    background:rgba(255,255,255,.10);

    transition:.35s;

}

.social-links a:hover{

    background:#ffffff;

    color:#0A4CC4;

    transform:translateY(-5px);

}

/*==============================
Divider
==============================*/

.footer-divider{

    border-color:rgba(255,255,255,.12);

    margin:45px 0 25px;

}

/*==============================
Footer Bottom
==============================*/

.footer-bottom{

    color:#D8E6FF;

    font-size:15px;

}

.footer-bottom strong{

    color:#fff;

}

.footer-bottom a{

    color:#56D0FF;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#fff;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.footer{

text-align:center;

padding:60px 0 25px;

}

.footer h5::after{

left:50%;

transform:translateX(-50%);

}

.social-links{

justify-content:center;

}

.footer-logo{

margin:auto;

margin-bottom:20px;

height:75px;

}

.footer-bottom{

text-align:center;

}

}

@media(max-width:576px){

.footer{

padding:45px 0 20px;

}

.footer-logo{

height:60px;

}

.footer h5{

font-size:20px;

}

.footer p{

font-size:14px;

line-height:26px;

}

.footer ul li{

margin-bottom:10px;

}

.footer-bottom{

font-size:14px;

text-align:center;

}

.social-links a{

width:40px;

height:40px;

}

}