*{
    margin:0;
    padding:0;
    font-family: "Instrument Sans",Arial;
    box-sizing: border-box;
}

body{
    background-color: #f7f8fa;
    overflow-x: hidden;
}
/* NAVBAR SECTION */
#navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav-main-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../ASSETS/Homepage/navbar-background-img.jpg');
    background-size: cover;
    min-height: 97vh;
    max-width: 95%;
    border-radius: 45px;
    margin-bottom: 70px;
    padding:20px;
}

#main-nav-bar {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    min-height: 75px;
    max-height: 50px;
    min-width: 90vw;
    max-width: 90vw;
    background-color: white;
    border-radius: 60px;
}
#navbar-logo{
    height:40px;
    width: auto;
}
#company-nav-link-elems {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-width: 50vw;
    font-weight: 500;
}

#navbar-right-elements {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.navbar-right-svg {
    height: 30px;
    width: auto;
    transition: 0.5s;
    padding: 0 10px;
}

.navbar-right-svg:hover {
    color: #007faf;
    stroke: #007faf;
}

.nav-link {
    text-decoration: none;
    color: black;
    transition: 0.5s;
}

.nav-link:hover {
    color: #007faf;
}

#navbar-text-main-cointainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
    height: 65vh;
    max-width: 92vw;
}

#navbar-text-header {
    font-size: 75px;
    font-weight: 700;
    max-width:500px;
}

#navbar-subtext-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#navbar-header-subtext {
    font-size: 16px;
    width:100%;
}

#navbar-button-container {
    display: flex;
    align-items: center;
}

#navbar-text-button-1 {
    padding: 20px 50px;
    background-color: #007faf;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    margin-right: 30px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

#navbar-text-button-1:hover {
    color: #007faf;
    background-color: white;
    cursor: pointer;
}

#navbar-text-button-2 {
    padding: 20px 20px;
    background-color: white;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #007faf;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 210px;
}

#navbar-text-button-2:hover {
    color: white;
    background-color: #007faf;
    cursor: pointer;
}

.navbar-r-arrow {
    height: 20px;
    width: auto;
}


/* ── LARGE MOBILE (480px) ── */
@media (max-width: 480px) {
    #nav-main-container {
        border-radius: 20px;
        margin-bottom: 30px;
        min-height: 100vh;
        min-width: 95vw;
        max-width: 95vw;
    }

    #main-nav-bar {
        min-width: 80vw;
        max-width: 80vw;
        border-radius: 50px;
        padding: 15px;
        max-height: unset;
    }

    /* Hide nav links on small mobile — use a hamburger menu */
    #company-nav-link-elems {
        display: none;
    }

    #navbar-text-header {
        font-size: 36px;
        width:100%;
    }

    #navbar-header-subtext {
        font-size: 14px;
        width: 100%;
    }

    #navbar-subtext-container {
        gap: 25px;
    }

    #navbar-text-main-cointainer {
        height: auto;
        padding: 20px;
        align-items:  center;
        margin-top: 30px;
        flex-direction: column;
    }

    #navbar-button-container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    #navbar-text-button-1,
    #navbar-text-button-2 {
        font-size: 15px;
        padding: 14px 28px;
        max-width: 100%;
        margin-right: 0;
    }
}


/* ── TABLET (768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
    #nav-main-container {
        border-radius: 30px;
        margin-bottom: 40px;
        max-width: 90vw;
    }

    #main-nav-bar {
        min-width: 80vw;
        max-width: 80vw;
    }

    /* Hide nav links on tablet too — show hamburger */
    #company-nav-link-elems {
        display: none;
    }

    #navbar-text-header {
        font-size: 52px;
        width:100%; 
    }

    #navbar-header-subtext {
        font-size: 15px;
        width: 100%;
    }

    #navbar-subtext-container {
        gap: 35px;
    }

    #navbar-text-main-cointainer {
        height: auto;
        padding: 20px;
        width: 100%;
        margin-top: 30px;
        flex-direction: column;
    }

    #navbar-button-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    #navbar-text-button-1,
    #navbar-text-button-2 {
        font-size: 16px;
        padding: 15px 30px;
        max-width: 100%;
        margin-right: 0;
    }
}


