@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/*======================================
  GLOBAL STYLES
======================================*/
body{
    background:#fff;
    color:#171717;
    font-family:'Poppins',sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    object-fit:cover;
}

:root{
    --primary:#115276;
    --light:#f7f8fb;
}

.navbar{
    background:#fff;
}

.nav-link{
    font-weight:600;
    color:#222;
    margin:0 10px;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary);
}

.navbar-collapse {
    flex-grow: 0;
}

.btn-primary{
    background:var(--primary);
    border:none;
    padding:12px 28px;
}

.btn-primary:hover{
    background:#062f61;
}

/*======================================
  DROPDOWN MENU
======================================*/
/*.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.dropdown-item{
    padding:10px 15px;
    border-radius:8px;
}*/

/* =========================
   HERO SECTION START
========================= */


.hero {
    position: relative;
    background: url('../img/banner.png') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(255,255,255,0.15) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #115276;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 59px;
    font-weight: 700;
    line-height: 1.15;
    color: #115276;
    margin-bottom: 20px;
}

.hero-line {
    width: 70px;
    height: 3px;
    background: #115276;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary-custom {
    background: #115276;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: #002f72;
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid #115276;
    color: #115276;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-outline-custom:hover {
    background: #115276;
    color: #fff;
}

/* Tablet */

@media (max-width: 991px) {

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   HERO SECTION END
========================= */


/* =========================
   About Us SECTION START
========================= */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
    height: 405px;
}

.about-image:hover img {
    transform: scale(1.05);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #115276;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #115276;
    margin-bottom: 20px;
}

.title-line {
    width: 70px;
    height: 3px;
    background: #115276;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    background: #115276;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all .3s ease;
}

.about-btn:hover {
    background: #002f72;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .about-section {
        padding: 60px 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        text-align: center;
    }

    .title-line {
        margin: 0 auto 25px;
    }

    .about-content p {
        font-size: 16px;
    }
}
/* =========================
   About Us SECTION END
========================= */


/*=================================
    SERVICES SECTION START
=================================*/

.services-section{
    padding:100px 0;
    background:#f8fafc;
}

.services-section .section-title{
    font-size:40px;
    font-weight:700;
    color:#115276;
    margin-bottom:15px;
}

.title-line{
    width:70px;
    height:3px;
    background:#115276;
}

.service-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:16px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

.service-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin:0 auto 25px;
}
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#115276;
    transform:scaleX(0);
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-card i{
    font-size:55px;
    color:#115276;
    margin-bottom:25px;
}
.service-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #06306a;
    margin-bottom: 15px;
    min-height: 55px;
}
.service-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:20px;
}

.service-card a{
    color:#115276;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-card a:hover{
    color:#001f4d;
    letter-spacing:.5px;
}

.service-card a::after{
    content:" →";
    transition:.3s;
}

.service-card:hover a::after{
    margin-left:5px;
}

/*=================================
    TABLET
=================================*/

@media(max-width:991px){

    .services-section{
        padding:80px 0;
    }

    .services-section .section-title{
        font-size:38px;
    }

    .service-card{
        padding:35px 20px;
    }
}

/*=================================
    MOBILE
=================================*/

@media(max-width:767px){

    .services-section{
        padding:60px 0;
    }

    .services-section .section-title{
        font-size:30px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-card i{
        font-size:45px;
    }

    .service-card h5{
        font-size:20px;
        min-height:auto;
    }
}
.service-card{
    display:flex;
    flex-direction:column;
}

.service-card a{
    margin-top:auto;
    white-space:nowrap;
}
.service-card a{
    white-space: nowrap;
}
/*=================================
    SERVICES SECTION END
=================================*/
/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section{
    background:#f7f9fc;
    padding:80px 0 60px;
}
.section-heading h2 {
    font-size: 50px;
    font-weight: 700;
    color: #115276;
    margin-bottom: 10px;
}
.line{
    width:70px;
    height:3px;
    background:#115276;
    margin:0 auto 20px;
}

.section-heading p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.experience-row{
    margin-top:50px;
}

.exp-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 25px;
    border-right: 1px solid #d9dfe8;
    height: 100%;
}

