/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

body {
    /* background: linear-gradient(180deg, #2E2952, #0f172a); */
    font-family: sans-serif;
    /* space for fixed navbar */
}

/* ================= NAVBAR ================= */
.navbar {
    /* width: 100%; */
    position: relative;
    /* top: 0;
    left: 0; */
    /* background: rgba(15, 118, 110, 0.9); */
    /* backdrop-filter: blur(10px); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    z-index: 1000;
    transition: 0.3s ease;
    overflow: hidden;
}

.navbar::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    -webkit-transition: 700ms ease;
    -o-transition: 700ms ease;
    transition: 700ms ease;
    pointer-events: none;
}

.navbar.header-fixed {
    position: fixed !important;
    width: 100%;
    -webkit-animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    box-shadow: 10px 0 20px rgba(8, 0, 41, 0.08);
    top: 0;
    left: 0;
    right: 0;
    z-index: 111;
    background: linear-gradient(to right, #065f46, #14b8a5);

}

.navbar.header-fixed::before {
    box-shadow: 0 0 8px 1px #33333354;

}

/* Scroll effect */
/* .navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
} */

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================= LOGO ================= */
.logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ================= NAV LINKS ================= */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff69;
    padding: 10px 25px;
    border-radius: 20px;


}

.nav-links a {
    color: #ffffff;

    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

/* Hover underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #065F46;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= BUTTONS ================= */
.cta-buttons {
    display: flex;
    gap: 10px;
}
.cta-buttons a::after {
    content: none !important
}

.cta-buttons .btn-outline {
    border: 1px solid #ffffff !important;
    background: #065F46 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

 .cta-buttons .btn-outline:hover {
    background: #0F766E;
    color: #fff;
}

.cta-buttons .btn-primary,
.mobile-cta .btn-primary {
    /* background: linear-gradient(135deg, #065F46, #0F766E) !important; */
    border: none;
    color: #fff;
    border: 1px solid #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    white-space: nowrap;
    z-index: 11;
}
.cta-buttons .btn-primary::before {
    background: linear-gradient(135deg, #065F46, #0F766E) !important;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    border-radius: 25px;
    z-index: -1;
    overflow: hidden;
}
.cta-buttons .btn-primary:hover::before {
    width: 100%;
    transition: 1s ease-in;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}
.menu-toggle .btn-outline{
    border: 1px solid #ffffff !important;
    background: #065F46 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

/* ================= MOBILE MENU ================= */
.mobile-cta {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .navbar{
        overflow: inherit;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0F766E;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        transition: 0.3s ease;
        border-radius: 0;
        /* display: none; */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    .cta-buttons {
        display: none;
    }

    .mobile-cta {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 500px) {

    .logo {
        font-size: 18px;
    }

    .btn-primary,
    .btn-outline {
        padding: 7px 12px;
        font-size: 13px;
    }
}

/* ================= HERO SECTION ================= */
.hero {
    background: url(../images/banner-ui.jpg) no-repeat center center/cover;
    /* linear-gradient(135deg, #0F766E, #14b8a6); */
    padding: 120px 40px 80px;
    color: #fff;
    overflow: hidden;
    margin-top: -80px;
    position: relative;
}

.hero::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #080808, transparent);
    ;

}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

/* Left Content */
.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h1 span {
    color: #a7f3d0;
}

.hero-content p {
    margin: 20px 0;
    font-size: 16px;
    color: #e6fffa;
    max-width: 500px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary {
    background: #ffffff;
    color: #0F766E;
}

.primary:hover {
    background: #a7f3d0;
}

.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Right Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    display: none;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 🔽 Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 300px;
        margin-top: 20px;
    }
}


/* ================= FEATURES ================= */
.features-combo {
    padding: 50px 40px;
    background: #f0fdfa;
}

.features-combo h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
    color: #0F766E;
}

.combo-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}

/* 🔽 Timeline */
.timeline {
    flex: 1;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #0F766E;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.step span {
    background: #0F766E;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step p {
    font-weight: 500;
    color: #0f172a;
}

/* 🔽 Chat UI */
.chat-ui {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 75%;
    font-size: 14px;
}

.user {
    background: #0F766E;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.bot {
    background: #ecfdf5;
    color: #065f46;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .combo-container {
        flex-direction: column;
    }

    .timeline::before {
        left: 16px;
        /* transform: translateX(-50%); */
    }

    .step {
        /* justify-content: center; */
    }
}

/* product design */

/* ================= EXPERIENCE SECTION ================= */
.experience {
    padding: 50px 40px;
    background: #ffffff;
    overflow: hidden;
}

.exp-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ================= LEFT IMAGE ================= */
.exp-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.exp-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* ================= WAVE ANIMATION ================= */
.wave-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(15, 118, 110, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2.5s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ================= FLOATING TAGS ================= */
.tag {
    position: absolute;
    background: #0F766E;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 111;
}

/* Tag Positions */
.tag1 {
    top: 8%;
    left: -20px;
}

.tag2 {
    bottom: 18%;
    right: -25px;
}

.tag3 {
    top: 60%;
    left: 15%;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Glow Effect */
.tag:hover {
    box-shadow: 0 0 15px #0F766E, 0 0 30px #0F766E;
    transform: scale(1.05);
}

/* ================= RIGHT CONTENT ================= */
.exp-content {
    flex: 1;
}

.exp-content h2 {
    font-size: 36px;
    color: #0F766E;
    margin-bottom: 15px;
}

.exp-content .subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
    min-height: 40px;
}


/* Feature List */
.exp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.exp-list li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #0f172a;
}

/* Button */
.btn.primary {
    background: #0F766E;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary:hover {
    background: #065f46;
}

/* ================= SCROLL ANIMATION ================= */
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.fade-left {
    transform: translateX(-60px);
}

.fade-right {
    transform: translateX(60px);
}

.show {
    opacity: 1;
    transform: translateX(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .exp-container {
        flex-direction: column;
        text-align: center;
    }

    .exp-image img {
        max-width: 300px;
    }

    .wave-circle {
        width: 220px;
        height: 220px;
    }

    .tag {
        display: none;
        /* cleaner mobile UI */
    }

    .exp-content h2 {
        font-size: 28px;
    }
}

/* ================= HOW IT WORKS ================= */
/* ================= FLOW SECTION ================= */
.flow {
    padding: 50px 40px;
    background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
    text-align: center;
}

.flow h2 {
    font-size: 34px;
    margin-bottom: 70px;
    color: #0F766E;
}

/* Container */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Steps */
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}

/* Circle Icons */
.circle {
    width: 80px;
    height: 80px;
    background: #0F766E;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.3);
    transition: 0.3s;
}

/* Hover Effect */
.circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #0F766E;
}

