@import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap');

* {
    box-sizing: border-box;
}
@font-face {
    font-family: "BenchNine";
    src: url("fonts/BenchNine-Regular.ttf") format("truetype"),
        
}

@font-face {
    font-family: "Bebas Neue";
    src: url("fonts/BebasNeue-Regular.ttf") format("truetype"),
        
}

@font-face {
    font-family: "Boogaloo";
    src: url("fonts/Boogaloo-Regular.ttf") format("truetype"),
        
}

body{
    font-family: "BigBoyzFont", sans-serif;
}



body {
    background-image: url(images/HOMEPAGE.png);
    background-color: #f7a63b; /* Good fallback while testing */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    font-family: "Passion One", sans-serif;
}


/* =========================================
   MAIN NAVBAR STYLING 
========================================= */

.navbar {
    background-color: #EF5225;
    width: 98%; 
    max-width: none; 
    height: 60px; /* Slightly taller to comfortably fit the new circle icons */
    margin: 20px auto; 
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative; 
    z-index: 10;
}

/* 2. The Left "Bulge" behind the logo */
.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Anchors the bulge strictly to the left edge */
    width: 260px; /* Width of the bulge */
    height: 120px; 
    background-color: #EF5225;
    border-radius: 50px 0 40px 40px; /* Matches top pill curve, rounds the bottom */
    z-index: -1; 
}

/* 3. General Link Setup & Flexbox Magic */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    gap: 35px; /* Spacing between the center links */
}

.nav-links li {
    display: flex;
    justify-content: center; 
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem; 
    padding: 8px 15px;
    border-radius: 60px;
    transition: 0.3s;
    font-weight: normal;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #EF5225;
    background-color: white;
}

/* =========================================
   LEFT SIDE: LOGO 
========================================= */

.logo-item {
    width: 180px; /* Creates invisible space pushing the other links right */
    
    /* THE MAGIC: Pushes everything after it perfectly to the center */
    margin-right: auto; 
    
    display: flex;
    align-items: center;
}

.logo-item img {
    position: absolute;
    left: 38px; /* Locks the logo into the left bulge */
    top: -30px; /* Pops it out of the top */
    height: 180px; 
    z-index: 20;
}

/* =========================================
   RIGHT SIDE: ICONS & LOGIN 
========================================= */

.right-menu {
    display: flex;
    align-items: center;
    gap: 15px; 
    
    /* THE MAGIC: Pushes this whole block perfectly to the far right */
    margin-left: auto; 
}

/* Removes the pill hover background strictly from the circle icons */
.right-menu .icon-link {
    padding: 0;
    background-color: transparent !important; 
}

/* The White Circle Shape for the Icons */
.nav-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
    transition: transform 0.2s;
}

.nav-icon:hover {
    transform: scale(1.1); 
}

/* Keep the log-in text readable and capitalized correctly */
.login-link {
    font-size: 1.4rem !important; 
    font-weight: bold !important;
}

/* =========================================
   DROPDOWN MENU 
========================================= */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: -8px; 
    background-color: white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center; 
    padding: 8px 20px 20px 20px; 
    z-index: 40; 
    white-space: nowrap; 
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1); 
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    color: #EF5225 !important; 
    padding: 8px 0 !important; 
    background-color: transparent !important; 
}

.dropdown-content a:nth-child(2),
.dropdown-content a:nth-child(3) {
    font-size: 1.4rem; 
}

.dropdown-content a:hover {
    color: #c43e18 !important; 
}

/* Make "MENU" inside the dropdown unclickable */
.dropdown-content a:first-child {
    cursor: default !important;      
    pointer-events: none !important; 
}

.dropdown-content a:first-child:hover {
    color: #EF5225 !important;       
    background-color: transparent !important;
}


/* --- MISSION / VALUES / VISION SECTION --- */

.mvv-section {
    background-image: url("images/STARS_PROPER.png");
    background-size: contain;
    
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 80px 60px;
    flex-wrap: nowrap; /* Allows stacking on smaller screens */
}

