* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Forum';
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: auto;
}

:root {
    --theme-color: #6FD1D4;
}

ul,
ol {
    list-style: none;
}

i,
a {
    display: inline-block;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absoulte {
    position: absolute;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.forum {
    font-family: 'Forum';
}

.madimione {
    font-family: 'Madimi One';
}

.roboto {
    font-family: 'Roboto Condensed';
}

.LeagueGothic {
    font-family: 'League Gothic Condensed';
}

.advent {
    font-family: 'Advent Pro Expanded';
}

.lancelot {
    font-family: 'Lancelot';
}

.tenorsans {
    font-family: 'Tenor Sans';
}

.col-1 {
    width: 8.3333%;
}

.col-2 {
    width: 16.6667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3333%;
}

.col-5 {
    width: 41.6667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.3333%;
}

.col-8 {
    width: 66.6667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.3333%;
}

.col-11 {
    width: 91.6667%;
}

.col-12 {
    width: 100%;
}


/* HEADER */

.logo {
    width: 130px;
    height: 120px;
    object-fit: contain;

}

.header {
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main {
    padding: 10px 10px 0 10px;
}

.header .menu-icon i {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header .menu-icon:hover i {
    background-color: var(--theme-color);
    color: #000;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 30px 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Forum', sans-serif;
}

.mobile-nav ul li a:hover {
    background-color: var(--theme-color);
    color: #000;
    transform: translateX(10px);
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    /* 
    background:
        linear-gradient(to bottom,
            rgba(111, 212, 212, 0.85) 0%,
            rgba(111, 212, 212, 0.65) 40%,
            rgba(0, 0, 0, 0.9) 100%),
        url("../assets/aboutHero.png"); */
    /* background:
        linear-gradient(#030B0680,
            #030B0680),
        url("../assets/blogHero.png"); */
    background-image: url("../assets/blogHero.png");

    background-size: cover;
    background-position: right bottom;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 67px;
    font-weight: 700;
    margin-top: auto;
}

.hero-btn {
    width: fit-content;
    padding: 10px 10px 10px 90px;
    background: #6fd4d4;
    color: #000;
    font-weight: 600;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero-btn i {
    margin-left: 40px;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

.hero-btn:hover {
    background: #5bc2c2;
}

.hero-btn-container {
    background-color: #fff;
    position: absolute;
    bottom: 0%;
    right: 4%;
    border-radius: 40px 0px 0px 10px;
}


/* FOOTER */

footer {
    padding-top: 40px;
    background-color: #2F6466;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: clamp(20px, 4vw, 60px);
    color: #fff;
    align-items: start;
}

.footer-grid .footer-content:first-child img {
    width: 270px;
}

.footer-grid .footer-content:first-child h4 {
    font-size: 17px;
    margin: 5px 0;
    margin-top: 15px;
    font-weight: 500;
}

.footer-content a {
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
    color: #fff;
    margin: 10px 0;
}

.footer-grid .footer-content:first-child i {
    background-color: rgb(60, 205, 60);
    padding: 10px 12px;
    font-weight: 500;
    font-size: 35px;
    color: green;
    border-radius: 50%;
    margin-top: auto;
}

.footer-content .whatsapp-icon {
    margin-top: auto;
}

.footer-grid .footer-content h3 {
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-grid .footer-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 200px;
    height: 1px;
    background: #fff;
}

.footer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-grid .footer-content:nth-child(1) {
    text-align: left;
}

.footer-grid .footer-content:nth-child(2) {
    text-align: center;
}

.footer-grid .footer-content:nth-child(3) {
    text-align: right;
}

.footer-content ul {
    padding-top: 30px;
}

.footer-content ul li {
    margin: 10px 0;
}

.footer-content ul li i {
    margin-right: 10px;
}

.footer-grid .footer-content:last-child img {
    width: 300px;
}

.copyright {
    color: #fff;
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
}

.copyright ul li:first-child i {
    color: #000;
    background-color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
}

.copyright ul li:nth-child(2) i {
    color: #fff;
    background-color: rgb(60, 209, 60);
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 15px;
}

.copyright ul li:last-child i {
    color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    background: linear-gradient(45deg,
            #f58529,
            #feda77,
            #dd2a7b,
            #8134af,
            #515bd4);
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #6fd4d4;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* OUR BRANDS SECTION */
.our-brands {
    padding: 60px 0;
}

.our-brands .container {
    max-width: none;
    width: 100%;
    padding-left: clamp(20px, 4vw, 60px);
    padding-right: clamp(20px, 4vw, 60px);
}

.brands-heading {
    font-size: 50px;
    font-weight: 400;
    color: #4A2C5A;
    margin-bottom: 40px;
    line-height: 1.2;
}

.brands-heading span {
    color: var(--theme-color);
}

/* FILTER BAR */
.filter-bar {
    background-color: #6FD1D433;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    font-family: 'Forum', sans-serif;
}

.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Forum', sans-serif;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.filter-group select:focus {
    outline: none;
}

.search-btn {
    padding: 8px 18px;
    background-color: var(--theme-color);
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Madimi One', sans-serif;
    white-space: nowrap;
    height: fit-content;
}

.search-btn i {
    font-size: 18px;
    background-color: #fff;
    padding: 5px 7px;
    border-radius: 50%;
}

.search-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* BRANDS GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.brand-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.brand-logo-overlay {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%,0);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.brand-logo-overlay img {
    width:200px;
    height: 200px;
    object-fit: contain;
    border-radius: 0;
}

.brand-name {
    /* text-align: center;
    font-size: 17px;
    color: #333;
    margin-top: 12px;
    font-weight: 600;
    font-family: 'Forum', sans-serif;
    line-height: 1.4; */

color: #333;
font-family: Roboto;
font-weight: 700;
font-style: Bold;
font-size: 20px;
line-height: 43px;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;

}

/* VIEW MORE BUTTON */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-more-btn {
    padding: 14px 40px;
    background-color: var(--theme-color);
    color: #000;
    border: none;
    border-radius: 99px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: 'Madimi One', sans-serif;

}

.view-more-btn i {
    font-size: 20px;
}

.view-more-btn:hover {
    background-color: #5bc2c2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 209, 212, 0.3);
}