/* ── SMALL DESKTOP / LAPTOP (1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    #navbar-text-header {
        font-size: 60px;
        text-align: center;
    }
    #main-nav-bar{
        max-width:90%; 
    }
    #navbar-text-main-cointainer {
        height: auto;
        padding: 20px;
        margin-top: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #navbar-button-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    #navbar-header-subtext {
        font-size: 15px;
        text-align: justify;
    }

    #company-nav-link-elems {
        font-size: 14px;
    }

    #navbar-text-button-1,
    #navbar-text-button-2 {
        font-size: 17px;
            padding: 16px 35px;
    }
}


/* ── LARGE DESKTOP (1280px) ── */
@media (min-width: 1025px) and (max-width: 1280px) {
    #navbar-text-header {
        font-size: 68px;
    }

    #navbar-header-subtext {
        width: 480px;
    }
}

@media(min-width:1281px) and (max-width:1536px){
    #navbar-text-main-container{
        justify-content: space-evenly;
    }
    #navbar-text-header {
        font-size: 80px;
    }
    #navbar-subtext-container{
        max-width: 700px;
        min-width: 700px;
    }
    #navbar-header-subtext {
        font-size: 18px;
    }

    #navbar-text-button-1,
    #navbar-text-button-2 {
        font-size: 20px;
        padding: 22px 20px;
    }    

}

/* ── EXTRA LARGE (1536px+) ── */
@media (min-width: 1537px) {
    #navbar-text-main-container{
        justify-content: space-evenly;
    }
    #navbar-text-header {
        font-size: 80px;
    }
    #navbar-subtext-container{
        max-width: 700px;
        min-width: 700px;
    }
    #navbar-header-subtext {
        font-size: 18px;
    }

    #navbar-text-button-1,
    #navbar-text-button-2 {
        font-size: 22px;
        padding: 22px 40px;
        min-width: 250px;
    }
}

/* SECTION 1 */

#section-1-main-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    gap: 20px;
    margin-top: 20px;
    height  :800px;
}

#section-1-benifits-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

#section-1-title-context {
    font-size: 12px;
    font-weight: 500;
}

#section-1-title-context::before {
    content: '💠';
}

#section-1-title {
    font-size: 60px;
    max-width: 600px;
    font-weight: 600;
    text-align: center;
}

#ai-container {
    min-width: 40%;
    min-height: 600px;
    background-color: aliceblue;
    border-radius: 50px;
    background-image: url('../ASSETS/Homepage/camera-img-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -90px;
    display: flex;
    align-items: flex-end;
}

#ai-container-text-box {
    padding: 40px 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    gap: 20px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

#ai-container-title-text {
    font-size: 28px;
    font-weight: 600;
    transition:0.3s;
}

#ai-container-title-text:hover{
    color:#007faf
}

#ai-container-sub-text {
    font-size: 18px;
    text-align: center;
}

#section-1-small-card-container {
    width: 20%;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#ecosystem-container {
    min-width: 250px;
    min-height: 250px;
    background-image: url('../ASSETS/Homepage/smiling-woman-candid-1.jpg');
    border-radius: 40px;
    background-size: cover;
    background-position: -60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

#ecosystems-text {
    text-align: center;
    color: white;
    margin: 35px 0px;
    padding: 10px 0px;
    max-width: 230px;
    border-radius: 80px;
    font-size: 24px;
    font-weight: 600;
    border: 1px solid white;
    transition: 0.5s;
}

#ecosystems-text:hover {
    color: #007faf;
    background-color: white;
    cursor: pointer;
}

