:root {
    --primary: #00b894;
    --primary-dark: #009d7e;
    --text: #333333;
    --light: #f8f9fa;
    --dark: #212529;
    --shadow: 0 10px 30px rgba(0, 184, 148, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: white;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 70px 0;
    position: relative;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 184, 148, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 184, 148, 0.3);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.2s ease, background 0.2s ease;
    mix-blend-mode: multiply;
}

.cursor-follower {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.6s ease, width 0.3s ease, height 0.3s ease;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

.wheel {
    width: 5px;
    height: 10px;
    background: var(--primary);
    border-radius: 5px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.arrow-down {
    margin-top: 10px;
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.911);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 15px 0;
    margin-top: 10px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    gap: 5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--dark);
}

.nav {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--light);
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -2;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-img-container {
    position: absolute;
    right: 100px;
    top: 55%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* SECTION: Our Domains */
.our-domains {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 90px 20px;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    color: #00b894;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtext {
    color: #444;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Container */
.domain-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 500px;
    gap: 5px;
    flex-wrap: wrap;
}

/* Each Card */
.domain-cards>div {
    flex: 0 0 120px;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 5px 15px rgba(0, 184, 148, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    background-size: cover;
    background-position: center;
}

/* Backgrounds */
.domain-cards>div:nth-of-type(1) {
    background-image: url('assets/image/index/Domain_1.jpeg');
}

.domain-cards>div:nth-of-type(2) {
    background-image: url('assets/image/index/Domain_2.jpeg');
}

.domain-cards>div:nth-of-type(3) {
    background-image: url('assets/image/index/Domain_3.jpeg');
}

.domain-cards>div:nth-of-type(4) {
    background-image: url('assets/image/index/Domain_4.jpeg');
}

.domain-cards>div:nth-of-type(5) {
    background-image: url('assets/image/index/Domain_5.jpeg');
}

.domain-cards>div:nth-of-type(6) {
    background-image: url('assets/image/index/Domain_6.jpeg');
}

.domain-cards>div:nth-of-type(7) {
    background-image: url('assets/image/index/Domain_7.jpeg');
}

.domain-cards>div:nth-of-type(8) {
    background-image: url('assets/image/index/Domain_8.jpeg');
}


/* Content inside Card */
.domain-cards .content {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    opacity: 0;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    transform: translateY(100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s 0.5s;
    visibility: hidden;
}

.domain-cards .content span {
    margin-top: 5px;
    font-size: 1rem;
}

/* Hover Effect */
.domain-cards>div:hover {
    flex: 0 0 250px;
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.45);
    transform: translateY(-25px);
}

.domain-cards>div:hover .content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .domain-cards {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .domain-cards>div {
        flex: 0 0 auto;
        width: 90%;
        height: 300px;
        max-width: 400px;
    }

    .domain-cards>div:hover {
        transform: translateY(0);
        flex: 0 0 auto;
    }
}


/* Product Section */
/* Two-column layout */
.two-column-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Column Styles */
.left-column {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.features-subtext {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
}

/* Right Column Styles */
.right-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

/* Section background & padding */
.circular-features.section-padding {
    background: linear-gradient(135deg, #f9f7fb, #ffffff);
    padding: 20px;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .two-column-layout {
        flex-direction: column;
        text-align: center;
    }

    .left-column,
    .right-column {
        max-width: 100%;
    }

    .features-title {
        font-size: 2rem;
    }
}

.holderCircle {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    margin: 60px auto;
    position: relative;
}


.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}

.dotCircle .itemDot {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    background: #ffffff;
    color: #00b894;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
}

.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.dotCircle .itemDot .forActive::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 3px solid #00b894;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
    content: '';
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #00b894;
    right: -39px;
}

.dotCircle .itemDot.active .forActive {
    display: block;
}

.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 410px;
    height: 410px;
    border: 2px dotted #00b894;
    border-radius: 100%;
    -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s;
    background: #00b894;
    /* Old browsers */
    background: -moz-linear-gradient(left, #00d6a3 0%, #009e79 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00d6a3 0%, #009e79 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00d6a3 0%, #009e79 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
}

.dotCircle .itemDot {
    font-size: 40px;
}

.contentCircle {
    width: 250px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 250px;
}

.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}

.contentCircle .CirItem i {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #000000;
    opacity: 0.1;
}

@media only screen and (min-width:600px) and (max-width:767px) {
    .holderCircle {
        width: 300px;
        height: 300px;
        margin: 110px auto;
    }

    .holderCircle::after {
        width: 100%;
        height: 100%;
    }

    .dotCircle {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
}

@media only screen and (min-width:600px) and (max-width:767px) {}

@media only screen and (min-width:768px) and (max-width:991px) {}

@media only screen and (min-width:992px) and (max-width:1199px) {}

@media only screen and (min-width:1200px) and (max-width:1499px) {}

.title-box .title {
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: -1;
}

.title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    font-weight: 800;
    color: #00b894;
}

.title-box p {
    font-size: 17px;
    line-height: 2em;
}

/* Services Section */
.services-grid {
    display: grid;
    justify-self: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background: var(--light);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -20px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    background: white;
    color: var(--primary);
}

.cta-btn:hover {
    background: var(--light);
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.849);
    color: #5a5959;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-img-container {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-item {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    section {
        padding: 70px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: bounce 1.8s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    animation-play-state: paused;
    /* Pause bounce smoothly */
    transform: scale(1.2);
    /* Pop-up effect */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.dn-live-analytics {
    background: #fff;
    padding: 40px 80px;

}

.dn-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.dn-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dn-card {
    background: #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.329);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dn-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dn-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.dn-progress .bg {
    fill: none;
    stroke: #eee;
    stroke-width: 2.8;
}

.dn-progress .progress {
    fill: none;
    stroke: #00b894;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progressAnim 2s ease forwards;
}

@keyframes progressAnim {
    from {
        stroke-dasharray: 0 100;
    }
}

.dn-info {
    position: relative;
    text-align: center;
    color: #333;
}

.dn-info h3 {
    font-size: 1.5rem;
    margin: 0;
}

.dn-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.dn-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.dn-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .dn-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dn-cards {
        justify-content: center;
    }
}


