* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2B4BEA;
    --secondary-color: #02ACDE;
    --accent-blue: #87CEEB;
    --light-bg: #F8FBFF;
    --white: #FFFFFF;
    --text-dark: #4D4D4D;
    --text-gray: #666666;
}

body {
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Alexandria', sans-serif !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ===== Scrollbar Style ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-blue));
}

/* ===== Firefox ===== */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-bg);
}


/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: #1E1E1E !important;
    font-weight: 400;
    font-size: 14px;
    margin: 0 0.5rem;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    position: relative;
    display: inline-block;
    padding: 14px 60px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    background: #fff;
    border: none;
    z-index: 1;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    background-image: linear-gradient(90deg, #2B4AEA 0%, #02ACDE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ø§Ù„Ø¨ÙˆØ±Ø¯Ø± Ø§Ù„Ø¬Ø±ÙŠØ¯Ù†Øª */
.btn-primary-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(90deg, #2B4AEA 0%, #02ACDE 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* hover */
.btn-primary-custom:hover {
    background: linear-gradient(90deg, #2B4AEA 0%, #02ACDE 100%);
    color: #fff;
    /* âœ… Ø§Ù„Ù†Øµ Ø£Ø¨ÙŠØ¶ */
    -webkit-background-clip: border-box;
    /* Ù†Ù„ØºÙŠ ØªØ£Ø«ÙŠØ± Ø§Ù„Ø¬Ø±ÙŠØ¯Ù†Øª Ø¹Ù„Ù‰ Ø§Ù„Ù†Øµ */
    -webkit-text-fill-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 123, 236, 0.204);
}

.btn-secondary-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 88px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(94.07deg, #2B4AEA 0%, #02ACDE 100%);
    border: none;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px 0px #00000040;
    overflow: hidden;
    color: #fff;
}

/* Gradient border */
.btn-secondary-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(94.07deg, #2B4AEA 0%, #02ACDE 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hover */
.btn-secondary-custom:hover {
    background: #fff;
    /* Ø§Ù„Ø®Ù„ÙÙŠØ© ØªØªØ­ÙˆÙ„ Ø£Ø¨ÙŠØ¶ */
    color: transparent;
    background-image: linear-gradient(94.07deg, #2B4AEA 0%, #02ACDE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Ø£ÙŠÙ‚ÙˆÙ†Ø© */
.btn-secondary-custom i {
    margin-left: 8px;
    /* Ù…Ø³Ø§ÙØ© Ø¨Ø³ÙŠØ·Ø© */
    color: #fff;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover i {
    color: transparent;
    background-image: linear-gradient(94.07deg, #2B4AEA 0%, #02ACDE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.navbar.transparent {
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.3s, box-shadow 0.3s;
}

.lang-btn {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--secondary-color),
        0 0 10px var(--primary-color);
}

/* ===== Offcanvas (Mobile Menu) ===== */
.offcanvas {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 16px 0 0 16px;
    padding: 20px;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.offcanvas-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.offcanvas-body .nav-link {
    color: var(--white) !important;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    transform: translateX(-5px);
    color: var(--accent-blue);
}

.offcanvas .btn-primary-custom {
    background: var(--white);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.offcanvas .btn-primary-custom:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.offcanvas .lang-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 6px 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.offcanvas .lang-btn img {
    width: 18px;
    filter: brightness(10);
}

/* âœ… ØªØ¹Ø¯ÙŠÙ„ Ø®Ø§Øµ Ø¯Ø§Ø®Ù„ offcanvas */
.offcanvas .btn-primary-custom {
    background: transparent;
    -webkit-text-fill-color: #fff;
    background-clip: border-box;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    width: 100%;
    text-align: center;
    border-radius: 50px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.offcanvas .btn-primary-custom::before {
    display: none;
    /* Ù†ÙˆÙ‚Ù ØªØ£Ø«ÙŠØ± Ø§Ù„Ø¨ÙˆØ±Ø¯Ø± Ø§Ù„Ø¬Ø±ÙŠØ¯Ù†Øª Ø§Ù„Ø¯Ø§Ø®Ù„ÙŠ */
}

.offcanvas .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* ===== Navbar Toggle (Hamburger) ===== */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.navbar-toggler:hover i {
    color: var(--secondary-color);
}


/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    /* overflow: hidden; */
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-images {
    position: relative;
    z-index: 2;
}

.floating-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.floating-image:hover {
    transform: translateY(-10px);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-cards {
    margin-top: 90px;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.tilted-card {
    position: relative;
    width: 260px;
    height: 260px;
}

/* White frame that rotates */
.card-frame {
    position: absolute !important;
    inset: 0 !important;
    border-radius: 16px !important;
    background: #fff !important;
    transform: rotate(-8deg) !important;
    transition: all 0.4s ease !important;
    z-index: 2 !important;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

/* Frame moves on hover */
.tilted-card:hover .card-frame {
    transform: rotate(0deg) translateY(-10px) !important;
}

/* Image inside frame - stays with frame */
.card-frame .image-content {
    position: absolute !important;
    inset: 12px !important;
    /* Border width */
    border-radius: 8px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Different shadow colors for each card */
.tilted-card.one:hover .card-frame {
    box-shadow: 4px 4px 250px 128px #02ACDE40 !important;
}

.tilted-card.two:hover .card-frame {
    box-shadow: 4px 4px 250px 128px rgba(50, 210, 150, 0.3);
}

.tilted-card.three:hover .card-frame {
    box-shadow: 4px 4px 250px 128px rgba(255, 138, 101, 0.3);
}

/* Decorative shapes */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    top: 20%;
    left: 5%;
    width: 52px;
    height: 52px;
    animation: float 3s ease-in-out infinite;

}

.shape-1 img {
    width: 100%;
    height: 100%;
}

.shape-2 {
    top: 60%;
    right: 5%;
    width: 70px;
    height: 32px;
    background: linear-gradient(180deg, #2B4AEA 0%, #02ACDE 100%);
    border-radius: 100% 0% 100% 0%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Partners Section */


.partner-logo img {
    max-height: 135px;
    /* Ø§Ø±ØªÙØ§Ø¹ Ù…ÙˆØ­Ø¯ */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.1);
}

/* =================== */
/* Stats Section */
/* =================== */

.stats-section {
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.stats-title {
    font-weight: 500;
    font-size: 34px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.stats-paragraph {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-top: 100px;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 40px;
    margin-top: 55px;
}

.stats-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.stats-cards {
    position: relative;
    width: 250px;
    height: 400px;
    margin-left: 0;
    margin-right: auto;
}

.stat-card {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 50px 0;
    border-radius: 12px;
    box-shadow: 0px 4px 30px 0px #0000000D;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
}

.stat-card:hover {
    transform: translateY(-10px) rotate(2deg);
}

.stat-number {
    font-size: 60px;
    font-weight: 200;
    color: #070A13;
    border-bottom: 1px solid #050E141A;
    margin-bottom: 22px;
    padding: 0 80px;
}

.stat-label {
    color: #19191A;
    font-weight: 600;
    font-size: 16px;

}

.stats-images {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.stats-images .main-img {
    border-radius: 15px;
    width: auto;
    height: auto;
    object-fit: cover;
}

.stats-images .overlay-img {
    position: absolute;
    bottom: -165px;
    left: -120px;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* ======================
   Services Section
   ====================== */
.services-section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
}

.services-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(90deg, #02ACDE -4.27%, #2B4AEA 100%);
    border-radius: 50%;
    top: 100px;
    left: 0;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.services-section .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.services-section .shape-1 {
    top: 78%;
    z-index: 0;

}

.services-section .shape-2 {
    top: 40%;
    z-index: 0;

}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.service-card {
    border-radius: 20px;
    padding: 12px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 30px 0px #0000000A;
    opacity: 1 !important;
    z-index: 2;
    position: relative;
    background: #fff;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.15);
}

.services-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 3rem;
    border-bottom: 1px solid #C0EAF7;
    position: relative;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #CFCFCF;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn.active {
    color: #1E1E1E;
    /* Ø£Ø³ÙˆØ¯ */
}

.filter-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--secondary-color);
}


.service-card__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-card__icon {
    width: 82px;
    height: 82px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -64px;
}

.service-card__icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-weight: 400;
    text-align: right;


}



/* CTA Section */
.cleaning-section {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.cleaning-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(90deg, #02ACDE -4.27%, #2B4AEA 100%);
    border-radius: 50%;
    top: 100px;
    left: 25%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.cta-subtitle {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.cleaning-section .container-fluid {
    height: 100%;
    position: relative;
}

.foam-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.sponge {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    z-index: 2;
    opacity: 0;
    transform-origin: center center;
}

.whatsapp-icon {
    position: absolute;
    font-size: 4rem;
    color: #0A1832;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0px 2px 8px 0px #00000007;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    overflow: hidden;
}

.whatsapp-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/water-drops.png");
    background-size: auto;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.whatsapp-icon i {
    position: relative;
    z-index: 1;
}


.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(100, 200, 255, 0.8);
    border-radius: 50%;
    opacity: 1;
}

.cleaning-section .btn-secondary-custom {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.cleaning-section .btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(43, 74, 234, 0.3);
}

.cleaning-section .arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(-70px) rotate(-20deg);
    opacity: 0;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    text-decoration: none;
}

.cleaning-section .arrow-icon i {
    font-size: 24px;
    color: #E8EBFD;
    background: #2B4BEA;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    transform: rotate(45deg);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Hover effect: arrow slides out from behind the button */
.cleaning-section .btn-secondary-custom:hover+.arrow-icon {
    transform: translate(-50%, -50%) translateX(-150px) rotate(0deg);
    opacity: 1;
    z-index: 3;
}


@media (max-width: 768px) {
    .sponge {
        width: 100px;
    }

    .whatsapp-icon {
        font-size: 2.5rem;
    }
}

.section-content {
    position: relative;
    z-index: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    padding: 20px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
}

.curvedv {
    position: absolute;
    left: 30%;
    top: 50%;
    pointer-events: none;
}

.blog-section .section-title {
    font-size: 48px;
    font-weight: 500;
    color: #333333;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 30px 0px #2B4BEA0F;
    transition: all 0.3s;
    height: 100%;
    padding: 12px;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 40px rgba(43, 75, 234, 0.09),
        0px 6px 20px rgba(0, 0, 0, 0.038);
}

.blog-image img {
    border-radius: 6px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card .arrow-icon {
    width: 50px;
    height: 50px;
    margin: 30px auto auto 0;
    background: #2B4BEA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8EBFD;
    font-size: 1.2rem;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(43, 75, 234, 0.25);
    cursor: pointer;
    transform: rotate(45deg);
    text-decoration: none;
}

.blog-card .arrow-icon:hover {
    background: #4169E1;
    transform: translateY(-4px) rotate(45deg);
    box-shadow: 0 10px 25px rgba(43, 75, 234, 0.35);
}


.blog-content {
    padding: 28px;
}

.blog-date {
    color: #B3B3B3;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.blog-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #1E1E1E;
}

.blog-description {
    color: var(--text-gray);
    line-height: 1.8;
}


.blogSwiper .swiper-pagination {
    text-align: right;
    margin-bottom: 20px;
}

.blogSwiper .swiper-pagination-bullet {
    position: relative;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1 !important;
}

/* âœ… gradient border Ø¨Ø§Ø³ØªØ®Ø¯Ø§Ù… pseudo-element */
.blogSwiper .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    /* Ø³Ù…Ùƒ Ø§Ù„Ø¨ÙˆØ±Ø¯Ø± */
    background: linear-gradient(180deg, #02ACDE 0%, #2B4AEA 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* âœ… Ø§Ù„Ø­Ø§Ù„Ø© Ø§Ù„Ù†Ø´Ø·Ø© */
.blogSwiper .swiper-pagination-bullet-active {
    background: linear-gradient(180deg, #2B4AEA 0%, #02ACDE 100%);
}

.custom-swiper-btn {
    color: #4D4D4D;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #f6f6f642;
    width: 45px;
    height: 45px;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.047),
        /* inner shadow */
        0 4px 10px rgba(0, 0, 0, 0.25);
    /* outer shadow */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
}

.custom-swiper-btn:hover {
    background: linear-gradient(180deg, #F9F9F9 0%, #f2f2f2 100%);
    transform: scale(1.05);
}

/* âœ… Ø¥Ø®ÙØ§Ø¡ Ø§Ù„Ø£Ø³Ù‡Ù… Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØ© */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    bottom: 20px !important;
    top: auto;
}

.swiper-button-prev {
    right: auto !important;
    left: 100px !important;
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.accordion-button {
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-body {
    background: var(--light-bg);
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Shapes */
.shape {
    position: absolute;
    z-index: 1;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    font-size: 4rem;
    background-color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0px 2px 8px 0px #00000005;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    right: 0px;
    transform: translate(-50%, -50%);
    text-decoration: none;
    z-index: 3;
    opacity: 1;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    overflow: hidden;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/water-drops.png");
    background-size: auto;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.whatsapp-float img {
    position: relative;
    z-index: 1;
    filter: saturate(5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
}