/* ════════════════════════════════════════
   THEME TOKENS
   ════════════════════════════════════════ */

:root,
[data-theme="light"] {
    --color-page-bg: #f5f5f5;
    --color-card-bg: #ffffff;
    --color-card-radius: 20px;
    --color-circle-1: #FF8F3F;
    --color-circle-2: #b0b0b0;
    --color-circle-3: #FF8F3F;
    --color-text-primary: #1a1a1a;
    --color-text-muted: #555555;
    --color-text-inverse: #ffffff;
    --color-orange: #FF8F3F;
    --color-orange-hover: #FF8F3F;
    --color-navbar-bg: #1a1a1a;
    --color-navbar-link: #ffffff;
    --color-navbar-active-bg: transparent;
    --color-concave-bg: #f5f5f5;
}

[data-theme="dark"] {
    --color-page-bg: #181818;
    --color-card-bg: #222222;
    --color-circle-1: #FF6B2B;
    --color-circle-2: #444444;
    --color-circle-3: #FF6B2B;
    --color-text-primary: #f0f0f0;
    --color-text-muted: #aaaaaa;
    --color-text-inverse: #ffffff;
    --color-navbar-bg: #0d0d0d;
    --color-concave-bg: #181818;
}

/* ════════════════════════════════════════
   BASE
   ════════════════════════════════════════ */

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

html,
body {
    height: 100%;
    font-family: 'Inter', sans-serif;
}



.main-container {
    background-color: red;


    padding: 48px 61px;
    ;
    color: var(--color-text-primary);
}

/* ════════════════════════════════════════
   CARD WRAPPER + CONCAVE CUT
   ════════════════════════════════════════ */

.card-wrapper {
    position: relative;
}

/* Concave cut top-left */
/* .card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--color-concave-bg);
    border-radius: 0 0 40px 0;
    z-index: 10;
    transition: background-color 0.3s ease;
} */

/* ════════════════════════════════════════
   CORNER LOGO
   ════════════════════════════════════════ */

.corner-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 139px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.corner-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* ════════════════════════════════════════
   HERO CARD
   ════════════════════════════════════════ */

.hero-card {
    position: relative;
    width: 100%;
    min-height: 894px;
    border-radius: 0 var(--color-card-radius) var(--color-card-radius) var(--color-card-radius);
    overflow: hidden;
    /* background-color: var(--color-card-bg); */
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

/* ════════════════════════════════════════
   BOUNCING CIRCLES
   ════════════════════════════════════════ */

@keyframes bounce1 {

    0%,
    100% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(30px, -60px);
    }

    50% {
        transform: translate(-20px, -30px);
    }

    75% {
        transform: translate(15px, -70px);
    }
}

@keyframes bounce2 {

    0%,
    100% {
        transform: translate(0px, 0px);
    }

    30% {
        transform: translate(-35px, 50px);
    }

    65% {
        transform: translate(40px, -40px);
    }
}

@keyframes bounce3 {

    0%,
    100% {
        transform: translate(0px, 0px);
    }

    35% {
        transform: translate(-30px, -55px);
    }

    70% {
        transform: translate(25px, 35px);
    }
}

.bounce-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    filter: blur(100px);
}

.bounce-circle-1 {
    width: 420px;
    height: 420px;
    background: var(--color-circle-1);
    opacity: 0.55;
    top: 40%;
    left: 325px;
    animation: bounce1 9s ease-in-out infinite;
}

.bounce-circle-2 {
    width: 380px;
    height: 380px;
    background: var(--color-circle-2);
    opacity: 0.45;
    top: 146px;
    right: 601px;
    animation: bounce2 11s ease-in-out infinite;
}

.bounce-circle-3 {
    width: 500px;
    height: 500px;
    background: var(--color-circle-3);
    opacity: 0.40;
    bottom: -180px;
    right: 8%;
    animation: bounce3 13s ease-in-out infinite;
}

/* ════════════════════════════════════════
   OVERLAY
   ════════════════════════════════════════ */

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('images/hero_bg_overlay.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
    pointer-events: none;
}

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */

.hero-nav {
    position: relative;
    z-index: 5;
    padding: 24px 28px 0 28px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 55px;
}

.pill-navbar {
    background-color: var(--color-navbar-bg);
    border-radius: 100px;
    padding: 0px 25px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    height: 46px;
}

.pill-navbar .nav-link {
    color: var(--color-navbar-link);
    font-size: 15px;
    font-weight: 400;
    /* padding: 7px 18px; */
    border-radius: 50px;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 100%;
    Width: 77px;
    Height: 34px;


}

.pill-navbar .nav-link:hover {
    color: var(--color-navbar-link);
    opacity: 0.85;
}

