* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background: #f1f5f9 !important;
}

/* Header Section */
.navbar {
    border-bottom: 1px solid #47556967;
}

.header a:hover {
    color: #0ea5e9 !important;
}

.start {
    background-color: #0ea5e9 !important;
}

.start:hover {
    background-color: #000 !important;
}

/* Hero Section */
.hero-section {
    min-height: 100;
    background: #dfeef9;
    display: flex;
    align-items: center;
    padding: 180px 0;
}

.hero-subtitle {
    letter-spacing: 1px;
    font-weight: 600;
    color: #0d99ff;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
}

.hero-text {
    color: #64748b;
    font-size: 1.05rem;
    margin-top: 15px;
}

.btn-hero {
    padding: 14px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.btn-primary-hero {
    background: #0d99ff !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover .arrow {
    transform: translateX(5px);
}

.watch-btn {
    font-weight: 600 !important;
    color: #0d99ff !important;
    transition: all 0.3s ease;
}

.watch-btn i {
    font-size: 22px;
}

.watch-btn:hover {
    transform: translateX(8px);
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all .35s ease;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 10px rgba(0, 153, 255, 0.25);
    border: 1px solid #0ea5e9 !important;
}

.hero-card.active {
    background: linear-gradient(135deg, #0d99ff, #38bdf8);
    color: #fff;
}

.hero-card.active p {
    color: #e0f2fe;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #cae5f9;
    color: #0d99ff;
}

.hero-card:hover .card-icon {
    transform: rotate(-20deg);
}

.hero-card.active .card-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.card-text h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 14px;
    color: #6b7280;
}

/* Media Query */
@media(max-width:992px) {
    .hero-title {
        font-size: 2.4rem;
    }
}


/* About Section */
.about-section {
    padding: 100px 0;
}

.section-heading {
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
}

.section-heading span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0ea5e9;
    text-transform: uppercase;
}

.section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    width: 45px;
    height: 2.5px;
    background-color: #0ea5e9;
    transform: translateY(-50%);
}

.about-img-wrapper {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-img-bg {
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease;
}

.about-img-bg img {
    width: 90%;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img-bg img {
    transform: scale(1.03);
}

.about-img-front {
    position: absolute;
    bottom: -80px;
    right: -8px;
    width: 50%;
    height: 350px;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 6px;
    box-shadow: 0 10px 10px #c4c3c3;
    transition: all 0.6s ease;
}

.about-img-front img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    top: 40px;
    left: -40px;
    z-index: 5;
    background: #0ea5e9;
    color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    animation: floatBadge 3s ease-in-out infinite;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover .experience-badge {
    transform: translateX(30px) translateY(10px) scale(0.95);
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}

.feature-box {
    background: #fff;
    cursor: pointer;
    border: 1px solid #47556922;
    transition: all 0.35s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid #0ea5e9;
}

.feature-box i {
    color: #0ea5e9;
}

.stat h3 {
    color: #0ea5e9;
    font-size: 35px;
    font-weight: 700;
}

.stat {
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px);
}

.btn-main {
    background: #0ea5e9 !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
}

.btn-main:hover {
    background: #0ea5e9 !important;
}

/* Service Section */
.section-title {
    padding: 70px;
}

.title {
    font-size: 36px;
    font-weight: 600;
    color: #0f172a;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 60px;
    height: 3px;
    background-color: #0ea5e9;
    transform: translateX(-50%);
}

.title-desc {
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.title:hover::after {
    width: 90px;
    transition: 0.3s ease;
}

.service {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all .35s ease;
}

.service:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 20px rgba(0, 0, 0, .05);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #eaf6ff;
    color: #0ea5e9;
    transition: all .5s ease;
}

.service:hover .service-icon {
    background: #0ea5e9;
    color: #fff;
    transform: rotate(-20deg);
}

.service h4 {
    font-weight: 700;
    margin: 25px 0 15px;
    color: #0f172a;
}

.service p {
    color: #64748b;
    font-size: 17px;
    font-weight: 600;
}

.service a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0ea5e9;
    text-decoration: none;
    margin-top: 25px;
    transition: .35s ease;
}

.service a i {
    transition: .35s ease;
}

.service:hover a i {
    transform: translateX(6px);
}