.mvv-card {
    position: relative;
    z-index: 2;
    font-family: "Bebas Neue" ,sans-serif;
    width: 320px;
    min-height: 520px;
    padding: 40px 30px;
    border-radius: 30px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mvv-card h2 {
    font-family: "Bebas Neue" ,sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mvv-card h3 {
    font-family: "BenchNine" ,sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.mvv-card p {
    font-family: "BenchNine" ,sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Individual Box Colors */
.mission {
    background-color: #e41f1f;
}

.values {
    background-color: #8db600;
}

.vision {
    background-color: #1c9c9c;
}

/* PICTURES PART-1 */

.PICTURES-1 {
    display: flex;
    justify-content: center;  /* centers horizontally */
    gap: 20px; /* space between images (optional) */
}
.PICTURES-2 {
    display: flex;
    justify-content: center;  /* centers horizontally */
    gap: 20px; /* space between images (optional) */
}
.PICTURES-3 {
    display: flex;
    justify-content: center;  /* centers horizontally */
    gap: 20px; /* space between images (optional) */
}
.PIC-4_PART4 {
    width: 90%;
    height: auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .mvv-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 60px 20px;
    }

    .mvv-card {
        width: 90%;
        max-width: 400px;
    }
}
/* --- STORY SECTION --- */

.story-section {
   
}

.story-title {
    margin-top: 30px;
    font-weight: 700;
    
    text-shadow: 4px 4px 2px rgba(255, 102, 0, 0.7);
    text-transform: uppercase;
    
    font-family: "Bebas Neue" ,sans-serif;
    text-align: right;
    font-size: 4.0rem;
    letter-spacing: 15px;
    margin-bottom: 60px;
    color: white;
}

/* Red curved container */
.story-container {
    flex-direction: row;
    background-color: #f04c23;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 60px;
    color: white;
}

/* Left circular image */
.story-image {
    width: 400px;
    height: 400px;
    flex: 1;
    display: flex;
    justify-content: center;
   
}

.image-circle {
    width: 400px;
    height: 400px;
    background-color: #d9d9d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-circle img {
    width: 100%;
    height: auto;
}

/* Right text */
.story-text {
    font-family: "BenchNine" ,sans-serif;
    flex: 2;
    font-size: 1.5rem;
    line-height: 1.3;
}

.story-text p {
    margin-bottom: 40px;
}
/* PAPER SECTION */
.PAPER-UP {
    width: 100%;
}

.PAPER-UP img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -40px;
    opacity: 0.85; /* 50% transparent */
}

.PAPER-DOWN {
    width: 100%;
    
    opacity: 0.9; /* 50% transparent */
}

.PAPER-DOWN img {
    width: 100%;
    height: auto;
    margin-top: -40px;
    display: block;
}

/* --- THE HOW SECTION --- */
.HOW-CONTAINER {
    height: 1000px;
    background-image: url('images/TORN_PAPER.png');
    padding-top: 200px; 
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;   /* ADD THIS */
    align-items: center;
    gap: 0px;                /* smaller gap looks better vertically */
    color: black;
    margin-top: -100px;
}

.HOW-PART{
    margin-top: 10px;
}

.HOW-CONTAINER{
     
    width: 100%; /* Image takes 80% of its parent container */
    height: 1100px; /* Keeps the aspect ratio */
    background-size: 100%;
  
    padding-top: 150px; 
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 75px;
    display: flex;
    flex-direction: column;   /* ADD THIS */
    align-items: center;
    gap: 0px;                /* smaller gap looks better vertically */
    color: black;
}

/* Title row */
.HOW-TITLE{
    font-family: "Boogaloo" ,sans-serif;
    font-size: 4rem;
    text-align: center;
    margin-bottom: -100px;
}

/* Line images */
.line{
    width: 180px;
    height: auto;
}

/* Align title and lines in one row */
.HOW-CONTAINER img,
.HOW-CONTAINER h1{
    display: inline-block;
}

/* Paragraph section */
.HOW-TEXT{
    font-family: "BenchNine" ,sans-serif;
    color: #883118;
    /* margin: 10px 250px; */
    margin-left: 120px;
    margin-right: 120px;
    margin-bottom: 10px;
    
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.65;
}


/* ========================= */
/* TOP CONTACT BAR */
/* ========================= */

.top-bar {
    background: linear-gradient(to right, #f36d2f, #f26522);
    padding: 15px 40px;
}

.top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: black;
    font-size: 1.8rem;
}

.top-logo {
    height: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.top-bar{
     font-family: "BenchNine" ,sans-serif;
}
.top-logo{
    width: 130px;
    height: auto;
}

.footer {
    font-family: "BenchNine" ,sans-serif;
    background-color: #563917;
    padding: 10px 80px;
    color: white;
}

.footer-container {
    display: flex;
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-col a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
}

.footer-col a:hover {
    opacity: 1;
}


/* --- RESPONSIVE --- */
@media (max-width: 1920px) {

    .story-container {
       margin-top: -40px;
        border-radius: -100px;
        padding: 40px 25px;
        text-align: center;
    }
  
    .story-text{
        text-align: left;
    }

    .image-circle {
        width: 100%px;
        height: auto;
    }

    .story-title {
         margin-top: -100px;
        font-size: 3.75rem;
        letter-spacing: 4px;
    }
  
}



body {
    background-image: url(images/HOMEPAGE.png);
    background-color: #f7a63b; /* Good fallback while testing */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    font-family: "Passion One", sans-serif;
}


/* =========================================
   MAIN NAVBAR STYLING 
========================================= */

.navbar {
    background-color: #EF5225;
    width: 98%; 
    max-width: none; 
    height: 60px; /* Slightly taller to comfortably fit the new circle icons */
    margin: 20px auto; 
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative; 
    z-index: 10;
}

/* 2. The Left "Bulge" behind the logo */
.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Anchors the bulge strictly to the left edge */
    width: 260px; /* Width of the bulge */
    height: 120px; 
    background-color: #EF5225;
    border-radius: 50px 0 40px 40px; /* Matches top pill curve, rounds the bottom */
    z-index: -1; 
}

/* 3. General Link Setup & Flexbox Magic */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    gap: 35px; /* Spacing between the center links */
}

.nav-links li {
    display: flex;
    justify-content: center; 
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem; 
    padding: 8px 15px;
    border-radius: 60px;
    transition: 0.3s;
    font-weight: normal;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #EF5225;
    background-color: white;
}

/* =========================================
   LEFT SIDE: LOGO 
========================================= */

.logo-item {
    width: 180px; /* Creates invisible space pushing the other links right */
    
    /* THE MAGIC: Pushes everything after it perfectly to the center */
    margin-right: auto; 
    
    display: flex;
    align-items: center;
}

.logo-item img {
    position: absolute;
    left: 38px; /* Locks the logo into the left bulge */
    top: -30px; /* Pops it out of the top */
    height: 180px; 
    z-index: 20;
}

/* =========================================
   RIGHT SIDE: ICONS & LOGIN 
========================================= */

.right-menu {
    display: flex;
    align-items: center;
    gap: 15px; 
    
    /* THE MAGIC: Pushes this whole block perfectly to the far right */
    margin-left: auto; 
}

/* Removes the pill hover background strictly from the circle icons */
.right-menu .icon-link {
    padding: 0;
    background-color: transparent !important; 
}

/* The White Circle Shape for the Icons */
.nav-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
    transition: transform 0.2s;
}

