/* =====================================================
   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;
    }
}


/* =====================================================
   CROUSEL SECTION
===================================================== */
.crousel {
    display: flex;
    flex-flow: row;
    width: 100%;
    height: 75em;
}

/* Left / Right Outer */
.carousel-left-outer,
.carousel-right-outer {
    width: 50%;
}

.carousel-left-outer {
    display: flex;
    align-items: center;
    color: var(--Light);
}

.carousel-right-outer {
    background-color: var(--Light);
    display: -webkit-inline-box;
}

/* Left Content */
.crousel-left {
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-end;
}

/* Text */
.crousel-sub {
    font-family: var(--Paragraph);
    font-size: 7em;
    font-weight: 900;
    margin-bottom: 2%;

    background: var(--Mustard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crousel-main {
    font-family: var(--Heading);
    font-size: 70px;
    margin-bottom: 5%;
    text-transform: uppercase;
    color: var(--Light);
}

/* Button */
.crousel-button {
    border-radius: 5px;
    border: 1px solid var(--Light);
    background-color: transparent;
    color: var(--Light);
    font-size: 45px;
    padding: 15px 35px;
}

/* Links */
.crousel-links {
    display: flex;
    height: 100%;
    font-size: xxx-large;
}

.crousel-links ul {
    padding: 5% 0;
    margin-bottom: auto;
}

.crousel-links ul li {
    display: inline;
    list-style: none;
    padding: 12px 10px;
    font-family: var(--Paragraph);
    color: var(--Color_Para);
    cursor: pointer;
    transition: transform 0.5s ease, color 0.5s ease;
}

.crousel-links ul li:hover {
    transform: scale(1.2);
    color: var(--Mustard);
}

/* Right Image */
.crousel-right {
    width: 100%;
}

.crousel-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Large Screens */
@media only screen and (max-width: 2500px) {
    .crousel { height: 65em; }
}

@media only screen and (max-width: 2000px) {
    .crousel { height: 60em; }

    .crousel-links { font-size: xx-large; }
    .crousel-main { font-size: 6em; }
    .crousel-sub { font-size: 10vh; }
}

/* Medium Screens */
@media only screen and (max-width: 1450px) {
    .crousel { height: 40em; }
}

@media only screen and (max-width: 1350px) {
    .crousel { height: 38em; }

    .crousel-sub { font-size: 2em; }
    .crousel-main { font-size: 3.6em; }
    .crousel-links { font-size: x-large; }
}

@media only screen and (max-width: 1250px) {
    .crousel-main { font-size: 55px; }
}

/* Tablets */
@media only screen and (max-width: 1080px) {
    .crousel-right img {
        height: auto;
    }
}

/* Mobile */
@media only screen and (max-width: 850px) {
    .crousel {
        height: auto;
    }

    .crousel-left {
        width: 100%;
        padding: 20px;
        padding-top: 25%;
        align-items: center;
        text-align: center;
    }

    .crousel-sub { font-size: x-large; }
    .crousel-main { font-size: xx-large; }

    .crousel-links ul { padding: 4% 0; }
}

@media only screen and (max-width: 650px) {
    .crousel {
        flex-direction: column;
    }

    .carousel-left-outer,
    .carousel-right-outer {
        width: 100%;
    }

    .crousel-links { font-size: large; }
}

@media only screen and (max-width: 450px) {
    /* Reserved for future micro-fixes */
}







/* =====================================================
   GRAPHIC ANIMATION MODULE
===================================================== */
.module {
    position: relative;
    padding: 10% 10% 50px;
    color: #fff;
}

/* =====================================================
   IMAGE
===================================================== */
.module-img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    position: relative;
}

/* =====================================================
   COMPONENT WRAPPER
===================================================== */
.comp2-outter-div {
    display: flex;
    width: 60%;
    position: absolute;
}

/* =====================================================
   LEFT IMAGE / HEADING
===================================================== */
.comp2-left-image {
    width: 38%;
    align-self: center;
    padding: 2%;
    font-size: xx-large;
    cursor: pointer;
    z-index: 10;
}

.comp2-heading-left {
    font-family: var(--Heading);
    letter-spacing: 2px;
    color: #000;
}

/* =====================================================
   RIGHT SERVICES
===================================================== */
.comp2-right-services {
    width: 60%;
    z-index: 1;
}

/* =====================================================
   BUTTON / HEADING BLOCKS (SHARED)
===================================================== */
.comp2-heading-right,
.comp2-heading-right-left,
.comp2-heading-right-left-one {
    background-color: var(--Light);
    padding: 8%;
    width: 45%;
    border-radius: 70px;
    text-align: center;
    font-family: var(--Heading);
    font-size: 30px;
    color: #000;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Individual spacing */
.comp2-heading-right {
    margin: 0;
}

.comp2-heading-right-left {
    margin: 5% 20%;
}

.comp2-heading-right-left-one {
    margin: 5% 24%;
}

/* Hover effects */
.comp2-heading-right:hover,
.comp2-heading-right-left:hover,
.comp2-heading-right-left-one:hover {
    box-shadow: 0 0 10px #fff;
    transform: scale(1.05);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Ultra Large Screens */
@media (max-width: 2500px) {
    .module {
        padding: 15% 20%;
    }

    .comp2-heading-left {
        font-size: 5vh;
    }
}

/* Large Screens */
@media (max-width: 1900px) {
    .comp2-heading-right,
    .comp2-heading-right-left,
    .comp2-heading-right-left-one {
        font-size: 20px;
    }

    .comp2-heading-right-left {
        margin: 8% 20%;
    }

    .comp2-heading-right-left-one {
        margin: 7% 24%;
    }
}

@media (max-width: 1500px) {
    .comp2-heading-right-left {
        margin: 5.5% 20%;
    }

    .comp2-heading-right-left-one {
        margin: 0% 24% 4%;
    }
}

@media (max-width: 1250px) {
    .comp2-heading-right-left {
        margin: 7% 20% 4%;
    }

    .comp2-heading-right-left-one {
        margin: 6% 24% 4%;
    }
}

/* Tablets */
@media (max-width: 1070px),
       (max-width: 1000px),
       (max-width: 780px),
       (max-width: 680px),
       (max-width: 650px),
       (max-width: 600px) {
    .comp2-heading-left {
        font-size: 2vh;
    }
}

@media (max-width: 870px) {
    .module {
        padding: 20% 15% 10%;
    }

    .comp2-outter-div {
        width: 70%;
    }

    .comp2-left-image {
        font-size: 13px;
    }

    .comp2-heading-right,
    .comp2-heading-right-left,
    .comp2-heading-right-left-one {
        font-size: 11px;
        width: 45%;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .module {
        padding: 20% 15% 0;
    }

    .comp2-heading-right,
    .comp2-heading-right-left,
    .comp2-heading-right-left-one {
        font-size: 9px;
        width: 63%;
        padding: 8%;
    }

    .comp2-heading-right-left {
        margin: 5% 20% 6%;
    }

    .comp2-heading-right-left-one {
        margin: 5% 24% 3%;
    }

    .comp2-outter-div {
        width: 70%;
    }
}

@media (max-width: 510px) {
    .comp2-heading-left {
        font-size: 1.2vh;
    }
}

@media (max-width: 500px) {
    .comp2-heading-right-left {
        margin: 5% 20% 4%;
    }

    .comp2-heading-right-left-one {
        margin: 5% 24% 4%;
    }
}

@media (max-width: 450px) {
    .comp2-heading-right-left {
        margin: 2% 20%;
    }

    .comp2-heading-right-left-one {
        margin: 3% 24%;
    }
}











/* =====================================================
   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: 15%;
    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: 15vh;
        height: auto;
    }
}

/* Small Mobile */
@media (max-width: 550px) {
    .video-right-top { font-size: 35px; }
    .video-left-top { font-size: x-large; }

 
    .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));
    }

}





/* =====================================================
   ANALYTICS CTA (HERO)
===================================================== */
.analytics-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
}

