/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #1B6A93;
    --primary-light: #2FA4D7;
    --primary-dark: #17587a;
    --accent-color: #4CAF17;
    --accent-light: #6edb3a;
    --accent-dark: #419614;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --bg-light: #f8fafc;
    --text-light: #474747;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 102, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* overflow-y: hidden; */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    /* overflow-x: hidden; */
}

/* nav bar design */
/* ================= NAVBAR BASE ================= */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.15);
}

/* ================= LOGO ================= */
.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    transition: 0.3s;
}

/* ================= NAV LINKS ================= */
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: 0.3s;
}

/* underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 991px) {

    /* collapse box */
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* nav items */
    .navbar-nav {
        text-align: left;
    }

    .navbar-nav .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* remove underline animation in mobile */
    .nav-link::after {
        display: none;
    }

    /* better spacing */
    .nav-link {
        margin: 0;
        font-size: 16px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

    .navbar-logo {
        height: 45px;
    }

    .navbar {
        padding: 0.4rem 0;
    }

    .navbar-toggler {
        padding: 5px 8px;
    }

    .nav-link {
        font-size: 15px;
    }
}

/* footer design */
.footer-section {
    margin-top: 3rem;
    padding-top: 60px;
    padding-bottom: 30px;
}

/* Footer Text */
.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #869bb8;
    text-align: justify;
}

/* Heading */
.footer-section h6 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Links */
.footer-links a {
    color: #8ea0b9;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact icons */
.footer-contact i {
    color: #0ea5e9;
    margin-right: 8px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    padding: 20px;
}

/* Default Brand Colors */

.footer-social .facebook i {
    color: #1877F2;
}

/* Hover Effect */

.footer-social .facebook:hover {
    background: #1877F2;
}

.footer-social a:hover i {
    color: #fff;
}


.footer-social .twitter i {
    color: #1DA1F2;
}

/* Hover Effect */
.footer-social .twitter:hover {
    background: #1DA1F2;
}

.footer-social .instagram i {
    color: #E4405F;
}

/* Hover Effect */
.footer-social .instagram:hover {
    background: #E4405F;
}


/* Divider */
.footer-divider {
    border-color: #334155;
}

/* Copyright */
.footer-bottom {
    font-size: 14px;
    color: #94a3b8;
}

footer a:hover {
    color: var(--primary-color) !important;
}

footer .btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-divider {
    border-color: #e2e8f0;
    margin: 30px 0;
}

/* ================= COPYRIGHT ================= */
.footer-bottom {
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
}

/* ================= GLOBAL HOVER ================= */
footer a:hover {
    color: var(--primary-color) !important;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .app-download {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .footer-section {
        padding: 50px 0 25px;
    }

    .footer-section h6,
    ul,
    li {
        font-size: 18px;
        text-align: justify;
    }

    .footer-section p {
        text-align: justify;
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 6px;
        text-align: justify;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 14px;
        text-align: right;
    }

    .store-btn {
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .footer-section h6 {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .footer-contact li {
        font-size: 13px;
    }
}


/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1B6A93, #2FA4D7);
    overflow-x: hidden;
    overflow-y: hidden;
    text-transform: capitalize;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-text {
    color: var(--white);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.book {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    border: none;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    color: white !important;
}

.book:active {
    transform: translateY(-1px);
}

/* DNA Animation */
.dna-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dna-svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-element {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.25;
    }

    50% {
        transform: translateY(-40px) translateX(0px);
        opacity: 0.15;
    }

    75% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.25;
    }
}

@keyframes float-hex {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.15;
    }
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* TABLET */
@media (max-width: 992px) {

    .hero {
        text-align: center;
        padding: 60px 0;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero .h {
        text-align: justify;
    }

    .hero p {
        text-align: justify;
    }

    .dna-container {
        margin-top: 30px;
        height: 300px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .dna-container {
        height: 250px;
    }

    #dna-svg {
        max-height: 250px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .hero {
        padding: 40px 0;
    }

    .dna-container {
        height: 200px;
    }

    #dna-svg {
        max-height: 200px;
    }
}

/* SECTION */
.services-showcase {
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}


/* CARD */
.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
}


/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

/* IMAGE */
.service-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-overlay p {
    font-size: 14px;
}


/* CONTENT */
.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1B6A93;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #6c7a89;
    line-height: 1.6;
}

/* BUTTON */
.service-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #4CAF17;
    text-decoration: none;
    margin-top: auto;
}

.service-btn span {
    margin-left: 6px;
    transition: .3s;
}

.service-btn:hover span {
    transform: translateX(6px);
}


/* MOBILE */
@media(max-width:768px) {

    .service-img {
        height: auto;
    }

    .service-content {
        padding: 20px;
    }

}


/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #1B6A93;
    color: #fff;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.15);
}