.exp-box img{
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.exp-box h4{
    font-size:28px;
    color:#115276;
    font-weight:700;
    margin-bottom:8px;
}

.exp-box p{
    color:#444;
    line-height:1.8;
    margin:0;
}

/* =========================
   FOOTER
========================= */

.main-footer{
    background:#115276;
    color:#fff;
}

.footer-top{
    padding:30px 0;
}

.footer-logo img{
    max-width:320px;
}

.footer-contact{
    border-left:1px solid rgba(255,255,255,.2);
    padding-left:35px;
}

.footer-contact p{
    margin-bottom:18px;
    line-height:1.8;
}

.footer-contact i{
    width:25px;
    margin-right:10px;
}

.footer-social{
    border-left:1px solid rgba(255,255,255,.2);
    padding-left:35px;
}

.footer-social h5{
    margin-bottom:20px;
}

.footer-social a{
    width:60px;
    height:60px;
    border:2px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:28px;
    border-radius:6px;
}

.footer-bottom{
    background:#115276;
    padding:18px 0;
}

.footer-bottom p{
    margin:0;
    color:#fff;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
}

.footer-bottom span{
    margin:0 15px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .exp-box{
        border-right:none;
        margin-bottom:30px;
    }

    .footer-contact,
    .footer-social{
        border-left:none;
        padding-left:0;
        margin-top:30px;
    }

    .footer-logo{
        text-align:center;
    }

    .footer-social{
        text-align:center;
    }

    .footer-social a{
        margin:auto;
    }
}

@media(max-width:767px){

    .section-heading h2{
        font-size:30px;
    }

    .exp-box{
        padding:0;
    }

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom .text-md-end{
        margin-top:10px;
    }
}

/*services Details Css Start*/

.service-details {
    background: #f8f9fa;
}

.service-image img {
    height: 450px;
    object-fit: cover;
}

.service-sidebar {
    background: #115276;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}
.heading {
    color: #115276 !important;
    font-weight: bold !important;
}

.service-sidebar h4 {
    margin-bottom: 20px;
    color: #fff;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.service-sidebar ul li {
    margin-bottom: 12px;
}

.service-sidebar ul li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    background: #f5f7fa;
    border-radius: 8px;
    color: #333;
    transition: .3s;
}

.service-sidebar ul li a:hover {
    background: #115276;
    color: #fff;
}

/*services Details Css End*/

/*services page css Start*/
/* ==========================
   SERVICE CARD DESIGN
========================== */

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 60, 143, 0.08);
    border: 1px solid rgba(0, 60, 143, 0.08);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 60, 143, 0.18);
}

/* Top Border Animation */
.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #115276;
    transition: 0.4s ease;
}

.blog-card:hover::before {
    width: 100%;
}

/* Image */
.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.blog-card:hover h4 {
    color: #115276;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Read More Button */
.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #115276;
    font-weight: 700;
    transition: 0.3s ease;
}

.read-btn::after {
    content: "→";
    transition: 0.3s ease;
}

.read-btn:hover {
    color: #002d6d;
}

.read-btn:hover::after {
    transform: translateX(6px);
}

/* Optional Background Glow */
.blog-card:hover {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );
}
/*services page css End*/
/* =====================================================
   Contact Us Page CSS Start
===================================================== 

.contact-section{
    background: #f8f9fa;
    overflow: hidden;
}

/* Heading */
.contact-subtitle{
    color: #115276;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-title,
.form-title{
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-top: 10px;
}

/* Contact Cards */
.contact-card{
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,60,143,0.15);
}

.icon-box{
    width: 75px;
    height: 75px;
    margin: auto;
    background:linear-gradient(135deg,#115276,#0056cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i{
    color: #fff;
    font-size: 28px;
}

.contact-card h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #115276;
}

.contact-card p{
    margin: 0;
    color: #666;
    line-height: 1.8;
}

/* Form Area */
.contact-section {
    background: #f5f8fd;
}

.contact-wrapper {
    border-radius: 25px;
    overflow: hidden;
}

/* LEFT SIDE */

.contact-info {
    background:linear-gradient(135deg,#0056cc,#115276);
    padding: 50px;
    color: #fff;
    border-radius: 25px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 30px;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 10px;
    text-decoration: none;
    transition: .3s;
}

.social-links a:hover {
    background: #fff;
    color: #0047b3;
    transform: translateY(-4px);
}

/* RIGHT SIDE */

.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-box label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #111;
}