.service.popular {
    background: #0ea5e9;
    color: #fff;
}

.service.popular p,
.service.popular h4,
.service.popular a {
    color: #fff;
}

.service.popular .service-icon {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

.service.popular:hover .service-icon {
    background: #fff;
    color: #0d99ff;
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
}

/* Delivered Section */
.Delivered {
    background-color: #dfeff8;
    border-radius: 18px;
    padding: 40px 20px;
}

.Delivered .count {
    font-size: 40px;
    font-weight: 700;
    color: #1597ff;
    margin-bottom: 5px;
}

.Delivered .label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #655f69;
}

/* Portfolio Section */
.portfolio-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.portfolio-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #0099ff;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 3px 3px #9999999f;
    z-index: 2;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 153, 255, 0.445), rgba(0, 153, 255, 0.023));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-img:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #0099ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.portfolio-icon:hover {
    background: #0099ff;
    color: #fff;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-content p {
    color: #6c757d;
    font-size: 15px;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tech span {
    background: #e9f6ff;
    color: #0099ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 5px;
}

.year {
    color: #9aa5b1;
    font-size: 14px;
}

/* Ready Section */
.ready {
    position: relative;
    background: linear-gradient(135deg, #1aa3f8, #1c8fe5);
    border-radius: 40px;
    padding: 50px 20px;
    overflow: hidden;
    color: #fff;
}

.ready::before,
.ready::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.ready::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.ready::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
}

.ready .circle {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 35%;
    left: 20%;
}

.ready .badge-ready {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.ready .btn-launch {
    background: #fff !important;
    color: #1c8fe5 !important;
    padding: 15px 30px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    transition: 0.3s;
}

.ready .btn-launch:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-3px);
}

.ready .btn-outline {
    border: 2px solid #fff !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    transition: 0.3s;
}

.ready .btn-outline:hover {
    background: #fff !important;
    color: #1c8fe5 !important;
    transform: translateY(-3px);
}

/* Why Us Section */
.why {
    padding: 100px 0;
}

.why-sticky-wrap {
    height: 180vh;
}

.why-left {
    position: sticky;
    top: 100px;
}

.why-badge {
    display: inline-block;
    background: #0ea5e9;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 22px 25px;
    border-left: 5px solid #0ea5e9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.btn-main {
    background: #0ea5e9;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-main:hover {
    background: #0ea5e9;
    color: #fff;
}

