/* Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* Reset some default styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

/* Variables */
:root{
  --bg-color: #000000;
  --primary-color: #000000;
  --second-color: #FF0000;
  --hover-bg-color: #FF0000;
  --shadow-1: 0px 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-2: 0px 2px 10px rgba(26, 112, 224, 0.4);
}

/* Body */
body{
  background-color: #000000;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Reusable css */
a{
  text-decoration: none;
  color: white;
  font-weight: 500;
}

ul{
  list-style-type: none;

}

/* ==============================
   FLOATING WHATSAPP BUTTON
   ============================== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    z-index: 99999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1ebe5c;
}

.btn{
  font-size: 15px;
  background-color: var(--second-color);
  color: var(--bg-color);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  transition: .3s;

}

nav .btn {
    position: relative;
    top: -6px;   /* moves upward */
}


.btn:hover{
  opacity: 0.9;

}

/* ================================
   FLOATING CALL ICON + HOVER MENU
   ================================ */
.call-container {
    position: fixed;
    top: 14px; /* perfect alignment with navbar elements */
    right: 25px;
    z-index: 99999;
    height: 40px; /* makes alignment cleaner */
}


.call-icon {
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transition: 0.3s;
}

.call-icon:hover {
    transform: scale(1.12);
}

/* Hidden by default */
.call-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #333;
    border-top: 2px solid #ff0000;
    border-radius: 6px;
    padding: 15px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;

    /* 🔥 Auto width based on content */
    width: max-content;
    max-width: 320px; /* safe limit */
    white-space: nowrap; /* prevents email from breaking into next line */
}

/* SHOW on hover (same behavior as nav mega menus) */
.call-container:hover .call-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Text Styles */
.call-title {
    color: #ff0000;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.call-heading {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

.call-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.call-option i {
    color: #ff0000;
    font-size: 16px;
}

.call-option:hover {
    color: #ff0000;
}

/* ============================
   CLEAN HERO CONTAINER LAYOUT
   ============================ */

#page1 {
    height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8vw;
    padding-top: 80px; /* for navbar spacing */
    position: relative;
    z-index: 1;
}

/* Main container that centers hero */
.hero-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* HERO FLEX LAYOUT */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* LEFT SECTION */
.hero-left {
    flex: 1;
    color: white;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: var(--second-color);
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.hero-left p {
    text-align: justify;
    text-justify: inter-word;   /* improves spacing */
    max-width: 600px;           /* keeps lines readable */
    line-height: 1.6;           /* cleaner spacing */
    margin-bottom: 25px;
}


/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-btn-primary {
    background: var(--second-color);
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--second-color);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.3s;
}

.hero-btn-secondary:hover {
    background: var(--second-color);
    color: #000;
}

/* RIGHT IMAGE */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(-12px);}
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-right img {
        max-width: 380px;
        margin-top: 40px;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }
}
/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px){
    .mega-dropdown {
        width: 760px;
    }
}

@media (max-width: 850px){
    .mega-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mega-dropdown {
        width: 90vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px){
    .mega-grid {
        grid-template-columns: 1fr;
    }

    .mega-dropdown {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
    }
}

/* Your existing CSS... */
/* mega menu css */
/* hero css */
/* all your current styles... */

/* 🔥 ADD RESPONSIVE CSS BELOW THIS COMMENT — AT THE END OF THE FILE */

@media (max-width: 600px) {
    /* mobile styles here */
    @media (max-width: 600px) {

    #page1 {
        height: auto;
        padding: 120px 20px 60px 20px;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-left h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-left p {
        max-width: 95%;
        font-size: 14px;
        text-align: justify;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right img {
        width: 80%;
        max-width: 260px;
    }
}

}

@media (min-width: 600px) and (max-width: 900px) {
    /* tablet styles here */
    @media (min-width: 600px) and (max-width: 900px) {

    #page1 {
        height: auto;
        padding: 140px 40px 70px 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-left p {
        max-width: 80%;
        margin: 0 auto;
        text-align: justify;
    }

    .hero-right img {
        max-width: 350px;
    }
}

}

@media (min-width: 900px) and (max-width: 1200px) {
    /* laptop styles here */
    @media (min-width: 900px) and (max-width: 1200px) {

    #page1 {
        padding-top: 110px;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }
    
    .hero-left p {
        max-width: 500px;
    }

    .hero-right img {
        max-width: 420px;
    }
}

}

@media (min-width: 1200px) and (max-width: 1600px) {
    /* desktop styles */
    @media (min-width: 1200px) and (max-width: 1600px) {

    .hero-container {
        max-width: 1300px;
    }

    .hero-left h1 {
        font-size: 4.2rem;
    }
}

}

@media (min-width: 1600px) {
    /* large screen styles */
    @media (min-width: 1600px) {

    .hero-container {
        max-width: 1600px;
    }

    .hero-left h1 {
        font-size: 5rem;
    }

    .hero-left p {
        max-width: 650px;
    }

    .hero-right img {
        max-width: 550px;
    }
}

}

/* -------------------------
      MOBILE NAV RESET
-------------------------- */

.mobile-menu-icon {
    display: none;
    position: absolute;
    right: 25px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    width: 100%;
    background: #000;
    padding: 20px;
    border-top: 2px solid #FF0000;
    z-index: 9999;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: white;
    font-size: 18px;
    display: block;
    padding: 8px 0;
}

/* Dropdown inside mobile */
.mobile-dropdown i {
    float: right;
    transition: 0.3s;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    border-left: 2px solid #FF0000;
}

/* -------------------------
       MEDIA QUERIES
-------------------------- */

@media (max-width: 900px) {

    /* Hide desktop menu */
    .nav-main-menu {
        display: none;
    }

    /* Show hamburger icon */
    .mobile-menu-icon {
        display: block;
    }

    /* Adjust nav padding */
    .nav {
        padding: 20px;
    }

    /* Center brand name */
    .nav h1 {
        font-size: 20px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    nav .btn {
        position: absolute;
        right: 70px;
        top: 15px;
        z-index: 9999;
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* TABLETS */
@media (min-width: 600px) and (max-width: 900px) {
    nav .btn {
        padding: 12px 28px;
        font-size: 15px;
        margin-left: 10px;
    }
}

/* SMALL LAPTOP */
@media (min-width: 900px) and (max-width: 1200px) {
    nav .btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1200px) and (max-width: 1600px) {
    nav .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* UNIVERSAL BUY NOW BUTTON */
.buy-now-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.buy-now-btn i {
    font-size: 14px;
}

/* Hover */
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
}

/* Desktop */
.desktop-btn {
    min-width: 140px;
}

/* Mobile */
.mobile-btn {
    text-align: center;
    font-size: 15px;
    padding: 14px;
}

/* Prevent link styling issues */
.buy-now-link {
    text-decoration: none;
}