/* Positions */
.icon1 {
    top: 10%;
    left: 8%;
    animation: floatIcon 6s infinite ease-in-out;
}

.icon2 {
    top: 80%;
    left: 15%;
    animation: floatIcon 8s infinite ease-in-out;
}

.icon3 {
    top: 50%;
    right: 50%;
    animation: floatIcon 7s infinite ease-in-out;
}

.icon4 {
    bottom: 10%;
    right: 8%;
    animation: floatIcon 9s infinite ease-in-out;
}

/* Animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Decorative Shape */
.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-shapes .shape {
    position: absolute;
    opacity: .15;
}

/* Shape positions */
.shape1 {
    top: 20px;
    right: 40px;
    width: 120px;
    animation: floatShape 6s infinite ease-in-out;
}

.shape2 {
    bottom: 60px;
    left: 40px;
    width: 90px;
    animation: floatShape 8s infinite ease-in-out;
}

.shape3 {
    top: 50%;
    right: 2%;
    width: 70px;
    animation: floatShape 10s infinite ease-in-out;
}

@keyframes floatShape {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }

}

.about-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Left Image Column */
.about-image-col {
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
    animation: slideInLeftToRight .9s ease-out;
}

/* Hexagon Wrapper */
.hexagon-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

/* Hexagon Image */
.hexagon-image {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transform: rotateX(5deg) rotateY(-10deg);
}

.hexagon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 130px;
    left: -75px;
    width: 160px;
    height: 160px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #20C997, #17A2B8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(32, 201, 151, .4);
    z-index: 10;
    animation: slideInLeftToRight .9s ease-out .2s both
}

.experience-badge h3 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.experience-badge p {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

/* Right Content */
.about-content {
    animation: slideInRightToLeft .9s ease-out;
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-align: justify;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.about-description {
    line-height: 1.8;
    color: var(--bg-light);
    margin-bottom: 25px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    text-align: left;
}

/* Tag */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(32, 201, 151, .2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #20C997;
}

.about-tag span {
    color: #20C997;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlight Box */
.highlight-box {
    background: #20C997;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 2rem;
    color: #fff;
}

.highlight-box h5 {
    color: #fff;
    font-weight: 700;
}

.highlight-box p {
    color: rgba(255, 255, 255, .95);
    margin: 0;
}

/* List */
.about-list div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--bg-light);
    text-align: justify;
}

.about-list i {
    color: #20C997;
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Button */
.about-btn {
    background: #20C997;
    color: #fff;
    padding: 12px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: .3s;
}

.about-btn:hover {
    background: #17a589;
    color: #fff;
}

/* Left to Right Animation */
@keyframes slideInLeftToRight {

    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* Right to Left Animation */
@keyframes slideInRightToLeft {

    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================= */
/* 🔥 TABLET FIX */
/* ========================= */
@media (max-width: 991px) {

    .about-image-col {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hexagon-wrapper {
        max-width: 400px;
        height: 400px;
    }

    .experience-badge {
        position: relative;
        left: -200px;
        bottom: auto;
        margin-top: 15px;
        width: 150px;
        height: 150px;
    }

    .experience-badge h3 {
        font-size: 2rem;
    }

    .experience-badge p {
        font-size: 0.9rem;
    }
}

/* ========================= */
/* 🔥 MOBILE FIX */
/* ========================= */
@media (max-width: 768px) {

    .hexagon-wrapper {
        max-width: 300px;
        height: 300px;
    }

    .experience-badge {
        width: 130px;
        height: 130px;
        margin-top: 10px;
        left: -150px;
    }

    .experience-badge h3 {
        font-size: 1.6rem;
    }

    .experience-badge p {
        font-size: 0.8rem;
    }
}

/* ========================= */
/* 🔥 SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

    .hexagon-wrapper {
        max-width: 250px;
        height: 250px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        left: -120px;
    }

    .experience-badge h3 {
        font-size: 1.3rem;
    }

    .experience-badge p {
        font-size: 0.7rem;
    }
}


/* work steps */
.work-section {
    margin: 30px;
    background: var(--bg-light);
    font-family: Arial;
}

/* TITLE */
.process-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--primary-light),
            var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-subtitle {
    text-align: center;
    color: var(--text-ligh);
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
}

/* CENTER LINE */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--primary-color),
            var(--accent-color));
    transform: scaleY(0);
    transform-origin: top;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        transform: scaleY(1);
    }
}