/* Text */
.flow-step p {
    font-size: 14px;
    color: #0f172a;
}

/* Arrows */
.arrow {
    font-size: 28px;
    color: #0F766E;
}

/* ================= ANIMATION ================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }
}

/* ================= SECURITY SECTION ================= */
.security {
    padding: 50px 40px;
    background: linear-gradient(135deg, #0F766E, #065F46);
    color: white;
    overflow: hidden;
}

.security-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.security-content {
    flex: 1;
}

.security-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.subtitle {
    margin-bottom: 30px;
    color: #d1fae5;
}

/* POINTS */
.security-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.point span {
    font-size: 22px;
}

/* RIGHT VISUAL */
.security-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Shield */
.shield {
    position: relative;
    font-size: 100px;
    z-index: 2;
}

/* Pulse Effect */
.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ================= SCROLL ANIMATION ================= */
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.fade-left {
    transform: translateX(-60px);
}

.fade-right {
    transform: translateX(60px);
}

.show {
    opacity: 1;
    transform: translateX(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .security-container {
        flex-direction: column;
        text-align: center;
    }

    .shield {
        font-size: 70px;
    }
}

/* use cases */
/* ================= USE CASES ================= */
.usecases {
    padding: 50px 40px;
    background: #f8fafc;
    text-align: center;
}

.usecases h2 {
    font-size: 34px;
    margin-bottom: 60px;
    color: #0F766E;
}

/* Container */
.usecase-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Items */
.usecase-item {
    flex: 1;
    padding: 30px 20px;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.usecase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Title */
.usecase-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Description */
.usecase-item p {
    font-size: 14px;
    color: #475569;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

/* Show text on hover */
.usecase-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle gradient hover */
.usecase-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F766E, #14b8a6);
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    z-index: 0;
}

.usecase-item:hover::before {
    opacity: 0.05;
}

/* Keep content above gradient */
.usecase-item * {
    position: relative;
    z-index: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .usecase-container {
        flex-direction: column;
    }
}

/* ================= VALUE SECTION ================= */
.value {
    padding: 50px 40px;
    background: linear-gradient(135deg, #0F766E, #14b8a6);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow Background Effect */
.value::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(100px);
}

.value::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    filter: blur(120px);
}

/* Container */
.value-container {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* Heading */
.value h2 {
    font-size: 48px;
    line-height: 1.2;
}

.value h2 span {
    color: #a7f3d0;
}

/* Subtitle */
.subtitle {
    margin: 20px 0 30px;
    font-size: 16px;
    color: #e6fffa;
}

/* Points */
.value-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.point {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 14px;
}

/* Buttons */
.value-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn.primary {
    background: white;
    color: #0F766E;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

.btn.secondary {
    border: 1px solid white;
    color: white;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
}

/* Hover */
.btn.primary:hover {
    background: #a7f3d0;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================= ANIMATION ================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .value h2 {
        font-size: 32px;
    }

    .value-points {
        flex-direction: column;
        gap: 15px;
    }
}


/* ================= FOOTER ================= */
.footer {
    background: #0f172a;
    color: #cbd5f5;
    padding-top: 60px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px 40px;
}

/* Columns */
.footer-col {
    flex: 1;
}

.footer-col h3 {
    color: white;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #a7f3d0;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #a7f3d0;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


/* pricing page */
/* ================= PRICING PAGE ================= */
.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f9fafb, #ffffff);
    text-align: center;
}

/* Heading */
.pricing-section h1 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 10px;
}

.pricing-section p {
    color: #6b7280;
    font-size: 16px;
}

/* ================= TOGGLE ================= */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    font-size: 14px;
    color: #374151;
}

.pricing-toggle .slider {
    left: 0;
}

/* Switch */
.switch {
    position: relative;
    width: 50px;
    height: 25px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background: #e5e7eb;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 2.5px;
    background: #2E2952;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked+.slider {
    background: #ddd6fe;
}

input:checked+.slider::before {
    transform: translateX(24px);
}

/* ================= GRID ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* ================= CARD ================= */
.pricing-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
    position: relative;
}

/* Hover */
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Title */
.pricing-card h3 {
    font-size: 20px;
    color: #111827;
}

/* Price */
.pricing-card .price {
    font-size: 38px;
    font-weight: 700;
    color: #2E2952;
    margin: 15px 0;
}

/* Description */
.pricing-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* Features List */
.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
}

