/* =====================================================
   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;
    }
}



/* =====================================================
   VIEW HEADING / LANDING PAGE BUSINESS STRATEGIES
===================================================== */

/* ======================
   MAIN BANNER
====================== */

.Heading-Banner {
    width: 100%;
    overflow: hidden;
    padding: 5% 0;
}

.Heading-Banner-Content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(21.875em, auto)); /* 350px */
    grid-auto-flow: dense;
    gap: 2.1875em; /* 35px */
    margin: 2% 10%;
}

/* ======================
   LEFT CONTENT
====================== */

.Heading-Banner-Left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Heading-Banner-Left-Heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--Mustard);
    margin-bottom: 1em;
    font-family: var(--Heading);
    text-align: left;
}

.Heading-Banner-Left-Content {
    font-size: 1.7rem;
    color: var(--Color_Para);
    line-height: 1.3;
    text-align: left;
    font-family: var(--Paragraph);
}

/* ======================
   RIGHT IMAGE
====================== */

.Heading-Banner-Right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Heading-Banner-Right img {
    width: 100%;
    height: auto;
}

.Heading-Banner-Right-Phone {
    display: none;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* ≤ 1500px */
@media (max-width: 1500px) {
    .Heading-Banner-Left-Heading {
        font-size: 2.5rem;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.5rem;
    }
}

/* ≤ 1200px */
@media (max-width: 1200px) {
    .Heading-Banner-Content {
        gap: 0;
        grid-template-columns: repeat(auto-fit, minmax(20em, auto)); /* 320px */
    }

    .Heading-Banner-Left-Heading {
        font-size: 2rem;
        margin-bottom: 4%;
    }

    .Heading-Banner-Right {
        display: none;
    }

    .Heading-Banner-Right-Phone {
        display: flex;
        justify-content: center;
    }
}

/* ≤ 1050px */
@media (max-width: 1050px) {
    .Heading-Banner-Content {
        display: flex;
        flex-direction: column;
        margin: 10% 10%;
    }

    .Heading-Banner-Left {
        align-items: center;
    }

    .Heading-Banner-Left-Heading {
        font-size: 2.25rem;
        line-height: 1.4;
        text-align: center;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.3rem;
        text-align: center;
    }

    .Heading-Banner-Left-Button {
        text-align: center;
    }
}

/* ≤ 820px */
@media (max-width: 820px) {
    .Heading-Banner-Left-Heading {
        font-size: 1.75rem;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.2rem;
    }

    .Heading-Banner-Content {
        margin: 15% 5%;
    }
}

/* ≤ 768px */
@media (max-width: 768px) {
    .Heading-Banner-Left-Heading {
        font-size: 2rem;
    }

    .Heading-Banner-Left-Content {
        font-size: 1.3rem;
    }
}

/* ≤ 550px */
@media (max-width: 550px) {
    .Heading-Banner-Left-Heading {
        font-size: 1.375rem;
    }

    .Heading-Banner-Left-Content {
        font-size: 1rem;
    }

    .Heading-Banner-Content {
        margin: 15% 5%;
    }
}

/* ≤ 450px */
@media (max-width: 450px) {
    .Heading-Banner-Left-Heading {
        font-size: 1.3rem;
    }

    .Heading-Banner-Left-Content {
        font-size: 1rem;
    }
}








/* =====================================================
   ALL SERVICES
===================================================== */

.services {
    margin: 5% 10%;
    padding: 5% 0 10%;
}

.service-main {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: var(--Heading);
}

.service-sub {
    font-size: 1.5rem;
    color: var(--Color_Para);
    font-family: var(--Paragraph);
}

/* =====================================================
   SERVICES GRID
===================================================== */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px 150px;
}

.item1 {
    grid-column: 1 / 3;
    align-self: center;
}