/* ITEM */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}


/* DOT */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    top: 30px;
    right: -9px;
    border-radius: 50%;
}

.timeline-item.right::after {
    left: -9px;
}


/* CARD */
.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* STEP BADGE */
.step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-light));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content:hover .step {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--accent-light));
}

/* TEXT */
.timeline-content h5 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* MOBILE */
@media (max-width:768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left {
        left: 0;
    }

    .timeline-item::after {
        left: 11px;
    }
}

/* why choose sld */
.choose-section {
    padding-top: 20px;
    margin: 30px;
    background: #f9fbff;
    overflow: hidden;
    top: 0;
    margin-top: 0px;
}

/* image */
.main-img {
    width: 100%;
    height: 200%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* gradient circle */
.circle-bg {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    top: -40px;
    left: -40px;
    z-index: 1;
    opacity: .3;
    animation: moveDown 3s ease-in-out infinite;
}

.circle-bg-2 {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
    z-index: 1;
    opacity: .25;
    animation: moveUp 3s ease-in-out infinite;
}

@keyframes moveDown {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes moveUp {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }

}

/* tag */
.tag {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tag i {
    font-size: 16px;
    color: var(--text-dark);
}

/* title */
.title {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg,
            rgba(27, 106, 147, 0.95),
            rgba(76, 175, 23, 0.9));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* desc */
.desc {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* grid */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* card */
.choose-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
}

/* icon */
.icon-circle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 10px;
    transition: transform .5s ease;
}

.icon-circle:hover {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
}

/* button */
.discover-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.discover-btn:hover {
    background: var(--accent-color);
}

/* mobile */

@media(max-width:768px) {

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 30px;
    }

}

/* Statistics Section */
.stats-section {
    padding: 45px 0;
    /* background: var(--accent-dark); */
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    color: #fff;
    position: relative;
    overflow: hidden;
}


/* background graphics */

.stats-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.15),
            transparent 70%);
    top: -200px;
    left: -200px;

}

/* stat box */
.stat-box {
    padding: 20px 10px;
    position: relative;
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-8px);
}

/* icon hexagon */
.stat-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: #fff;
    font-size: 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: .4s;
}

.stat-icon i {
    font-size: 30px;
}

/* floating icons */
.icon5 {
    top: 10%;
    left: 8%;
    animation: floatIcon 6s infinite ease-in-out;
}

.icon6 {
    top: 80%;
    left: 15%;
    animation: floatIcon 8s infinite ease-in-out;
}

.icon7 {
    top: 50%;
    right: 50%;
    animation: floatIcon 7s infinite ease-in-out;
}

.icon8 {
    bottom: 10%;
    right: 8%;
    animation: floatIcon 9s infinite ease-in-out;
}

.stat-box:hover .stat-icon {
    transform: rotate(360deg);
    background: #fff;
    color: var(--primary-color);
}

/* numbers */
.stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

/* text */
.stat-box p {
    font-size: 16px;
    opacity: .9;
}

/* divider */
.stats-row>div {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-row>div:last-child {
    border: none;
}

/* mobile */
@media(max-width:768px) {
    .stats-row>div {
        border: none;
    }

    .stat-number {
        font-size: 34px;
    }

}

/* another  */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* testimonial section */
/* ========================= */
/* TESTIMONIAL SECTION */
/* ========================= */
.testimonial-section {
    padding: 60px 0;
    background: #f9fafb;
    overflow: hidden;
}

.testimonial-section .section-header h2 {
    font-size: 2.5rem;
    margin: 20px 0 40px;
    color: #1f2937;
    text-transform: capitalize;
}

/* ========================= */
/* SLIDER */
/* ========================= */
.testimonial-slider {
    padding: 20px 40px;
    /* arrows ke liye space */
    position: relative;
}

/* FIX HEIGHT ALIGN */
.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    height: auto;
    opacity: 0.6;
    transition: 0.4s;
}

