:root {
    --mint: #AAFFC7;
    --green: #67C090;
    --teal: #215B63;
    --navy: #124170;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.6);
    --shadow: 0 20px 50px rgba(18, 65, 112, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.5s all ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo-img { height: 35px; }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.main-brand { font-size: 24px; font-weight: 900; color: var(--navy); }
.sub-brand { font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: 1px; }

.desktop-nav ul { display: flex; list-style: none; gap: 10px; }

.nav-link {
    text-decoration: none;
    color: var(--teal);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: 0.3s;
}

.nav-link.active {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(103, 192, 144, 0.4);
    transform: translateY(-2px);
}

.btn-call {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(18, 65, 112, 0.3);
}

.btn-call:hover { transform: scale(1.05); }

.burger-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-icon span { width: 30px; height: 4px; background: var(--navy); border-radius: 4px; transition: 0.3s; }

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 65, 112, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}

.side-menu.active { right: 0; }

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 25px;
    background: var(--mint);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--navy);
    cursor: pointer;
}

.side-logo { text-align: center; margin-bottom: 40px; }
.side-logo img { height: 60px; }

.side-nav-links { display: flex; flex-direction: column; gap: 15px; }

.side-link {
    text-decoration: none;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.side-link i { color: var(--green); font-size: 20px; }

.side-link.active {
    background: var(--navy);
    color: var(--mint);
}

.side-link.active i { color: var(--mint); }

.side-footer { margin-top: auto; }

.side-call {
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    font-weight: 800;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f0fff4 0%, var(--mint) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-elements { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; }

.fluid-shape {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.6;
    animation: moveFluid 20s infinite alternate linear;
}

.shape-1 { width: 600px; height: 600px; background: var(--green); top: -200px; right: -100px; }
.shape-2 { width: 500px; height: 500px; background: var(--teal); bottom: -150px; left: -100px; animation-delay: -5s; }

@keyframes moveFluid {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 80px) scale(1.1); }
}

.floating-item { position: absolute; z-index: 2; opacity: 0.4; animation: float 6s infinite ease-in-out; }

.bubble-1 { width: 100px; height: 100px; border: 2px solid var(--white); border-radius: 50%; top: 20%; left: 10%; }
.bubble-2 { width: 60px; height: 60px; border: 1px solid var(--white); border-radius: 50%; bottom: 30%; right: 15%; animation-delay: 2s; }

.icon-clean-1 { font-size: 50px; color: var(--navy); top: 15%; right: 15%; animation-delay: 1s; }
.icon-clean-2 { font-size: 40px; color: var(--green); bottom: 20%; left: 15%; animation-delay: 3s; }
.icon-clean-3 { font-size: 60px; color: var(--teal); top: 50%; left: 5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

.wave-container { position: absolute; bottom: 0; width: 100%; line-height: 0; z-index: 3; }
.waves { position: relative; width: 100%; height: 15vh; min-height: 100px; max-height: 150px; }
.parallax > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

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

.hero-content-wrapper { position: relative; z-index: 10; display: flex; justify-content: center; }

.glass-hero-box {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px 40px;
    border-radius: 40px;
    max-width: 800px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: zoomInFade 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomInFade {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 20px; color: var(--navy); }
.accent-text { color: var(--green); position: relative; }

.hero-description { font-size: 18px; line-height: 1.8; color: var(--teal); margin-bottom: 35px; font-weight: 600; }

.hero-btns { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }

.btn-cta {
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    transition: 0.3s;
}

.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 10px 30px rgba(103, 192, 144, 0.4); }
.btn-secondary { border: 2.5px solid var(--navy); color: var(--navy); }

.btn-cta:hover { transform: translateY(-5px); }

.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

.stat-item { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 15px; color: var(--navy); }
.stat-icon { font-size: 22px; color: var(--green); }

@media (max-width: 1024px) {
    .desktop-nav, .desktop-only { display: none; }
    .burger-icon { display: flex; }
    .hero-title { font-size: 36px; }
    .hero-btns { flex-direction: column; }
    .btn-cta { width: 100%; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 28px; }
    .hero-description { font-size: 16px; }
    .glass-hero-box { padding: 30px 20px; margin: 0 10px; }
}
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #AAFFC7 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999; 
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}
#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
}