/* LEFT TEXT */
.analytics-cta-content {
  flex: 1;
  max-width: 55%;
}

.analytics-cta-title {
  font-family: var(--Heading);
  font-size: 42px;
  line-height: 1.3;
  margin: 0;
}

.analytics-cta-title span {
  color: var(--Yellow);
}

.analytics-cta-tagline {
  margin: 30px 0;
  font-family: var(--Paragraph);
  font-size: 16px;
  color: var(--Color_Para);
}

/* CTA BUTTON */
.analytics-cta-button {
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--Yellow);
  color: var(--Light);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--Heading);
  transition: all 0.3s ease;
}

.analytics-cta-button:hover {
  background: var(--Yellow);
  color: var(--Dark);
}

/* RIGHT IMAGE */
.analytics-cta-visual {
  flex: 1;
  max-width: 45%;
}

.analytics-cta-visual img {
  width: 100%;
  height: auto;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .analytics-cta {
    flex-direction: column;
    text-align: center;
  }

  .analytics-cta-content,
  .analytics-cta-visual {
    max-width: 100%;
  }

  .analytics-cta-visual img {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .analytics-cta {
    padding: 60px 20px;
  }

  .analytics-cta-title {
    font-size: 30px;
  }

  .analytics-cta-tagline {
    font-size: 14px;
  }

  .analytics-cta-button {
    padding: 12px 22px;
    font-size: 14px;
  }
}







/* =====================================================
   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(--Special_Text);
    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 {
    font-family: var(--Heading);
    color: var(--Light);
    text-transform: uppercase;
}

/* =====================================================
   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;
    }
}





/* =====================================================
   FEATURES SECTION - ICON LEFT, TEXT RIGHT
===================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 0% 10% 5%;
  justify-items: center;
}

.feature {
  display: flex;
  align-items: center; /* horizontal alignment */
  gap: 20px; /* space between icon and text */
  transition: transform 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
}

.icon {
  background: var(--Light); /* Circular colored background */
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px; /* large icon */
  color: var(--Dark);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.feature span {
  font-family: var(--Heading);
  font-size: 0.8em;
  color: var(--Light);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  max-width: 200px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1200px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .icon {
    width: 90px;
    height: 90px;
    font-size: 36px;
  }

  .feature span {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .feature span {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature {
    flex-direction: row; /* still horizontal */
    justify-content: flex-start;
  }

  .icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .feature span {
    font-size: 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.5em;
    }

    .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%;
    margin-top: 30px;
}

/* =====================================================
   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.5em;
        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%;
    }
}
