@font-face {
    font-family: "Gugi-regular";
    src: url("/static/vendor/googleFonts/Gugi-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "inter";
    src: url("/static/vendor/googleFonts/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.gugi {
    font-family: "Gugi-regular";
}

html {
    /* overflow-x: hidden !important; */
    scroll-behavior: smooth;
}


body {
    font-family: "inter";
    color: white;
    scroll-behavior: smooth;
    /* padding-bottom: 150px; */
    overflow-x: hidden !important;
    text-transform: capitalize;
    font-weight: 300 !important;
    background: #000;
}

/***************************************Navbar style start****************************************/

.appHeader {
    position: sticky !important;
    top: 0;
    z-index: 1000;
}



.appNavBar {
    background: #000;
}

.navRow {
    display: flex;
    justify-content: space-between;
    padding-inline: clamp(20px, 8vw, 100px);
    height: 100px;
}

.navLogo img {
    display: block;
}

.navLogo img {
    display: block;
    transition: filter 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.navLogo:hover img {
    filter: grayscale(1);
    transform: scale(1.03);
    cursor: pointer;
}


.navMenu {
    display: flex;
    align-items: center;
}

.menuList {
    display: flex;
    gap: clamp(2rem, 6vw, 6.25rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.menuList a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.2vw, 1.125rem) !important;
    font-weight: 400 !important;
    padding: 4px 0;
    transition:
        color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.menuList a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50%;
    height: 2px;
    background: #FF6A00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menuList a:hover {
    color: #FF6A00;
    transform: translateY(-1px);
}

.menuList a:hover::after {
    transform: scaleX(1);
}

.menuList a.active {
    color: #FF6A00;
    transform: translateY(-1px);
}

.menuList a.active::after {
    transform: scaleX(1);
}

.menuToggle {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.mobileMenu {
    display: none;
    flex-direction: column;
    background: #111;
}

.mobileMenu a {
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    border-top: 1px solid #222;
}


.mobileMenu {
    position: absolute;
    top: 70px;
    right: clamp(20px, 8vw, 150px);
    background: #fff;
    border-radius: 4px;
    min-width: 220px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
    transform-origin: top right;
    pointer-events: none;
    transition:
        opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 999;
}

.mobileMenu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobileMenu a {
    display: block;
    padding: 14px 20px;
    font-weight: 400 !important;
    color: #000;
    text-decoration: none;
    font-size: clamp(0.9rem, 1vw, 1rem);
    background: #ffffff;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.mobileMenu a:hover {
    background: #FF6A00;
    color: #fff;
    padding-left: 26px;
}

.mobileMenu a+a {
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .menuList {
        display: none;
        font-size: clamp(0.875rem, 1.2vw, 1.125rem) !important;
    }

    .menuToggle {
        display: block;
    }

    .mobileMenu.show {
        display: flex;
    }
}

/***************************************index page style start****************************************/

.indexHero {
    background-image: url("/static/img/background/indexHeroBg.png");
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.indexContent {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 2.5rem 3rem;
}

.bgOrbits {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;

    background: radial-gradient(circle,
            rgba(255, 140, 0, 0.992),
            rgba(255, 140, 0, 0.897),
            transparent 70%);

    animation: floatMove 14s ease-in-out infinite alternate;
    will-change: transform;
}

.o1 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 15%;
    animation-duration: 18s;
}

.o2 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    right: 10%;
    animation-duration: 22s;
}

@keyframes floatMove {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(60px, -40px, 0);
    }

    100% {
        transform: translate3d(-40px, 60px, 0);
    }
}

@media(max-width:424px) {
    .indexHero {
        height: 70vh;
    }
}


.indexAboutUsSecContainer {
    max-width: 1500px;
    margin-inline: auto;
    padding: clamp(1.5rem, 4vw, 4rem);
}

.indexAboutUsSecContainer>h2 {
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    text-align: center;
}

.indexAboutUsSecContainer>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    overflow-x: hidden !important;
}


.indexAboutUsSecContainer p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: clamp(1.2rem, 2vw, 2rem);
}


.indexAboutUsSecContainer img {
    width: 100%;
    border-radius: clamp(0.75rem, 2vw, 1.5rem);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 0 rgba(255, 106, 0, 0);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.indexAboutUsSecContainer img:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(255, 106, 0, 0.35);
    cursor: pointer;
    filter: saturate(1.3)
}

@media (max-width: 768px) {
    .indexAboutUsSecContainer>div {
        grid-template-columns: 1fr;
        gap: clamp(1.2rem, 4vw, 2rem);
        text-align: center;
    }

    .indexAboutUsSecContainer p {
        margin-inline: auto;
        max-width: 45ch;
    }
}

