/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
    /* ===== COLORS ===== */
    --Dark: #000000;
    --Light: #ffffff;
    --Yellow: #f9b54c;
    --Teal: #4d757f;
    --Mustard: #be7320;
    --Color_Para: #868484;

    --LightGray: #f4f4f4;
    --DarkGray: #1a1a1a;

    /* ===== FONTS ===== */
    --Heading: Heading;
    --Paragraph: Paragraph;
    --Special_Text: Special_Text;
}

/* =====================================================
   FONT FACE
===================================================== */
@font-face {
    font-family: Nav;
    src: url("/Static/FONTS/Signika/static/Signika-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heading;
    src: url("/Static/FONTS/OpenSauceOne-ExtraBold.ttf");
    font-display: swap;
}

@font-face {
    font-family: Paragraph;
    src: url("/Static/FONTS/MacsansRegular-VG2YV.otf");
    font-display: swap;
}

@font-face {
    font-family: Special_Text;
    src: url("/Static/FONTS/Takota-7LRl.otf");
    font-display: swap;
}

/* =====================================================
   BASE STYLES
===================================================== */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    user-select: none;

    background: linear-gradient(90deg, var(--Dark), #0c0c0c);
    background-size: 100px;
    color: var(--Light);
}

/* =====================================================
   SCROLLBAR
===================================================== */
body::-webkit-scrollbar {
    width: 1vh;
}

body::-webkit-scrollbar-track {
    background: var(--Mustard);
}

body::-webkit-scrollbar-thumb {
    background: transparent;
    box-shadow: 0 0 0 100000vh var(--Dark);
    border-radius: 22px;
}

/* =====================================================
   GLOBAL RESPONSIVE FIX
===================================================== */
@media only screen and (max-width: 965px) {
    .TextGraphicHeader {
        flex-direction: column;
    }
}




/* =====================================================
   SERVICE DETAILS COMPONENT
===================================================== */

/* ======================
   WRAPPER
====================== */

.service-details {
    position: relative;
    padding: 10% 5% 5%;
}

/* ======================
   CONTENT
====================== */

.service-details-content {
    width: 100%;
    position: relative;
    text-align: center;
}

.service-details-heading {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--Light);
    text-align: center;
    font-family: var(--Special_Text) !important;
}

.service-details-data {
    font-size: 1.875rem; /* 30px */
    font-weight: 300;
    padding: 2%;
    color: var(--Color_Para);
    font-family: var(--Paragraph) !important;
}

/* =====================================================
   RESPONSIVE STYLES
===================================================== */

/* ≤ 1450px */
@media (max-width: 1450px) {
    .service-details-heading {
        font-size: 4rem;
        font-weight: 700;
    }

    .service-details-data {
        font-size: 1.5rem;
    }
}

/* ≤ 1050px */
@media (max-width: 1050px) {
    .service-details-content {
        text-align: center;
    }
}

/* ≤ 850px */
@media (max-width: 850px) {
    .service-details {
        padding: 10% 5%;
    }
    .service-details-heading {
        font-size: 2rem;
        font-weight: 700;
    }


    .service-details-data {
        font-size: 1.2rem;
    }
}

/* ≤ 550px */
@media (max-width: 550px) {
    .service-details-heading {
        font-size: 3rem;
        font-weight: 900 !important;
    }

    .service-details-data {
        font-size: 0.875rem !important;
        line-height: 1.5rem !important;
    }
}

/* =====================================================
   DEVICE VISIBILITY HELPERS
===================================================== */

.right-phone {
    display: none;
}

.right_PC {
    display: block;
}

@media (max-width: 994px) {
    .right-phone {
        display: block;
    }

    .right_PC {
        display: none;
    }
}





/* =====================================================
   SIXTH BOX – TEXT GRAPHIC (TYPE 2)
===================================================== */
.sixth-box {
    display: flex;
    flex-direction: row;
    padding: 5% 10%;
    overflow: hidden;
}

/* =====================================================
   INNER WRAPPER
===================================================== */
.sixth {
    display: flex;
    flex-direction: row;
    column-gap: 5%;
    margin-top: 30px;
}

/* =====================================================
   IMAGE SECTION
===================================================== */
.sixth-box-pic {
    position: relative;
    width: 50%;
    height: auto;
    padding-top: 50px;
}

.small-ball {
    position: absolute;
    top: 0;
    width: 60%;
    height: auto;
    z-index: -1;
}

.vector1 {
    position: relative;
}

.vector1 > img {
    width: 100%;
    height: auto;
}

/* =====================================================
   CONTENT SECTION
===================================================== */
.combo {
    width: 50%;
    padding-top: 20px;
    position: relative;
}

.sixth-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.sixth-box-heading {
    font-family: var(--Heading);
    font-size: 4em;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3% 2%;
}

.sixth-box-para {
    font-family: var(--Paragraph);
    font-size: 1.7em;
    color: var(--Color_Para);
    padding: 2%;
    position: relative;
}