.custom-input {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #d8e0ef;
    box-shadow: none !important;
    padding: 0 18px;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

.custom-input:focus {
    border-color: #0047b3;
    box-shadow:0 0 0 4px rgba(0,60,143,.12)!important;
}

.contact-btn {
    background: #0047b3;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background:#002f73;
    color: #fff;
    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:991px){

    .contact-info{
        border-radius:25px 25px 0 0;
        padding:30px;
    }

    .contact-form-box{
        border-radius:0 0 25px 25px;
        padding:30px 20px;
    }

    .contact-info h2{
        font-size:32px;
    }
}

@media(max-width:576px){

    .contact-info h2{
        font-size:28px;
    }

    .contact-btn{
        width:100%;
    }

    .social-links a{
        width:45px;
        height:45px;
    }
}
/* Contact Us Page CSS End */

/* Breadcrumb CSS Start */
.bg-background-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay layer */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness here */
    z-index: 1;
}

/* Content above overlay */
.bg-background-area .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb divider color fix */
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
    opacity: 0.7;
}
/* Breadcrumb CSS End */

/*leadership css start*/
.leadership-section{
    background:#fff;
}
.leadership-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    border:1px solid #e9ecef;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.leader-img-box{
    text-align:center;
}

.leader-img-box img{
    width:100%;
    max-width:380px;
    border-radius:15px;
    /*box-shadow:0 10px 30px rgba(0,0,0,.12);*/
}

.leader-tag{
    display:inline-block;
    background:#115276;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.leader-info h2{
    font-size:42px;
    font-weight:700;
    color:#002b5b;
    margin-bottom:25px;
}

.leader-summary{
    line-height:1.9;
    color:#555;
    margin-bottom:10px;
}

.leader-contact{
    display:flex;
    align-items:center;
    gap:12px;
}

.leader-contact i{
    width:45px;
    height:45px;
    background:#115276;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.leader-contact a{
    color:#115276;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:991px){

    .leader-info{
        margin-top:30px;
    }

    .leader-info h2{
        font-size:32px;
    }

    .leadership-card{
        padding:25px;
    }
}
/*leadership css End*/

/*ABout us css Start*/

.sub-heading{
    color:#115276;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}

.main-heading{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin:15px 0 25px;
}

.about-section p{
    color:#666;
    line-height:1.9;
}

.counter-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.counter-box h3{
    color:#115276;
    font-size:35px;
    font-weight:700;
}

.counter-box span{
    color:#666;
}

.vision-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.icon-box{
    width:80px;
    height:80px;
    background:#115276;
    color:#fff;
    border-radius:50%;
    margin:auto auto 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:50px;
    color:#115276;
    margin-bottom:20px;
}

.expertise-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.expertise-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,60,143,.15);
}

.expertise-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#115276;
}

.expertise-number{
    position:absolute;
    right:20px;
    top:15px;
    font-size:60px;
    font-weight:800;
    color:rgba(0,60,143,.07);
    line-height:1;
}

.expertise-icon{
    min-width:90px;
    width:90px;
    height:90px;
    background:#eef4ff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.expertise-icon img{
    width:50px;
}

.expertise-content h4{
    font-size:24px;
    font-weight:700;
    color:#1d293f;
    margin-bottom:10px;
}

.expertise-content p{
    margin:0;
    color:#6c757d;
    font-size:15px;
    line-height:1.8;
}

@media(max-width:768px){

    .expertise-card{
        flex-direction:column;
        text-align:center;
        padding:30px 20px;
    }

    .expertise-number{
        font-size:40px;
    }

    .expertise-content h4{
        font-size:20px;
    }

}
.credential-item{
    background:#f8f9fa;
    padding:25px;
    margin-bottom:20px;
    border-left:5px solid #115276;
    border-radius:10px;
}

.credential-item h5{
    color:#115276;
    font-weight:700;
}
@media(max-width:991px){

    .main-heading{
        font-size:32px;
    }

    .about-section{
        text-align:center;
    }
}

/*ABout us css End*/

/*whtasapp icon css Start*/
/*whats up*/

.wa-ultimate-button1 {
  position: fixed;
  bottom: 30px;
  left: 45px;
  z-index: 100;
  perspective: 1200px;
  animation: fadeInUp 1.2s ease-out;
}

