:root {
    --primary-color: #4387d9;
    --primary-dark: #2f5c92;
    --header-blue: #4387d9;
    --dark-blue: #171144;
    --gradient-primary: linear-gradient(135deg, #4387d9 0%, #215491 100%);
    --gradient-primary-hover: linear-gradient(135deg, #3a75b8 0%, #1a4470 100%);
    --gradient-dark: linear-gradient(135deg, #171144 0%, #0a0a1f 100%);
    --box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --cleanin-base: #004a94;
    --cleanin-base-rgb: 0, 74, 148;
}

.bg-main {
    background-color: var(--header-blue);
}
.bg-main-grd{
    background: linear-gradient(135deg, #4387d9 0%, #215491 100%) !important;
}
.text-primary{
    color: var(--primary-color);
}
.text-primary-dark{
    color: var(--primary-dark);
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
    position: relative;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.page-start{
    padding-top: 130px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.text-primary{
    color: var(--header-blue) !important;
}
.whatsapp_fixed {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    background: #2ab03f;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    z-index: 99;
}

.btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.waves {
    position: relative;
    width: 100%;
    height: 20vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.wave-bg > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wave-bg > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.wave-bg > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.wave-bg > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.top-bar {
    background-color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #0c1e2d;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item img {
    width: 17px;
    height: 17px;
}

.social-links img {
    width: 20px;
    height: auto;
}

.main-nav {
    background-color: var(--header-blue);
    height: 85px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Laila', serif;
    font-weight: 600;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-plus {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.nav-item {
    margin-right: 30px;
}

.nav-item a {
    font-size: 15px;
    font-family: 'Laila', serif;
    font-weight: 600;
    color: #ffffff;
    line-height: 47px;
}

.hero {
    height: 703px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    line-height: 60px;
    text-transform: uppercase;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.nav-arrow img {
    width: 10px;
    height: 60px;
}

.about-section {
    padding: 80px 0;
    position: relative;
}

.decorative-image {
    position: absolute;
    top: 0;
    left: 0;
}

.about-card {
    background-color: #f6f6f6;
    border-radius: 40px;
    box-shadow: 0px 1px 11px rgba(113, 113, 113, 0.32);
}

.about-title {
    font-size: 30px;
    font-weight: 600;
    color: #0a0a0a;
}

.about-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #454545;
    text-align: justify;
}

.about-visual {
    position: relative;
}

.about-bg {
    width: 100%;
    height: 495px;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    background-image: url(../assets/images/img_rectangle_2694.png);
    background-size: cover;
}

.about-stars {
    position: absolute;
    top: 60px;
    left: 0;
}

.star-large {
    width: 77px;
    height: 66px;
    background-color: var(--dark-blue);
}

.star-small {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.star-blue {
    width: 21px;
    height: 18px;
    background-color: #75b7ff;
}

.star-dark-blue {
    width: 29px;
    height: 25px;
    background-color: var(--primary-color);
}

.about-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 228px;
    height: 517px;
}

.services-title {
    font-size: 30px;
    font-weight: 600;
    color: #0c261a;
}

.services-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #515854;
}

.service-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    height: 100%;
    min-height: 370px;
}
.service-card img{
    height: 72px;
    width: auto !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.residential {
    background-color: #f1f7ff;
}

.service-card.commercial {
    background-color: #f0f7ff;
}

.service-card.event {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

.service-card.deep {
    background-color: #f1f7ff;
}

.service-icon {
    width: 72px;
    height: 72px;
}

.service-title {
    font-size: 20px;
    font-weight: 500;
}

.service-card.event .service-title {
    color: #ffffff;
}

.service-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #515854;
}

.service-card.event .service-description {
    color: #fffbf2;
}

.service-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 121px;
    height: 136px;
}

.why-choose-section {
    background-color: #eef5ff;
}

.why-choose-title {
    font-size: 30px;
    font-weight: 600;
    color: #0c261a;
}

.why-choose-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #515854;
}

/* Areas we cover */
.areas-section {
    background-color: #eef7ff;
}
.areas-card {
    background: #ffffff;
    border-radius: .8rem;
    padding: 1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.areas-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--header-blue);
}
.areas-desc {
    color: #6c757d;
}
.areas-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}
.areas-list li {
    position: relative;
    padding: .5rem .9rem .5rem 1.6rem;
    margin-bottom: .65rem;
    text-align: center;
    color: #2a2a2a;
    background: #ffffff;
    border: 1px solid rgba(67, 135, 217, 0.317);
    border-radius: .5rem;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, color .12s ease;
}
/* .areas-list li:before {
    content: '\2022';
    color: var(--primary-color);
    position: absolute;
    left: .7rem;
    top: .45rem;
    font-size: 14px;
    line-height: 1;
} */
.areas-list li:hover {
    color: var(--primary-color);
    border-color: rgba(67,135,217,0.2);
    box-shadow: 0 8px 24px rgba(67,135,217,0.06);
    transform: translateY(-3px);
}
@media (max-width: 767px) {
    .areas-list li { padding: .45rem .6rem .45rem 1.4rem; }
}
@media (max-width: 767px) {
    .areas-title { font-size: 24px; }
    .areas-list { padding-left: 0; }
    .areas-map iframe { height: 200px; }
}

.feature-number {
    position: relative;
    width: 77px;
    height: 77px;
}

.number-bg {
    width: 36px;
    height: 36px;
    background-color: #bcd0e9;
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.number-text {
    font-size: 56px;
    font-family: 'Rubik Doodle Shadow', cursive;
    font-weight: 400;
    color: var(--dark-blue);
    position: absolute;
    top: 0;
    left: 12px;
}

.feature-content h3 {
    font-size: 21px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1a1a1a;
}

.images-stack {
    position: relative;
}

.image-1 {
    position: absolute;
    top: 30px;
    left: 0;
    width: 384px;
    height: 550px;
    border-radius: 90px;
}

.image-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 337px;
    height: 337px;
    border-radius: 90px;
}

.image-3 {
    position: absolute;
    bottom: 0;
    right: 35px;
    width: 338px;
    height: 338px;
    border-radius: 90px;
}

.stats-section {
    background: linear-gradient(180deg, #96c6ff 0%, #c5dfff 50%, #96c6ff 100%);
    border-radius: 18px;
}

.stat-icon {
    width: 100px;
    height: 100px;
}

.stat-content h3 {
    font-size: 42px;
    font-family: 'Laila', serif;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 66px;
}

.stat-content .stat-label {
    font-size: 30px;
    font-family: 'Laila', serif;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 47px;
}

.stat-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #454545;
    text-align: justify;
}

.options-title {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

.option-image {
    width: 160px;
    height: auto;
}

.option-title {
    font-size: 24px;
    font-family: 'Laila', serif;
    font-weight: 600;
    color: #1a1a1a;
}

.option-description {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.testimonials-section {
    background-color: var(--primary-dark);
}

.testimonials-label {
    font-size: 16px;
    font-weight: 400;
    color: #c0ddff;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    line-height: 46px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: left;
}

.quote-icon {
    width: 48px !important;
    height: 48px;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    color: #ffffff;
}

.rating {
    width: 100px  !important;
    height: 17px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.reviewer-title {
    font-size: 14px;
    font-weight: 500;
    color: #eceaea;
}

.nav-dot {
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    border-radius: 4px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    width: 40px;
}

.nav-dot:hover {
    transform: scale(1.2);
}

.contact-image {
    border-radius: 40px;
}

.contact-form {
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: 0px 10px 23px rgba(131, 139, 149, 0.15);
}

.form-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    color: #051625;
}

.form-title .highlight {
    color: #4977e5;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #0f1019;
}

.form-input {
    height: 49px;
    border: 1px solid rgba(147, 148, 158, 0.4);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 135, 217, 0.1);
}

.footer {
    background-color: var(--primary-dark);
}

.footer-logo {
    width: 206px;
    height: 54px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.74);
}

.address-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 28px;
        line-height: 36px;
    }

    .about-visual {
        margin-top: 40px;
    }

    .images-stack {
        margin-top: 40px;
        height: auto;
    }

    .image-1, .image-2, .image-3 {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 36px;
    }

    .services-title, .why-choose-title, .options-title {
        font-size: 26px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .form-title {
        font-size: 24px;
    }

    .stat-content h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .stat-content .stat-label {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .services-title, .why-choose-title, .options-title {
        font-size: 22px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .form-title {
        font-size: 20px;
    }
}

.page-header {
    background: linear-gradient(rgba(33, 84, 145, 0.9), rgba(33, 84, 145, 0.5)),  url('../assets/images/page-header-bg.jpg'), no-repeat center center/cover;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: inline-flex;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
    padding: 0 0.5rem;
}

.services-section {
    position: relative;
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
}

.services-section .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

/* .services-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
} */


.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: white !important;
}

.service-card h3 {
    position: relative;
    transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .feature-item {
    color: white !important;
}

.service-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #6c757d;
    transition: var(--transition);
}

.feature-item i {
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* CTA Section */
 .cta-banner {
            background-color: var(--primary-dark)!important; /* Deep blue background */
            border-radius: 10px;
            color: white;
        }
        
        .btn-booking {
            background-color: #438a50; /* Green button color */
            border-color: #438a50;
            color: white;
            padding: 12px 30px;
            border-radius: 50px; /* Fully rounded corners */
            font-weight: 500;
        }

        .btn-booking:hover {
            background-color: #366d40;
            color: white;
        }

.cta-section .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.cta-section .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-section .btn-light:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: white;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
    border-color: white;
}

/* Hero Section */
.pricing-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    padding: 120px 0 80px;
    color: white;
    position: relative;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
    border-top: 4px solid transparent;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    background: white;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

/* Popular Plan Styling */
.pricing-card.popular {
    border-top: 4px solid #0d6efd;
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.25);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-header {
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.popular .pricing-header {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .pricing-header::before {
    opacity: 1;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0 10px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.pricing-price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    border-radius: 3px;
}

.pricing-features {
    padding: 30px;
}

.feature-item-p {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 10px;
}

.feature-item-p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #215491;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-item-p:hover {
    padding-left: 15px;
    background: rgba(13, 110, 253, 0.03);
}

.feature-item-p:hover::before {
    opacity: 1;
    left: 0;
}

.feature-item-p i {
    margin-right: 12px;
    color: #215491;
    background: rgba(13, 110, 253, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.feature-item-p:hover i {
    background: #0d6efd;
    color: white;
    transform: scale(1.1);
}

/* Pricing Display Section */
.pricing-display-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-option-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.pricing-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #215491, #0dcaf0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-option-card:hover::before {
    opacity: 1;
}

.pricing-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.pricing-option-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #215491;
}

/* Animation */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-price {
        font-size: 2.8rem;
    }
    
    .pricing-card.popular {
        transform: none;
        margin: 20px 0;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .popular-badge {
        right: -30px;
        padding: 3px 30px;
        font-size: 10px;
    }
}


/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .page-header {
        padding: 5rem 0 7rem;
    }
    
    .services-section,
    .cta-section {
        padding: 5rem 0;
    }
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 4rem 0 6rem;
    }
    
    .services-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 3.5rem 0 5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-section,
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 3rem 0 4.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
    
    .service-icon {
        width: 70px !important;
        height: 70px !important;
    }
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
} */

.service-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #86b5ed, var(--primary-dark));*/
     background: linear-gradient(126deg, #e0edfb, var(--primary-dark));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .btn-outline-primary {
    color: #fff !important;
}

.service-card:hover .btn-outline-primary {
    border-color: var(--primary-dark)!important;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(358deg, #e2effe, var(--primary-dark));;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-light {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* About Section */
       
.step-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    position: absolute;
    left: -60px;
    top: 0;
   
}
        

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }

        .feature-box {
            display: flex;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--header-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        
        

       
       
       
        

        /* CTA Section */
       

        
        @media (max-width: 991.98px) {
            .about-content {
                margin-top: 40px;
            }
        }
   /* Inline styles moved from HTML files */

/* Navbar Styles */
.navbar-custom {
    background-color: var(--primary-dark) !important;
    padding: 0.75rem 0;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 30px;
    letter-spacing: 2px;
}

.cta-button {
    font-size: 1.2rem;
    padding: 0.75rem 2.5rem;
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(67, 135, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.small-icon-box {
    min-width: 50px;
    height: 50px;
    background-color: rgba(67, 135, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Content Boxes */
.content-box {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative Elements */
.decorative-icon {
    font-size: 3rem;
    opacity: 0.1;
    color: var(--primary-color);
}

/* Image Styles */
.img-clean-tools {
    max-height: 300px;
    opacity: 0.1;
}

/* Shadow Effects */
.shadow-custom {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Background Overlay */
.bg-overlay-primary {
    position: relative;
}

.bg-overlay-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 84, 145, 0.9) 0%, rgba(67, 135, 217, 0.9) 100%);
    z-index: 0;
}

/* Utility Classes */
.wave-separator {
    color: #f8f9fa;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

/* Blog Detail Page Styles */
.blog-content {
    line-height: 1.8;
    color: #333;
}

.blog-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a4365;
}

.blog-content .lead {
    font-size: 1.2rem;
    color: #4a5568;
}

.blog-content img {
    margin: 2rem 0;
}

.author-box {
    border-left: 3px solid #2b6cb0;
    padding-left: 1.5rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .blog-content h1 {
        font-size: 1.8rem;
    }
    
    .blog-content h2 {
        font-size: 1.4rem;
    }
}

/* Blog Detail Page Styles */
.blog-content {
    line-height: 1.8;
    color: #333;
}

.blog-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a4365;
}

.blog-content .lead {
    font-size: 1.2rem;
    color: #4a5568;
}

.blog-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-meta a {
    color: inherit;
    text-decoration: none;
}

.blog-meta a:hover {
    color: #0d6efd;
}

.blog-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    margin: 2rem 0;
}

.blog-quote i {
    color: #0d6efd;
}

.blog-tags-share {
    padding-top: 1.5rem;
}

/* Sidebar Styles */
.sidebar {
    padding-left: 1.5rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.recent-post {
    margin-bottom: 1rem;
}

.recent-post img {
    object-fit: cover;
}

.recent-post h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.tag-cloud a {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: #fff;
    border-radius: 0.25rem;
    text-decoration: none;
}

.tag-cloud a:hover {
    background: #e9ecef;
}

@media (max-width: 992px) {
    .sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
}

/* Blog Detail Styles */
.blog-detail {
    padding-top: 60px;
    background-color: #f8f9fa;
}

.featured-image {
    max-height: 500px;
    overflow: hidden;
}

.featured-image img {
    object-fit: cover;
    height: 500px;
    width: 100%;
}

.blog-content {
    border-radius: 8px;
}

.post-meta {
    color: #6c757d;
}

.post-meta a {
    color: #2a4365;
    font-weight: 500;
}

.post-body {
    line-height: 1.8;
    color: #333;
}

.post-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a4365;
}

.post-body .lead {
    font-size: 1.2rem;
    color: #4a5568;
}

.author-box {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .featured-image img {
        height: 300px;
    }
    
    .blog-content,
    .author-box {
        padding: 1.5rem !important;
    }
}
 