.indexAboutUsSecContainer {
    position: relative;
    overflow: hidden;
}

.radialOrbitHalf {
    position: absolute;
    top: 50%;
    right: 120px;

    width: 300px;
    height: 300px;
    border-radius: 50%;

    transform: translateY(-50%);

    background: radial-gradient(circle,
            rgba(255, 106, 0, 0.45) 0%,
            rgba(255, 106, 0, 0.25) 35%,
            rgba(255, 106, 0, 0.1) 55%,
            transparent 70%);

    filter: blur(35px);
    opacity: 0.9;
    z-index: -1;
}

@media (max-width: 768px) {
    .radialOrbitHalf {
        width: 180px;
        height: 180px;
        right: -80px;
        filter: blur(25px);
    }
}


.indexServicesSecContainer {
    max-width: 1500px;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 5rem);
    position: relative;
}

.indexServicesSecContainer h2 {
    margin-bottom: clamp(1rem, 2.5vw, 2rem);
}

.indexServicesSecContainer p {
    max-width: 70ch;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    opacity: 0.9;
}

.indexServicesSecContainer>div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.indexServicesSecContainer>div>div {
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 25px 50px rgba(255, 106, 0, 0.35);

}

.indexServicesSecContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.indexServicesSecContainer>div>div>a {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: clamp(0.8rem, 1.5vw, 1.2rem);
    background: linear-gradient(0deg, #ff6a00, #ff6a00);
    text-align: center;
    cursor: pointer;
}

.indexServicesSecContainer span {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    letter-spacing: 0.5px;
}

.indexServicesSecContainer>div>div:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(255, 106, 0, 0.35);
}

.indexServicesSecContainer>div>div:hover img {
    transform: scale(1.08);
}


@media (max-width: 768px) {
    .indexServicesSecContainer>div {
        grid-template-columns: 1fr;
    }

    .indexServicesSecContainer p {
        padding-inline: 1rem;
    }
}

.indexContactSecContainer {
    max-width: 1400px;
    margin-inline: auto;
    padding: clamp(1.5rem, 6vw, 5rem);
    position: relative;
    /* overflow: hidden; */
}

/* GRID */
.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: clamp(2rem, 5vw, 4rem);
}

/* LEFT */
.contactLeft h4 {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.contactLeft p {
    max-width: 45ch;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    opacity: 0.9;
}

/* CARD */
.contactCard {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 45px rgba(255, 106, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 10;

}

/* ITEMS */
.contactItem {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.3rem;
}

.contactItem i {
    background: #ff6a00;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contactItem:hover i {
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.6);
    transform: scale(1.05);
}

/* Smooth global transitions */
.contactCard,
.contactItem,
.contactItem i {
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ITEM HOVER */
.contactItem:hover {
    transform: translateY(-4px);
}

/* ICON BASE */
.contactItem i {
    background: linear-gradient(135deg, #ff6a00, #ff9f45);
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.35);
}

/* ICON HOVER – premium glow */
.contactItem:hover i {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 0 25px rgba(255, 106, 0, 0.8),
        0 12px 30px rgba(0, 0, 0, 0.35);
    transform: scale(1.12) rotate(3deg);
}

/* CARD reacts subtly */
.contactCard:has(.contactItem:hover) {
    box-shadow:
        0 0 55px rgba(255, 106, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}


.contactItem p {
    margin: 0;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.6;
}

/* ===== BACKGROUND ORBITS ===== */
.contactOrbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.6;
    background: radial-gradient(circle,
            rgba(255, 106, 0, 0.937),
            rgba(255, 106, 0, 0.749),
            transparent 70%);
    animation: floatContact 18s ease-in-out infinite alternate;
    z-index: 1;
}

.contactOrbit.o1 {
    width: clamp(160px, 22vw, 270px);
    height: clamp(160px, 22vw, 270px);
    top: 10%;
    left: 80px;
}

.contactOrbit.o2 {
    width: clamp(180px, 24vw, 300px);
    height: clamp(180px, 24vw, 300px);
    top: 40px;
    right: 80px;
    animation-duration: 22s;
    z-index: 0;
}

.contactOrbit.o3 {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    top: 45%;
    right: 65%;
    animation-duration: 20s;
}

/* FLOAT ANIMATION */
@keyframes floatContact {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(40px, -30px);
    }
}

@media (max-width: 768px) {
    .contactGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contactLeft p {
        margin-inline: auto;
    }

    .contactItem {
        justify-content: center;
        text-align: left;
    }

    .contactCard {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 370px) {
    .contactGrid {
        gap: 1.2rem !important;
    }

    .contactLeft h4 {
        font-size: 1.1rem !important;
    }

    .contactLeft p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .contactCard {
        padding: 1.2rem;
        align-items: flex-start;
    }

    .contactItem {
        gap: 0.7rem !important;
    }

    .contactItem i {
        width: 32px;
        height: 32px;
        font-size: 0.85rem !important;
    }

    .contactItem p {
        font-size: 0.85rem !important;
    }
}

.contactItem a {
    color: inherit;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.4vw, 1.25rem) !important;
    font-weight: 400;
    text-transform: lowercase;

}

.contactItem a:hover {
    color: #ff6a00;
    text-decoration: underline;
}



.footerContainer {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 6rem;
}

/* Brand */
.footerBrand p {
    margin-top: 15px;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    line-height: 1.6;
    color: #cfcfcf;
}

/* Columns */
.footerCol p {
    color: #ff6a00;
    margin-bottom: 15px;
    font-size: clamp(1.5rem, 2.2vw, 2.0625rem) !important;
}

.footerCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerCol ul li {
    margin-bottom: 10px;
}

.footerCol ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
}

