
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #FFFEF2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
}


.header-container {
    margin-top: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 18px;
}

.navbar {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    height: 52px;
    border-radius: 999px;
    /* background: linear-gradient(90deg, #ecd4cb 0%, #f3eddc 100%); */
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 26px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
}

/* Equal Space Alignment for Desktop */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    /* Both sides take up equal space */
}

.nav-left {
    justify-content: flex-start;
    gap: 120px;
    /* Adjust this to change spacing between Home & Products */

}

.nav-right {
    justify-content: flex-end;
    gap: 120px;
    /* Adjust this to change spacing between Contact & Buy Now */
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 200px;
    /* Equal gap applied */
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #4f4946;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.dropdown:hover>a {
    color: #ce0018;
}

/* Arrows */
.arrow {
    border: solid currentColor;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 2.5px;
    margin-left: 7px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.arrow.down {
    transform: rotate(45deg);
}

.arrow-light {
    border-color: #fff;
}

.dropdown:hover .arrow.down {
    transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background-color: #fdf6f3;
    list-style: none;
    padding: 10px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown-menu.align-right {
    left: auto;
    right: 0;
    min-width: 220px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: 5px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 11px;
    color: #4f4946;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-item {
    background-color: #f05a28;
    color: #ffffff;
}

/* Center Logo */
.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
    z-index: 12;
}

.logo {
    height: 112px;
    /* Desktop pop-up size */
    width: auto;
    display: block;
}

/* Buy Now Button */
.buy-now-btn {
    border: none;
    border-radius: 999px;
    background: #D70F14;
    text-decoration: none;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 12px 17px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.buy-dropdown:hover .buy-now-btn {
    background: #aa0014;
    text-decoration: none;
}

/* White Button with Hover Animation */
.btn-white {
    background: white;
    color: #333;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    margin: 0 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); */
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    /* transform: translateY(-3px); */
    background-image: url(assets/everygi.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    background-color: #D70F14;
    color: #fff;
    transition: 0.3s;
}

/* --- Mobile Menu & Responsive Styling --- */
.hamburger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #D70F14;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fdf6f3;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-top: 80px;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 25px;
}

.mobile-nav-list>li {
    border-bottom: 1px solid #ebd8d0;
}

.mobile-nav-list>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: #4f4946;
    font-size: 14px;
    font-weight: 700;
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-trigger.active .mobile-dropdown-menu {
    max-height: 250px;
    margin-bottom: 15px;
}

.mobile-dropdown-trigger.active>a .arrow.down {
    transform: rotate(-135deg);
}
.mobile-dropdown-menu li{
    font-weight: 600 !important;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #4f4946;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600 !important;
    border-radius: 6px;
}

.mobile-dropdown-menu a.active-item,
.mobile-dropdown-menu a:hover {
    background-color: #f05a28;
    color: white;
}


/* ___________herio_________________ */

.hero{
    width: 100%;
    height: 600px;
    position: relative;
    background: url(assets/hero_bg.png) center center/cover no-repeat;
}

.hero .boxes{
    position: absolute;
    top: 20%;
    right: 10%;
    /* transform: translate(-50%, -50%); */
    width: 694px;
    height: auto;
}

/* ____________products section_________________ */
/* ____________products section_________________ */

.products {
    /* margin-top: 20px; */
    /* max-width: 1220px; */
    background-color: #FFFFFF;
    margin: 80px auto;
    width: 95%;
    border-radius: 16px;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 50px #F94C1B26;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 25px;
}

.experience-heading {
    font-size: 45px;
    font-weight: 500;
    color: #493E34;
    text-align: left;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.experience-heading span {
    color: #F94C1B;
}


/* Product Card Styling (Fixed Sizing) */
.product-card {
    display: flex;
    flex-direction: column;
    width: 275px;
    height: 525px; /* Strictly enforced */
    box-sizing: border-box;
    margin-bottom: 20px !important;
}

.product-image-box {
    background-color: #FEEDE8;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 260px; /* Constrained height to leave room for content below */
    padding: 20px;
    margin-bottom: 16px;
}

.product-image-box img {
    height: 100%;
    max-height: 210px; /* Scaled down slightly */
    width: auto;
    object-fit: contain;
}

.product-info {
    margin-bottom: 12px; /* Tighter spacing */
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #493E34;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.product-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #493E34;
    text-align: left !important;
}

/* Platforms List Styling */
.platforms-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.platform-row {
    display: flex;
    padding-top: 5px;
    justify-content: space-between;
    align-items: center;
    /* padding: 9.5px 0; Reduced padding to fit 5 rows perfectly */
    border-bottom: 1px solid #EEEEEE;
}

.platform-row:first-child {
    border-top: 1px solid #EEEEEE;
}

.platform-logo {
    max-height: 20px; /* Reduced to fit the tighter row padding */
    max-width: 80px;
    object-fit: contain;
}

/* Buttons */
.shop-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 14px; /* Tighter padding on buttons */
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}





.btn-primary :hover {
    background-color: #D70F14 !important;
    color: #fff;
}

.btn-secondary {
    background-color: #FEEDE8;
    color: #D70F14;
}
.btn-secondary:hover {
    background-color: #D70F14 !important;
    color: #fff;
}
.product-card img{
    width: 105px;

    height: auto;
    margin-bottom: 20px;
}
.product-card h2{
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #493E34;
    /* margin-bottom: 10px; */
}
.product-card p{
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #493E34;
    /* text-align: center; */
    /* margin-bottom: 20px; */
}

.product-card .platforms-div{
    display: flex;
    width: 100% !important;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    /* margin-bottom: 20px; */
}

.platforms-div  .platform img{
    width: 57px;
    height: 21px;
}
.platforms-div  .platform{
    display: flex;
    /* gap: 10px; */
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}
.product-card .platforms-div .platform{
    display: flex;
    /* gap: 10px; */
     margin-bottom: 0;
    margin-bottom: 20px;
    align-items: center;
}


.experience-heading {
    font-size: 45px;
    font-weight: 500;
    color: #493E34;
    text-align: left;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.experience-heading span {
    color: #F94C1B;
}



/* ========== FOOTER ========== */
footer {
    background-color: transparent;
    padding: 40px 20px 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 30px;
}
.footer-col.left {
    flex: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.footer-col.left img {
    margin-top: 5px;
}
.footer-col.left p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.footer-col.center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.footer-col.center img {
    width: 180px;
    max-width: 100%;
}
.footer-col.right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.footer-ai-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #555;
}
.ai-star {
    background: #F25424;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.footer-bottom {
    background: #F25424;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}
.socials {
    display: flex;
    gap: 20px;
}
.socials a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.socials a:hover {
    opacity: 0.8;
}
.foot-right,
.foot-left {
    display: flex;
    align-items: center;
}
.foot-left span,
.foot-right a,
.foot-right span {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.foot-right a {
    margin-right: 30px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00c853;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
    z-index: 100;
}