.pill-navbar .nav-link.active {
    background-color: #515151;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-navbar-link);
    border-radius: 17px;
}

/* Contact Us button */
.btn-contact {
    position: relative;
    background: linear-gradient(to right, transparent 50%, var(--color-orange) 50%);
    background-size: 200% 100%;
    background-position: right;
    color: var(--color-text-inverse) !important;
    border: none;
    /* box-shadow: 0 0 0 1.5px var(--color-orange); */
    border-radius: 50px;
    padding: 0px 18px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-position 0.3s ease-out, color 0.2s 0.1s, box-shadow 0.3s ease-out;
    height: 46px;
}

.btn-contact::before {
    content: '';
    position: absolute;
    inset: 0px;
    border-radius: 52px;
    background: hsla(25, 100%, 62%, 1);

    background: radial-gradient(circle, hsla(25, 100%, 62%, 1) 39%, hsla(0, 0%, 0%, 1) 100%);

    background: -moz-radial-gradient(circle, hsla(25, 100%, 62%, 1) 39%, hsla(0, 0%, 0%, 1) 100%);

    background: -webkit-radial-gradient(circle, hsla(25, 100%, 62%, 1) 39%, hsla(0, 0%, 0%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FF8F3F", endColorstr="#000000", GradientType=1);
    padding: 1.5px 2px 2px 1.5px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease-out;
}

.btn-contact:hover {
    background-position: left;
    color: var(--color-orange) !important;
    box-shadow: none;
}

.btn-contact:hover .contact-icon {
    color: var(--color-text-primary) !important;
}

.btn-contact:hover::before {
    opacity: 1;
}

.btn-contact .contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Hamburger */
.pill-toggler {
    background: transparent;
    border: none;
    outline: none;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px 8px;
}

.pill-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile dropdown */
.mobile-nav-menu {
    background: var(--color-navbar-bg);
    border-radius: 16px;
    padding: 8px;
    margin: 20px 28px 0 28px;
    display: none;
    position: relative;
    z-index: 5;
}

.mobile-nav-menu.show {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-menu .nav-link {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
    background: #2e2e2e;
    color: #fff;
}





/* ════════════════════════════════════════
   Navbar End
   ════════════════════════════════════════ */



/* ════════════════════════════════════════
   HERO CONTENT START
   ════════════════════════════════════════ */

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 40px 0 40px;
    color: var(--color-text-primary);
}

.hero-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    min-height: 780px;
}

/* ── Left ── */
.hero-left {
    flex: 0 0 auto;
    max-width: 500px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-primary);
}

.hero-title-highlight {
    color: var(--color-orange);
}

.hero-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.7;
    text-align: justify;
    max-width: 380px;
}

/* CTA button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--color-text-primary);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 0 10px 0 24px;
    height: 54px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s;
}

.btn-cta:hover {
    opacity: 0.85;
}

.btn-cta-icon {
    width: 36px;
    height: 36px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

/* Reviews */
.hero-reviews {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatars {
    display: flex;
}

.review-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
}

.review-avatars img:first-child {
    margin-left: 0;
}

.review-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.review-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.review-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ── Right ── */
.hero-right {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
}

.hero-img {
    height: 680px;
    width: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

/* Social icons */
.hero-socials {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 6;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange) !important;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
    background: var(--color-orange);
    color: #fff !important;
}











/* Navbar responsiveness */



@media only screen and (max-width: 992px) {
    .corner-logo {
        width: 101px;
        height: 88px;
    }

    .corner-logo img {
        width: 80px;
        height: 80px;
    }
}

@media only screen and (max-width: 1872px) {
    .corner-logo {
        width: 133px;
        height: 118px;
    }

    .corner-logo img {
        width: 80px;
        height: 80px;
    }
}

@media only screen and (max-width: 1750px) {
    .corner-logo {
        width: 124px;
        height: 105px;
    }
}

@media only screen and (max-width: 1650px) {
    .corner-logo {
        width: 117px;
        height: 104px;
    }

    .corner-logo img {
        width: 80px;
        height: 80px;
    }
}

@media only screen and (max-width: 1550px) {
    .corner-logo {
        width: 99px;
        height: 90px;
    }

    .corner-logo img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 931px) {
    .main-container {
    padding: 48px 0px;
}
}


@media only screen and (min-width: 1200px) {}


.nav-desktop {
    display: inline-flex;
}

.nav-mobile {
    display: none;
}

@media (min-width: 811px) {
    .nav-mobile {
        display: none !important;
    }

    .mobile-nav-menu {
        display: none !important;
    }
}

@media (max-width: 810px) {
    .nav-desktop {
        display: none !important;
    }

    .nav-mobile {
        display: inline-flex;
    }
}