* {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}
.color {
    color: #FFC107;
}
html {
    scroll-behavior: smooth;
}

/* Navigation bar */
.logo {
    width: 8%;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: black;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: #FFC107;
    text-decoration: none;
    font-size: 18px;
}
nav ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .logo {
        width: 20%;
        height: auto;
    }
    nav {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }
    nav ul li a {
        font-size: 14px;
    }
}

/* Hero section */
.hero {
    position: relative;
    background-image: url('Assets/home.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 20px;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: transparent;
    color: #FFC107;
}
.hero-content span {
    position: relative;
    display: inline-block;
    color: red;
    vertical-align: bottom;
    overflow: hidden;
    height: 1.5em;
    background: transparent;
}
.hero-content span span {
    display: block;
    animation: anim 5s infinite ease;
}
@keyframes anim {
    0% { transform: translateY(0%) }
    25% { transform: translateY(-100%) }
    50% { transform: translateY(-200%) }
    75% { transform: translateY(-300%) }
    100% { transform: translateY(-400%) }
}
.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: transparent;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: transparent;
}
.hero-content .btn {
    background-color: #FFC107;
    color: black;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
}
.hero-content .btn:hover {
    background-color: #e64a19;
    color: white;
    transform: scale(1.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content h2 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-content .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Achievements */
.hero2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}
.acheivements {
    border: 4px solid #FFC107;
    width: 30%;
    height: 186px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.acheivements h2 {
    font-size: 2.5rem;
    color: #FFC107;
    background: transparent;
}
.acheivements p {
    font-size: 1.2rem;
    padding: 10px;
    background: transparent;
}
.acheivements:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 10px #FFC107;
}
@media (max-width: 768px) {
    .acheivements {
        width: 28%;
        height: auto;
        margin: 20px auto;
        background: transparent;
        outline: #FFC107 2px solid;
        border: none;
    }
    .acheivements h2 {
        font-size: 1.8rem;
    }
    .acheivements p {
        font-size: 0.9rem;
    }
    .hero2 {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
    }
}

/* Collection */
.Collection {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}
.hero3 {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.col_box {
    border: 2px solid #FFC107;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px;
    width: 50%;
}
.col_box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.col_box h2 {
    font-size: 1.4rem;
    color: #FFC107;
    margin: 10px;
}
.col_box p {
    font-size: 0.95rem;
    padding: 10px;
    text-align: center;
}
.col_box ul {
    padding: 0 20px 20px 40px;
    font-size: 0.85rem;
    text-align: left;
}
.col_box li::marker {
    color: #FFC107;
}
.col_box:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 15px #FFC107;
}
@media (max-width: 768px) {
    .col_box {
        width: 90%;
        margin: 10px auto;
    }
    .hero3 {
        flex-wrap: wrap;
    }
}

/* Topic Styling */
.topic {
    text-align: center;
    padding: 40px 20px;
}
.topic h2 {
    font-size: 2.5rem;
    color: #FFC107;
}
.topic p {
    font-size: 1.2rem;
    padding: 10px;
}
.topic-hr {
    width: 150px;
    height: 5px;
    border-radius: 30px;
    border: none;
    background-color: #FFC107;
    margin: 10px auto;
}
@media screen and (max-width: 768px) {
    .topic h2 {
        font-size: 1.8rem;
    }
    .topic p {
        font-size: 1rem;
    }
    .topic-hr {
        width: 100px;
        height: 3px;
    }
}

/* Gallery with Carousel */
#gallery {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}
.gallery-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.gallery-item {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 20s linear infinite; /* Increased duration */
    width: 200%; /* Accommodates duplicated content */
    transition: transform 0.7s ease;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Full width of original content */
}
.gal_img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    padding: 10px;
    border-radius: 10px;
    flex: 0 0 auto;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: none;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    background: transparent;
}
.carousel-controls button {
    background: rgba(0,0,0,0.7);
    border: none;
    color: #FFC107;
    font-size: 1.8rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}
