:root{
    --primary-color: #0EA5E9;      /* Sky Blue */
    --secondary-color: #0284C7;    /* Deep Blue */
    --dark-color: #0F172A;         /* Dark Navy */
    --light-color: #F8FAFC;        /* Light Background */
    --white-color: #ffffff;
    --text-color: #475569;
}

.custom-navbar{
    padding:18px 0;
    transition:.4s;
    z-index:999;
}

.custom-navbar.scrolled{
    background: var(--dark-color);
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    padding:12px 0;
}

.navbar-brand img{
    height:70px;
}

.nav-link{
    font-size:15px;
    font-weight:600;
    color:#fff;
    margin:0 8px;
    position:relative;
}

.custom-navbar.scrolled .nav-link{
    color:#ffffff;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:#0EA5E9;
    left:0;
    bottom:-8px;
    transition:.4s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.call-btn{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    margin-right:15px;
}

.book-btn{
    background:linear-gradient(135deg,#0EA5E9,#0284C7);
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 10px 25px rgba(14,165,233,.3);
}

.book-btn:hover{
    transform:translateY(-3px);
}

.navbar-toggler i{
    font-size:34px;
    color:#fff;
}

.offcanvas-body {
    background: #0F172A;
}

.offcanvas{
    width:320px;
}

.mobile-nav{
    list-style:none;
    padding:0;
    
}

.mobile-nav li{
    margin-bottom:15px;
}

.mobile-nav a{
    text-decoration:none;
    color:#ffffff;
    font-size:18px;
    font-weight:600;
}

.mobile-contact{
    margin-top:40px;
}

.mobile-contact a{
    display:block;
    margin-bottom:15px;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    background:#acdafd;
    color:#0F172A;
    font-weight:600;
}

.hero-section{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    background:url('../img/hero-bg.jpg');
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    90deg,
    rgba(15,23,42,.95),
    rgba(15,23,42,.75),
    rgba(15,23,42,.3)
    );
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:12px 20px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:20px;
}

.hero-section h1{
    font-size:4rem;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-section h1 span{
    color:#0EA5E9;
}

.hero-section p{
    color:#d6d6d6;
    font-size:18px;
    max-width:650px;
    line-height:1.8;
}

.hero-btns{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.hero-btn1{
    background:#0EA5E9;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.hero-btn2{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.hero-btn1:hover,
.hero-btn2:hover{
    transform:translateY(-5px);
}

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:50px;
}

.hero-stats h3{
    color:#fff;
    font-size:38px;
    font-weight:800;
}

.hero-stats span{
    color:#ddd;
}

.hero-img-box{
    position:relative;
}

.hero-img-box img{
    width:100%;
    animation:float 5s ease-in-out infinite;
}

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:15px;
    padding:15px 20px;
    display:flex;
    gap:15px;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.card1{
    top:20%;
    left:-30px;
}

.card2{
    bottom:15%;
    right:-30px;
}

.floating-card i{
    color:#0EA5E9;
    font-size:30px;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

.water-drop{
    position:absolute;
    border-radius:50%;
    background:rgba(14,165,233,.2);
    backdrop-filter:blur(5px);
}

.drop1{
    width:120px;
    height:120px;
    top:15%;
    right:15%;
    animation:float 6s infinite;
}

.drop2{
    width:70px;
    height:70px;
    bottom:25%;
    left:10%;
    animation:float 8s infinite;
}

.drop3{
    width:180px;
    height:180px;
    top:50%;
    right:5%;
    animation:float 10s infinite;
}

@media(max-width:767px){

    .hero-section{
        padding: 120px 0 60px;
    }

    .hero-tag{
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero-section h1{
        font-size: clamp(2rem,9vw,3rem);
    }

    .hero-section p{
        font-size: 15px;
    }

    .hero-btns{
        flex-direction: column;
        width: 100%;
    }

    .hero-btn1,
    .hero-btn2{
        width: 100%;
        text-align: center;
    }

    .hero-stats{
        gap: 20px;
        justify-content: space-between;
    }

    .hero-stats div{
        flex: 1 1 30%;
    }

    .hero-img-box{
        margin-top: 40px;
    }

    .floating-card{
        position: static;
        margin-top: 15px;
    }
}


.services-section{
    background:#f8fbff;
}

.section-heading .sub-title{
    color:var(--primary-color);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:var(--dark-color);
    margin:15px 0;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
}

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--primary-color);
    transform:scaleX(0);
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:80px;
    height:80px;
    background:#eaf7ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:35px;
    color:var(--primary-color);
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

.service-card a{
    text-decoration:none;
    color:var(--primary-color);
    font-weight:600;
}

.service-card a i{
    margin-left:8px;
}

.why-choose-section{
    background:#fff;
}

.why-img{
    position:relative;
}

.why-img img{
    border-radius:25px;
    width:100%;
}

.experience-card{
    position:absolute;
    bottom:30px;
    right:-20px;
    width:180px;
    height:180px;
    background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    border-radius:50%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-card h2{
    font-size:50px;
    font-weight:800;
}

.why-box{
    background:#f8fbff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.why-box:hover{
    transform:translateY(-10px);
    background:var(--primary-color);
}

.why-box i{
    font-size:40px;
    color:var(--primary-color);
    margin-bottom:15px;
}

.why-box:hover i,
.why-box:hover h5{
    color:#fff;
}

.why-box h5{
    font-weight:700;
    margin:0;
}


.counter-section{
    position:relative;
    padding:100px 0;
    background:url('./img/bg.png');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.counter-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}
.counter-section .container{
    position:relative;
    z-index:2;
}

.counter-box{
    text-align:center;
    color:#fff;
    padding:30px;
}

.counter-box i{
    font-size:55px;
    margin-bottom:20px;
    color:#4fc3ff;
}

.counter-box h2{
    font-size:55px;
    font-weight:800;
    margin-bottom:10px;
}

.counter-box p{
    margin:0;
    font-size:18px;
    font-weight:500;
}

.benefits-section{
    background:#03295c;
    position:relative;
    overflow:hidden;
}

.benefits-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('../img/pattern.png');
    opacity:.05;
}

.benefits-section .container{
    position:relative;
    z-index:2;
}

.benefits-section .sub-title{
    color:#4fc3ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.benefits-section h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-top:15px;
}

.benefit-row{
    border-bottom:1px solid rgba(255,255,255,.1);
    padding-bottom:40px;
}

.benefit-box{
    text-align:center;
    padding:20px;
}

.benefit-box i{
    font-size:45px;
    color:#0EA5E9;
    margin-bottom:20px;
}

.benefit-box h5{
    color:#fff;
    font-weight:700;
}

.benefit-box p{
    color:#cbd5e1;
    font-size:14px;
}

.benefit-content-box{
    background:#fff;
    border-radius:25px;
    padding:40px;
    margin-top:30px;
}

.benefit-image img{
    width:100%;
    border-radius:20px;
    height:500px;
    object-fit:cover;
}

.benefit-content h3{
    font-size:38px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.benefit-content p{
    color:#64748b;
    line-height:1.9;
}

.solution-list{
    padding:0;
    margin:30px 0;
    list-style:none;
}

.solution-list li{
    margin-bottom:15px;
    color:#334155;
    font-weight:500;
}

.solution-list li i{
    color:#0EA5E9;
    margin-right:10px;
}

.mini-features{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.mini-box{
    flex:1;
    background:#0EA5E9;
    color:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
}

.mini-box i{
    font-size:35px;
    margin-bottom:15px;
}

.mini-box h6{
    margin:0;
    font-weight:600;
    line-height:1.6;
}

@media(max-width:991px){

    .benefits-section h2{
        font-size:34px;
    }

    .benefit-content-box{
        padding:25px;
    }

    .benefit-content h3{
        font-size:28px;
    }

    .benefit-image img{
        height:350px;
    }

    .mini-features{
        flex-wrap:wrap;
    }

    .mini-box{
        flex:0 0 calc(50% - 10px);
    }

}

@media(max-width:767px){

    .benefits-section h2{
        font-size:28px;
    }

    .benefit-content-box{
        padding:20px;
    }

    .benefit-content h3{
        font-size:24px;
    }

    .benefit-image img{
        height:280px;
    }

    .mini-box{
        flex:0 0 100%;
    }

}

.product-section{
    background:#f8fbff;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.product-img{
    position:relative;
    overflow:hidden;
    height:260px;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:20px;
    transition:.6s;
}

.product-card:hover .product-img img{
    transform:scale(1.1);
}

.product-img span{
    position:absolute;
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    background:#0EA5E9;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h5{
    font-size:18px;
    font-weight:700;
    color:#0F172A;
    margin:0;
    line-height:1.6;
}

.product-card:hover h5{
    color:#0EA5E9;
}

.section-title{
    max-width: 800px;
    margin: 0 auto;
}

.section-title .sub-title{
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 20px;
    background: rgba(14,165,233,.08);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title .sub-title::before{
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.section-title h2{
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title p{
    font-size: 17px;
    color: #64748b;
    line-height: 1.9;
    max-width: 700px;
    margin: auto;
}

/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size: 2.3rem;
    }

    .section-title p{
        font-size: 16px;
    }

}

@media(max-width:767px){

    .section-title h2{
        font-size: 1.9rem;
    }

    .section-title .sub-title{
        font-size: 12px;
        letter-spacing: 2px;
        padding: 8px 16px;
    }

    .section-title p{
        font-size: 15px;
        line-height: 1.8;
    }

}

.gallery-section{
    background:#fff;
}

.gallery-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    height:320px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,.9)
    );
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    padding:25px;
    opacity:0;
    transition:.5s;
}

.gallery-overlay h5{
    color:#fff;
    font-weight:700;
}

.gallery-overlay span{
    color:#ddd;
}

.gallery-overlay i{
    width:55px;
    height:55px;
    background:#0EA5E9;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}


.testimonial-section{
    background:#f8fbff;
}

.testimonial-wrapper{
    display:flex;
    gap:25px;
    overflow-x:auto;
    padding-bottom:15px;
    scrollbar-width:none;
}

.testimonial-wrapper::-webkit-scrollbar{
    display:none;
}

.testimonial-card{
    min-width:320px;
    max-width:320px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    border-top:4px solid var(--primary-color);
    flex-shrink:0;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.stars{
    color:#ffc107;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h5{
    font-size:18px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#0EA5E9;
    font-size:14px;
    font-weight:500;
}

.expertise-section{
    background:#fff;
    overflow:hidden;
}

.expertise-img{
    position:relative;
}

.expertise-img img{
    width:100%;
    border-radius:25px;
    height:700px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.floating-experience{
    position:absolute;
    top:30px;
    right:-20px;
    width:180px;
    height:180px;
    background:linear-gradient(
    135deg,
    #0EA5E9,
    #03295c
    );
    border-radius:50%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
    animation:float 4s infinite;
}

.floating-experience h2{
    font-size:55px;
    font-weight:800;
}

.floating-projects{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    padding:20px;
    border-radius:20px;
    display:flex;
    gap:15px;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.floating-projects i{
    font-size:40px;
    color:#0EA5E9;
}

.expertise-text{
    color:#64748b;
    line-height:1.9;
    margin-bottom:35px;
}

.skill-item{
    margin-bottom:25px;
}

.skill-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-weight:600;
}

.skill-bar{
    height:10px;
    background:#e2e8f0;
    border-radius:50px;
    overflow:hidden;
}

.skill-fill{
    height:100%;
    border-radius:50px;
    background:linear-gradient(
    90deg,
    #0EA5E9,
    #03295c
    );
    animation:fillBar 2s ease forwards;
}

.bottom-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:40px;
}

.feature-item{
    background:#f8fbff;
    padding:15px 20px;
    border-radius:50px;
    font-weight:600;
}

.feature-item i{
    color:#0EA5E9;
    margin-right:8px;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes fillBar{
    from{
        width:0;
    }
}

@media(max-width:991px){

    .expertise-img img{
        height:500px;
    }

    .floating-experience{
        width:130px;
        height:130px;
        right:10px;
    }

    .floating-experience h2{
        font-size:35px;
    }

}

@media(max-width:767px){

    .expertise-img img{
        height:350px;
    }

    .floating-projects{
        position:static;
        margin-top:20px;
    }

    .bottom-features{
        flex-direction:column;
    }

}

.partner-section{
    background:#fff;
    overflow:hidden;
}

.logo-slider{
    position:relative;
    overflow:hidden;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:40px;
    width:max-content;
    animation:scrollLogo 25s linear infinite;
}

.logo-item{
    width:220px;
    height:120px;
    background:#fff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    border:1px solid #e5e7eb;
    transition:.4s;
}

.logo-item:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.logo-item img{
    max-width:100%;
    max-height:70px;
    object-fit:contain;
    
    transition:.4s;
}

.logo-item:hover img{
    filter:grayscale(0%);
}

@keyframes scrollLogo{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:767px){

    .logo-item{
        width:160px;
        height:90px;
    }

    .logo-item img{
        max-height:50px;
    }

}


.enquiry-section{
    background:#f8fbff;
}

.enquiry-wrapper{
    background:#03295c;
    border-radius:30px;
    padding:60px;
    overflow:hidden;
    position:relative;
}

.enquiry-wrapper::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.enquiry-content .sub-title{
    color:#4fc3ff;
    font-weight:700;
    letter-spacing:2px;
}

.enquiry-content h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:20px 0;
}

.enquiry-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.enquiry-feature{
    color:#fff;
    margin-bottom:15px;
    font-weight:500;
}

.enquiry-feature i{
    color:#0EA5E9;
    margin-right:10px;
}

.enquiry-form-box{
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:35px;
}

.enquiry-form-box h3{
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.form-control,
.form-select{
    height:55px;
    border:none;
    border-radius:12px;
}

textarea.form-control{
    height:auto;
}

.submit-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#0EA5E9;
    color:#fff;
    font-weight:700;
    transition:.4s;
}

.submit-btn:hover{
    background:#0284c7;
}

.submit-btn i{
    margin-right:10px;
}


@media(max-width:991px){

    .enquiry-wrapper{
        padding:30px;
    }

    .enquiry-content h2{
        font-size:32px;
    }

}

@media(max-width:767px){

    .enquiry-content h2{
        font-size:28px;
    }

    .enquiry-form-box{
        padding:25px;
    }

}


.faq-section{
    background:#f8fbff;
}

.faq-info-box{
    background:linear-gradient(
    135deg,
    #03295c,
    #0EA5E9
    );
    padding:50px 40px;
    border-radius:30px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;
}

.faq-info-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-100px;
    right:-100px;
}

.faq-icon{
    width:90px;
    height:90px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.faq-icon i{
    font-size:40px;
}

.faq-info-box h3{
    font-size:35px;
    font-weight:800;
    margin-bottom:20px;
}

.faq-info-box p{
    line-height:1.9;
    color:#e2e8f0;
}

.faq-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#03295c;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    margin-top:20px;
    font-weight:700;
}

.custom-faq .accordion-item{
    border:none;
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.custom-faq .accordion-button{
    background:#fff;
    font-size:18px;
    font-weight:600;
    padding:22px;
    color:#0f172a;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#0EA5E9;
    color:#fff;
}

.custom-faq .accordion-button::after{
    filter:brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}

.custom-faq .accordion-body{
    padding:25px;
    color:#64748b;
    line-height:1.9;
}

@media(max-width:767px){

    .faq-info-box{
        padding:30px 25px;
    }

    .faq-info-box h3{
        font-size:28px;
    }

    .custom-faq .accordion-button{
        font-size:16px;
        padding:18px;
    }

}

.footer{
    background:#021f46;
    padding-top:80px;
    color:#fff;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-widget h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-widget h4::after{
    content:'';
    width:50px;
    height:3px;
    background:#0EA5E9;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-widget p{
    color:#d6d6d6;
    line-height:1.9;
}

.footer-widget ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:14px;
}

.footer-widget ul li a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#0EA5E9;
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:10px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s;
}

.footer-social a:hover{
    background:#0EA5E9;
    transform:translateY(-5px);
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.contact-item i{
    color:#0EA5E9;
    font-size:20px;
    margin-top:3px;
}

.contact-item span{
    color:#d6d6d6;
    line-height:1.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:60px;
    padding:20px 0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    margin:0;
    color:#d6d6d6;
}

.footer-bottom a{
    color:#0EA5E9;
    text-decoration:none;
    font-weight:600;
}

.footer-bottom a:hover{
    color:#fff;
}

.footer-service-area{
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-service-area h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
    text-align:center;
}

.service-area-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.service-area-links a{
    text-decoration:none;
    color:#dbeafe;
    background:rgba(255,255,255,.06);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.service-area-links a:hover{
    background:#0EA5E9;
    color:#fff;
    transform:translateY(-4px);
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:38px;
    z-index:99999;
    box-shadow:0 10px 35px rgba(37,211,102,.45);
    animation:whatsappPulse 2s infinite;
    transition:.4s;
}

.whatsapp-float:hover{
    transform:translateY(-8px) scale(1.08);
    color:#fff;
}

.whatsapp-text{
    position:absolute;
    right:85px;
    white-space:nowrap;
    background:#fff;
    color:#111;
    padding:12px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.whatsapp-float:hover .whatsapp-text{
    opacity:1;
    visibility:visible;
}

.whatsapp-text::after{
    content:'';
    position:absolute;
    right:-8px;
    top:50%;
    transform:translateY(-50%);
    border-left:8px solid #fff;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:
        0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }

}

.call-float{
    position:fixed;
    left:25px;
    bottom:25px;
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#03295c,#0EA5E9);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    z-index:99999;
    box-shadow:0 10px 35px rgba(14,165,233,.4);
    animation:callPulse 2s infinite;
    transition:.4s;
}

.call-float:hover{
    color:#fff;
    transform:translateY(-8px) scale(1.08);
}

.call-text{
    position:absolute;
    left:85px;
    white-space:nowrap;
    background:#fff;
    color:#03295c;
    padding:12px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.call-float:hover .call-text{
    opacity:1;
    visibility:visible;
}

.call-text::before{
    content:'';
    position:absolute;
    left:-8px;
    top:50%;
    transform:translateY(-50%);
    border-right:8px solid #fff;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
}

@keyframes callPulse{

    0%{
        box-shadow:0 0 0 0 rgba(14,165,233,.7);
    }

    70%{
        box-shadow:0 0 0 18px rgba(14,165,233,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(14,165,233,0);
    }

}

.back-to-top{
    position:fixed;
    right:25px;
    bottom:110px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    #03295c,
    #0EA5E9
    );
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(14,165,233,.35);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    color:#fff;
    transform:translateY(-8px);
}

.back-to-top::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(14,165,233,.4);
    animation:ripple 2s infinite;
    z-index:-1;
}

@keyframes ripple{

    0%{
        transform:scale(1);
        opacity:.8;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}

@media(max-width:767px){

    .back-to-top{

        width:50px;
        height:50px;
        font-size:18px;
        right:15px;
        bottom:85px;

    }

}

.about-hero-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #031f46,
        #03295c,
        #0EA5E9
    );
}

.about-hero-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-200px;
    right:-150px;
}

.about-hero-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-120px;
    left:-120px;
}

.about-hero-section .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.about-hero-section h1{
    font-size:68px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin:25px 0;
}

.about-hero-section h1 span{
    color:#4FC3FF;
}

.about-hero-section p{
    color:#dbeafe;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.about-hero-section .hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    font-weight:600;
}

.about-hero-section .hero-tag i{
    color:#4FC3FF;
}

.about-hero-section .hero-img-box{
    position:relative;
}

.about-hero-section .hero-img-box img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

.about-hero-section .floating-card{
    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-hero-section .floating-card i{
    font-size:28px;
    color:#0EA5E9;
}

.about-hero-section .card1{
    top:15%;
    left:-30px;
}

.about-hero-section .card2{
    bottom:15%;
    right:-30px;
}

.about-hero-section .hero-stats{
    display:flex;
    gap:40px;
    margin-top:40px;
}

.about-hero-section .hero-stats h3{
    color:#fff;
    font-size:36px;
    font-weight:800;
}

.about-hero-section .hero-stats span{
    color:#dbeafe;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

}

.about-hero{
    background: linear-gradient(
        135deg,
        rgba(3,31,70,.95),
        rgba(3,41,92,.95)
    ),
    url('../img/about-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero .hero-img-box img{
    max-height: 650px;
    object-fit: contain;
}

.about-hero .hero-tag{
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}

.who-we-are{
    background:#fff;
}

.who-img-box{
    position:relative;
}

.main-img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-badge{
    position:absolute;
    bottom:-30px;
    right:-20px;
    width:180px;
    height:180px;
    background:linear-gradient(
        135deg,
        #03295c,
        #0EA5E9
    );
    border-radius:50%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-badge h2{
    font-size:55px;
    font-weight:800;
    margin:0;
}

.experience-badge span{
    text-align:center;
    font-size:14px;
}

.who-we-are p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.about-feature-list{
    margin:30px 0;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-weight:600;
}

.about-feature i{
    color:#0EA5E9;
    font-size:20px;
}

.theme-btn{
    display:inline-block;
    background:#0EA5E9;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.theme-btn:hover{
    background:#03295c;
    color:#fff;
}

.mission-vision-section{
    background:#f8fbff;
}

.mission-card,
.vision-card{
    background:#fff;
    padding:50px 40px;
    border-radius:30px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.mission-card{
    border-top:5px solid #0EA5E9;
}

.vision-card{
    border-top:5px solid #03295c;
}

.mission-card:hover,
.vision-card:hover{
    transform:translateY(-10px);
}

.mv-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #03295c,
        #0EA5E9
    );
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.mv-icon i{
    color:#fff;
    font-size:40px;
}

.mission-card h3,
.vision-card h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
    color:#0F172A;
}

.mission-card p,
.vision-card p{
    color:#64748b;
    line-height:1.9;
    margin:0;
}

.mission-card::before,
.vision-card::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    border-radius:50%;
    background:rgba(14,165,233,.05);
    top:-100px;
    right:-100px;
}

.service-hero{
    background:
    linear-gradient(
        135deg,
        rgba(3,31,70,.95),
        rgba(3,41,92,.95)
    ),
    url('../img/service-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.product-hero{
    background:
    linear-gradient(
        135deg,
        rgba(3,31,70,.95),
        rgba(3,41,92,.95)
    ),
    url('../img/product-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.contact-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    width:80px;
    height:80px;
    background:#0EA5E9;
    color:#fff;
    font-size:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
}

.contact-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.contact-card p,
.contact-card a{
    color:#64748b;
    display:block;
    text-decoration:none;
    line-height:1.8;
}

.map-section{
    padding:80px 0;
    background:#f8fbff;
}

.map-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,.12);
}

.map-wrapper iframe{
    width:100%;
    height:550px;
    border:0;
    display:block;
}

@media(max-width:991px){

    .map-wrapper iframe{
        height:450px;
    }

}

@media(max-width:767px){

    .map-section{
        padding:60px 0;
    }

    .map-wrapper{
        border-radius:15px;
    }

    .map-wrapper iframe{
        height:350px;
    }

}

.office-info-section{
    background:#f8fbff;
}

.office-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.office-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(14,165,233,.08);
    top:-40px;
    right:-40px;
}

.office-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.office-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#03295c,#0EA5E9);
    display:flex;
    align-items:center;
    justify-content:center;
}

.office-icon i{
    color:#fff;
    font-size:38px;
}

.office-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#03295c;
}

.office-card p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:10px;
}

.office-card a{
    display:block;
    text-decoration:none;
    color:#03295c;
    font-weight:600;
    margin-bottom:12px;
    transition:.3s;
}

.office-card a:hover{
    color:#0EA5E9;
}

.contact-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:20px;
    background:#25D366;
    color:#fff !important;
    padding:14px 30px;
    border-radius:50px;
}

.contact-btn:hover{
    background:#128C7E;
}

.contact-btn i{
    font-size:20px;
}

@media(max-width:767px){

    .office-card{
        padding:30px 20px;
    }

    .office-icon{
        width:75px;
        height:75px;
    }

    .office-icon i{
        font-size:30px;
    }

}