.footerCol ul li a:hover {
    color: #ff6a00;
    padding-left: 5px;
}

.footerSocial {
    display: flex;
    gap: 15px;
}

.footerSocial a {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footerSocial a:hover {
    background: #ff6a00;
    color: #fff;
}

.footerBottom {
    margin-top: 50px;
    background: #ff6a00;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    font-size: clamp(0.65rem, 1vw, 0.95rem) !important;
}

.footerBottom span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .footerContainer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footerSocial {
        justify-content: center;
    }
}

/***************************************services page style start****************************************/

.servicesHeroSecContainer {
    background: url("/static/img/background/servicePageHeroBg.png");
    background-position: center;
    background-size: cover;

    /* RESPONSIVE HEIGHT */
    height: 90vh;

    display: flex;
    align-items: center;
}

/* CONTENT */
.servicesHeroSecContainerContent {
    display: flex;
    flex-direction: column;

    /* RESPONSIVE PADDING */
    padding: clamp(1.5rem, 4vw, 4rem);
}

@media (max-width: 768px) {
    .servicesHeroSecContainer {
        justify-content: center;
        text-align: center;
        height: 70vh;

    }
}


.videoEditingServiceSecContainer {
    /* max-width: 1400px; */
    margin-inline: auto;
    position: relative;
}

/* ===== TITLE PILL ===== */
.serviceTitle {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);

}

.serviceTitle p {
    background: #ff6a00;
    color: #fff;
    padding: clamp(0.6rem, 1vw, 0.9rem) clamp(1.5rem, 4vw, 3rem);
    font-size: clamp(1.1rem, 2.2vw, 2.3rem) !important;

    box-shadow:
        0 0 38px rgba(255, 106, 0, 0.6);

    display: inline-block;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

/* HOVER */
.serviceTitle p:hover {
    transform: translateY(-4px) scale(1.02);

    filter: brightness(1.05);

    box-shadow:
        0 10px 35px rgba(255, 106, 0, 0.85),
        0 0 60px rgba(255, 106, 0, 0.7);
}


/* ===== GRID ===== */
.serviceGrid {
    display: grid;
    grid-template-columns: 1fr 1.03fr;
    align-items: center;
}

.serviceGrid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* ===== IMAGE ===== */
.serviceImg {
    position: relative;
    overflow: hidden;

}

.serviceImg {
    position: relative;
    overflow: hidden;
}

/* IMAGE DEFAULT */
.serviceImg img {
    width: 100%;
    border-radius: inherit;
    transition:
        transform 0.6s ease,
        filter 0.6s ease,
        box-shadow 0.6s ease;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(255, 106, 0, 0.25);
}

/* HOVER EFFECT */
.serviceImg:hover img {
    transform: scale(1.05);
    filter: saturate(1.3);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(255, 106, 0, 0.45);
}


/* ===== CONTENT CARD ===== */
.serviceContent {
    background: #191919;
    padding: clamp(1.8rem, 7vw, 7rem);
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.15);
}

.serviceContent h6 {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    margin-bottom: 1rem;
}

.serviceContent p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #dcdcdc;
}

.serviceContent .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .serviceGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .serviceGrid2 {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .serviceContent {
        text-align: left;
    }
}

.contentWritingServiceSecContainer,
.videoEditingServiceSecContainer {
    padding-top: 5rem;
}

/***************************************Contact Us page style start****************************************/

.contactUsHeroSecContainer {
    background: url("/static/img/background/contactUsPageHeroBg.png");
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: center;
}

.contactUsHeroSecContainerContent {
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 4vw, 4rem);
}