#section-1-security-container {
    height: 250px;
    width: 250px;
    border-radius: 40px;
    background-color: #007faf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#sheild-check-section-1-icon {
    width: 120px;
    height: auto;
}

#section-1-secure-card-text {
    color: white;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

#accuracy-container {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url('../ASSETS/Homepage/section-1-blurry-living-room.jpg');
    background-size: cover;
    color: white;
    border-radius: 40px;
}

#section-1-target-svg {
    height: 100px;
    width: auto;
    margin: 40px;
}

#accuracy-container-percent-text {
    font-size: 80px;
    font-weight: 600;
    text-align: center;
}

#accuracy-container-percent-sub-text {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

#accuracy-container-paragraph-text {
    padding: 40px;
    text-align: center;
    font-size: 16px;
}


/* ── LARGE MOBILE (max 480px) ── */
@media (max-width: 480px) {
    #section-1-main-container {
        padding: 10px;
        gap: 15px;
        margin-top: 10px;
        align-items: center;
        height:1300px
    }

    #section-1-benifits-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    #section-1-title {
        font-size: 32px;
        max-width: 100%;
    }

    #ai-container {
        min-width: 320px;
        min-height: 290px;
        border-radius: 30px;
        background-position: center;
    }

    #ai-container-title-text {
        font-size: 20px;
        text-align: center;
    }

    #ai-container-sub-text {
        font-size: 14px;
    }

    #section-1-small-card-container {
        width: 100%;
    }

    #accuracy-container {
        max-width: 100%;
        width: 100%;
    }

    #accuracy-container-percent-text {
        font-size: 56px;
    }

    #accuracy-container-percent-sub-text {
        font-size: 18px;
    }

    #accuracy-container-paragraph-text {
        padding: 20px;
        font-size: 14px;
    }

    #section-1-secure-card-text {
        font-size: 22px;
    }

    #sheild-check-section-1-icon {
        width: 80px;
    }

    #ecosystems-text {
        font-size: 18px;
    }

    #section-1-target-svg {
        height: 70px;
        margin: 25px;
    }
}


/* ── TABLET (481px - 768px) ── */
@media (min-width: 481px) and (max-width: 850px) {
    #section-1-benifits-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    #section-1-main-container{
        height:2000px;
    }

    #section-1-title {
        font-size: 42px;
        max-width: 80%;
    }

    #ai-container {
        min-width: 350px;
        height: 450px;
        border-radius: 35px;
        background-position: center;
    }

    #ai-container-title-text {
        font-size: 22px;
        color:white
    }

    #ai-container-sub-text {
        font-size: 15px;
    }

    #section-1-small-card-container {
        width: 80%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    #accuracy-container {
        width:80%;
        height:450px;
    }

    #ecosystem-container {
        min-height: 450px;
        width: 80%;
    }

    #section-1-security-container {
        width: 100%;
    }

    #accuracy-container-percent-text {
        font-size: 64px;
    }

    #section-1-secure-card-text {
        font-size: 26px;
    }

    #ecosystems-text {
        font-size: 20px;
    }
}


/* ── SMALL DESKTOP / LAPTOP (769px - 1024px) ── */
@media (min-width: 851px) and (max-width: 1024px) {
    #section-1-benifits-container {
        gap: 60px;
    }

    #section-1-title {
        font-size: 48px;
        max-width: 400px;
    }

    #ai-container {
        margin-left: -60px;
        max-width: 220px;   
        text-align: center;
    }

    #section-1-small-card-container {
        width: 200px;
    }
    #ecosystem-container{
        min-width: 200px;
    }
    #accuracy-container {
        min-width: 240px;
    }

    #accuracy-container-percent-text {
        font-size: 64px;
    }

    #accuracy-container-percent-sub-text {
        font-size: 20px;
    }

    #ai-container-title-text {
        font-size: 22px;
    }

    #ai-container-sub-text {
        font-size: 15px;
    }

    #section-1-secure-card-text {
        font-size: 26px;
    }

    #sheild-check-section-1-icon {
        width: 90px;
    }
}


