@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;900&display=swap');

:root {
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --secondary: #3b82f6;
    --accent: #f59e0b;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Variables from Why Choose Us */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-color: #e0f7fa;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --text-color: #1e293b;
    --text-light: #475569;
    --accent-color: #2563eb;
    --circle-size: 160px;
    --orbit-radius: 280px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #fff;
}

h1,
h2,
h3,
p,
a,
div {
    font-family: 'Outfit', sans-serif;
}
.overlap-img {
    position: absolute;
    top: 90px;
    left: 325px;
    z-index: 10;
    width: 15rem;     /* Higher number forces this image to the top */
}

/* Header Styles */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #6e8efb, #0891b2);
    color: white;
    padding: 0.5rem 7rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-img{
    width: 22rem;
    height: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
}

.nav-links a.active {
    border-bottom: 2px solid #ffca28;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #6e8efb, #0891b2);
    /* padding: 1rem; */
    position: absolute;
    top: 70px;
    width: 100%;
    z-index: 100;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .app-header {
        padding: 1.3rem 1rem 1.3rem 0.5rem;
    }
    .logo-img{
        width: 19rem;
        height: auto;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    .overlap-img {
        position: absolute;
        top: 43px;
        left: 210px;
        z-index: 10;
        width: 7.5rem !important;     /* Higher number forces this image to the top */
    }
}

/* Banner & Main Content */
.banner {
    width: 100%;
    /* height: 500px; */
    background: #ddf5ff;
}

.btext {
    margin-top: 100px !important;
}

.bbdiv {
    padding: 50px 100px 0;
    background-image: url('../assets/img/water_bg_effect.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 123% auto;
}

@keyframes shrink {
    0% {
        background-size: 110% 110%;
    }

    100% {
        background-size: 100% 100%;
    }
}

.hone {
    padding: 0;
    margin: 0;
    font-size: clamp(32px, 8vw, 80px);
    color: #fff;
    font-weight: 900;
}

.honeright {
    font-size: clamp(32px, 8vw, 80px);
    color: #333333;
    font-weight: 900;
    text-align: right;
}

.banner_title {
    padding: 0;
    margin: 0;
    font-size: clamp(25px, 7vw, 35px);
    color: #333333;
    font-weight: 300;
}

.fancy-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #fff;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fancy-btn:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 20px 248px;
}

.card {
    background: #190047ed;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    background-image: url(../assets/img/bubble_2.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    color: #ffffff;
    border-bottom: 5px solid #835bff;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 5px;
        gap: 30px;
    }

    .card {
        text-align: center;
        padding: 5px;
    }

    .bbdiv {
        padding: 5px 15px 0;
    }

    .btext {
        margin-top: 60px !important;
    }
}

.timeline-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1450px;
    margin: auto;
}

.timeline-line {
    position: absolute;
    top: 45%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    z-index: 0;
    animation: growLine 2s ease-in-out forwards;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 200px;
    margin: 20px;
    animation: fadeSlideUp 1s ease forwards;
    /* opacity: 0; handled by animation usually, keeping it consistent */
}

.icon-wrapper-work-flow {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0891b2, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.icon-wrapper-work-flow:hover {
    transform: scale(1.1);
}

.step-icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: invert(1);
}

.step-text {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
}

