/* navbar (start) */
@font-face {
    font-family: "merriweather";
    src: url(m);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
.hero {
    width: 100%;
    height:1045px;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 8%;
    background:black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.logo {
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

nav ul li {
    position: relative;
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 8px;
    top: 35px;
    min-width: 180px;
    z-index: 10;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 16px;
    color: #000000;
}

.dropdown-menu li a:hover {
    background: #ffffff;
}

/* Show dropdown on hover (desktop only) */
.nav-item:hover .dropdown-menu {
    display: block;
}

/* Hamburger icon */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    width: 85%;
}

/* -----------------
   RESPONSIVE DESIGN
------------------ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .back-video {
        display: none;
    }
    .hero {
        height: 500px;
        background-color: black;
    }
    .glossyFi-text-main {
        display: none;
    }
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: left;
        padding-left: 20px;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.9);
        width: 80%;
        border-radius: 0;
        display: none;
        color: #fff;
    }

    .dropdown-menu.show {
        display: block;
    }
    .back-video {
        align-content: start;
    }
    .nav-item:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }
}


.content {
    text-align: center;
}

.content h1 {
    font-size: 130px;
    color: #fff;
    font-weight: 600;
    font-family:'Times New Roman', Times, serif;
}
    

/* navbar (end) */





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
.header {
    text-align: center;
    margin-top: 100px;
    background: linear-gradient(black);
    color: white;
    padding: 40px 20px;
}

.header h1 {
    font-size: 75px;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.header p {
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
}

/* Comparison Container */
.comparison-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

/* Product Card */
.product-card {
    background-color: rgb(180, 180, 180);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.product-card h2 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.product-card ul {
    list-style: none;
    text-align: left;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-card li strong {
    color: #000000;
}

/* VS Box */
.vs-box {
    font-size: 50px;
    font-weight: bold;
    color: #000000;
    align-self: center;
}

/* Button */
.buy-btn {
    background: linear-gradient(black);
    color: white;
    border: 1px solid black;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.buy-btn:hover {
    background: linear-gradient(white);
    color: black;
}


/* Responsive Design */
@media (max-width: 900px) {
    .comparison-container {
        flex-direction: column;
        align-items: center;
    }

    .vs-box {
        margin: 20px 0;
    }
}

/* <!-- footer (start) --> */

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

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.footer {
  background-color: #000000;
  padding: 60px 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 60px;
}

.footer-section h3 {
  font-size: 20px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.aboutus-text {
  text-align: start;
  color: white;
}

.contact-info {
  text-align: start;
  color: white;
}

.footer-section a,
.footer-section li {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-section a:hover {
  color: #a8a8a8;
}

.footer-section ul {
  list-style: none;
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: #ccc;
  margin-right: 18px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.newsletter input {
  width: 100%;
  padding: 12px;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  color: #fff;
  margin-top: 15px;
}

.newsletter input::placeholder {
  color: #aaa;
}

.newsletter button {
  margin-top: 15px;
  padding: 12px 22px;
  border: none;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter p{
    color: white;
}

.newsletter button:hover {
  background-color: #e5e5e5;
}

.copyright {
  margin-top: 25px;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 1px;
}

/* <!-- footer (start) --> */