/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COLORS */
:root {
    --primary: #e91e63;
    --secondary: #9c27b0;
    --accent: #2196f3;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --transition: all 0.3s ease;
}

/* BODY */
body {
    font-family: "Poppins", sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

   /* Top Header */
        .top-header {
            background-color: #E91E63;
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
        }

        .top-header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info i {
            color: #4fc3f7;
            margin-right: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .social-icons a:hover {
            color: #4fc3f7;
        }

        /* Main Header */
        .main-header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a365d;
            text-decoration: none;
        }

        .logo span {
            color: #4fc3f7;
        }

        /* Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-item {
            position: static;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            padding: 25px 0;
            display: flex;
            align-items: center;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: #1a365d;
        }

        .nav-link i {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        /* Full-Width Mega Menu */
        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: 100vw;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px 0;
            display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .mega-menu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-column h4 {
            color: #1a365d;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #4fc3f7;
            font-size: 1.1rem;
        }

        .mega-menu-links {
            list-style: none;
        }

        .mega-menu-links li {
            margin-bottom: 10px;
        }

        .mega-menu-links a {
            text-decoration: none;
            color: #555;
            transition: color 0.3s, padding-left 0.3s;
            display: block;
        }

        .mega-menu-links a:hover {
            color: #1a365d;
            padding-left: 5px;
        }

        .mega-menu-column.featured {
            grid-column: span 2;
            background-color: #f0f9ff;
            padding: 25px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-content h3 {
            color: #1a365d;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .featured-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .featured-btn {
            display: inline-block;
            background-color: #4fc3f7;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .featured-btn:hover {
            background-color: #1a365d;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1a365d;
            z-index: 1001;
            background: none;
            border: none;
            padding: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .mega-menu-container {
                padding: 0 30px;
            }
        }

        @media (max-width: 992px) {
            .mega-menu-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .mega-menu-column.featured {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                padding: 100px 20px 30px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                overflow-x: hidden;
            }

            .nav-menu.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 15px 0;
                border-bottom: 1px solid #eee;
                font-size: 1.1rem;
            }

            .mega-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 20px 0 10px;
                display: none;
                background-color: #f9f9f9;
                margin-top: 10px;
                border-radius: 8px;
                height: auto;
                overflow-y: visible;
            }

            .mega-menu-container {
                display: block;
                padding: 0;
            }

            .mega-menu-column {
                margin-bottom: 20px;
            }

            .mega-menu-column.featured {
                grid-column: 1;
            }

            .nav-item.active .mega-menu {
                display: block;
            }

            .top-header-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .top-header {
                padding: 10px 0;
            }
        }


/* Make only the main header sticky */
/* .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
} */

/* Keep top header normal (not sticky) */
/* .top-header {
    position: relative;
    z-index: 1001;
} */

/* Adjust mobile menu position */
@media (max-width: 768px) {
    .nav-menu {
        top: 70px; /* Height of main header */
        height: calc(100vh - 70px); /* Subtract main header height */
    }

    /* When mobile menu is open, make main header stay at top */
    .nav-menu.active {
        top: 70px;
    }
}
        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            /* visibility: visible; */
        }

        @media (max-width: 768px) {
            .nav-menu {
                transform: translateX(-100%);
            }

            .nav-menu.active {
                transform: translateX(0);
            }
        }
/**/





    /* FOOTER */
.main-footer {
  background: #000;
  color: #fff;
  padding: 60px 30px;
  margin-top: 70px;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-top: 10px;
}

/* SERVICES LIST */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ea1c5b; /* pink highlight */
}

/* CONTACT INFO */
.footer-address {
  color: #bbb;
  margin-top: 15px;
  line-height: 1.6;
}

/* COPYRIGHT */
.footer-copy {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }

  .social-icons {
    margin-top: 10px;
  }
}


/*page css */
/* MAIN WRAPPER */
.acrobat-section {
    display: flex;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

/* LEFT SIDE THUMBNAIL SLIDER */
.thumbnail-slider {
    width: 110px;
    max-height: 350px;
    overflow: hidden;
}

.images-left {
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
}

.images-left::-webkit-scrollbar { display: none; }

.images-left img {
    width: 90px;
    height: 115px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.images-left img:hover,
.images-left img.active {
    border-color: #ff007f;
}

/* MIDDLE & RIGHT CONTENT */
.main-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-image-box img {
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.content-right {
    max-width: 500px;
}

.hire-btn {
    background: #ff007f;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

/* ---------------- MOBILE RESPONSIVE ---------------- */

@media (max-width: 992px) {
    .acrobat-section {
        justify-content: center;
        text-align: center;
    }
    .main-content {
        justify-content: center;
    }
    .content-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .thumbnail-slider {
        width: 100%;
        height: 120px;
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .images-left {
        display: flex;
        flex-direction: row;
    }
    .images-left img {
        margin-right: 10px;
        width: 100px;
        height: 120px;
    }
    .acrobat-section {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------------- POPUP ---------------- */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.submit-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #ff007f;
    color: #fff;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}
.category-product-section {
    display: flex;
    gap: 30px;
    padding: 20px;
}

/* LEFT CATEGORY PANEL */
.category-panel {
    width: 220px;
    height: 420px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.category-panel::-webkit-scrollbar {
    display: none;
}

.category-panel h3 {
    margin-bottom: 10px;
}

#categoryList li {
    list-style: none;
    padding: 12px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

#categoryList li:hover,
#categoryList li.active {
    border-left: 4px solid #ff007f;
    background: #ffe4f1;
}

/* PRODUCT GRID - 3 ITEMS PER ROW */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

@media (max-width: 768px) {
    .category-product-section {
        flex-direction: column;
        align-items: center;
    }

    .category-panel {
        width: 100%;
        height: auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 per row */
    }
}