.btn-outline-main {
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-outline-main:hover {
    background: #0ea5e9;
    color: #fff;
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    transition: 0.35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid #0ea5e9;
}

.why-card:hover .why-icon {
    transform: rotateY(180deg);
    background-color: #ffffff;
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.featured {
    background: linear-gradient(135deg, #f7fbff, #eef6ff);
    position: relative;
    overflow: hidden;
}

.featured::after {
    content: "TOP RATED";
    position: absolute;
    top: 18px;
    right: -45px;
    background: #0ea5e9;
    color: #fff;
    padding: 6px 50px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.why-badge {
    background: #0ea5e9;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border-left: 5px solid #0ea5e9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.btn-main {
    background: #0ea5e9;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-main:hover {
    background: #0ea5e9;
}

.btn-outline-main {
    border: 2px solid #0ea5e9 !important;
    color: #0ea5e9 !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
}

.btn-outline-main:hover {
    background: #0ea5e9 !important;
    color: #fff !important;
}

.right-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.step-circle {
    width: 48px;
    height: 48px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-line {
    height: 2px;
    background: linear-gradient(to right, #0ea5e9, #0ea4e937);
    margin-top: 24px;
}

.bring-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.bring-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
    border: 1px solid #0ea5e9;
}

.bring-card:hover .bring-icon {
    transform: rotate(-25deg) translateX(10px);
    background: #0ea5e9;
    color: #fff;
}

.bring-icon {
    width: 56px;
    height: 56px;
    background: #e9f5ff;
    color: #0ea5e9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

/* Media Query */
@media (max-width: 991px) {
    .why-sticky-wrap {
        height: auto;
    }

    .why-left {
        position: static;
    }

    .step-line {
        display: none;
    }
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: #dfeff8;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c8e7f6;
    color: #0ea5e9;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.client-avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    transition: all 0.4s ease;
}

.client-avatars img:hover {
    transform: scale(1.2);
}

.client-avatars span {
    width: 60px;
    height: 60px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-left: -10px;
    border: 3px solid #fff;
}

.btn-review {
    background: #0ea5e9 !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
}

.btn-review:hover {
    background: #0ea4e961 !important;
    color: #fff !important;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.5s ease;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    font-size: 25px;
    background: #eaf6ff;
    color: #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.testi-card:hover .quote-icon {
    transform: scale(1.1) translateX(-20px);
    background-color: #0ea5e9;
    color: #fff;
}

.user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #c8eafa;
}

.carousel-indicators [data-bs-target] {
    width: 20px !important;
    height: 3px !important;
    border-radius: 50% !important;
    background: #0ea4e9 !important;
}


/* Team Section */
.team {
    padding: 60px 0;
}

.team-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, #6dc5ee);
    opacity: 0;
    transition: 0.4s;
}

.team-social {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: 0.4s;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #14a4e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.team-social a:hover {
    transform: translateY(-8px);
    background: #0ea4e9;
    color: #fff;
}

.team-content {
    padding: 30px 20px;
    text-align: center;
}

.team-badge {
    display: inline-block;
    padding: 6px 25px;
    font-size: 14px;
    border-radius: 20px;
    background: #e8f6fd;
    color: #14a4e5;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-content h5 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-content p {
    color: #6c757d;
    margin: 0;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-social {
    opacity: 1;
}


/* State Section */
.stats-section {
    padding: 80px 0;
}

.stats-box {
    background: #fff;
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #14a4e5;
    line-height: 1;
}

.stat-text {
    margin-top: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #8a94a6;
}

.stat-divider {
    width: 2px;
    background: #e6ebf1;
    height: 80px;
}

/* Media Query */
@media (max-width:768px) {
    .stat-divider {
        display: none;
    }
}


/* Contact Section */
.contact-section {
    background: #f4f8fb;
    padding: 80px 0;
}

.contact-info {
    background: linear-gradient(180deg, #14a2e3, #0d8ac5);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-6px);
}

.contact-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    transition: all 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #14a2e3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-stats {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 30px;
}

.contact-stats h4 {
    margin: 0;
    font-weight: 700;
}

.contact-social a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #fff;
    color: #14a2e3;
    transform: translateY(-4px);
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-input {
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.contact-input:focus {
    border: 1px solid #14a2e3 !important;
    box-shadow: none !important;
}

.contact-btn {
    background: #14a2e3 !important;
    color: #fff !important;
    padding: 14px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #0d8ac5 !important;
    box-shadow: 0 0 2px 2px rgba(42, 181, 246, 0.45) !important;
    transform: translateY(-2px);
}



/* Footer Section */
.footer-section {
    background: #f9f9f9;
    padding: 70px 0 30px;
    border-top: 1px solid #eee;
    font-size: 15px;
    margin-top: 100px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.footer-desc {
    color: #7c7d7e;
    line-height: 1.7;
    margin: 20px 0;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    width: 24px;
    height: 3px;
    background: #0ea5e9;
    display: block;
    margin-top: 6px;
}

.footer-links a {
    display: block;
    color: #7c7d7e;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: #0ea5e9;
    transform: translateX(6px);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 10px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    margin-right: 8px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #0ea5e9;
    color: #fff;
    transform: translateY(-4px);
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter input {
    padding: 14px 50px 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.footer-newsletter input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(13, 153, 255, .2);
}

.footer-newsletter button {
    position: absolute;
    top: 6px;
    right: 5px;
    width: 47px;
    height: 47px;
    border-radius: 10px;
    background: #0ea5e9;
    border: none;
    color: #fff;
    transition: .3s;
}

.footer-newsletter button:hover {
    background: #0078d4;
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 50px;
    font-weight: 600;
    padding-top: 20px;
    font-size: 16px;
}

.footer-bottom a {
    color: #7c7d7e;
    text-decoration: none;
    margin-left: 16px;
}

.footer-bottom a:hover {
    color: #0d99ff;
}


/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.scroll-top:hover {
    background-color: #026a9ae8;
    color: #fff;
}