.splash-logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo {
    width: 100px;
    z-index: 2;
    animation: splashPulse 2s infinite ease-in-out;
}

.splash-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #67C090;
    border-bottom-color: #124170;
    border-radius: 50%;
    animation: spinRing 1.5s linear infinite;
}

.splash-text {
    font-family: 'Cairo', sans-serif;
    color: #124170;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.loading-dot {
    display: inline-block;
    animation: dots 1.5s infinite;
    font-size: 1.5rem;
    color: #67C090;
}

.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes splashPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(103, 192, 144, 0)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 20px rgba(103, 192, 144, 0.5)); }
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dots {
    0%, 20% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
    100% { opacity: 0; transform: translateY(0); }
}
:root {
    --mint: #AAFFC7;
    --green: #67C090;
    --teal: #215B63;
    --navy: #124170;
    --white: #ffffff;
}

.about-modern {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--white), #f9fdfc);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-visual {
    flex: 1;
    position: relative;
}

.image-composition {
    position: relative;
    padding: 40px;
}

.back-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--mint);
    border-radius: 40px;
    z-index: 1;
    animation: rotateSlow 20s infinite linear;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(18, 65, 112, 0.15);
}

.about-img-main {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.main-image-wrapper:hover .about-img-main {
    transform: scale(1.08);
}

.floating-badge-about {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--navy);
    padding: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.badge-text {
    color: var(--mint);
    font-weight: 800;
    font-size: 15px;
}

.about-info {
    flex: 1.1;
}

.sub-heading {
    color: var(--green);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-highlight {
    color: var(--teal);
    position: relative;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--mint);
    z-index: -1;
    opacity: 0.6;
}

.about-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item-box {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #edf2f7;
    transition: 0.3s;
}

.stat-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(103, 192, 144, 0.1);
    border-color: var(--green);
}

.icon-wrap {
    font-size: 28px;
    color: var(--green);
}

.count-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-data p {
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    margin-top: 5px;
}

.about-footer-btn {
    margin-top: 50px;
}

.cta-about-btn {
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(18, 65, 112, 0.2);
}

.cta-about-btn:hover {
    background: var(--teal);
    box-shadow: 0 15px 35px rgba(33, 91, 99, 0.3);
    transform: scale(1.05);
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .about-container { flex-direction: column; text-align: center; gap: 60px; }
    .image-composition { max-width: 500px; margin: 0 auto; }
    .text-highlight::after { left: 50%; transform: translateX(-50%); }
    .stats-showcase { grid-template-columns: 1fr 1fr; }
    .main-heading { font-size: 32px; }
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(18, 65, 112, 0.2));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.main-brand {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
}

.sub-brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
}
.premium-services {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f0fff4, #AAFFC7);
    position: relative;
    overflow: hidden;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.badge-accent {
    background: var(--navy);
    color: var(--mint);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(18, 65, 112, 0.2);
}

.glow-text {
    color: var(--green);
    text-shadow: 0 0 15px rgba(103, 192, 144, 0.3);
}

.intro-p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--teal);
    font-weight: 600;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-item-block {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-item-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    position: relative;
}

.image-mask {
    width: 100%;
    height: 450px;
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    border-radius: 40px;
    box-shadow: var(--shadow);
    z-index: 5;
    position: relative;
}

.image-mask.alternate {
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s transform;
}

.service-item-block:hover img {
    transform: scale(1.1);
}

.floating-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--green);
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: 1;
    opacity: 0.3;
    animation: move-shape 6s infinite alternate ease-in-out;
}

.floating-shape.second {
    background: var(--navy);
    right: -30px;
    left: auto;
    bottom: -30px;
    top: auto;
}