/* Section styling */
.digital-products {
    background: #fff;
    padding: 40px 1rem;
    text-align: center;
}

.digital-products .section-title {
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #333;
}

/* Swiper core styles */
.digital-products .swiper {
    padding-bottom: 40px;
}

.digital-products .swiper-slide {
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    display: flex;
    justify-content: center;

}

.digital-products .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

.digital-products .swiper-slide-next,
.digital-products .swiper-slide-prev {
    transform: scale(0.85);
    opacity: 0.6;
    filter: blur(2px);
}

/* Product card styles */
.digital-products .product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-products .product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.digital-products .product-card h3 {
    font-size: 1.25rem;
    color: #222;
}

.digital-products .product-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Hover micro-interaction */
.digital-products .swiper-slide-active .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(109, 245, 245, 0.753);
}

.team-section {
    padding: 80px 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #313131;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.team-member {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.466);
    border: 1px solid #e2e9ed;
}

.avatar {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.role {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6f808a;
    margin-bottom: 15px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 35px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social a {
    display: inline-block;
    text-decoration: none;
    color: #414040;
    font-size: 20px;
}

.social img {
    width: 20px;
    height: 20px;
}

.team-member:hover .social {
    opacity: 1;
    transform: translateY(0);
}

/* ===== About Section ===== */
.about-section {
    padding-left: 6rem;
    padding-right: 5rem;
    padding-top: 6rem;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: 'Arial', sans-serif;
}

/* Small top label */
.about-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: -1rem;
}

/* Top row */
.top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
    /* Ensures both columns have equal height */
}

.top-row h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.top-row p {
    color: var(--text);
    line-height: 1.6;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== Bottom Row ===== */
.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Story Card */
.story-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay text — always visible */
.story-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.story-card .overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.story-card .overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.info-card {
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.info-card p {
    line-height: 1.6;
}

/* Color Variants */
.info-card.mission {
    background: #d1f2eb;
    color: var(--text);
}

.info-card.vision {
    background: var(--primary-dark);
    color: white;
}

.info-card.vision p {
    color: rgba(255, 255, 255, 0.9);
}

/* Goal Section Layout */
.goal-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 0;
    align-items: center;
}

/* Left Content */
.goal-left .section-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.goal-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text);
}