/* ================= POPULAR ================= */
.pricing-card.popular {
    border: 2px solid #2E2952;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2E2952;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
}

/* ================= BUTTONS ================= */
.pricing-card button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.pricing-card .btn-primary {
    background: #065F46;
    color: #fff;
    border: none;
}

.btn-outline {
    border: 1px solid #2E2952;
    background: transparent;
    color: #2E2952;
}

.btn-outline:hover {
    background: #2E2952;
    color: #fff;
}

/* ================= NOTE ================= */
.pricing-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 500px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 70px 15px;
    }

    .pricing-section h1 {
        font-size: 26px;
    }
}

/* contact */
/* ================= BANNER ================= */
.banner {
    background: linear-gradient(135deg, #0F766E, #14b8a6);
    color: white;
    padding: 120px 20px;
    text-align: center;
    margin-top: -80px;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 16px;
    opacity: 0.9;
}

/* ================= CONTACT SECTION ================= */
.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

/* Image */
.contact-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-image {
    width: 50%;
}

/* Form */
.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #0F766E;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* Message */
.form-msg {
    font-size: 13px;
    margin-bottom: 10px;
}

.form-msg.error {
    color: red;
}

.form-msg.success {
    color: green;
}

/* ================= CONTACT INFO ================= */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background: #f9fafb;
    padding: 60px 20px;
    /* max-width: 1100px; */
    margin: auto;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card img {
    width: 24px;
    margin-bottom: 10px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================= MAP ================= */
.map iframe {
    width: 100%;
    height: 350px;
    border: none;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-image {
        width: 100%;
    }
}

@media (max-width: 500px) {

    .banner h1 {
        font-size: 26px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

.error {
    color: #ff4d4d;
    font-size: 14px !important;
    min-height: 20px;
}

.success {
    color: #22c55e;
    font-weight: bold;
}