@keyframes fadeSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes growLine {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

.price_main_div {
    padding: 60px;
}

@media (max-width: 768px) {
    .price_main_div {
        padding: 30px;
    }

    .timeline-container {
        flex-direction: column;
    }

    .timeline-line {
        top: auto;
        left: 50%;
        width: 4px !important;
        height: 90%;
        transform: translateX(-50%);
        visibility: hidden;
    }

    .timeline-step {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .topdiv {
        display: flow-root !important;
    }

    .top_mg_img {
        width: 20rem !important;
    }
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeLeft 1s ease forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-right {
    transform: translateX(60px);
    animation: fadeRight 2s ease forwards;
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-down {
    transform: translateY(-60px); /* Starts 60px higher */
    animation: fadeDown 2s ease forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Settles into original position */
    }
}

/* Service Body */
.service_body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
}

.services-section {
    padding: 5rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-content{
    padding: 5rem 0.5rem 0rem;
}

.seo-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.seo-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .seo-content{
        padding: 3rem 0.5rem 0rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
}

/* Timeline Series */
.timeline_ser {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 2rem;
}

.timeline_ser-item {
    background: #ffffff;
    border-left: 4px solid #6e8efb;
    padding: 1rem 1rem 1rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline_ser-item:hover {
    transform: scale(1.02);
}

.timeline_ser-icon {
    position: absolute;
    left: -1.5rem;
    top: 1rem;
    background: linear-gradient(135deg, #6e8efb, #0891b2);
    color: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.timeline_ser-content h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.timeline_ser-content p {
    margin: 0.5rem 0 0;
    color: #666;
}







.location_body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: #ecfeff;
}

.locations-section {
    position: relative;
    padding: 5rem 1rem;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #ffffff 0%, #e0f2fe 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Header */
.header-group {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: -webkit-linear-gradient(45deg, var(--text-main), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    /* Wider container for horizontal map */
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    aspect-ratio: 2 / 1;
    /* Wide rectangle ratio */
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.map-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Map Markers (Absolute Positioning) */
.map-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-marker:hover {
    transform: scale(1.1);
    z-index: 10;
}

.marker-pin {
    width: 48px;
    height: 48px;
    background: #ef4444;
    /* Red pin */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
    border: 3px solid white;
    position: relative;
}

.marker-pin::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ef4444;
    animation: map_pulse 2s infinite;
}

.marker-info {
    background: var(--card-white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    width: 180px;
    /* Fixed width for text */
}

.marker-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.marker-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Positioning Logic (Spread out for Wide Map) */
.marker-1 {
    top: 30%;
    left: 15%;
}

.marker-2 {
    top: 20%;
    left: 40%;
}

.marker-3 {
    top: 60%;
    left: 60%;
}

.marker-4 {
    top: 55%;
    left: 30%;
}

/* Mobile Route View */
@media (max-width: 768px) {
    .map-container {
        aspect-ratio: auto;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        padding-left: 2rem;
        /* Space for the timeline line */
    }

    .map-bg-image {
        display: none;
        /* Hide map image on mobile */
    }

    .map-marker {
        position: relative;
        top: auto !important;
        left: auto !important;
        margin-bottom: 2rem;
        width: 100%;
        transform: none !important;
    }

    /* Vertical Timeline Line */
    .map-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 23px;
        /* Align with center of pins */
        width: 2px;
        background: repeating-linear-gradient(to bottom, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
        z-index: 0;
    }

    .marker-pin {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        /* Prevent shrinking */
        z-index: 1;
        /* On top of line */
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        /* Blue pins for mobile timeline */
        border: 3px solid #ecfeff;
    }

    .marker-pin::after {
        border-color: var(--primary);
    }

    .marker-info {
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
}






/* Why Choose Us CSS */
.dbody {
    width: 100%;
}

.container-why {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    animation: moveBlob 20s infinite alternate;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(100, 180, 255, 0.4);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(150, 100, 255, 0.3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

/* Orbit System */
.orbit-system {
    position: relative;
    width: 800px;
    height: 800px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interaction-node {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

/* Center Circle */
.center-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    box-shadow: 0 10px 40px rgba(33, 147, 176, 0.4);
    z-index: 10;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatCenter 6s ease-in-out infinite;
}

.center-circle h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.center-circle .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2.5s infinite;
    z-index: -1;
}

/* Feature Circles */
.feature-circle {
    width: var(--circle-size);
    height: var(--circle-size);
    top: 50%;
    left: 50%;
    margin-left: calc(var(--circle-size) / -2);
    margin-top: calc(var(--circle-size) / -2);
    opacity: 1;
}

.glass-surface {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-circle:hover .glass-surface {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}

.feature-circle h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.feature-circle p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.2;
}

/* Positioning Features around the Circle */
.item-1 {
    transform: rotate(-90deg) translate(var(--orbit-radius)) rotate(90deg);
}

.item-2 {
    transform: rotate(-30deg) translate(var(--orbit-radius)) rotate(30deg);
}

.item-3 {
    transform: rotate(30deg) translate(var(--orbit-radius)) rotate(-30deg);
}

.item-4 {
    transform: rotate(90deg) translate(var(--orbit-radius)) rotate(-90deg);
}

.item-5 {
    transform: rotate(150deg) translate(var(--orbit-radius)) rotate(-150deg);
}

.item-6 {
    transform: rotate(210deg) translate(var(--orbit-radius)) rotate(-210deg);
}

@keyframes map_pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* Keyframes */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@keyframes floatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(var(--angle) * -1)) scale(0);
    }
}

@keyframes bubbleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .container-why {
        height: auto;
        display: block;
        min-height: auto;
        padding-bottom: 50px;
    }

    .blob {
        display: none;
    }

    .orbit-system {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .center-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 40px;
    }

    .feature-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0;
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 100px;
    }

    /* Reset helper classes for mobile */
    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        transform: none;
    }

    .glass-surface {
        border-radius: 20px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.6);
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* .container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* Background Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    animation: moveBlob 20s infinite alternate;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(100, 180, 255, 0.4);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(150, 100, 255, 0.3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

/* Orbit System */
.orbit-system {
    position: relative;
    width: 800px;
    /* Container for the orbit */
    height: 800px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Common Interactive Node Styles */
.interaction-node {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

/* Center Circle */
.center-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    box-shadow: 0 10px 40px rgba(33, 147, 176, 0.4);
    z-index: 10;
    color: white;
    /* Center it explicitly just in case flex fails or we need absolute center of orbit-system */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatCenter 6s ease-in-out infinite;
}

.center-circle h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.center-circle .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2.5s infinite;
    z-index: -1;
}

/* Feature Circles */
.feature-circle {
    width: var(--circle-size);
    height: var(--circle-size);
    /* Basic positioning at the center, will move with transforms */
    top: 50%;
    left: 50%;
    margin-left: calc(var(--circle-size) / -2);
    margin-top: calc(var(--circle-size) / -2);
}

.glass-surface {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-circle:hover .glass-surface {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}

.feature-circle h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    /* Darker blue for contrast */
}

.feature-circle p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.2;
}

/* Positioning Features around the Circle 
   Logic change: rotate container, reverse-rotate child 
   BUT we want them upright. 
   Calculation: translate(0, -radius) rotates from top.
*/

/* 1. Eco-Friendly (Top: -90deg or 270deg visual, CSS 0deg starts right usually not top, let's just use rotate) */
/* Actually, let's use the explicit trigonometry calc approach for clean CSS variables or hardcoded for stability */
/* Top center is -90deg. 
   Item 1: -90 deg.
   Item 2: -30 deg.
   Item 3: 30 deg.
   Item 4: 90 deg.
   Item 5: 150 deg.
   Item 6: 210 deg.
*/

.item-1 {
    transform: rotate(-90deg) translate(var(--orbit-radius)) rotate(90deg);
}

.item-2 {
    transform: rotate(-30deg) translate(var(--orbit-radius)) rotate(30deg);
}

.item-3 {
    transform: rotate(30deg) translate(var(--orbit-radius)) rotate(-30deg);
}

.item-4 {
    transform: rotate(90deg) translate(var(--orbit-radius)) rotate(-90deg);
}

.item-5 {
    transform: rotate(150deg) translate(var(--orbit-radius)) rotate(-150deg);
}

.item-6 {
    transform: rotate(210deg) translate(var(--orbit-radius)) rotate(-210deg);
}

/* Animation Delays for entrance */
.feature-circle {
    opacity: 0;
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.item-1 {
    animation-delay: 0.1s;
}

.item-2 {
    animation-delay: 0.2s;
}

.item-3 {
    animation-delay: 0.3s;
}

.item-4 {
    animation-delay: 0.4s;
}

.item-5 {
    animation-delay: 0.5s;
}

.item-6 {
    animation-delay: 0.6s;
}


/* Keyframes */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@keyframes floatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(var(--angle) * -1)) scale(0);
    }

    /* This override is tricky with specific rotations. Better to animate opacity and a generic scale on the child content maybe? No, let's keep it simple. */
    /* Re-declaring transform to fix the animation overwrite issue */
}

/* Fix for animation overwriting transform:
   We need to define specific keyframes or use a wrapper.
   Simpler: Animate the .glass-surface scale/opacity instead of the container position.
*/
.feature-circle {
    opacity: 1;
    /* Reset opacity on container */
    transform: none;
    /* We set transform via specific classes above, don't override */
}

/* Wait, I cannot animate "transform" in keyframes if I use transform for positioning unless I hardcode everyone.
   Alternative:
   Position using top/left % and margins.
   1 (Top): top: 50% - R. left: 50%.
   Let's stick to the current transform approach but wrap the content for animation.
*/

.feature-circle {
    /* Restore the transform styles from above */
}

/* Re-applying helper classes because I realized the animation logic flaw */
.item-1 {
    transform: rotate(-90deg) translate(var(--orbit-radius)) rotate(90deg);
}

.item-2 {
    transform: rotate(-30deg) translate(var(--orbit-radius)) rotate(30deg);
}

.item-3 {
    transform: rotate(30deg) translate(var(--orbit-radius)) rotate(-30deg);
}

.item-4 {
    transform: rotate(90deg) translate(var(--orbit-radius)) rotate(-90deg);
}

.item-5 {
    transform: rotate(150deg) translate(var(--orbit-radius)) rotate(-150deg);
}

.item-6 {
    transform: rotate(210deg) translate(var(--orbit-radius)) rotate(-210deg);
}

.feature-circle .glass-surface {
    opacity: 0;
    transform: scale(0.5);
    animation: bubbleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.item-1 .glass-surface {
    animation-delay: 0.1s;
}

.item-2 .glass-surface {
    animation-delay: 0.2s;
}

.item-3 .glass-surface {
    animation-delay: 0.3s;
}

.item-4 .glass-surface {
    animation-delay: 0.4s;
}

.item-5 .glass-surface {
    animation-delay: 0.5s;
}

.item-6 .glass-surface {
    animation-delay: 0.6s;
}

@keyframes bubbleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .dbody {
        height: auto;
        padding: 50px 20px;
        overflow-y: auto;
    }

    /* .container {
        height: auto;
        display: block;
    } */

    .orbit-system {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .center-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 40px;
        animation: floatMobile 3s infinite ease-in-out;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .feature-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        /* Reset rotation positioning */
        margin: 0;
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 100px;
    }

    /* Reset helper classes */
    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        transform: none;
    }

    .glass-surface {
        border-radius: 20px;
        /* Rectangular cards on mobile */
        flex-direction: row;
        /* Horizontal text align */
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.6);
        /* Less transparent for readability */
    }

    .feature-circle h3 {
        margin-bottom: 2px;
        font-size: 1.2rem;
    }

    .feature-circle p {
        font-size: 0.95rem;
    }
}







/* Footer Section Styles */
.footer {
    background: linear-gradient(135deg, #6e8efb, #0891b2);
    color: white;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffca28;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #ffeb3b;
    text-decoration: none;
    cursor: pointer;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #ffffff33;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
    }
}

/* Social Bar */
.social-bar {
    position: fixed;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.social-bar .icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
    padding: 0 5px;
    box-shadow: 0 0 6px 0 #3e3d3d;
    margin-bottom: 5px;
}

.social-bar .icon:hover {
    width: 160px;
}

.social-bar .hover-text {
    font-size: 0px;
    margin-left: 0px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.social-bar .icon:hover .hover-text {
    opacity: 1;
    font-size: 16px;
    margin-left: 10px;
}

.social-bar .whatsapp {
    background-color: #25D366;
}

.social-bar .call {
    background-color: #e74c3c;
}

/* Floating Buttons (Mobile) */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn {
    /* background-color: #007bff !important; */
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .floating-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .social-bar {
        display: none;
    }
}


/* --- Popup Styles (from popup.component.css) --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    border-radius: 10px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.styled-form {
    /* max-width: 400px; */
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

input,
textarea {
    width: 96%;
    padding: 12px 0 12px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

input:focus,
textarea:focus {
    border-color: #6e8efb;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #a777e3, #6e8efb);
}

/* Helper for popup toggling */
.hidden {
    display: none !important;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}