@keyframes move-shape {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

.service-text {
    flex: 1.2;
}

.icon-tag {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.service-text h3 {
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 25px;
}

.service-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: justify;
}

.service-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.service-points li {
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-points li i {
    color: var(--green);
}

.service-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 800;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(18, 65, 112, 0.3);
}

.service-cta:hover {
    background: var(--green);
    transform: translateX(-10px);
}

@media (max-width: 1024px) {
    .service-item-block, .service-item-block.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .image-mask { height: 350px; clip-path: none; border-radius: 30px; }
    .icon-tag { margin: 0 auto 25px; }
    .service-text h3 { font-size: 28px; }
}
.modern-blog-section {
    padding: 120px 0;
    background: #fdfdfd;
    position: relative;
}

.blog-top-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.blog-mini-title {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.blog-main-heading {
    font-size: 45px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.blog-main-heading .highlight {
    color: var(--teal);
    position: relative;
}

.blog-main-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--mint);
    z-index: -1;
    opacity: 0.5;
}

.blog-subtext {
    font-size: 18px;
    color: #556677;
    margin-top: 20px;
}

.blog-flex-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.premium-blog-card {
    display: flex;
    background: var(--white);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(18, 65, 112, 0.06);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(103, 192, 144, 0.1);
}

.premium-blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(18, 65, 112, 0.12);
    border-color: var(--green);
}

.blog-card-img {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.premium-blog-card:hover .blog-card-img img {
    transform: scale(1.15) rotate(2deg);
}

.post-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
}

.blog-card-body {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-tag {
    color: var(--green);
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.blog-card-body h3 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--navy);
    transition: 0.3s;
}

.premium-blog-card:hover h3 {
    color: var(--teal);
}

.blog-card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #6a7a8a;
    margin-bottom: 25px;
}

.blog-action {
    text-decoration: none;
    color: var(--navy);
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.blog-action i {
    font-size: 12px;
    background: var(--mint);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.blog-action:hover {
    color: var(--green);
}

.blog-action:hover i {
    background: var(--green);
    color: white;
    transform: translateX(-5px);
}

@media (max-width: 1024px) {
    .blog-flex-container { grid-template-columns: 1fr; }
    .premium-blog-card { max-width: 700px; margin: 0 auto; }
}

@media (max-width: 600px) {
    .premium-blog-card { flex-direction: column; }
    .blog-card-img { height: 220px; }
    .blog-card-body { padding: 25px; }
    .blog-main-heading { font-size: 30px; }
}
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0fff4 0%, var(--mint) 50%, #ffffff 100%);
    position: relative;
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.reviews-badge {
    background: var(--navy);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.text-teal {
    color: var(--teal);
}

.reviews-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(18, 65, 112, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.review-card::before {
    content: '\f10e';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: var(--green);
    opacity: 0.1;
}

.review-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(18, 65, 112, 0.1);
    border-color: var(--green);
}

.rating-stars {
    margin-bottom: 20px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 14px;
    margin-left: 2px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #445566;
    margin-bottom: 25px;
    font-style: italic;
}

.client-name {
    font-weight: 800;
    color: var(--navy);
    font-size: 17px;
    border-right: 3px solid var(--green);
    padding-right: 15px;
}

@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-title { font-size: 32px; }
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 30px; }
}
.image-mask, .image-mask.alternate {
    width: 100%;
    height: 450px; 
    clip-path: none !important; 
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 5;
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.8s transform;
}
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(145deg, #0a2536 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-header {
    margin-bottom: 60px;
    text-align: right;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.icon-title i {
    font-size: 35px;
    color: var(--green);
}

.icon-title h2 {
    font-size: 40px;
    font-weight: 900;
}

.why-subtitle {
    font-size: 18px;
    color: var(--soft-blue);
    opacity: 0.8;
}

.features-progress-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
}

.feature-row {
    position: relative;
    background: #000000;
    border-radius: 50px;
    padding: 5px;
    overflow: hidden;
    transition: 0.4s;
}

.feature-row:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(103, 192, 144, 0.2);
}

.feature-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
    z-index: 5;
}

.feature-percent {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
}

.feature-desc {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-align: left;
}

.progress-line {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, transparent, rgba(103, 192, 144, 0.15));
    transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.feature-row.visible .progress-line {
    width: var(--w);
}