/* ── LARGE DESKTOP (1025px - 1280px) ── */
@media (min-width: 1025px) and (max-width: 1280px) {

    #section-1-title {
        font-size: 54px;
        max-width: 550px;
    }
    #section-1-benifits-container {
        gap: 70px;
    }

    #ai-container {
        width: 450px;
        height: 450px;
    }

    #section-1-small-card-container {
        min-width: 100px;
    }

    #accuracy-container {
        max-width: 200px;
    }

    #accuracy-container-percent-text {
        font-size: 72px;
    }
}


/* ── EXTRA LARGE (1537px+) ── */
@media (min-width: 1537px) {
    #section-1-title {
        font-size: 72px;
        max-width: 700px;
    }

    #ai-container {
        width: 700px;
        height: 700px;
    }

    #section-1-small-card-container {
        width: 340px;
    }

    #accuracy-container {
        max-width: 340px;
    }

    #accuracy-container-percent-text {
        font-size: 96px;
    }

    #accuracy-container-percent-sub-text {
        font-size: 28px;
    }

    #ai-container-title-text {
        font-size: 32px;
    }

    #ai-container-sub-text {
        font-size: 20px;
    }

    #section-1-secure-card-text {
        font-size: 36px;
    }
}

/* INFINITE SCROLLER */

.marquee {
  max-width: 100%;
  overflow: hidden;
  background: #007faf;
  margin: 50px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
    animation: marquee-scroll 90s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track span {
  font-size: 60px;
  font-weight: 600;
  padding:40px 0px;
  color: white;
  white-space: nowrap;
  margin-right: 190px;
  cursor: pointer;
}
.marquee-track span:hover{
    color:#23acde;
}
/* 🔥 Smooth infinite loop */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}


/* SECTION -3 STYLING */

#section-3-main-container {
    height: 600px;
    border-radius: clamp(20px, 3vw, 40px);
    margin: clamp(40px, 6vw, 80px) 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(25px, 4vw, 50px) clamp(15px, 2.5vw, 30px);
    background-size: cover;
    background-position: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../ASSETS/Homepage/section-2-worker.jpg');
}

#section-3-headline {
    font-size: clamp(10px, 1.2vw, 12px);
    margin-bottom: clamp(15px, 2.5vw, 30px);
    padding: 0px 20px;
}

#section-3-headline::before {
    content: '💠';
}

#section-3-tagline {
    font-size: clamp(30px, 5.5vw, 65px);
    max-width: 95%;
    font-weight: 600;
    padding: clamp(10px, 1.5vw, 20px);
}

#section-3-container-2 {
    display: flex;
    justify-content: space-between;
    margin-top: clamp(40px, 8vw, 100px);
    gap: 20px;
}

#section-3-description {
    font-size: clamp(14px, 1.8vw, 19px);
    max-width: 540px;
    width: 100%;
    padding: clamp(15px, 2.5vw, 30px);
    margin-bottom: clamp(10px, 1.5vw, 20px);
    color: white;
}

#section-3-contact-us {
    font-size: clamp(14px, 1.8vw, 19px);
    max-width: 540px;
    padding: clamp(15px, 2.5vw, 30px);
}

#section-3-container-2-sub-container {
    display: flex;
    align-items: center;
}

#section-3-call-now-text {
    font-size: 12px;
}

#section-3-phone-number {
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 500;
}

#section-3-phone-svg {
    height: clamp(50px, 6vw, 70px);
    width: clamp(50px, 6vw, 70px);
    border-radius: 50%;
    background-color: #007faf;
    background-image: url('../ASSETS/SVG/phone.svg');
    background-size: 60% 60%;
    background-position: 10px;
    background-repeat: no-repeat;
    z-index: 2;
    flex-shrink: 0;
}