.item2 {
    cursor: pointer;
    border-radius: 30px;
    background-color: #fff;
    margin: 5% 0%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.item2:hover {
    box-shadow: 0 0 12px var(--Mustard);
    transform: translateY(-4px);
}

/* =====================================================
   SERVICES STRUCTURE
===================================================== */

.services-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.services-first,
.services-second,
.services-third {
    display: flex;
    flex-direction: row;
}

.services-third {
    margin-bottom: 30px;
}

.two-services {
    display: flex;
    width: 50%;
    justify-content: space-around;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 20px;
    margin: 5% 0%;
}

.service-logo img {
    width: 100px;
    height: auto;
}

.service-name {
    font-size: 1.5rem;
    color: #000;
    text-align: center;
    font-family: var(--Heading);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media only screen and (max-width: 1540px) {
    .service-main {
        font-size: 2.2rem;
    }

    .service-sub {
        font-size: 1.4rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px 50px;
    }

    .service-name {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 1024px) {
    .service-name {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 625px) {
    .services {
        margin: 50px 5%;
    }

    .service-main {
        font-size: 1.4rem;
        text-align: center;
    }

    .service-sub {
        font-size: 0.9rem;
        text-align: center;
    }

    .service-name {
        font-size: 0.9rem;
    }

    .service {
        border-radius: 30px;
    }
}

@media only screen and (max-width: 570px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
}





/* =====================================================
   SERVICE ANALYTICS WITH POINTS – REFINED
===================================================== */

.Service_Analytics_withPoints_Section {
    padding: 3.5rem 1.5rem;
}

/* Grid */
.Service_Analytics_withPoints_Grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0% 10% 5%;
}

/* Card */
.Service_Analytics_withPoints_Card {
  background: var(--Light);
  border-radius: 0.9rem;
  padding: 5% 5%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Accent Borders */
.border-teal {
    border-top: 0.35rem solid var(--Teal);
}

.border-yellow {
    border-top: 0.35rem solid var(--Yellow);
}

/* Icon */
.Service_Analytics_withPoints_Icon {
   width: 4.2em;
    height: 4.2em;
    display: flex;
    align-items: center;
    padding: 2%;
}

.Service_Analytics_withPoints_Icon img {
    width: 4.2em;
    height: 4.2em;
    height: auto;
}

/* Title */
.Service_Analytics_withPoints_Title {
    font-family: var(--Heading);
    font-size: 1.2em;
    letter-spacing: 0.08em;
     color: var(--Teal);
    margin: 0;
}

/* Description */
.Service_Analytics_withPoints_Description {
    font-family: var(--Paragraph);
    font-size: 1.2em;
    line-height: 1.35;
    color: var(--Teal);
    margin: 0;
}

/* List */
.Service_Analytics_withPoints_List {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
}

.Service_Analytics_withPoints_List li {
    font-family: var(--Paragraph);
    font-size: 1.3em;
     color: var(--Teal);

    margin-bottom: 0.35rem;
    position: relative;
    padding-left: 1rem;
}

.Service_Analytics_withPoints_List li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--Yellow);
}

/* ===============================
   TABLET & UP (iPad INCLUDED)
   — KEEP 2 COLUMNS
================================ */
@media (max-width: 1024px) {

  .Service_Analytics_withPoints_Grid {
    grid-template-columns: repeat(2, 1fr); /* force 2 cards */
    gap: 2.2rem;
    padding: 0 6%;
  }

  .Service_Analytics_withPoints_Card {
    padding: 2rem;
  }

  .Service_Analytics_withPoints_Title {
    font-size: 1.1em;
  }

  .Service_Analytics_withPoints_Description {
    font-size: 1.05em;
  }

  .Service_Analytics_withPoints_List li {
    font-size: 1.1em;
  }
}

/* ===============================
   MOBILE ONLY
   — 1 COLUMN
================================ */
@media (max-width: 600px) {

  .Service_Analytics_withPoints_Grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .Service_Analytics_withPoints_Card {
    padding: 1.6rem 1.3rem;
  }

  /* Icon scaling */
  .Service_Analytics_withPoints_Icon {
    width: 3.4em;
    height: 3.4em;
  }

  .Service_Analytics_withPoints_Icon img {
    width: 3.4em;
    height: auto;
  }

  /* Typography */
  .Service_Analytics_withPoints_Title {
    font-size: 1.05em;
    letter-spacing: 0.06em;
  }

  .Service_Analytics_withPoints_Description {
    font-size: 1em;
    line-height: 1.45;
  }

  .Service_Analytics_withPoints_List li {
    font-size: 1.05em;
  }
}









/* =====================================================
   SIXTH BOX – TEXT GRAPHIC (TYPE 2)
===================================================== */
.sixth-box {
    display: flex;
    flex-direction: row;
    padding: 0% 10% 5%;
    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: 0% 10% 5%;
}

/* 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%;
    }
}