.swiper-slide-active {
    opacity: 1;
}

/* ========================= */
/* CARD */
/* ========================= */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 0.4s ease;
}

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

/* ACTIVE CARD */
.swiper-slide-active .testimonial-card {
    border: 2px solid #10b981;
    transform: scale(1.04);
}

/* ========================= */
/* HEADER */
/* ========================= */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ========================= */
/* TEXT */
/* ========================= */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ========================= */
/* STARS */
/* ========================= */
.testimonial-stars {
    display: flex;
    gap: 5px;
}

.testimonial-stars i {
    color: #10b981;
    font-size: 1rem;
}

/* ========================= */
/* ARROWS */
/* ========================= */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #10b981;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #059669;
}

/* ========================= */
/* PAGINATION */
/* ========================= */
.swiper-pagination {
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #10b981;
    width: 18px;
    border-radius: 10px;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

    .testimonial-section .section-header h2 {
        font-size: 2rem;
    }

    .testimonial-slider {
        padding: 20px 30px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-avatar {
        width: 65px;
        height: 65px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-section .section-header h2 {
        font-size: 1.6rem;
    }

    .testimonial-slider {
        padding: 10px 25px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }

    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

    .testimonial-slider {
        padding: 10px 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
        /* 🔥 hide arrows on small screens */
    }

    .testimonial-card {
        padding: 18px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-info h5 {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* ============================= About Page Design ============================== */
.about-hero {
    position: relative;
    background: url('/images/about/about-3-1.png') center/cover no-repeat;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(47, 164, 215, .8),
            rgba(27, 106, 147, .8));
}

/* BREADCRUMB */
.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #e3e3e3;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

/* .hero-title {
    font-size: 42px;
    font-weight: 700;
} */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-page-section {
    padding: 80px 0;
    background: white;
}

/* IMAGE */
.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .1);
    transition: .6s;
}

.about-image:hover {
    transform: scale(1.05);
}

/* WHATSAPP CARD */
.whatsapp-card {
    position: absolute;
    bottom: -25px;
    left: 55px;
    background: linear-gradient(135deg, #1B6A93, #0c3f5c);
    color: white;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.whatsapp-card i {
    font-size: 30px;
}

.whatsapp-card p {
    margin: 0;
    font-size: 14px;
}

.whatsapp-card a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}


.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1B6A93, #2FA4D7, #4CAF17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #999ca0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

/* CARD STYLE */
.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 12px;
    background: #ffffff;
    transition: all .4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CARD HOVER */
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ICON BOX */
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e9f3fa;
    color: #1B6A93;
    font-size: 18px;
    transition: all .4s ease;
}

/* ICON ANIMATION */
.feature-item:hover .icon-box {
    transform: rotate(-10deg) scale(1.2);
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-light));
    color: white;
}

/* TEXT */
.feature-text h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.feature-text p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #6c7a89;
}

/* BUTTON */
.primary-btn {
    background: #1B6A93;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
}

.primary-btn:hover {
    background: #0c3f5c;
}

.mv-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

.mv-tag {
    color: var(--primary-color);
    letter-spacing: 2px;
}

.mv-btn {
    background: #4CAF17;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
}

/* CARDS */
.mv-card {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    transition: .4s;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.vision-card {
    margin-top: 60px;
}

.mv-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.mv-card li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* bullet */
.mv-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--primary-light));
    box-shadow: 0 0 0 0 rgba(76, 175, 23, .6);
    animation: pulseBullet 2s infinite;
}

/* animation */

@keyframes pulseBullet {

    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 23, .6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(76, 175, 23, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 23, 0);
    }

}

/* HEXAGON */
.hex-icon {
    width: 70px;
    height: 70px;
    background: #1B6A93;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%,
            75% 95%, 25% 95%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    position: absolute;
    top: -35px;
}

.hex-icon.green {
    background: #4CAF17;
}

/* LIST */

