* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    background: whitesmoke;
    color: #fff;
}

/* Custom Navbar Styling */
.custom-navbar {
  background: linear-gradient(to right, #ff69b4, #b03060); /* pink to magenta  ( #ff69b4, #b03060)*/
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px 20px;
  /* border-radius: 0 0 12px 12px; */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.2); */
}

.custom-navbar .navbar-brand {
  color: #fff;
  font-size: 2.0rem;
  transition: color 0.3s ease;
}

.custom-navbar .navbar-brand:hover {
  color: #ffe4e1; /* Light pink hover */
}

.custom-navbar .nav-link {
  color: #ffffff;
  font-size: large;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s ease;
  
}

.custom-navbar .nav-link::after {
  content: '';
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #ffe4e1;
}

.custom-navbar .nav-link:hover::after {
  width: 100%;
}

#header {
    width: 100%;
    height: 100vh;
    background-image: url(./assets/images/Finalbg.jpg);
    background-size: cover;
    background-position: center;
}

.container {
    padding: 5px 10%;

}

p {
    color: rgb(0, 0, 0);
}

h1 {
    color: #000000;
}

h2 {
    color: #000000;
}


/* Hero Section */
.hero-section {
  height: 100vh;
  background: url('https://t3.ftcdn.net/jpg/03/24/69/98/360_F_324699869_yxbLMN3AHLMFi9kHUxmg27VSmIVy2zxr.jpg') 
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center; /* push content to right side */
  /* padding-right: 8%; spacing from right edge */
  text-align: center;
  position: relative;
  
}

/* Overlay effect for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
}

/* Hero content styling */
.hero-content {
  position: relative; /* above overlay */
  color: #fff;
  max-width: 500px;
  text-align: center;
  animation: fadeInRight 1.2s ease-out;
}

/* Button styling */
.hero-content .btn {
  background-color: #ff69b4; /* pink accent */
  border: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-content .btn:hover {
  transform: scale(1.1);
  background-color: #ff85c1;
}

/* Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Cards Section */


.cards {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 4px 8px black;
    width: 200px;
    height: 400px;
    margin: auto;
    padding: 50px;
    opacity: 0; 
    animation: fadeIn 0.8s ease forwards;
    
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.service-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-card.show {
  transform: translateY(0);
  opacity: 1;
}

.service-card:hover {
    /* background: #ff004f; */
    transform: translateY(-10px);
}
.card-title {
  color: #ff69b4; /* pink accent */
  font-weight: bold;
}

/* Contact US  */
/* Common button hover effect */
.btn {
  transition: all 0.3s ease;
}

/* Gradient buttons hover */
.btn:hover {
  background: linear-gradient(to right, #b03060, #ff69b4); /* reverse gradient */
  color: #fff;
  transform: translateY(-3px); /* slight lift */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* soft shadow */
}


/* -----------about ------------------ */

#about {
    padding: 80px 0;
    color: #000000;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 100%;
    border-radius: 15px;

}

.about-col-2 {
    color: #000000;
    margin-left: 0;
    flex-basis: 60%;

}

.sub-title {
    font-size: 60px;
    color: #000000;
    font-weight: 600;
}

.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: red;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-links::after {
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    color: rgb(200, 20, 110);
    font-size: 14px;

}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;

}



.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 ratio */
  position: relative;
  height: 0;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  background: linear-gradient(to right, #ff69b4, #b03060);
  color: #fff;
  text-align: center;
}

.shop-name {
  font-size: 2rem;   /* bigger font size */
  font-weight: 700;  /* bold */
  color: #fff;
}

.footer p {
  margin: 5px 0;
  color: #fff;
}

.footer hr {
  border-color: rgba(255,255,255,0.3);
}


/* Smartphones and small devices */
@media (max-width: 768px) {

  /* Navbar */
  .custom-navbar .navbar-brand {
    font-size: 1.4rem;   /* smaller brand text */
  }
  .custom-navbar .nav-link {
    font-size: 0.9rem;
    margin: 5px 0;
    display: block;      /* stack links vertically */
    text-align: center;
  }

  /* Hero Section */
  .hero-section {
    height: 500px;        /* allow content to fit naturally */
    padding: 60px 20px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  /* Services Cards */
  .service-card {
    margin-bottom: 20px;
  }
  .card-title {
    font-size: 1rem;
  }
  .card-text {
    font-size: 0.9rem;
  }

  /* About Section */
  #about .row {
    flex-direction: column;   /* stack image and text */
    align-items: center;
  }
  .about-col-1, .about-col-2 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .sub-title {
    font-size: 2rem;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 20px 10px;
  }
  .shop-name {
    font-size: 1.4rem;
  }
  .footer p {
    font-size: 0.9rem;
  }
}



