/* =====================================================
   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;
    }
}























/* =====================================================
   VIDEO SECTION
===================================================== */
.video-service {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5% 10%;
    width: 100%;
    height: auto;
    position: relative;
    box-sizing: border-box;
}

/* =====================================================
   VIDEO HEADING
===================================================== */
.video-heading {
    display: flex;
    flex-direction: column;
    width: 35%;
    height: auto;
}

.video-heading-left,
.video-heading-right {
    display: flex;
    flex-direction: column;
}

.video-left-top {
    font-family: var(--Heading);
    font-weight: bold;
    font-size: x-large;
    padding-bottom: 10px;
}

.video-left-bottom {
    font-family: var(--Paragraph);
    font-size: larger;
    color: var(--Color_Para);
    padding-bottom: 10px;
}

.video-right-top {
    font-family: var(--Heading);
    font-size: 75px;
    text-transform: uppercase;
}

.video-right-bottom {
    font-family: var(--Paragraph);
    font-size: x-large;
    color: var(--Color_Para);
    padding: 20px 0 40px;

}

/* =====================================================
   VIDEO CONTENT
===================================================== */
.video-content {
    display: flex;
    flex-direction: column;
    width: 55%;
    height: auto;
}

.video-content-left,
.video-content-left-Logo {
    height: 100%;
    padding-top: 15px;
    z-index: -1;
}

.video-content-left video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-content-left-Logo img {
    width: 100%;
    height: auto;
    border: none;
}

/* =====================================================
   VIDEO GRID / SERVICES
===================================================== */
.video-content-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.video-right-service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 10px;
}

.video-right-logo {
    display: flex;
    justify-content: center;
}

.video-right-logo img {
    width: 80%;
    height: auto;
}

.video-right-name {
    font-family: var(--Paragraph);
    font-size: 0.9em;
    font-weight: 100;
    letter-spacing: 1px;
    padding-top: 10%;
    text-align: center;
    color: #fff;
}

/* =====================================================
   DECORATION
===================================================== */
.rectangle {
    position: absolute;
    width: 20%;
    height: 5%;
    background-color: var(--Mustard);
    transform: translate(50%, -52%);
    z-index: -2;
}

/* =====================================================
   CONTENT BOTTOM
===================================================== */
.video-content-bottom {
    display: flex;
    justify-content: space-between;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media (max-width: 2000px) {
    .rectangle {
        transform: translate(50%, -100%);
    }
}

@media (max-width: 1650px) {
    .rectangle {
        transform: translate(50%, -90%);
    }

    .video-content-right {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .video-right-top { font-size: 2.5em; }
    .video-left-top { font-size: 1.5em; }
    .video-left-bottom,
    .video-right-bottom { font-size: 1.1em; padding-bottom: 20px; }
}

/* Medium Screens */
@media (max-width: 1227px) {
    .video-content-right {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .video-right-service {
        width: 100%;
    }
}

@media (max-width: 1150px) {
    .video-right-logo img {
        width: 9vh;
        height: 9vh;
    }
}

/* Tablet */
@media (max-width: 1000px) {
    .video-service {
        flex-direction: column-reverse;
    }

    .video-heading,
    .video-content {
        width: 100%;
    }

    .video-heading {
        padding-top: 30px;
    }

    .rectangle {
        visibility: hidden;
    }

    .video-content-right {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        padding-bottom: 10%;
    }

    .video-right-top { font-size: 2.5em; }
    .video-left-top { font-size: 2.3em; }
    .video-left-bottom,
    .video-right-bottom { font-size: 1.1em; padding-bottom: 20px; }
}

/* Mobile */
@media (max-width: 650px) {
    .video-service {
        padding: 10% 5% 20%;
    }

    .video-content {
        row-gap: 20px;
        padding-top: 10%;
    }

    .video-content-right {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        column-gap: 30px;
    }

    .video-right-top {
        font-size: 50px;
        font-weight: 900;
    }

    .video-right-bottom {
        font-size: 1.1em;
        padding: 5% 0;
        text-align: left;
    }

    .video-left-top {
        font-size: xx-large;
        text-align: end;
    }

    .video-left-bottom {
        font-size: 1.1em;
        text-align: end;
    }

    .video-right-name {
        font-size: large;
        font-weight: 900;
        padding-top: 5%;
    }

    .video-right-logo img {
        width: 20vh;
        height: 30vh;
    }
}

/* Small Mobile */
@media (max-width: 550px) {
    .video-right-top { font-size: 35px; }
    .video-left-top { font-size: x-large; }

    .video-right-logo img {
        width: 100%;
        height: 25vh;
    }

    .video-right-name {
        font-size: 1em;
        font-weight: 500;
    }

    .video-content-right {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 468px) {
    .video-content-right {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .video-right-logo img {
        width: 15vh;
    }
}

















/* =====================================================
   ANIMATED MAIN HEADING
===================================================== */
.Animated-Heading {
    position: relative;
    height: 100vh;
    padding: 5% 5% 0;
    overflow: hidden;
}

/* =====================================================
   INNER WRAPPER
===================================================== */
.Animated-Heading-Inner {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    animation: fadeIn 1.5s ease-out forwards;
}

/* =====================================================
   MAIN HEADING
===================================================== */
.Animated-Heading-Main {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--Heading);
    font-size: 8em;
    font-weight: 900;
    letter-spacing: 10px;
    text-align: center;

    animation: slideDown 1s ease-out 0.5s forwards;
}

.Animated-Heading-Main img {
    width: 20%;
}

.Animated-Heading-Main span {
    color: var(--Mustard);
     font-family: var(--Special_Text);

}



/* =====================================================
   PARAGRAPH
===================================================== */
.Animated-Heading-Para {
    font-family: var(--Paragraph);
    font-size: 1.5em;
    color: grey;
    text-align: center;
    padding: 1% 5%;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media (max-width: 1400px) {
    .Animated-Heading-Main {
        font-size: 6.5em;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .Animated-Heading {
        height: 60vh;
        padding: 15% 5% 5%;
    }

    .Animated-Heading-Main {
        font-size: 5em;
    }

    .Animated-Heading-Para {
        font-size: 2.2em;
        padding: 5% 0;
    }
}

/* Small Tablets */
@media (max-width: 880px) {
    .Animated-Heading-Main {
        font-size: 3.5em;
    }

    .Animated-Heading-Para {
        font-size: 1.5em;
        padding: 5% 0;
    }
}

/* Mobile Landscape */
@media (max-width: 760px) {
    .Animated-Heading-Main {
        font-size: 3em;
    }

    .Animated-Heading-Para {
        font-size: 1.5em;
        padding: 5% 0;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .Animated-Heading {
        height: 50vh;
        padding: 0 5%;
    }

    .Animated-Heading-Main {
        font-size: 1.7em;
    }

    .Animated-Heading-Para {
        font-size: 1.1em;
    }
}












/* =====================================================
   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: 2.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: 2.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%;
    }
}