.goal-left p {
    color: #555;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Stats */
.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.stat p {
    color: #666;
}

/* Right Side Image Strips */
.goal-right {
    display: flex;
    gap: 1rem;
    height: 500px;
    overflow: hidden;
}

.image-strip {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.strip-track {
    display: flex;
    flex-direction: column;
    animation: scroll-up 12s linear infinite;
}

.strip-track img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: block;
    object-fit: cover;
}

/* Animations */
.image-strip.up .strip-track {
    animation: scroll-up 12s linear infinite;
}

.image-strip.down .strip-track {
    animation: scroll-down 12s linear infinite;
}

/* Scroll Keyframes */
@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .goal-right {
        display: none;
    }

    .goal-section {
        padding-left: 1rem;
        padding-right: 1rem;
        grid-template-columns: 1fr;
        /* single column */
    }

    /* Center the left content */
    .goal-left {
        text-align: center;
        margin: 0 auto;
    }
}

/* founder */
.section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.image-container {
    flex: 0 0 300px;
}

.circular-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.circular-image:hover {
    transform: scale(1.03);
    border-color: #4a90e2;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content {
    flex: 1;
}

.quote {
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding: 1.5rem 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quote:hover {
    transform: translateY(-5px);
    background-color: #e9f5ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote:before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -1rem;
    left: 0.5rem;
}

.signature {
    text-align: right;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    position: relative;
    padding-right: 1.5rem;
    transition: all 0.3s ease;
}

.signature:hover {
    color: #4a90e2;
    transform: translateX(-10px);
}

.signature:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(50%);
}

@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
        gap: 2rem;
    }

    .image-container {
        flex: 0 0 auto;
    }

    .circular-image {
        width: 200px;
        height: 200px;
    }

    h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .quote {
        text-align: center;
    }

    .signature {
        text-align: center;
        padding-right: 0;
        padding-top: 1rem;
    }

    .signature:after {
        display: none;
    }
}

/* blog */
.latest-stories {
    background: var(--light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-search {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-search:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* Layout */
.blog-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Card Styles */
.latest-stories {
    background: var(--light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-header h2 {
    color: var(--dark);
}

.blog-search {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-search:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.blog-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
    /* Ensures equal height between columns */
}

/* Large Featured Card */
.blog-card.large {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card.large img {
    flex: 1;
    object-fit: cover;
    width: 100%;
}

/* Right Column with Two Equal Small Cards */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.right-column .blog-card.small {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.right-column .blog-card.small img {
    flex: 1;
    object-fit: cover;
    width: 100%;
}

/* Remaining Blogs */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.blog-content {
    padding: 15px;
}

.blog-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-date {
    font-size: 0.85rem;
    color: gray;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 184, 148, 0.25);
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .top-row {
        grid-template-columns: 1fr;
    }
}

/* single blog */

.blog-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 80px 5%;
    padding-left: 90px;
    background: var(--light);
}

@media (max-width: 768px) {
    .blog-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        padding: 80px 5%;
        padding-left: 50px;
        background: var(--light);
    }
}

.blog-intro .category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.blog-intro h1 {
    margin: 15px 0;
    font-size: clamp(2rem, 5vw, 3rem);
}

.blog-intro .meta {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 15px;
}

.blog-intro .teaser {
    font-size: 1.1rem;
    line-height: 1.6;
}

.blog-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 1s ease;
}

.blog-image:hover img {
    transform: scale(1.03);
}

.blog-article {
    margin-top: -40px;
    background: rgba(255, 255, 255, 0);
    padding: 40px;
    /* border-radius: 20px;
    box-shadow: var(--shadow); */
}

.blog-article h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.blog-article img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 25px 0;
}

blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    font-style: italic;
    background: var(--light);
    margin: 25px 0;
    border-radius: 8px;
}

/* Sticky Author Bar */
.sticky-author {
    position: sticky;
    bottom: 0;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    padding-left: 90px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .sticky-author {
        position: sticky;
        bottom: 0;
        background: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    }
}

.sticky-author .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Contact Us */
.contact-section {
    padding: 8rem 1rem;
    background: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Make contact info horizontal */
.info-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1.5rem;

    padding: 1rem 1.5rem;
    border-radius: 8px;
    flex-wrap: wrap;
    /* allows stacking on small screens */
}

.info-list div {
    margin-bottom: 0;
    flex: 1;
    min-width: 150px;
    /* ensures readability */
}

.info-list strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* Mobile view: stack them vertically */
@media (max-width: 768px) {
    .info-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-list div {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }
}

.popup-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease;
    transform: translateY(-20px);
    z-index: 9999;
}

.popup-message.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}