:root{
--gold:#c5a059;
--dark:#111;
--cream:#faf8f4;
--gradient:linear-gradient(135deg,#c5a059,#f1d28c,#c5a059);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:var(--cream);
color:var(--dark);
overflow-x:hidden;
}

/* Background animation */

.bg-animation{
position:fixed;
width:100%;
height:100%;
background:
radial-gradient(circle at 30% 30%,rgba(197,160,89,0.2),transparent 40%),
radial-gradient(circle at 80% 70%,rgba(197,160,89,0.15),transparent 40%);
z-index:-1;
animation:bgmove 15s infinite alternate ease-in-out;
}

@keyframes bgmove{
0%{transform:scale(1);}
100%{transform:scale(1.2);}
}

/* Navbar */

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 5%;
background:rgba(255,255,255,0.5);
backdrop-filter:blur(12px);
z-index:100;
}

.logo{
font-family:'Playfair Display';
font-size:28px;
}

.logo span{
background:var(--gradient);
-webkit-background-clip:text;
color:transparent;
}

.nav-links a{
margin-left:30px;
text-decoration:none;
color:var(--dark);
font-size:15px;
}

.nav-links a:hover{

border-bottom: 2px solid rgb(226, 190, 8);
color: brown;

}

.cta-nav{
background:var(--gradient);
padding:8px 20px;
border-radius:20px;
color:white !important;
}


/* Dropdown Container */
.dropdown {
    display: inline-block;
    position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: block; /* We use opacity/visibility for animation */
    position: absolute;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 3px solid var(--gold);
    z-index: 1000;
}

/* Show on Hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

/* Individual Links inside Dropdown */
.dropdown-content a {
    color: var(--dark) !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    gap: 12px;
    font-size: 14px !important;
    transition: 0.3s;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-align: left;
}

.dropdown-content a i {
    color: var(--gold);
    width: 20px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover effect for links */
.dropdown-content a:hover {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold) !important;
    padding-left: 25px !important; /* Slight slide in effect */
}

/* Ensure Nav-links doesn't hide dropdown */
.nav-links {
    display: flex;
    align-items: center;
}

/* Mobile Adjustment for Dropdown */
@media(max-width:900px){
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none; /* Toggle this with JS if you want mobile click */
        background: transparent;
        width: 100%;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Hero */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 5%;
}

.hero-text h1{
font-family:'Playfair Display';
font-size:70px;
}

.gradient-text{
background:var(--gradient);
-webkit-background-clip:text;
color:transparent;
}

.hero-text p{
margin:20px 0;
max-width:450px;
}

/* Buttons */

.btn-group{
display:flex;
gap:20px;
margin-top:20px;
}

.btn-main{
background:var(--gradient);
border:none;
padding:14px 28px;
border-radius:30px;
color:white;
cursor:pointer;
transition:.4s;
}

.btn-main:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline{
border:2px solid var(--gold);
background:none;
padding:14px 28px;
border-radius:30px;
cursor:pointer;
}

.btn-outline:hover{
background:var(--gold);
color:white;
}

/* Floating card */

.hero-visual{
display:flex;
margin-top: 6%;
justify-content:center;
align-items:center;
}

.fabric-card{
width:320px;
height:420px;
background:linear-gradient(145deg,#111,#2c2c2c);
border-radius:80px 20px 80px 20px;
display:flex;
align-items:center;
justify-content:center;
color:white;
box-shadow:0 30px 70px rgba(0,0,0,0.4);
animation:float 6s infinite ease-in-out;
}

@keyframes float{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-40px)}
}

/* Grid */

.grid-section{
padding:120px 10%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.card{
background:white;
border-radius:15px;
padding:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
transition:.4s;
}

.card:hover{
transform:translateY(-10px) scale(1.03);
}

.img-box{
height:260px;
background:#eee;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
}

/* Animations */

.anim-up{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.anim-up.active{
opacity:1;
transform:translateY(0);
}

.anim-scroll{
opacity:0;
transform:scale(.9);
transition:.8s;
}

.anim-scroll.active{
opacity:1;
transform:scale(1);
}

/* Footer */



/* Mobile */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
padding-top:120px;
}
.btn-group{
justify-content:center;
flex-wrap:wrap;
}


.hero-text h1{
font-size:42px;
}

.grid-section{
grid-template-columns:1fr;
}

.nav-links{
display:none;
}

}


/* footer */
footer{

text-align:center;

}
/* --- Modern Footer --- */

.modern-footer {
    background: var(--dark);
    color: var(--cream);
    padding: 80px 5% 20px;
    position: relative;
    border-top: 3px solid var(--gold);
}

.footer-container {
    display: grid;
    /* This grid dynamically adjusts based on screen size, making it highly mobile-friendly */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.brand-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Social Icons */
.social-icons {
    justify-content: center;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    text-decoration: none;
    transition: 0.4s ease;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.social-icons a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Footer Headings */
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

/* Footer Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(8px); /* Nice slide effect on hover */
}

/* Contact Info styling */
.contact-info li {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info li i {
    color: var(--gold);
    font-size: 18px;
    min-width: 20px;
}

/* Newsletter Form */
.newsletter-col p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 30px;
    padding: 5px;
    transition: 0.3s;
}

.newsletter-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    outline: none;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    background: var(--gradient);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.newsletter-form button:hover {
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 13px;
}

/* Mobile Adjustments for Footer Padding */
@media(max-width: 600px){
    .modern-footer {
        padding: 60px 5% 20px;
    }
    .footer-container {
        gap: 30px;
    }
}

/*  */
/* --- Floating Image Slider --- */

.fabric-card {
    width: 320px;
    height: 420px;
    border-radius: 80px 20px 80px 20px;
    position: relative; /* Required to hold the absolute images inside */
    overflow: hidden; /* Ensures images don't spill out of the rounded corners */
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    animation: float 6s infinite ease-in-out;
    background: var(--dark); /* Fallback background */
}

/* Slider Images */
.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the card without stretching */
    opacity: 0; /* Hide all images by default */
    transform: scale(1.1); /* Start slightly zoomed in */
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out; /* Smooth fade & zoom */
}

/* The currently active image */
.slider-img.active {
    opacity: 1;
    transform: scale(1); /* Zoom out to normal size */
}

/* Dark gradient overlay so the text remains readable */
.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    z-index: 10; /* Keeps the text above the images */
}

.slider-overlay span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/*  */

.card{
text-align: center;
}


.menuakimg{
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}
.menuakimgbtm{
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    height: 100%;
}

a{
    text-decoration: none;
    color: #111;
}




/* === AMAZING TECH BADGE FOR HI-D'SIGN === */
.creator-badge {
    position: relative;
    right:-77%;
    width: fit-content;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 248, 248, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.creator-badge:hover {
    border-color: rgba(0, 242, 254, 0.5); /* Cyan border on hover */
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    transform: scale(1.02);
}

.created-text {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.hidsign-glow {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    /* Gradient Text */
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* The Glowing Green/Cyan Dot */
.glow-dot {
    width: 8px;
    height: 8px;
    background-color: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2fe, 0 0 20px #00f2fe;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(0.8); }
}