.mv-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.mv-card li {
    margin-bottom: 10px;
}

/* SCROLL ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.mv-card h3 {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        margin-top: 30px;
    }

    .mv-tag {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .mv-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .reveal {
        margin-bottom: 10px;
    }

    .mv-card {
        padding: 25px;
    }

}

.about-hero {
    position: relative;
    background: url('/images/about/about-3-1.png') center/cover no-repeat;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(47, 164, 215, .8),
            rgba(27, 106, 147, .8));
}

/* BREADCRUMB */
.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #e3e3e3;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

/* ABOUT */

.about-page-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1B6A93, #2FA4D7, #4CAF17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #999ca0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

/* IMAGE */

.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .1);
    transition: .6s;
}

.about-image:hover {
    transform: scale(1.05);
}

/* WHATSAPP CARD */
.whatsapp-card {
    position: absolute;
    bottom: -25px;
    left: 55px;
    background: linear-gradient(135deg, #1B6A93, #0c3f5c);
    color: white;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.whatsapp-card i {
    font-size: 30px;
}

.whatsapp-card p {
    margin: 0;
    font-size: 14px;
}

.whatsapp-card a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

/* FEATURES */

/* FEATURE GRID */

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

/* CARD STYLE */

.feature-item {

    display: flex;
    gap: 15px;
    align-items: flex-start;

    padding: 18px;

    border-radius: 12px;

    background: #ffffff;

    transition: all .4s ease;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

/* CARD HOVER */

.feature-item:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

}

/* ICON BOX */

.icon-box {

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #e9f3fa;

    color: #1B6A93;

    font-size: 18px;

    transition: all .4s ease;

}

/* ICON ANIMATION */

.feature-item:hover .icon-box {

    transform: rotate(-10deg) scale(1.2);

    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-light));

    color: white;

}

/* TEXT */

.feature-text h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.feature-text p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #6c7a89;
}

/* BUTTON */

.primary-btn {
    background: #1B6A93;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
}

.primary-btn:hover {
    background: #0c3f5c;
}

/* MISSION */
.mission-vision-section {
    padding: 120px 0;
    background: linear-gradient(155deg, #18b26a 50%, #1B6A93 50%);
    position: relative;
    overflow: hidden;
}

.mv-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

.mv-tag {
    color: var(--primary-color);
    letter-spacing: 2px;
}

.mv-btn {
    background: #4CAF17;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
}

/* CARDS */

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    transition: .4s;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.vision-card {
    margin-top: 60px;
}

.mv-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.mv-card li {

    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    line-height: 1.6;

}

/* bullet */

.mv-card li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            var(--accent-color),
            var(--primary-light));

    box-shadow: 0 0 0 0 rgba(76, 175, 23, .6);

    animation: pulseBullet 2s infinite;

}

/* animation */

@keyframes pulseBullet {

    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 23, .6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(76, 175, 23, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 23, 0);
    }

}

/* HEXAGON */

.hex-icon {
    width: 70px;
    height: 70px;
    background: #1B6A93;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%,
            75% 95%, 25% 95%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    position: absolute;
    top: -35px;
}

.hex-icon.green {
    background: #4CAF17;
}

/* LIST */

.mv-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.mv-card li {
    margin-bottom: 10px;
}

/* SCROLL ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
/* 
@media(max-width:768px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        margin-top: 30px;
    }

    .mv-tag {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .mv-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .reveal {
        margin-bottom: 10px;
    }

    .mv-card {
        padding: 25px;
    }

} */

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-card {
        left: 20px;
        bottom: -15px;
    }

    .vision-card {
        margin-top: 30px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .about-hero {
        min-height: 220px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        margin-top: 30px;
    }

    .about-page-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 14px;
    }

    .whatsapp-card {
        position: relative;
        /* 🔥 FIX */
        left: auto;
        bottom: auto;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .mv-tag {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .mv-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .reveal {
        margin-bottom: 10px;
    }

    .mv-card {
        padding: 25px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

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

    .mv-card {
        padding: 20px;
    }
}

/* service page design */
/* ================= HERO ================= */

.services-hero {
    position: relative;
    background: url('/images/about/about-3-1.png') center/cover no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.services-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.75);
    top: 0;
    left: 0;
}

/* CONTENT */
.services-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}

