* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
 
  overflow-x: hidden;
}



/* ————————————————————— */
/* GLOBAL OVERFLOW & BOX-SIZING FIXES */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;      /* hide horizontal overflow on mobile */
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

span{
  color: #007bff;
}


/*=== topbar ===*/
.topbar {
  background:black;
  position: sticky;
  top: 0;
  z-index: 1000;  
  width: 100%;
}


/*=== header ===*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background:pink ;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 50px;
  
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .logo h2 {
  margin: 0;
  font-size: 1.5rem;
  color:white;
}
.header .contact {
  text-align: right;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.header .contact .contact1{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.header .contact .contact1>p{
    margin: 0;
    line-height:1px;
    color: #555;
    font-weight: bold;
}
.header .contact .time>p{
    margin: 0;
    font-size:11px;
    line-height:1px;
    font-weight: bold;
    cursor: pointer;
    /* color:white; */
    color:white;
     /* Animation */
    animation: pulse-effect 2s ease-in-out infinite;
}
@keyframes pulse-effect {
  0% {
    transform: scale(1.10);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.header .contact a {
  color: rgb(36, 4, 4);
  text-decoration: none;
  transition: color 0.2s;
}
.header .contact a:hover {
  color:black;
}
.header .contact .time>p:hover{
    color: black;
}


/*=== navbar ===*/
.navBar {
  display: block;
  background: whitesmoke;
  border-top: 1px solid gold;
  padding: 10px;
  
}
.navBar .navLinks {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 80px;
}
.navBar .linkRight {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
}
.linkRight li {
  position: relative;
}
.linkRight li a {
  text-decoration: none;
  font-size: 1.03rem;
  color:black;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s, color 0.3s;
}
.linkRight li a:hover {
  /* background:white; */
  color:rgb(175, 6, 102);
}
.linkRight li.sign button {
  background: rgb(180, 7, 145);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: bold;
  box-sizing: border-box;
    /* Pulse animation */
  animation: pulse-btn 2s ease-in-out infinite;
}
/* @keyframes for pulse */
@keyframes pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.linkRight li.sign button:hover {
    background-color: yellowgreen;
    color: whitesmoke;
}


/*=== Dropdown menu ===*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(-5);
}
.dropdown-menu li a {
  display: block;
  color:black;
  margin-top:-22px;
  font-size:1rem;
}
/* Hamburger button styling */
.hamburger {
  display: none;
  font-size:2rem;
  color:black;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

/* Mobile / small-screen styles */
@media (max-width: 450px) {
  .header{
    height: 150px;
  }
  .header .contact {
    text-align: center;
    /* font-size: 0.8rem; */
    /* margin-top: 0.5rem; */
    display: flex;
    flex-direction: column;
  }
  .header .contact .contact1{
    display: flex;
    flex-direction: column;
  }
  .navBar {
    display: none;
    width: 100%;
  }
  .navBar.active {
    display: block;
    background:rgb(208, 205, 205);
  }
  .navBar .navLinks {
    padding: 1rem;
  }
  .navBar .linkRight {
    flex-direction: column;
    gap: 0;
  }
  .linkRight li {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
  }
  .linkRight li a {
    display: block;
    width: 100%;
    color:#007bff;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  .linkRight li.sign button {
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #007bff;
    margin-top: 0.5rem;
  }
    /* Ensure last items appear correctly */
  .linkRight li.sign,
  .linkRight li:last-child {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Make Contact Us button visible and spaced */
  .linkRight li.sign button {
    background: red;
    color: white;
    margin: 10px 0;
    width: 90%;
  }

  /* Style Log In link for better visibility */
  .linkRight li a[href*='Log In'] {
    color: white;
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  /* Allow scrolling if list is long */
  .navBar.active .linkRight {
    overflow-y: auto;
    max-height: 80vh;
    padding-bottom: 100px; /* space for button visibility */
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
  }
   /* .dropdown:hover .dropdown-menu {
    visibility: visible;
  }  */
  .dropdown-menu li a {
    color:black;
    padding-left: 2rem;
  }
  .hamburger{
    display: block;
  }
}











































.designers {
  padding: 80px 10%;
  text-align: center;
  background: #fff;
}

.designers-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.designers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.designer-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
  transition: 0.3s;
  animation: fadeInUp 1s ease forwards;
}

.designer-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
}

.designer-card h3 {
  font-size: 22px;
  margin-top: 10px;
}

.designer-card span {
  color: #e91e63;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.designer-card p {
  color: #555;
  margin: 10px 0 15px;
  font-size: 15px;
}

.designer-social a {
  font-size: 20px;
  margin: 0 8px;
  color: #e91e63;
  text-decoration: none;
  transition: 0.3s;
}

.designer-card:hover {
  transform: translateY(-10px);
}

.designer-social a:hover {
  color: #c2185b;
  transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .designers-title {
    font-size: 28px;
  }
}









/* ZOOM ANIMATION */
.designer-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  overflow: hidden;
}

.designer-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
  
  /* IMPORTANT: zoom effect */
  transition: transform 0.4s ease;
}

/* Hover zoom-in */
.designer-card:hover img {
  transform: scale(1.15);
}

/* Card lift effect */
.designer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}


/* Continuous zoom animation */
.designer-card img {
  animation: zoomLoop 5s ease-in-out infinite;
}

@keyframes zoomLoop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
































































footer{
  background: #f9f3fa;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid #ff9ed8;
}

.footer-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Logo Section */
.footer-logo h2{
  color: #e35aa8;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo p{
  color: #555;
  line-height: 26px;
}

/* Links */
.footer-links h3{
  color: #d63c92;
  margin-bottom: 18px;
  font-size: 20px;
}

.footer-links ul{
  list-style: none;
  padding: 0;
}

.footer-links ul li{
  margin-bottom: 12px;
}

.footer-links ul li a{
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.footer-links ul li a:hover{
  color: #d63c92;
  padding-left: 5px;
}

/* Newsletter */
.newsletter h3{
  color: #d63c92;
  margin-bottom: 18px;
}

.newsletter input{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.newsletter button{
  width: 100%;
  padding: 12px;
  background: #e35aa8;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.newsletter button:hover{
  background: #d63c92;
}

/* Social Icons */
.social{
  margin-top: 15px;
}

.social a{
  display: inline-block;
  margin-right: 12px;
  color: #e35aa8;
  font-size: 22px;
  transition: 0.3s;
}

.social a:hover{
  color: #d63c92;
}

/* Bottom Bar */
.bottom-footer{
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 15px;
}