/* Button Wrapper */
.a {
    padding: 2%;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media (max-width: 1500px) {
    .sixth-box-heading {
        font-size: 2em;
    }

    .sixth-box-para {
        font-size: 1.5em;
    }
}

/* Medium Screens */
@media (max-width: 1250px) {
    .sixth-box {
        padding: 2% 10%;
    }
}

@media (max-width: 1050px) {
    .sixth-box-heading {
        font-size: 2em;
    }

    .sixth-box-para {
        font-size: medium;
    }

    .small-ball {
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 994px) {
    .sixth-box {
        padding: 5% 10% 10%;
    }

    .sixth {
        margin-top: 0;
    }

    .combo {
        padding-top: 10px;
    }
}

/* Tablet */
@media (max-width: 965px) {
    .sixth {
        flex-direction: column;
    }

    .sixth-box-pic,
    .combo {
        width: 100%;
    }

    .sixth-box-heading {
        font-size: 2.2em;
        text-align: center;
    }

    .sixth-box-para {
        font-size: 1.4em;
        text-align: center;
    }

    .a {
        display: flex;
        justify-content: center;
    }

    .button-6 {
        width: 250px;
        font-size: x-large;
        padding: 12px 20px;
        margin-left: auto;
        border: none;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .sixth {
        column-gap: 2%;
    }

    .sixth-box {
        padding: 10% 10% 20%;
    }
}

@media (max-width: 540px) {
    .sixth-box-heading {
        font-size: 1.2em;
        text-align: center;
    }

    .sixth-box-para {
        font-size: 1em;
        text-align: center;
    }

    .a {
        display: flex;
        justify-content: center;
    }

    .button-6 {
        width: 175px;
        font-size: 18px;
        padding: 12px 20px;
        margin-left: auto;
        border: none;
    }
}






/* =====================================================
   SEVENTH BOX – TEXT GRAPHIC (TYPE 1)
===================================================== */
.seventh-box {
    position: relative;
    padding: 5% 10%;
}

/* Decorative Element */
.flower-pot {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100px;
    height: auto;
    z-index: 2;
}

/* =====================================================
   INNER WRAPPER
===================================================== */
.seventh {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 5%;
}

/* =====================================================
   IMAGE SECTION
===================================================== */
.seventh-box-pic {
    width: 50%;
    height: auto;
    padding-top: 50px;
    align-self: center;
}

.vector2 > img {
    width: 100%;
    height: auto;
}

/* =====================================================
   CONTENT SECTION
===================================================== */
.combo1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    align-self: center;
}

.b {
    padding: 2%;
}

.seventh-box-heading {
    font-family: var(--Heading);
    font-size: 4em;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 2%;
}

.seventh-box-para {
    font-family: var(--Paragraph);
    font-size: 1.7em;
    color: var(--Color_Para);
    padding: 2%;
}

/* =====================================================
   BUTTON
===================================================== */
.button-7 {
    width: 220px;
    padding: 12px 20px;
    margin-left: auto;
    font-size: 22px;
    color: #fff;
    background-color: var(--Mustard);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.button-7:hover {
    background-color: green;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media (max-width: 1500px) {
    .seventh-box-heading {
        font-size: 2em;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: 1.5em;
    }
}

/* Medium Screens */
@media (max-width: 1050px) {
    .seventh-box-heading {
        font-size: 2em;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: medium;
    }
}

/* Tablet */
@media (max-width: 994px) {
    .seventh {
        column-gap: 2%;
    }

    .combo1 {
        width: 45%;
    }
}

/* Stack Layout */
@media (max-width: 965px) {
    .seventh-box {
        padding: 10% 10% 15%;
    }

    .seventh {
        flex-direction: column-reverse;
    }

    .combo1,
    .seventh-box-pic {
        width: 100%;
    }

    .seventh-box-pic {
        padding-top: 0;
        margin-top: 0;
    }

    .seventh-box-heading {
        font-size: 2.2em;
        text-align: center;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: 1.4em;
        text-align: center;
    }

    .b {
        display: flex;
        justify-content: center;
    }

    .button-7 {
        width: 250px;
        font-size: x-large;
    }
}

/* Mobile */
@media (max-width: 630px) {
    .flower-pot {
        width: 75px;
        top: -49px;
    }
}

@media (max-width: 540px) {
    .seventh-box-heading {
        font-size: 1.2em;
        text-align: center;
        font-weight: 900;
    }

    .seventh-box-para {
        font-size: 1em;
        text-align: center;
    }

    .button-7 {
        width: 175px;
        font-size: 18px;
    }

    .b {
        text-align: center;
    }
}





/* =====================================================
   TEXT GRAPHIC BUTTONS
===================================================== */

.TextGraphic_Button_1 {
    position: relative;
    z-index: 1;

    outline: none;
    cursor: pointer;

    background: #000;
    color: #fff;

    border: 2px solid var(--Mustard);
    border-radius: 10px;

    padding: 2% 5%;
    font-weight: 600;
    font-family: var(--Paragraph);
    letter-spacing: 2px;

    transition: color 0.3s ease, transform 0.2s ease;
}

/* Glow Effect Layer */
.TextGraphic_Button_1::before {
    content: '';
    position: absolute;
    inset: -5px;

    background: linear-gradient(45deg, #270cf3, var(--Mustard));
    background-size: 400%;

    filter: blur(6px);
    border-radius: 10px;

    z-index: -2;
    opacity: 0;

    transition: opacity 0.4s ease-in-out;
    animation: glowing_1 15s linear infinite;

    pointer-events: none;
}

/* Button Background Layer */
.TextGraphic_Button_1::after {
    content: '';
    position: absolute;
    inset: 0;

    background: #000;
    border-radius: 10px;

    z-index: -1;
}

/* Hover State */
.TextGraphic_Button_1:hover::before {
    opacity: 1;
}

/* Active / Click State */
.TextGraphic_Button_1:active {
    color: #000;
    transform: scale(0.97);
}

.TextGraphic_Button_1:active::after {
    background: #fff;
}

/* Glow Animation */
@keyframes glowing_1 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media only screen and (max-width: 2000px) {
    .TextGraphic_Button_1 {
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 1024px) {
    .TextGraphic_Button_1 {
        font-size: 1em;
        padding: 2% 5%;
    }
}

@media only screen and (max-width: 650px) {
    .TextGraphic_Button_1 {
        padding: 5%;
    }
}