/* BREADCRUMB */
.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #e3e3e3;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

/* ================= SERVICES ================= */

.services-grid {
    padding: 80px 0;
    background: #f8fafc;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ICON */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

/* COLORS */
.service-icon.ai {
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
}

.service-icon.dna {
    background: rgba(0, 184, 148, 0.15);
    color: #00b894;
}

.service-icon.pathology {
    background: rgba(255, 165, 0, 0.15);
    color: #f39c12;
}

/* TEXT */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* LIST STYLE */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #666;
    transition: 0.3s;
}

.service-list li i {
    font-size: 12px;
    margin-right: 8px;
    margin-top: 4px;
    color: #18b26b;
    transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.service-card:hover .service-list li {
    color: #fff;
}

.service-card:hover .service-list li i {
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .services-hero {
        height: 260px;
    }

    .hero-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        height: 220px;
    }

    .hero-title {
        font-size: 26px;
    }

    .services-grid {
        padding: 50px 0;
    }
}

/* contact page design */
/* HERO */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
}

.hero-subtitle {
    color: #666;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-weight: 700;
    margin-bottom: 25px;
}

/* CONTACT CARD */
.contact-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box.primary {
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
}

.icon-box.success {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.icon-box.danger {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

/* SOCIAL */
/* .social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 8px;
    margin-right: 8px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
} */

/* SOCIAL WRAPPER */
.social-links {
    display: flex;
    gap: 12px;
}

/* BASE STYLE */
.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f5f7fa;
    color: var(--primary-light);
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* ICON SMOOTH */
.social-links a i {
    transition: 0.3s;
    z-index: 2;
}

/* HOVER ANIMATION BACKGROUND */
.social-links a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background: red;
    /* default */
    transition: 0.4s;
    z-index: 1;
}

.social-links a {
    text-decoration: none;
    /* underline remove */
}

/* HOVER EFFECT */
.social-links a:hover::before {
    top: 0;
}

.social-links a:hover i {
    color: #fff;
    transform: scale(1.2);
}

/* PLATFORM COLORS */
.social-links a.facebook::before {
    background: #1877f2;
}

.social-links a.twitter::before {
    background: #1da1f2;
}

.social-links a.instagram::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}

/* FORM */
.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: none;
}

/* CTA */
.contact-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.contact-cta h3 {
    font-weight: 700;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .hero-title {
        font-size: 28px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-hero {
        padding: 50px 0;
    }
}

/* registration page ka design */
/* registration form */
.registration-screen {
    background: #f4f7fb;
    /* min-height: 100vh; */
    width: 100%;
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
}

.registration-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    /* margin-top: 20px; */
    font-size: 2rem;
    font-weight: 700;
    color: #0f6c8d;
    margin-bottom: 0.5rem;
}


.header p {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
}

/* Card styles */
.card-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-section h3 i {
    color: #0f6c8d;
}

/* Profile image upload */
.profile-upload {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-container {
    position: relative;
    display: inline-block;
}

.profile-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #0f6c8d;
    background: linear-gradient(135deg, #0f6c8d, #1a93c8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.profile-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(15, 108, 141, 0.3);
}

.profile-circle i {
    color: white;
    font-size: 2rem;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.camera-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: #0f6c8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.camera-icon:hover {
    background: #0c5a78;
    transform: scale(1.1);
}

/* Form styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    -webkit-appearance: none;
    appearance: none;
}

/* Textarea specific styling */
textarea.form-control {
    resize: vertical;
    min-height: 80px;
    font-size: 1rem;
}

/* Select dropdown styling */
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f6c8d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form-control:focus {
    outline: none;
    border-color: #0f6c8d;
    box-shadow: 0 0 0 3px rgba(15, 108, 141, 0.1);
}

/* Mobile touch target optimization */
@supports (padding: max(0px)) {
    .form-control {
        padding: max(0.75rem, 44px / 2 - 0.5rem) 1rem;
    }
}


/* Input with icon */
.input-with-icon {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0f6c8d;
    pointer-events: none;
    z-index: 1;
}

.input-with-icon .form-control {
    padding-left: 2.5rem;
}

/* Icon spacing for mobile */
@media (max-width: 480px) {
    .input-with-icon i {
        font-size: 0.85rem;
    }
}

/* Two-column layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 0.875rem;
    background: #0f6c8d;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary:active {
    background: #0a4a68;
    transform: scale(0.98);
}

.btn-primary:hover {
    background: #0c5a78;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 108, 141, 0.3);
}

.btn-otp {
    padding: 0.5rem 1rem;
    background: #0f6c8d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
}

.btn-otp:active {
    background: #0a4a68;
}

.btn-otp:hover {
    background: #0c5a78;
    transform: scale(1.05);
}

/* File upload */
.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload input[type=file] {
    position: absolute;
    left: -9999px;
}

.file-upload label {
    display: block;
    padding: 0.75rem;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666666;
    font-weight: 500;
}

.file-upload label:hover {
    background: #e0f2fe;
    border-color: #0f6c8d;
    color: #0f6c8d;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 44px;
}

.checkbox-group input[type=checkbox] {
    min-width: 18px;
    min-height: 18px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0f6c8d;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 0;
    flex: 1;
    padding: 0.25rem;
}

/* Login link */
.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.login-link a {
    color: #0f6c8d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #0c5a78;
    text-decoration: underline;
}

/* File preview */
.file-preview {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #0f6c8d;
}

/* Radio button styling */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #1a1a1a;
    min-height: 44px;
    padding: 0.25rem;
}