.carousel-controls button:hover {
    background: rgba(0,0,0,0.9);
}
@media (max-width: 768px) {
    .gallery-carousel {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .gallery-item {
        animation: scroll 15s linear infinite; /* Slower for mobile */
        width: 200%; /* Consistent width */
    }
    .gal_img {
        height: 300px;
    }
}

/* Client Review */
#review {
    overflow: hidden;
    padding: 0 5%;
}
.hero4 {
    display: flex;
    width: 200%; /* Match duplicated content width */
    animation: scroll 20s linear infinite; /* Adjusted duration */
}
.client_review {
    border: 3px solid #FFC107;
    width: 30vw;
    max-width: 350px;
    min-width: 280px;
    margin: 15px;
    border-radius: 20px;
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    flex-shrink: 0;
}
.client_review.visible {
    opacity: 1;
    transform: translateY(0);
}
.client_detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.client_review img {
    width: 60px;
    height: 60px;
    border: 3px solid #FFC107;
    border-radius: 50%;
    margin-right: 10px;
}
.client_detail span {
    display: flex;
    flex-direction: column;
}
.client_detail h2 {
    font-size: 1.3rem;
    color: #FFC107;
}
.client_detail p {
    font-size: 0.9rem;
}
.client_review p {
    font-size: 1rem;
    padding: 0 10px 10px;
}
.client_review:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #FFC107;
}
@media screen and (max-width: 768px) {
    .hero4 {
        animation: scroll 15s linear infinite; /* Slower for mobile */
        width: 200%; /* Consistent width */
    }
    .client_review {
        width: 80vw;
        max-width: 300px;
    }
    .client_review p {
        font-size: 0.9rem;
    }
    .client_detail h2 {
        font-size: 1.1rem;
    }
}

/* Contact Us */
.connect {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}
.address {
    flex: 1;
    min-width: 300px;
}
.address h2 {
    font-size: 2rem;
    color: #FFC107;
    margin-bottom: 20px;
}
.add_detail {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.add_detail a {
    text-decoration: none;
}
.circle {
    background-color: rgb(65, 65, 65);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle i {
    background: transparent;
    color: #FFC107;
    font-size: 24px;
}
.add_detail span {
    margin-left: 15px;
}
.add_detail h3 {
    font-size: 1.2rem;
}
.add_detail p {
    font-size: 1rem;
}
@media (max-width: 768px) {
    .connect {
        padding: 0;
        margin: 0;
    }
    .address {
        min-width: 100%;
        margin-left: 20px;
    }
    .address h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    .circle {
        height: 50px;
        width: 50px;
    }
    .circle i {
        font-size: 20px;
    }
}

/* Form */
.message {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.message h2 {
    font-size: 2rem;
    color: #FFC107;
    margin-bottom: 20px;
}
.message form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.message form input,
.message form textarea,
.message form select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #FFC107;
    border-radius: 5px;
    background: transparent;
    color: white;
}
.message form select {
    appearance: none;
}
.message form input::-webkit-outer-spin-button,
.message form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.message form button {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #FFC107;
    color: black;
    font-size: 1rem;
    cursor: pointer;
}
.message form button:hover {
    background-color: #e64a19;
    color: white;
}
@media (max-width: 768px) {
    .message form input,
    .message form textarea,
    .message form select,
    .message form button {
        max-width: 90%;
    }
    .message h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 5%;
    width: 100%;
    flex-wrap: wrap;
}
.footer > section {
    background-color: transparent;
}
.des {
    flex: 1;
    min-width: 250px;
    text-align: left;
}
.des img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    background: transparent;
}
.des p {
    font-size: 0.9rem;
    text-align: justify;
    max-width: 300px;
    background: transparent;
}
.des .color {
    font-size: 1.1rem;
    color: #FFC107;
    background: transparent;
}
.des span {
    font-size: 0.9rem;
    background: transparent;
}
.map_section {
    flex: 1;
    text-align: center;
}
.map {
    width: 500px;
    height: 400px;
    border: 2px solid #FFC107;
    border-radius: 15px;
    margin: 20px 0;
}
.important {
    flex: 1;
    text-align: center;
}
.important h2 {
    font-size: 1.8rem;
    color: #FFC107;
    margin-bottom: 15px;
    background: transparent;
}
.important ul {
    list-style: none;
    padding: 0;
    background: transparent;
}
.important li {
    margin: 10px 0;
    background: transparent;
}
.important a {
    text-decoration: none;
    color: white;
    background: transparent;
}
.important a:hover {
    color: #FFC107;
}
.socials {
    margin-top: 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.socials h2 {
    font-size: 1.5rem;
    color: #FFC107;
    margin-bottom: 10px;
    background: transparent;
}
.socials .icons {
    display: flex;
    gap: 15px;
    background: transparent;
    width: 150px;
    margin: 0 auto;
}
.socials a {
    color: white;
    font-size: 1.8rem;
    background: transparent;
    margin: auto;
}
.socials a:hover {
    color: #FFC107;
}
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .des, .map_section, .important {
        min-width: 100%;
        max-width: 100%;
    }
    .map_section {
        max-width: 100%;
    }
    .des img {
        display: block;
        text-align: left;
    }
    .des p {
        max-width: 100%;
    }
    .important ul {
        display: none;
    }
    .socials .icons {
        justify-content: center;
    }
    .map {
        height: 250px;
        width: 350px;
    }
    .ilink {
        display: none;
    }
}

/* Animations for elements entering the viewport */
.fade-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Ensure animations are smooth on all screen sizes */
@media screen and (max-width: 768px) {
    .fade-slide-up {
        transform: translateY(30px);
        transition-duration: 0.5s;
    }
    .fade-slide-left {
        transform: translateX(-30px);
        transition-duration: 0.5s;
    }
    .fade-slide-right {
        transform: translateX(30px);
        transition-duration: 0.5s;
    }
    .fade-scale {
        transform: scale(0.95);
        transition-duration: 0.5s;
    }
}
@media screen and (max-width: 480px) {
    .fade-slide-up {
        transform: translateY(20px);
        transition-duration: 0.4s;
    }
    .fade-slide-left {
        transform: translateX(-20px);
        transition-duration: 0.4s;
    }
    .fade-slide-right {
        transform: translateX(20px);
        transition-duration: 0.4s;
    }
    .fade-scale {
        transform: scale(0.97);
        transition-duration: 0.4s;
    }
}






/* Reduce gap between testimonial and contact sections */
#review {
  margin-bottom: 30px;  /* was larger before */
  padding-bottom: 20px;
}