.nav-icon:hover {
    transform: scale(1.1); 
}

/* Keep the log-in text readable and capitalized correctly */
.login-link {
    font-size: 1.4rem !important; 
    font-weight: bold !important;
}

/* =========================================
   DROPDOWN MENU 
========================================= */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: -8px; 
    background-color: white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center; 
    padding: 8px 20px 20px 20px; 
    z-index: 40; 
    white-space: nowrap; 
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1); 
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    color: #EF5225 !important; 
    padding: 8px 0 !important; 
    background-color: transparent !important; 
}

.dropdown-content a:nth-child(2),
.dropdown-content a:nth-child(3) {
    font-size: 1.4rem; 
}

.dropdown-content a:hover {
    color: #c43e18 !important; 
}

/* Make "MENU" inside the dropdown unclickable */
.dropdown-content a:first-child {
    cursor: default !important;      
    pointer-events: none !important; 
}

.dropdown-content a:first-child:hover {
    color: #EF5225 !important;       
    background-color: transparent !important;
}


/* 5. Mobile Responsiveness */
@media screen and (max-width: 1000px) {
    /* 1. Main Navbar sizing */
    .navbar {
        height: 20px; /* Thinner bar */
        border-radius: 30px;
        margin: 10px auto; 
    }
    
    /* 2. Shrink the Left-Aligned Bulge */
    .navbar::after {
        width: 80px; /* Narrower bulge */
        height: 40px; /* Shallower drop */
        left: 0; /* Keeps it strictly on the left edge */
        border-radius: 0px 0 10px 10px; /* Blends top-left with the pill shape, rounds the bottom */
    }

    /* 3. Link alignment and text sizing */
    .nav-links {
        padding: 0 5px; /* Less padding on the far left/right */
        gap: 3px; /* Just a tiny gap between the center links */
    }

    .nav-links a {
        font-size: 0.5rem; /* Shrink the text heavily */
        padding: 2px 4px;
        white-space: nowrap; /* Forces text to stay on one line */
    }

    /* 4. The Logo Spacer & Image */
    .logo-item {
        /* Replaces your old flex: 140px rule so it pushes the center links correctly */
        width: 60px; 
        margin-right: auto; /* Shoves the main text links into the center */
    }
    
    .logo-item img {
        height: 60px; /* Smaller logo */
        top: -10px; /* Adjust the vertical position */
        left: 10px; /* Tucks it nicely inside the 80px bulge */
    }

    /* 5. The Right Side Icons (NEW) */
    .right-menu {
        gap: 4px; /* Tiny gap between the cart and user icons */
        margin-left: auto; /* Shoves the icons to the far right */
    }

    .nav-icon {
        height: 14px; /* Micro white circles to match the 20px navbar */
        width: 14px;
        padding: 2px;
    }

    /* Hide the login text so it doesn't break your 0.5rem micro-layout */
    .login-link {
        display: none !important; 
    }

    /* 6. The Dropdown Box */
    .dropdown-content {
        min-width: 40px; /* Prevents the box from being unnecessarily wide */
        padding: 0px 4px 4px 4px; /* Reduces empty white space */
        border-radius: 10px; 
        top: 0px;
    }

    .dropdown-content a {
        font-size: 0.5rem !important; /* Smaller main text */
        padding: 2px 0 !important; 
    }

    .dropdown-content a:nth-child(2),
    .dropdown-content a:nth-child(3) {
        font-size: 0.5rem !important; /* Noticeably smaller sub-links */
    }

    /* --- MOBILE HERO SECTION --- */
    .hero-section {
        flex-direction: column; /* This is the magic! Stacks the text and image vertically */
        margin: 20px 0; /* Reduces the top/bottom spacing for smaller screens */
        padding-left: 20px; /* Reduces the heavy left padding */
        padding-right: 20px; /* Adds even padding to the right so things stay centered */

    }

    .hero-text {

        width: 100%; /* Forces the text container to take up the full screen width */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers your text horizontally */
        text-align: center; 
        margin-bottom: 30px; /* Adds breathing room between the text and the hand image below it */
    }

    .hero-image {
        width: 100%; 
        display: flex;
        justify-content: flex-end; /* Centers the hand image instead of pushing it to the right edge */
    }


/* ============================= */
/* MOBILE PHONES (600px ↓)      */
/* ============================= */

@media screen and (max-width: 600px) {

/* 1. Main Navbar sizing */
    .navbar {
        height: 20px; /* Thinner bar */
        border-radius: 30px;
        margin: 10px auto; 
    }
    
    /* 2. Shrink the Left-Aligned Bulge */
    .navbar::after {
        width: 80px; /* Narrower bulge */
        height: 40px; /* Shallower drop */
        left: 0; /* Keeps it strictly on the left edge */
        border-radius: 0px 0 10px 10px; /* Blends top-left with the pill shape, rounds the bottom */
    }

    /* 3. Link alignment and text sizing */
    .nav-links {
        padding: 0 5px; /* Less padding on the far left/right */
        gap: 3px; /* Just a tiny gap between the center links */
    }

    .nav-links a {
        font-size: 0.5rem; /* Shrink the text heavily */
        padding: 2px 4px;
        white-space: nowrap; /* Forces text to stay on one line */
    }

    /* 4. The Logo Spacer & Image */
    .logo-item {
        /* Replaces your old flex: 140px rule so it pushes the center links correctly */
        width: 60px; 
        margin-right: auto; /* Shoves the main text links into the center */
    }
    
    .logo-item img {
        height: 60px; /* Smaller logo */
        top: -10px; /* Adjust the vertical position */
        left: 10px; /* Tucks it nicely inside the 80px bulge */
    }

    /* 5. The Right Side Icons (NEW) */
    .right-menu {
        gap: 4px; /* Tiny gap between the cart and user icons */
        margin-left: auto; /* Shoves the icons to the far right */
    }

    .nav-icon {
        height: 14px; /* Micro white circles to match the 20px navbar */
        width: 14px;
        padding: 2px;
    }

    /* Hide the login text so it doesn't break your 0.5rem micro-layout */
    .login-link {
        display: none !important; 
    }

    /* 6. The Dropdown Box */
    .dropdown-content {
        min-width: 40px; /* Prevents the box from being unnecessarily wide */
        padding: 0px 4px 4px 4px; /* Reduces empty white space */
        border-radius: 10px; 
        top: 0px;
    }

    .dropdown-content a {
        font-size: 0.5rem !important; /* Smaller main text */
        padding: 2px 0 !important; 
    }

    .dropdown-content a:nth-child(2),
    .dropdown-content a:nth-child(3) {
        font-size: 0.5rem !important; /* Noticeably smaller sub-links */
    }


/* Hero */

.hero-image img{
    height:160px;
    margin-top:-60px;
}


/* Story section */

.story-title{
    margin-top: -190px;
    text-align: right;
    font-size: 15px;
}
.story-container{
    flex-direction:row;
   
}

.story-text{
    line-height: -100px;
    text-align:left;
    margin-top: -1px;
    margin-bottom: -10px;
    font-size: 7px;
    padding:-100px -100px;
}
.story-text p {
    margin-bottom: 4px;
}

.story-container {
    margin-top: -40px;
    background-color: #f04c23;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 60px;
    color: white;
}


/* Left circular image */
.story-image {
    width: 125px;
    height: 125px;
    flex: 1;
    display: flex;
    justify-content: center;
   
}

.image-circle {
    margin-right: -40px;
    width: 125px;
    height: 125px;
    background-color: #d9d9d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-circle img {
    width: 100%;
    height: auto;
}



/* Mission Vision Values */



/* 1. STRETCH THE CARD & SQUASH THE HEIGHT */
    .mvv-card {
        width: 60%; /* Stretches it almost all the way across the screen */
        max-width: none; /* Removes any old limits stopping it from growing */
        
        height: auto !important; 
        min-height: auto;
        
        /* THE FIX: Less top/bottom padding, more side padding */
        padding: 50x 50px; 
        
        /* THE FIX: Smaller radius makes it a rectangle, not a pill */
        border-radius: 25px; 
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Ensures text stays perfectly centered */
    }

    /* 2. OVERRIDE ANY LEFTOVER HEIGHTS */
    .mission, .values, .vision {
        height: auto !important; 
    }

    /* 3. KEEP THE TEXT READABLE SO IT FILLS THE NEW WIDE SHAPE */
    .mvv-card h2 {
        font-size: 1.5rem; 
        margin-bottom: 5px;
    }

    .mvv-card h3 {
        
        font-size: 0.6rem; 
        margin-bottom: 8px;
    }

    .mvv-card p {
        font-size: 0.5rem; 
        line-height: 1.4;
        margin-bottom: 0;
        margin-left: 5px;
        margin-right: 5px;
    }


/* Pictures */

.PICTURES-1{
    margin-top: -50px;
    flex-direction:row;
    align-items:center;
}

.PICTURES-1 img{
    width:25%;
    height:auto;
}
.PICTURES-2 img{
    width:95%;
    height:auto;
}
.line{
    margin-left: 60px;
    margin-bottom: -15px;
}
.HOW-CONTAINER {
    margin-top: -200px;
    width: 375px; /* Image takes 80% of its parent container */
    height: auto; /* Keeps the aspect ratio */
    background-size: 100%;
  
    padding-top: 150px; 
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 75px;
    display: flex;
    flex-direction: column;   /* ADD THIS */
    align-items: center;
    gap: 0px;                /* smaller gap looks better vertically */
    color: black;
}


.HOW-TITLE{
    flex-direction: row; 
    margin-top: -175px;
    font-size:16px;
    text-align:center;
    margin-bottom: 0px;
}
.line{
    margin-top: -185px;
    width: 10%;
    height: auto;
    margin-left: 20px;
    margin-right: 20px;

}
.TITLE-ROW {
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.HOW-TEXT{
    margin-top: -75px;
   margin-left:40px ;
   margin-right: 40px; 
   font-size:7.5px; 
   flex-direction:column;
    align-items:center;
    gap:30px;
}


.PIC-4_PART4{
    margin-top: 5px;
    width:110%;
    height: auto;
}


/* Footer */

.top-content{
    height: 20px;
    margin-top: -10px;
    padding-left: 20px;
    flex-direction:row;
    text-align:center;
    font-size: 7.5px;
    
    gap:1px;
    margin-left: -40px;
    margin-right: -40px;
}

.top-content img{
      margin-left: 5px;
    margin-right: -10px;
   padding: 1px 1px;  
  gap:1px;
  width: 10%;
  height: auto;
}

.footer-container{
 
    flex-wrap: nowrap; /* Allows stacking on smaller screens */
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 70px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 0.75rem;
}

.footer-col a {
    text-decoration: none;
    color: white;
    font-size: 0.55rem;
    opacity: 0.9;
}

.footer-col a:hover {
    opacity: 1;
}


}
    
}
 