#section-3-person-photo {
    height: clamp(50px, 6vw, 70px);
    width: clamp(50px, 6vw, 70px);
    background-image: url('../ASSETS/Homepage/section-3-mechanic.jpg');
    background-size: cover;
    background-position: center;
    margin-left: -30px;
    border-radius: 50%;
    z-index: 1;
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 768px) {
    #section-3-main-container {
        height: auto;
        min-height: 380px;
        margin: 40px 16px;
    }

    #section-3-tagline {
        max-width: 100%;
    }

    #section-3-container-2 {
        flex-direction: column;
        gap: 0;
    }

    #section-3-description,
    #section-3-contact-us {
        max-width: 100%;
        padding: 15px 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #section-3-main-container {
        border-radius: 20px;
        margin: 30px 12px;
        min-height: 320px;
        padding: 20px 15px;
    }

    #section-3-tagline {
        font-size: clamp(24px, 7vw, 36px);
        padding: 10px;
    }

    #section-3-description,
    #section-3-contact-us {
        font-size: 14px;
        padding: 10px 15px;
    }

    #section-3-container-2 {
        margin-top: 30px;
    }

    #section-3-phone-svg,
    #section-3-person-photo {
        height: 50px;
        width: 50px;
    }

    #section-3-phone-svg {
        background-position: 8px;
    }

    #section-3-person-photo {
        margin-left: -20px;
    }
}
/* SECTION-4 */

#section-4-main-container{
    display: flex;
    align-items: flex-start; /* aligns top of cards */
    justify-content: space-evenly; /* center row */
    flex-wrap: wrap;
    margin-bottom:80px;
}

.section-4-card{
    display: flex;
    padding:20px;
    flex-direction: column;
    gap:40px;
    width:300px;
    height:300px;
    border-radius: 20px;
    background-color: #eff2fc;
    margin:5px;

}

.section-4-img{
    height:40px;
    width:auto;
}

.section-4-title{
    font-size: 20px;
    font-weight: 600;
}

.section-4-text{
    font-size: 15px;
    text-align: justify;
    color: rgb(132, 131, 131);
}

/* SECTION 5 */

#section-5-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #eff2fc;
    padding: 50px 0px;
}

#section-5-context {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 50px;
    color: rgb(194, 193, 193);
}

#section-5-context::before {
    content: '💠';
}

#section-5-tagline {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 600;
    max-width: 1000px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

#section-5-card-container {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

/* BASE: all cards */
.section-5-card {
    flex-shrink: 1;           /* allows cards to shrink as viewport narrows */
    min-width: 30%;             /* overrides the 380px min-width so shrinking works */
    min-height: 500px;
    width: calc(100% / 5);   /* distribute evenly across all 5 cards */
    border-radius: 20px;
    margin: 20px 8px;
}

.section-5-empty-card {
    background-color: #eff2fc;
}

.section-5-text-card {
    background-color: white;
    width: 30%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

#section-5-img-card-1 {
    background-image: url('../ASSETS/Homepage/section-5-family.jpg');
    background-size: cover;
    background-position: center;
}

#section-5-img-card-2 {
    background-image: url('../ASSETS/Homepage/section-5-camera-1.jpg');
    background-size: cover;
    background-position: center;
}

#section-5-img-card-3 {
    background-image: url('../ASSETS/Homepage/section-5-camera-2.jpg');
    background-size: cover;
    background-position: center;
}

.section-5-svg {
    height: 90px;
    width: auto;
    background-color: #007faf;
    margin: 30px;
    padding: 13px;
    border-radius: 50%;
    border: 12px solid #dfeff5;
}

.section-5-text-card-headline {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    margin: 30px;
}

.section-5-text-card-para-text {
    font-size: clamp(14px, 1.5vw, 16px);
    text-align: justify;
    font-weight: 700;
    margin: 30px;
    color: rgb(103, 103, 103);
}