@media (max-width: 768px) {
    .contactUsHeroSecContainer {
        justify-content: center;
        text-align: center;
        height: 70vh;
        background-position: calc(100% - -21vw) center;
        background-size: cover;
    }
}

@media (max-width: 378px) {
    .contactUsHeroSecContainer {
        background-position: calc(100% - -81vw) center;
    }
}


.contactFormSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
    position: relative;
    width: 100%;
    padding-block: clamp(2.5rem, 6vw, 5rem);

}

.contactFormSection {
    position: relative;
    overflow: hidden;
}

/* COMMON ORBIT */
.roundOrbitLeft {
    position: absolute;
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(45px);
    opacity: 0.6;

    background: radial-gradient(circle,
            rgba(255, 106, 0, 0.9),
            rgba(255, 106, 0, 0.45),
            transparent 70%);
    top: 5%;
    left: -80px;
}

.roundOrbitRight {
    position: absolute;
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(45px);
    opacity: 0.8;

    background: radial-gradient(circle,
            rgb(255, 106, 0),
            rgb(255, 106, 0),
            transparent 70%);
    top: 35%;
    right: -40px;
}




/* ================= LEFT CONTENT ================= */
.contactLeftInContactPage {
    flex: 0 0 40%;
    max-width: 40%;
    padding:
        clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);

}

.contactLeftInContactPage h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.contactLeftInContactPage p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.8;
    color: #cfcfcf;
}

/* ================= FORM CARD ================= */
.contactFormCard {
    flex: 0 0 50%;
    max-width: 60%;
    background: #1919198d;
    backdrop-filter: blur(18px);
    border-radius: 50px 0px 0px 50px;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid #969696;
}

.contactFormCard h5 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* ================= GRID INPUTS ================= */
.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contactFormCard input,
.contactFormCard textarea,
.contactFormCard select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
}

.contactFormCard option {
    background-color: black !important;
}

.contactFormCard textarea {
    resize: none;
    margin-top: 1rem;
}

/* ================= BUTTON ================= */
.contactFormCard .btn {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0.6rem 2rem;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .contactFormSection {
        flex-direction: column;
        text-align: center;
        gap: 0px !important;
    }

    .contactLeftInContactPage,
    .contactFormCard {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 7px;
        border-radius: 20px;
    }

    .formGrid {
        grid-template-columns: 1fr;
    }
}

.contactUsAddressSecContainer {
    display: flex;
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem);
    background: #000;
}

.contactUsAddressSecContainer {
    position: relative;
    overflow: hidden;
}

.roundOrbitRight2 {
    position: absolute;
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(45px);
    opacity: 0.6;
    background: radial-gradient(circle,
            rgb(255, 106, 0),
            rgba(255, 106, 0, 0.7),
            transparent 70%);
    top: 35%;
    right: -40px;
}



/* MAP */
.mapCard {
    flex: 1.2;
    max-width: 560px;
    height: 370px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
}

.mapCard iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ADDRESS CARD */
.addressCard {
    flex: 1;
    max-width: 420px;
    padding: clamp(1.8rem, 4vw, 2.5rem);
    border-radius: 22px;

    background: linear-gradient(145deg,
            rgba(255, 255, 255, .14),
            rgba(255, 255, 255, .04));

    backdrop-filter: blur(18px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .12),
        0 30px 80px rgba(0, 0, 0, .65);

    color: #fff;
}

/* ITEM */
.addressItem {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.6rem;
    transition: transform .3s ease;
}

.addressItem:last-child {
    margin-bottom: 0;
}

.addressItem:hover {
    transform: translateX(6px);
}

/* ICON CIRCLE */
.iconCircle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff8a00, #ff5e00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow:
        0 8px 25px rgba(255, 106, 0, .55),
        inset 0 0 0 1px rgba(255, 255, 255, .25);
    transition: all .35s ease;
    flex-shrink: 0;
}

/* ICON HOVER */
.addressItem:hover .iconCircle {
    transform: scale(1.12) rotate(6deg);
    box-shadow:
        0 0 30px rgba(255, 120, 0, .9),
        0 0 60px rgba(255, 120, 0, .45);
}

/* TEXT */
.addressItem p {
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.6;
    opacity: .95;
}

.addressItem a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(.9rem, 1vw, 1rem) !important;
    line-height: 1.6;
    font-weight: 400;
    text-transform: lowercase;
}

.addressItem a:hover {
    text-decoration: underline;
    color: #ff8a00;
}


@media (max-width: 768px) {
    .contactUsAddressSecContainer {
        flex-direction: column;
    }

    .mapCard,
    .addressCard {
        width: 100%;
        max-width: 100%;
    }

    .addressItem {
        flex-wrap: wrap;
    }

}