@media (max-width: 768px) {
    .feature-bar-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
    .feature-desc {
        text-align: center;
        font-size: 16px;
    }
    .icon-title h2 {
        font-size: 30px;
    }
}
.why-us-split {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-content-side {
    flex: 1.2;
}

.why-label {
    background: rgba(170, 255, 199, 0.15);
    color: var(--mint);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 25px;
}

.why-main-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-mint {
    color: var(--mint);
}

.why-main-para {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    text-align: justify;
}

.feature-cards-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.m-icon {
    font-size: 30px;
    color: var(--mint);
    margin-bottom: 15px;
}

.m-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.m-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.why-stats-side {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-header-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.why-header-stats i {
    font-size: 32px;
    color: var(--green);
}

.why-header-stats h3 {
    font-size: 26px;
    font-weight: 900;
}

.stats-bars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bar-item {
    width: 100%;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 15px;
}

.bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green), var(--mint));
    border-radius: 20px;
    transition: 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.bar-item.animate .bar-fill {
    width: 100%;
}

@media (max-width: 1024px) {
    .why-us-flex { flex-direction: column; gap: 60px; }
    .why-main-title { font-size: 32px; }
    .feature-cards-mini { grid-template-columns: 1fr; }
}
:root {
    --mint: #AAFFC7;
    --green: #67C090;
    --teal: #215B63;
    --navy: #124170;
    --white: #ffffff;
}

.sub-brand, .brand span {
    color: var(--navy) !important;
}

.main-footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.f-logo { font-size: 32px; font-weight: 900; margin-bottom: 25px; }
.f-logo span { color: var(--green); }
.f-desc { line-height: 1.8; opacity: 0.8; font-size: 15px; }

.footer-col h4 { font-size: 20px; font-weight: 800; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: var(--green); }

.f-links, .f-contact-list { list-style: none; }
.f-links li, .f-contact-list li { margin-bottom: 15px; }
.f-links li a { color: var(--white); text-decoration: none; opacity: 0.7; transition: 0.3s; font-size: 15px; }
.f-links li a:hover { opacity: 1; padding-right: 10px; color: var(--green); }

.f-contact-list li { display: flex; align-items: center; gap: 12px; opacity: 0.8; font-size: 15px; }
.f-contact-list li i { color: var(--green); }

.footer-bottom { background: rgba(0,0,0,0.2); padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 14px; opacity: 0.7; }
.footer-bottom .dev a { color: var(--mint); text-decoration: none; font-weight: 800; }

.floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 2000; }
.float-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 22px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.3s; }
.f-call { background: var(--navy); }
.f-wa { background: #25D366; }
.float-btn:hover { transform: scale(1.1) rotate(15deg); }

@media (max-width: 1024px) {
    .hero-title { font-size: 28px !important; }
    .hero-description { font-size: 15px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-flex-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .premium-blog-card { flex-direction: column; height: auto; }
    .blog-card-img { height: 200px; flex: none; width: 100%; }
    .blog-action { margin-top: 15px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .footer-bottom .container { flex-direction: column; gap: 10px; }
    .f-contact-list li { justify-content: center; }
    .main-brand { font-size: 22px !important; }
    .logo-img { height: 50px !important; }
}
.premium-contact {
    padding: 110px 0;
    background: #214b75;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-top {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--mint);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 600;
}

.contact-flex-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.contact-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border-radius: 40px;
    text-decoration: none;
    color: var(--white);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-bg {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    box-shadow: 0 20px 40px rgba(18, 65, 112, 0.4);
}

.wa-bg {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.contact-card-item:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--mint);
}

.c-icon {
    font-size: 55px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.c-info h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.c-info p {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.85;
}

.address-footer-box {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid rgba(170, 255, 199, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.address-footer-box i {
    font-size: 30px;
    color: var(--mint);
}

.address-footer-box p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-flex-cards {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 34px;
    }
    .contact-card-item {
        padding: 40px 20px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px 0 !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    .glass-hero-box {
        padding: 30px 20px !important;
        margin: 0 10px !important;
        width: auto !important;
        max-width: 100% !important;
        border-radius: 30px !important; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
        clip-path: none !important; 
    }
    .hero-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        padding: 0 5px !important;
    }
    .hero-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
        color: #445566 !important;
        text-align: center !important;
    }
    .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn-cta {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important;
        border-radius: 15px !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .hero-stats {
        margin-top: 25px !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .stat-item {
        font-size: 12px !important;
        font-weight: 700 !important;
        background: rgba(255, 255, 255, 0.4) !important;
        padding: 5px 12px !important;
        border-radius: 50px !important;
    }
}