/* BELOW 1000px — hide empty cards, make img & text cards square and centered */
@media (max-width: 900px) {
    .section-5-empty-card {
        display: none;
    }

    #section-5-card-container {
        flex-direction: column;
        align-items: center;
    }

    .section-5-card {
        min-width: 0;
        min-height: 0;
        width: min(80vw, 480px);
        height: min(80vw, 480px);
        margin: 15px auto;
        border-radius: 20px;
    }

    .section-5-text-card {
        max-width: min(80vw, 480px);
        width: min(80vw, 480px);
        height: min(80vw, 480px);
        justify-content: center;
    }
}

/* MOBILE — tighten spacing and sizing */
@media (max-width: 480px) {
    #section-5-main-container {
        padding: 30px 0;
    }

    .section-5-card {
        width: 90vw;
        height: 90vw;
    }

    .section-5-text-card {
        width: 90vw;
        height: 90vw;
        max-width: 90vw;
    }

    .section-5-svg {
        height: 50px;
        margin: 20px;
        padding: 5px;
        border-width: 8px;
    }

    .section-5-text-card-headline {
        margin: 20px;
    }

    .section-5-text-card-para-text {
        margin: 20px;
        font-size: 13px;
    }
}



/* SECTION - 6 */


#section-6-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 80px 0px;
    gap: 40px;
    padding: 0 20px; /* stops content touching screen edges */
}

#section-6-context {
    font-size: 12px;
    font-weight: 600;
    color: rgb(135, 134, 134);
}

#section-6-context::before {
    content: "💠";
}

#section-6-tagline {
    font-size: clamp(28px, 4.5vw, 55px);
    font-weight: 600;
    max-width: 550px;
    text-align: center;
}

#section-6-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
}

.section-6-card {
    /* fluid width — grows up to 400px, never shrinks below 280px */
    width: clamp(280px, 30vw, 400px);
    height: clamp(360px, 40vw, 500px); /* scales with viewport instead of fixed */

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 30px;
    gap: 20px;

    /* gradient overlay so text stays readable at any size */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* dark gradient overlay for text readability */
.section-6-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    border-radius: 30px;
    pointer-events: none;
}

/* push text above the overlay */
.section-6-card-title,
.section-6-card-desc {
    position: relative;
    z-index: 1;
}

#section-6-card-1 {
    background-image: url('../ASSETS/Homepage/camera-img-1.jpg');
    background-size: 200%;         /* cover fills the card cleanly at any size */
    background-position: center;
    transition: 0.3s;
}
#section-6-card-1:hover {
    background-size: 220%;          /* subtle zoom instead of jumping px values */
}

#section-6-card-2 {
    background-image: url('../ASSETS/Homepage/section-1-blurry-living-room.jpg');
    background-size: 100%;
    background-position: center;
    transition: 0.3s;
}
#section-6-card-2:hover {
    background-size: 110%;
}

#section-6-card-3 {
    background-image: url('../ASSETS/Homepage/section-2-camera.jpg');
    background-size: 230%;
    background-position: center;
    transition: 0.3s;
}
#section-6-card-3:hover {
    background-size: 240%;
}

.section-6-card-title {
    color: white;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 600;
}

.section-6-card-desc {
    color: white;
    text-align: center;
    padding: 0 clamp(16px, 3vw, 40px);
    font-size: clamp(13px, 1.3vw, 15px);
    padding-bottom: 30px;
}

/* Tablet — 2 cards per row */
@media (max-width: 900px) {
    .section-6-card {
        width: calc(50% - 10px);
        height: clamp(300px, 45vw, 460px);
    }
}

/* Mobile — 1 card per row */
@media (max-width: 560px) {
    #section-6-main-container {
        margin: 50px 0;
        gap: 24px;
    }

    .section-6-card {
        width: 100%;
        height: clamp(260px, 70vw, 380px);
        border-radius: 20px;
    }

    #section-6-card-container {
        gap: 16px;
    }
}