.radio-group input[type="radio"] {
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0f6c8d;
    flex-shrink: 0;
}

/* Form fields toggle */
.form-fields {
    display: none;
}

.form-fields.active {
    display: block;
}

/* Responsive */
/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    .registration-screen {
        padding: 1rem 0.5rem;
    }

    .registration-container {
        max-width: 100%;
    }

    .header {
        margin-bottom: 1.5rem;
    }

    .header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .header p {
        font-size: 0.85rem;
    }

    .card-section {
        padding: 15px;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .card-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .input-with-icon .form-control {
        padding-left: 2.2rem;
    }

    .input-with-icon i {
        left: 0.75rem;
        font-size: 0.85rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .radio-group label {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.7rem;
        height: 45px;
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }

    .btn-otp {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .profile-circle {
        width: 80px;
        height: 80px;
    }

    .profile-circle i {
        font-size: 1.5rem;
    }

    .camera-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .checkbox-group {
        gap: 0.4rem;
    }

    .checkbox-group input[type=checkbox],
    .radio-group input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .file-upload label {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .login-link {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}

/* Small Tablets (480px - 768px) */
@media (min-width: 481px) and (max-width: 767px) {
    .registration-screen {
        padding: 1.5rem 0.75rem;
    }

    .registration-container {
        max-width: 100%;
    }

    .header {
        margin-bottom: 1.75rem;
    }

    .header h1 {
        font-size: 1.75rem;
    }

    .header p {
        font-size: 0.95rem;
    }

    .card-section {
        padding: 18px;
        margin-bottom: 1.25rem;
    }

    .card-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.15rem;
    }

    .form-control {
        padding: 0.7rem 0.9rem;
        font-size: 0.92rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.9rem;
    }

    .btn-primary {
        height: 48px;
        font-size: 0.95rem;
    }

    .profile-circle {
        width: 90px;
        height: 90px;
    }
}

/* Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .registration-container {
        max-width: 550px;
    }

    .header h1 {
        font-size: 1.9rem;
    }

    .card-section h3 {
        font-size: 1.2rem;
    }

    .two-column {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .radio-group {
        gap: 2rem;
    }
}

/* Small Desktops (1024px - 1200px) */
@media (min-width: 1024px) {
    .registration-container {
        max-width: 600px;
    }
}

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .registration-container {
        max-width: 700px;
    }
}

/* ================= ICON COLORS ================= */

/* WhatsApp */
.fa-whatsapp {
    color: #0cea5e;
}

/* Phone */
.fa-phone {
    color: #1B6A93;
}

/* ================= BACK TO TOP ================= */

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
    z-index: 999;
    cursor: pointer;
    text-decoration: none;

    /* animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* SHOW BUTTON */
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER EFFECT */
.back-to-top-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.6);
    color: #fff;
}

/* CLICK EFFECT */
.back-to-top-btn:active {
    transform: scale(0.95);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .back-to-top-btn {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}