:root {
    --primary: #e5e5e5;
    --secondary: #E08D0D;
    --highlights: #14213d;
    --headings: 'Poppins', sans-serif;
    --sub: 'Montserrat', sans-serif;
    --para: 'Inter', sans-serif;
}
body {
    background-color: var(--primary);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-container {
    max-width: 1500px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}
.hi {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--secondary);
    border-bottom: 3px solid var(--highlights);
    padding: 16px 32px;
}

.nav-image {
    margin-left: -130px;
    max-width:180%;
    height: auto;
}

.hamburger {
    z-index: 1;
    display: block;
    position: relative;
    border: none;
    user-select: none;
    background: none;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.hamburger span{
    display: block;
    width: 33px;
    height: 4px;
    margin-right: -50px;
    margin-bottom: 4px;
    position: relative;
    background-color: var(--highlights);
    border-radius: 6px;
    z-index: 2;
    transform-origin: 0 0;
    transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(10px);
    background-color: var(--primary);
}

.hamburger.is-active span:nth-child(1) {
    transform: translate(1px, -2px) rotate(45deg);
    background-color: #E08D0D;
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}
.hamburger.is-active span:nth-child(3) {
    transform: translate(-1.5px, 2.5px) rotate(-45deg);
    background-color: #E08D0D;
}

.hamburger.is-active:hover span {
    background-color: #e6e6e6;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
    }
    .mobile-menu {
        display: none !important;
        visibility: hidden;
        position: absolute;
    }
    .nav-image {
        margin-left: -130px;
        max-width:103%;
        height: auto;
    }
}
.nav-links {
    display: none;
    flex: 1 1 0;
    justify-content: flex-end;
    margin: 0 -16px;
    font-size: 130%;
}
.nav-links a{
    color: #000;
    margin: 0 16px;
    text-decoration: none;
    transition: 0.4s;
    padding: 8px 16px;
    border-radius: 99px;
    font-family: var(--sub);
}

.nav-links a.is-active {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 250px; 
    height: 50vh;
    margin-top: 3%;
    background: var(--highlights);
    box-shadow: -4px 0px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    z-index: -1;
}

.mobile-menu a {
    padding: 15px;
    text-decoration: none;
    color: var(--secondary);
    font-size: 18px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: orange;
}

.mobile-menu.open {
    right: 10%; 
}
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #14213D;
    color: #fff;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: auto;
    width: 350px;
    margin-right: 10px;
}
.column {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}
.column h3 {
    color: #E08D0D;
    font-size: 22px;
}
.column p, .column a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.column a:hover {
    text-decoration: underline;
}
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}
.increased-line-spacing {
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    .column {
        text-align: center;
        max-width: 90%;
    }
    .logo img {
        height: auto;
        width: 250px;
        margin-right: 10px;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: var(--primary);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Controls spacing */
    margin-top: 100px;
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
    color: var(--headings);
}

.hero-content p {
    font-size: 18px;
    color: var(--para);
    line-height: 1.6;
    max-width: 100%;
}

/* Carousel */
.carousel-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.carousel-slide {
    display: none;
    flex-direction: column;
    align-items: center;
}

.carousel-slide.active {
    display: flex;
}

.carousel img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.carousel img {
    width: 100%;
    height: 350px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-slide p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--highlights);
}

/* Responsive Fix */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        max-width: 100%;
    }

    .hero-content,
    .carousel-container {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .carousel img {
        max-width: 100%;
        height: 134px;
    }
}

.products {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.products-title {
    font-size: 42px;
    color: var(--headings);
    margin-bottom: 32px;
}

.products-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.products-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-card {
    background: var(--primary);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 50px;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--highlights);
}

.btn {
    display: inline-block;
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--highlights);
}

.hidden {
    display: none;
}

.expanded .products-container {
    flex-direction: column;
    align-items: flex-start;
}

.expanded .product-details {
    display: block;
    text-align: left;
}

.product-details {
    max-width: 400px;
}

.products {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.products-title {
    font-size: 42px;
    color: var(--headings);
    margin-bottom: 32px;
}

.products-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.products-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-card {
    background: var(--primary);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 50px;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--highlights);
}

.btn {
    display: inline-block;
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--highlights);
}

.hidden {
    display: none;
}

.expanded .products-container {
    flex-direction: column;
    align-items: flex-start;
}

.expanded .product-details {
    display: block;
    text-align: left;
}

.product-details {
    max-width: 400px;
}

/* Responsive Design for Phones Only */
@media (max-width: 768px) {
    .products-title {
        font-size: 36px;
    }

    .products-content {
        flex-direction: column;
        align-items: center;
    }

    .products-container {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
        max-width: 280px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 28px;
    }

    .product-card {
        width: 90%;
        max-width: 260px;
    }
}