.section-6-r-arrow-svg{
    height:60px;
    width:auto;
    padding:1px;
    margin:20px;
    border-radius: 50%;
    color:#007faf;
    background-color: white;
    transition: 0.5s;
}

.section-6-r-arrow-svg:hover{
    color:white;
    background-color: #007faf;
}


/* SECTION -7 */

#section-7-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 100px 20px;
    gap: 0;
    overflow: hidden; /* safety net — clips any stray overflow */
}

.section-7-ring {
    /* Remove fixed min-width — it prevents shrinking */
    min-width:250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 25px);

    /* KEY FIX: replace fixed 120px padding with fluid vw-based padding */
    padding: clamp(20px, 3vw, 40px) clamp(20px, 6vw, 120px);

    border: 1px solid gray;
    border-radius: 46%;

    /* KEY FIX: fluid negative margin instead of fixed -80px */
    margin-left: clamp(-40px, -4vw, -20px);
}

.section-7-ring:first-child {
    margin-left: 0;
}

.section-7-img {
    height: clamp(30px, 4vw, 80px);
    width: auto;
}

.section-7-headline-text {
    font-size: clamp(20px, 3vw, 60px);
    font-weight: 600;
    white-space: nowrap; /* prevents text from breaking the ring shape */
}

.section-7-desc-text {
    font-size: clamp(11px, 1.2vw, 18px);
    color: gray;
    text-align: center;
}

/* 2 per row */
@media (max-width: 862px) {
    #section-7-main-container {
        flex-wrap: wrap;
        gap: 20px;
        margin: 60px 20px;
        overflow: visible;
    }

    .section-7-ring {
        margin-left: 0; /* kill negative margin when stacked */
        width: calc(50% - 20px);
        padding: 30px 40px;
        flex-shrink: 0;
    }
}

/* 1 per row */
@media (max-width: 450px) {
    #section-7-main-container {
        margin: 40px 16px;
    }

    .section-7-ring {
        width: 80%;
        padding: 30px 40px;
    }
}
/* SECTION - 8 */


#section-8-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px 0px;
    padding: 0 20px; /* prevents content touching screen edges */
}

#section-8-headline {
    font-size: clamp(28px, 4.5vw, 55px); /* shrinks smoothly on small screens */
    font-weight: 600;
    max-width: 600px;
    text-align: center;
}

.section-8-review-stars-img {
    height: clamp(60px, 8vw, 100px);
    width: clamp(72px, 10vw, 120px);
    margin: clamp(-20px, -3vw, -40px) clamp(-6px, -1vw, -11px); /* fluid negative margins */
}

#section-8-reviews-container {
    display: flex;
    justify-content: center; /* center instead of space-evenly for better wrapping */
    flex-wrap: wrap;
    align-items: stretch; /* makes all cards same height in a row */
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.section-8-card {
    /* KEY FIX: replace fixed width/height with fluid sizing */
    width: clamp(260px, 28vw, 340px);
    min-height: 360px;
    height: auto; /* let content decide height, not a fixed value */

    background-color: #e8ecfa;
    padding: clamp(24px, 3vw, 40px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-8-review-details-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-8-review-name {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
}

.section-8-date {
    font-size: clamp(13px, 1.4vw, 16px);
    color: rgb(114, 114, 114);
}

.section-8-review-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    padding: clamp(12px, 2vw, 20px) 0px;
}

.section-8-review-text {
    text-align: justify;
    color: rgb(114, 114, 114);
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.6;
}

/* Tablet — 2 cards per row */
@media (max-width: 900px) {
    .section-8-card {
        width: calc(50% - 15px); /* 2 per row accounting for the 30px gap */
        min-width: 240px;
    }
}

/* Mobile — 1 card per row */
@media (max-width: 560px) {
    #section-8-main-container {
        margin: 40px 0px;
        gap: 20px;
    }

    .section-8-card {
        width: 100%;
        min-height: unset;
        border-radius: 20px;
    }

    #section-8-reviews-container {
        gap: 20px;
    }
}