#contact {
  margin-top: -90px;
  padding-top: 10px; /* reduce from default .topic padding */
}







/* Stylish bordered boxes for contact sections */
.address,
.message {
  border: 2px solid #FFC107;         /* golden border */
  border-radius: 20px;               /* smooth rounded corners */
  padding: 25px 20px;                /* internal spacing */
  /* background-color: rgba(20, 20, 20, 0.6); subtle dark glass effect */
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2); /* soft glowing border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address:hover,
.message:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.4); /* glow on hover */
}

/* Tighter layout */
.connect {
  gap: 30px;
  align-items: stretch;
}



/* Center the 'Get in Touch' heading */
.address h2 {
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 25px;
  color: #FFC107;
  font-size: 2rem;
  background: transparent;
}


/*footer modigital copyright*/

/* Footer Bottom Line */
.footer-bottom {
  text-align: center;
  background-color: #111;
  padding: 15px 10px;
  border-top: 1px solid #FFC107;
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-bottom span {
  color: #FFC107;
  font-weight: 600;
}

.footer-bottom p:hover span {
  color: white;
  transition: color 0.3s ease;
}








/* WhatsApp Floating Button — Premium, animated */
/* WhatsApp Floating Button — Bright Green, Animated, Premium Look */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 70px;
  height: 70px;
  background: #25D366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
  text-decoration: none;
  z-index: 9999;
  animation: wa-float-in 0.6s ease-out both, wa-pulse 2.4s ease-in-out infinite 1.5s;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(37, 211, 102, 1);
}

/* Fix for global black background */
/* .whatsapp-float, .whatsapp-float i {
  background: transparent !important;
} */

.whatsapp-float i {
  background: transparent !important;
}

/* Icon styles */
.whatsapp-float i {
  font-size: 34px;
  color: #fff;
}

/* Entry and Pulse Animations */
@keyframes wa-float-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }
  .whatsapp-float i { font-size: 28px; }
     .whatsapp-float i {
  background: transparent !important;
}
}

