/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 90vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #caa14a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
    line-height: 1.7;
}

header {
    background: #0c3b2e;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* .hero {
    height: 95vh;
    background: url("images/lamp1.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
} */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #e6b800;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
}

.section {
    padding: 90px 8%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #0c3b2e;
}

.content-center {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.product-card h4 {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: #0c3b2e;
}

.dark-section {
    background: #f4f4f4;
}

footer {
    background: #0c3b2e;
    color: #fff;
    text-align: center;
    padding: 40px;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* ================= SPLIT LAYOUT ================= */

.split-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
}

.split-image {
    flex: 1;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.about-list {
    margin-top: 15px;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 10px;
}

.about-list-1 {
    margin-top: 15px;
    padding-left: 20px;
}

.about-list-1 li {
    margin-bottom: 10px;
    list-style: none;
}

/* li {
    list-style: none;
}
 */
/* ================= PRODUCT GRID ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: 0.4s ease;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 18px;
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding-top: 60px;
}

.lightbox img {
    max-width: 85%;
    max-height: 75%;
    border-radius: 10px;
    animation: zoomIn 0.4s ease;
}

#lightbox-title {
    color: #fff;
    margin-top: 20px;
    font-size: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* PRODUCT DETAIL PAGE */

.product-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.product-gallery {
    flex: 1;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.thumbnail-row {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.thumbnail-row img {
    width: 80px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.thumbnail-row img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-specs {
    margin: 20px 0;
    list-style: none;
}

.product-specs li {
    margin-bottom: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: black;
}

/* DESIGN PROCESS SECTION */

.design-process {
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 18px;
    color: #777;
    margin-top: 10px;
}

.design-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.design-text {
    flex: 1;
}

.design-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.design-image {
    flex: 1;
}

.design-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Highlight Boxes */

.highlight-box {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

/* SERVICES PAGE */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-detail-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text ul {
    margin-top: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.why-card:hover {
    background: #d4af37;
    color: white;
}

.cta-section {
    text-align: center;
    background: #111;
    color: white;
}

.cta-section .btn-primary {
    margin-top: 20px;
}

/* CONTACT PAGE */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-card:hover {
    background: #d4af37;
    color: white;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.contact-map {
    flex: 1;
}

/* CONTACT FORM CARD DESIGN */

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.contact-form button {
    margin-top: 10px;
}

/* .dark-section {
    background: linear-gradient(135deg, #111, #1a1a1a);
} */

.logo img {
    width: 120px;
}
a {
    text-decoration: none !important;
}