/* HP1 Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: #222;
}

.hp1-wrapper {
    background-color: #fff;
    overflow-x: hidden;
}

/* ================= ANIMATIONS ================= */

@keyframes headerDrop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes softPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(0, 128, 255, 0);
    }

    50% {
        box-shadow: 0 0 28px rgba(0, 128, 255, 0.22);
    }
}

@keyframes shineMove {
    0% {
        left: -90%;
    }

    100% {
        left: 130%;
    }
}

/* ================= HEADER ================= */

.home1-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    animation: headerDrop 0.7s ease;
}

.home1nav {
    height:auto;
    background: #fff !important;
    border-radius: 0 0 28px 28px;
    padding: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.home1-header .home1nav {
    height: 105px;
}

.header-container {
    height: 100%;
    max-width: 1370px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
}

.nav-logo {
    width: 185px;
    height: auto;
    display: block;
    transition: all 0.35s ease;
}

.nav-logo:hover {
    transform: scale(1.04);
}

.navbar-collapse {
    min-width: 0;
}

.navbar-nav {
    gap: 8px;
    align-items: center;
}

.custom-link {
    font-size: 15px !important;
    font-weight: 500 !important;
    font-family: 'Lato', sans-serif;
    color: #4C4C4C !important;
    padding: 10px 13px !important;
    border-radius: 5px;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: 0.45s ease;
}

.custom-link:hover::before {
    left: 130%;
    transition: 0.45s ease;
}

.custom-link.active,
.custom-link:hover {
    background: #0080FF;
    color: #fff !important;
    transition: 0.45s ease;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(0, 128, 255, 0.28);
}

.header-call-wrap {
    flex: 0 0 auto;
}

.nav-call-btn {
    background: #0080FF;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    border-radius: 9px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 128, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-call-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.nav-call-btn:hover::before {
    animation: shineMove 0.75s ease;
}

.nav-call-btn:hover {
    background: #0080FF;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(0, 128, 255, 0.35);
}

.nav-call-btn i {
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.nav-call-btn:hover i {
    transform: rotate(-12deg) scale(1.12);
}

.small-text {
    display: block;
    font-size: 11px;
    font-family: Roboto, sans-serif;
    line-height: 1.1;
    font-weight: 500;
}

.phone-num {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    line-height: 1.1;
    font-family: Roboto, sans-serif;
    font-weight: 700;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}




/* ================= HOME1 STICKY FIX ================= */

/* NORMAL HEIGHT */
.home1-header .home1nav {
    height: 105px;
    padding: 12px 0;
}

/* SCROLLED STATE */
.home1-header.scrolled .home1nav {
    height: 70px;
    padding: 6px 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* LOGO NORMAL */
.nav-logo {
    width: 185px;
    transition: all 0.35s ease;
}

/* LOGO SMALL */
.home1-header.scrolled .nav-logo {
    width: 130px;
}

/* BUTTON ADJUST */
.home1-header.scrolled .nav-call-btn {
    padding: 10px 22px;
}

.home1-header.scrolled .phone-num {
    font-size: 15px;
}

/* MOBILE FIX */
@media (max-width: 991px) {

    .home1-header .home1nav {
        height: auto;
        padding: 10px 0;
    }

    .home1-header.scrolled .home1nav {
        height: auto;
        padding: 8px 0;
    }

    .nav-logo {
        width: 140px;
    }

    .home1-header.scrolled .nav-logo {
        width: 110px;
    }

    .header-call-wrap {
        display: none;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 12px;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 8px;
    }

    .custom-link {
        text-align: center;
        width: 100%;
    }
}

/* ================= HERO ================= */


.hp1-hero-inner {
background-image: url("/images/brain_glow.png");
background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 185px 0 100px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}


.hp1-hero-inner::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 128, 255, 0.08);
    left: -150px;
    bottom: -180px;
    filter: blur(5px);
    animation: softFloat 5s ease-in-out infinite;
}

.hero-text-inner h1 {
    font-size: 70px;
    line-height: 1.32;
    text-align: center;
    font-family: Lato, sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hp1-hero {
background-image: url("/images/brain_glow.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 185px 0 100px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hp1-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 128, 255, 0.08);
    left: -150px;
    bottom: -180px;
    filter: blur(5px);
    animation: softFloat 5s ease-in-out infinite;
}

.hero-text {
    animation: fadeLeft 1s ease both;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 70px;
    line-height: 1.32;
    font-family: Lato, sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.highlight {
    color: #0080ff;
    display: inline-block;
    animation: softFloat 3.5s ease-in-out infinite;
}

.hero-text p {
    font-size: 28px;
    font-family: Roboto, sans-serif;
    line-height: 1.7;
    color: #fff;
    animation: fadeUp 1.1s ease both;
}

/* ================= ABOUT ================= */

.hp1-about {
    background: #fff;
    padding-bottom: 100px !important;
    padding-top: 100px !important;
    animation: fadeUp 0.9s ease both;
}

.section-tag {
    display: inline-block;
    background: #0080ff;
    color: #fff;
    padding: 4px 11px;
    font-family: Roboto, sans-serif;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.section-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 18px rgba(0, 128, 255, 0.25);
}

.about-left {
    border-left: 2px solid #434343;
    padding-left: 40px;
    padding-right: 60px !important;
    animation: fadeLeft 0.9s ease both;
}

.about-left h2,
.why-title,
.section-title,
.hp1-contact h2 {
    color: #1B1464;
    font-size: 45px;
    line-height: 1.35;
    font-family: Lato, sans-serif;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-right {
    border-left: 1px solid #ddd;
    padding-left: 65px !important;
    animation: fadeRight 0.9s ease both;
}

.about-right p {
    font-size: 18px;
    line-height: 1.8;
    font-family: Roboto, sans-serif;
    color: #737D8A;
}

.about-main-img {
    position: relative;
    border-radius: 25px;
    overflow: visible;
    margin-bottom: 120px;
    margin-top: 2rem !important;
    animation: fadeUp 1s ease both;
}

.about-main-img>img {
    width: 100%;
    border-radius: 25px;
    transition: all 0.45s ease;
}

.about-main-img:hover>img {
    transform: scale(1.012);
    filter: brightness(1.04);
}

.btn-about {
    display: inline-block;
    background: #0080ff;
    color: #fff !important;
    border: none;
    padding: 11px 25px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.btn-about::before,
.btn-read::before {
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.btn-about:hover::before,
.btn-read:hover::before {
    animation: shineMove 0.75s ease;
}

.btn-about:hover {
    background: #006fe0;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 128, 255, 0.28);
}

.about-small-img {
    position: absolute;
    right: 70px;
    bottom: -75px;
    width: 250px;
    height: 270px;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.45s ease;
    animation: softFloat 4s ease-in-out infinite;
}

.about-small-img:hover {
    transform: translateY(-8px) scale(1.03);
}

.about-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-row {
    margin-top: 120px;
}

.why-img {
    border-radius: 20px;
    transition: all 0.45s ease;
}

.why-img:hover {
    transform: scale(1.02);
    filter: brightness(1.04);
}

.why-title {
    animation: fadeRight 0.9s ease both;
}

.why-text {
    font-size: 16px;
    font-family: Roboto, sans-serif;
    color: #1F1F1F;
    line-height: 1.7;
}


/* ================= ABOUT INNER PAGE NEW ================= */

.about-inner-page {
    padding-top: 140px !important;
    padding-bottom: 130px !important;
    background: #fff;
    overflow: hidden;
}

.about-inner-top {
    margin-bottom: 0;
}

.about-inner-image-col {
    animation: fadeLeft 0.9s ease both;
}

.about-inner-content-col {
    animation: fadeRight 0.9s ease both;
    padding-left: 70px !important;
}

.about-inner-content-col h2 {
    color: #1B1464;
    font-size: 45px;
    line-height: 1.35;
    font-family: Lato, sans-serif;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-inner-content-col p {
    font-size: 18px;
    line-height: 1.8;
    font-family: Roboto, sans-serif;
    color: #737D8A;
    margin-bottom: 18px;
}

.about-inner-img {
    margin: 0 !important;
    position: relative;
}

.about-inner-img > img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 55px rgba(0, 128, 255, 0.12);
    transition: all 0.45s ease;
}

.about-inner-img:hover > img {
    transform: translateY(-8px) scale(1.01);
    filter: brightness(1.04);
    box-shadow: 0 32px 70px rgba(0, 128, 255, 0.18);
}

.about-inner-page .about-small-img {
    right: -35px;
    bottom: -45px;
    width: 220px;
    height: 235px;
    border-radius: 28px;
    animation: softFloat 4s ease-in-out infinite;
    box-shadow: 0 18px 40px rgba(0, 128, 255, 0.18);
}

.about-inner-page .section-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 18px rgba(0, 128, 255, 0.25);
}

@media (max-width: 991px) {
    .about-inner-page {
        padding-top: 100px !important;
        padding-bottom: 90px !important;
    }

    .about-inner-content-col {
        padding-left: 12px !important;
        margin-top: 70px;
        text-align: center;
    }

    .about-inner-img > img {
        height: 350px;
    }

  
}



/* ================= WHY US INNER PAGE ================= */
.why-us-inner-page {
    
    padding: 110px 0 120px !important;
    overflow: hidden;
}

.why-inner-row {
    animation: fadeUp 0.9s ease both;
}

.why-img-col {
    animation: fadeLeft 0.9s ease both;
}

.why-content-col {
    animation: fadeRight 0.9s ease both;
}

.why-us-inner-page .why-img {
border-radius: 44px;

    transition: all 0.45s ease;
    box-shadow: 0 25px 55px rgba(0, 128, 255, 0.12);
}

.why-us-inner-page .why-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 65px rgba(0, 128, 255, 0.2);
}

.why-us-inner-page .section-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 18px rgba(0, 128, 255, 0.25);
}

@media (max-width: 991px) {
    .hp1-hero-inner {
        min-height: 340px;
        padding: 145px 0 70px;
    }

    .hero-text-inner h1 {
        font-size: 46px;
    }

    .why-us-inner-page {
        padding: 80px 0;
    }

    .why-content-col {
        text-align: center !important;
        margin-top: 40px;
    }
}




/* ================= SERVICES ================= */

.hp1-services {
    background: #eaf6ff;
    padding: 80px 0;
    animation: fadeUp 0.9s ease both;
}

.section-title {
    margin-bottom: 10px;
}

.section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #1F1F1F;
    font-family: Roboto, sans-serif;
}

.hp1-services .row {
    align-items: stretch;
}

.hp1-services .col-lg-4,
.hp1-services .col-md-6 {
    display: flex;
}

.service-card {
    background: #fff;
    padding: 42px 35px;
    border-radius: 31px;
    text-align: left;
    min-height: 650px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.45s ease;
    border: 1px solid rgba(0, 128, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.08), transparent 45%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 74px;
    height: 74px;
    border: 2px solid #0080ff;
    border-radius: 50%;
    color: #000;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.card-icon img {
    width: 40px;
    object-fit: contain;
    transition: all 0.35s ease;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #373737;
    font-family: Lato, sans-serif;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 18px;
    color: #737D8A;
    line-height: 1.8;
    font-family: Roboto, sans-serif;
    flex: 1;
    position: relative;
    z-index: 1;
}

.btn-read {
    display: inline-block;
    background: #0080ff;
    color: #fff !important;
    border: none;
    padding: 11px 25px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 30px;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-read:hover {
    background: #006fe0;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 128, 255, 0.28);
}

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 45px rgba(0, 128, 255, 0.18);
    border-color: rgba(0, 128, 255, 0.18);
}

.service-card:hover .card-icon {
    background: #0080ff;
    transform: rotate(6deg) scale(1.06);
    box-shadow: 0 12px 24px rgba(0, 128, 255, 0.25);
}

.service-card:hover .card-icon img {
    transform: scale(1.08);
}

/* ================= CONTACT ================= */

.hp1-contact {
    padding: 70px 0;
    background: #fff;
    animation: fadeUp 0.9s ease both;
}

.hp1-contact p {
    font-size: 18px;
    color: #1F1F1F;
    margin-bottom: 35px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #eaf6ff;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 128, 255, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.15);
    transform: translateY(-2px);
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.form-bottom {
    margin-top: 30px;
    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.form-bottom label {
    font-size: 18px;
    font-family: Roboto, sans-serif;
    color: #737D8A;
    font-weight: 600;
}

.consent-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px !important;
    color: #737D8A;
    text-align: left;
    margin: 0;
    flex: 1;
}

.consent-label input {
    width: 14px !important;
    height: 14px !important;
    padding: 0 !important;
    margin: 0;
    flex: 0 0 14px;
    accent-color: #0080ff;
}

.consent-label span {
    line-height: 1.5;
    font-size: 16px;
}





/* ================= BLOGS ================= */

.blogs-section {
    padding: 100px 0 120px;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,128,255,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* hover image zoom */
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

/* content */
.blog-content {
    padding: 25px 25px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1B1464;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 16px;
    color: #737D8A;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* hover card */
.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,128,255,0.18);
}

/* button fix */
.blog-card .btn-read {
    align-self: flex-start;
}

/* animation */
.blog-card {
    animation: fadeUp 0.8s ease both;
}

/* responsive */
@media (max-width: 991px) {
    .blogs-section {
        padding: 70px 0;
    }

    .blog-img img {
        height: 200px;
    }
}





/* ================= FOOTER ================= */

.hp1-footer {
    position: relative;
    background: #020014;
    color: #fff;
    overflow: hidden;
}

.footer-container {
    max-width: 1370px !important;
    margin: 0 auto;
}

.footer-bottom-inner span a {
    text-decoration: none;
    font-size: 16px;
    color: white;
}

.footer-bottom-inner p {
    font-size: 16px !important;
}

.footer-main {
    min-height: 315px;
    padding: 90px 0 58px;
    align-items: flex-start;
}

.footer-brand-col {
    padding-left: 35px !important;
}

.footer-links-col {
    padding-left: 60px !important;
}

.footer-info-col {
    padding-left: 40px !important;
}

.footer-contact-col {
    padding-left: 0px !important;
}

.footer-logo {
    width: 200px;
    display: block;
    margin-bottom: 70px;
    transition: all 0.35s ease;
}

.footer-logo:hover {
    transform: scale(1.04);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #020018;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 18px;
    line-height: 1;
    color: inherit;
}

.social-icons a:hover {
    background: #0080ff;
    color: #fff;
    transform: translateY(-3px) rotate(6deg);
    box-shadow: 0 10px 20px rgba(0, 128, 255, 0.25);
}

.hp1-footer h5 {
    color: #fff;
    font-size: 18px;
    font-family: Lato, sans-serif;
    font-weight: 700;
    text-align: start;
    margin-bottom: 25px;
    line-height: 1;
}

.hp1-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp1-footer ul li{
    margin-bottom: 13px;
}

.hp1-footer ul li a{
    color: #ffffffef;
    font-size: 16px;
    line-height: 1.2;
    text-align: start !important;
    margin-bottom: 16px;
    text-decoration: none;
    cursor: pointer;
    font-family: Roboto, sans-serif;
    transition: all 0.25s ease;
}

.hp1-footer ul li:hover {
 
    transform: translateX(5px) !important;
     transition: all 0.25s ease;
}

.hp1-footer ul li a:hover {
    color: #0080ff;
     transition: all 0.25s ease;
    
    
}


.hp1-footer p a:hover{
    color: #0080ff;
}


.hp1-footer p a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
    text-align: start;
    margin-bottom: 16px;
}

.footer-address {
    margin-bottom: 26px !important;
    font-family: Lato, sans-serif;
    font-size: 18px;
}

.footer-contact-col p:not(.footer-address) {
    display: flex;
    align-items: start;
    gap: 13px;
    transition: all 0.25s ease;
}

.footer-contact-col i {
    width: 18px;
    font-size: 16px;
    color: #fff;
    transition: all 0.25s ease;
}

.footer-contact-col span {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: all 0.25s ease;
}

.footer-contact-col p:hover span,
.footer-contact-col p:hover i {
    color: #0080ff;
}

.footer-contact-col p:hover {
    transform: translateX(4px);
}

.footer-bg-shape {
    position: absolute;
    right: -35px;
    top: 28px;
    width: 185px;
    height: auto;
    pointer-events: none;
    animation: softFloat 5s ease-in-out infinite;
}

.footer-bottom {
    background: #04002C;
    padding: 25px 0;
}

.footer-bottom-inner {
    max-width: 1370px !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.footer-bottom span {
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer-bottom span:hover {
    color: #0080ff;
}

.footer-bottom b {
    color: #fff;
    font-weight: 400;
    margin: 0 10px;
}



.btnfooter {
    display: inline-block;
    background: #0080ff;
    color: #fff !important;
    border: none;
    padding: 11px 25px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.btnfooter::before{
    content: "";
    position: absolute;
    top: 0;
    left: -90%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.btnfooter:hover::before {
    animation: shineMove 0.75s ease;
}

.btnfooter:hover {
    background: #006fe0;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 128, 255, 0.28);
}



/* ================= HOME1 BACK TO TOP ================= */

.back-to-top-1 {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background: #007bff;
    cursor: pointer;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.3s ease;
}

.back-to-top-1.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-1:hover {
    background: #006fe0;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}




/* ================= RESPONSIVE ================= */

@media (max-width: 1399px) {
    .header-container {
        max-width: 1180px;
    }

    .nav-logo {
        width: 165px;
    }

    .custom-link {
        font-size: 14px;
        padding: 9px 10px !important;
    }

    .phone-num {
        font-size: 16px;
    }

    .nav-call-btn {
        padding: 12px 14px;
    }
}

@media (max-width: 1199px) {
    .home1nav {
        height: auto;
        min-height: 76px;
        padding: 12px 0;
    }

    .header-call-wrap {
        margin-left: auto;
        margin-right: 12px;
    }

    .nav-call-btn {
        padding: 10px 12px;
    }

    .small-text {
        font-size: 10px;
    }

    .phone-num {
        font-size: 15px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 18px;
        margin-top: 14px;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 10px;
        align-items: stretch;
    }

    .custom-link {
        font-size: 15px;
        text-align: center;
    }

    .hp1-hero {
        margin-top: 76px;
    }

    .footer-container,
    .footer-bottom-inner {
        max-width: 960px !important;
    }

    .footer-brand-col,
    .footer-links-col,
    .footer-info-col,
    .footer-contact-col {
        padding-left: 12px !important;
    }

    .footer-logo {
        width: 170px;
    }
}

@media (max-width: 991px) {
    .nav-logo {
        width: 145px;
    }

    .header-call-wrap {
        display: none;
    }

    .hp1-hero {
        text-align: center;
        padding: 110px 0 70px;
        min-height: 560px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .about-right {
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
    }

    .about-small-img {
        width: 150px;
        height: 150px;
        right: 20px;
        bottom: -50px;
    }

    .why-row {
        margin-top: 90px;
    }

    .service-card {
        min-height: auto;
    }

    .form-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-main {
        min-height: auto;
        padding: 50px 0;
        row-gap: 30px;
    }

    .footer-logo {
        margin-bottom: 35px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bg-shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p,
    .about-right p,
    .service-card p,
    .hp1-contact p,
    .consent-label {
        font-size: 16px !important;
    }

    .about-left h2,
    .why-title,
    .section-title,
    .hp1-contact h2 {
        font-size: 31px;
    }

    .section-tag {
        font-size: 15px;
    }

    .service-card {
        padding: 32px 25px;
    }
}