.wa-entry {
  position: relative;
  width: 65px;
  height: 65px;
  background: radial-gradient(circle, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 0 20px #25d366,
    0 0 60px rgba(37, 211, 102, 0.6),
    inset 0 0 15px #128c7e;
  transition: transform 0.3s ease;
  overflow: visible;
  animation: pulse 2.5s infinite ease-in-out;
}

.wa-entry:hover {
  transform: scale(1.08) rotateX(10deg);
}

.wa-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
  animation: glowPulse 3s ease-in-out infinite;
  filter: blur(12px);
  z-index: 0;
}

.wa-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgb(33 197 107);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 75px;
  height: 75px;
  animation: spin 8s linear infinite;
}

.ring2 {
  width: 120px;
  height: 120px;
  animation: spinReverse 12s linear infinite;
}

.wa-bubbles {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  animation: bubbles 4s linear infinite;
  box-shadow:
    0 0 4px #fff,
    0 -10px 0 0 rgba(255,255,255,0.3),
    0 -20px 0 0 rgba(255,255,255,0.2),
    0 -30px 0 0 rgba(255,255,255,0.1);
}

.wa-tooltip {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.4s ease;
  text-shadow: 0 0 4px #25d366;
}

.wa-entry:hover .wa-tooltip {
  opacity: 1;
  transform: scale(1);
}
.wa-entry:hover i{
  color: #fff
}
.wa-tooltip span {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid #fff;
  white-space: nowrap;
  animation: typing 3s steps(25) 1s forwards, blink 0.8s step-end infinite;
  max-width: 0;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 20px #25d366,
      0 0 60px rgba(37, 211, 102, 0.5),
      inset 0 0 15px #128c7e;
  }
  50% {
    box-shadow:
      0 0 30px #25d366,
      0 0 80px rgba(37, 211, 102, 0.8),
      inset 0 0 25px #128c7e;
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes bubbles {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-50%) translateY(-50px);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes typing {
  to { max-width: 220px; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: white; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.navigation li.active a {
    color: #eb7102 !important;
    font-weight: bold;
}
@media (max-width: 767px) {
    .call-to-action-6 {
        display: none !important;
    }
}

/*whtasapp icon css End*/


.navigation li.active a {
    color: #115276 !important;
    font-weight: bold!important;
}


/* Buttons */
.btn-primary-custom,
.btn-outline-custom,
.about-btn {
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover,
.about-btn:hover {
    transform: translateY(-4px);
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition: .8s;
}

.btn-primary-custom:hover::before {
    left: 120%;
}

/* Service Cards */
.service-card {
    transition: all .4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service-card img {
    transition: .5s;
}

.service-card:hover img {
    transform: scale(1.08);
}

/* Experience Boxes */
.exp-box {
    transition: .4s;
}

.exp-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

/* Leadership Image */
.leader-img-box {
    overflow: hidden;
    border-radius: 20px;
}

.leader-img-box img {
    transition: .6s;
}

.leader-img-box:hover img {
    transform: scale(1.08);
}

/* Hero Floating Shape */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    top: -150px;
    right: -120px;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}


#page {
    display: none;
}
#loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    background-image: url("../img/loader.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
}

.error 
{
    color:red!important;
}
.justify {
  text-align: justify;
}
.texts{
    font-size:49px!important;
}
.hero-text {
    color: #000!important;     
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 650px;
}




.service-sidebar-new{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.service-sidebar-new ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-sidebar-new ul li{
    position:relative;
    background:#f7f9fc;
    padding:16px 20px 16px 50px;
    margin-bottom:12px;
    border-radius:10px;
    transition:.35s;
    cursor:pointer;
    font-size:16px;
    font-weight:500;
}

.service-sidebar-new ul li::before{
    content:"✓";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    border-radius:50%;
    background:#115276;
    color:#fff;
    text-align:center;
    line-height:22px;
    font-size:12px;
}

.service-sidebar-new ul li:hover{
    background:#115276;
    color:#fff;
    transform:translateX(6px);
    box-shadow:0 12px 25px rgba(17,82,118,.25);
}

.service-sidebar-new ul li:hover::before{
    background:#fff;
    color:#115276;
}
.boxcolor span{
    color: #115276!important;
    font-size: 32px;
}
.boxs{
    height: 120px;
}