/* FOOTER */

    #footer-top {
      border-top-left-radius: 50px;
      border-top-right-radius: 50px;  
      margin-top:100px;
      background-color: #0d1b2e;
      padding: 60px 80px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 60px;
    }

    /* LEFT */
    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 28px;
      max-width: 380px;
    }

    .footer-tagline {
      font-size: clamp(26px, 3vw, 44px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      letter-spacing: -0.5px;
    }

    .footer-form {
      display: flex;
      align-items: center;
      border-bottom: 1.5px solid rgba(255,255,255,0.3);
      padding-bottom: 8px;
      gap: 16px;
    }

    .footer-input {
      background: transparent;
      border: none;
      outline: none;
      color: rgba(255,255,255,0.5);
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      flex: 1;
    }

    .footer-input::placeholder { color: rgba(255,255,255,0.4); }

    .footer-submit {
      background: transparent;
      border: none;
      cursor: pointer;
      color: white;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .footer-submit:hover { opacity: 0.7; }

    .footer-submit .arrow { transition: transform 0.2s; }
    .footer-submit:hover .arrow { transform: translateX(4px); }

    .footer-success {
      display: none;
      color: #e53935;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.5;
    }


    /* CENTER — image */
    .footer-image-wrap {
      position: relative;
      width: 200px;
      height: 220px;
      flex-shrink: 0;
    }

    .footer-image-bg {
      width: 200px;
      height: 220px;
      background: #1e2d45;
      border-radius: 24px;
      transform: rotate(-4deg);
      position: absolute;
      top: 10px;
      left: 10px;
    }

    .footer-image-placeholder {
      width: 200px;
      height: 220px;
      border-radius: 24px;
      background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6b 100%);
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.2);
      font-size: 13px;
      overflow: hidden;
    }

    .footer-image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px;
    }

    /* RIGHT — info grid */
    .footer-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px 60px;
      justify-self: end;
    }

    .footer-info-label {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255,255,255,0.4);
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .footer-info-value {
      font-size: clamp(13px, 1.3vw, 16px);
      font-weight: 600;
      color: #ffffff;
      line-height: 1.5;
    }

    /* ─── DIVIDER ──────────────────────────────────── */
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 0 80px;
    }

    /* ─── BOTTOM SECTION ──────────────────────────── */
    #footer-bottom {
      background-color: #0a1628;
      padding: 60px 80px 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-col-title {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 28px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      font-weight: 400;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #ffffff; }

    /* Social */
    .social-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      height: 56px;
      cursor: pointer;
      text-decoration: none;
      color: white;
      transition: border-color 0.2s, 0.2s;
    }

    .social-btn:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
    }

    /* scroll to top */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: none;
      color: white;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
      z-index: 100;
    }

    .scroll-top:hover { background: rgba(255,255,255,0.3); }

    /* ─── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 1000px) {
      #footer-top {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding: 50px 40px;
        gap: 40px;
      }

      .footer-image-wrap {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
      }

      .footer-left {
        grid-column: 1;
        grid-row: 1;
      }

      .footer-info-grid {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        gap: 28px 40px;
      }

      .footer-divider { margin: 0 40px; }

      #footer-bottom { padding: 50px 40px 60px; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 40px;
      }
    }

    @media (max-width: 640px) {
      #footer-top {
        grid-template-columns: 1fr;
        padding: 40px 24px;
      }

      .footer-image-wrap {
        grid-column: 1;
        grid-row: 2;
        justify-self: center;
      }

      .footer-left { grid-row: 1; }

      .footer-info-grid {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: 1fr 1fr;
      }

      .footer-divider { margin: 0 24px; }

      #footer-bottom { padding: 40px 24px 60px; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 20px;
      }
    }
    @media (max-width: 400px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-info-grid { grid-template-columns: 1fr; }
      .footer-image-wrap { display: none; }
    }
