*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= NAVBAR ================= */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 30px;
    background:#21A1AF;
    color:#fff;
    position:relative;
}

.logo{
    font-size:24px;
    font-weight:600;
}
.close-btn{
    display: none;
}
/* ================= LINKS (DESKTOP) ================= */
.nav-links{
    list-style:none;
    display:flex;
    gap:28px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    font-weight:500;
}

/* ================= DROPDOWN (DESKTOP) ================= */
.dropdown-menu{
    display:none;
    position:absolute;
    top:45px;
    left:0;
    background:#fff;
    border-radius:14px;
    min-width:220px;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    overflow:hidden;
}

.dropdown-menu.show{
    display:block;
}

.dropdown-menu a{
    display:block;
    padding:14px 20px;
    color:#333;
}

/* DESKTOP dropdown hover */
.dropdown-menu li a:hover{
    background: linear-gradient(135deg,#ff5fa2,#8f4bd8);
    color:#fff;
}

/* ================= HAMBURGER ================= */
.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .hamburger{
        display:block;
        z-index:1100;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        height:100vh;
        background:#fff;
        flex-direction:column;
        padding:90px 20px;
        gap:14px;
        transition:0.4s ease;
        box-shadow:-6px 0 20px rgba(0,0,0,0.25);
        z-index:1000;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links a{
        color:#000;
        background:#f4f4f4;
        padding:14px;
        border-radius:16px;
        text-align:center;
        display:block;
        font-weight:500;
    }

    .nav-links a:hover{
        background:#21A1AF;
        color:#fff;
    }

    /* CLOSE BUTTON (ONLY MOBILE) */
    .close-btn{
        position:absolute;
        top:20px;
        display: block;
        right:20px;
        font-size:28px;
        cursor:pointer;
        color:#000;
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu{
        position:static;
        background:transparent;
        box-shadow:none;
        margin-top:8px;
        display:none;
    }

    .dropdown-menu.show{
        display:block;
    }

    .dropdown-menu a{
        background:#ededed;
        margin-top:6px;
        border-radius:14px;
    }
}
@media(min-width:769px){
    .dropdown:hover .dropdown-menu{
        display:block;
    }
}

/* ================= BRANDING SECTION ================= */
.branding-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 25px 20px;
}

.brand-text {
    text-align: center;
}

.brand-text h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.brand-text p {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8f4bd8;
}

.brand-logo {
    position: absolute;
    left: 10px;
}

.brand-logo img {
    width: 250px;
}

@media (max-width: 768px) {
    .branding-section {
        flex-direction: column;
        gap: 12px;
    }

    .brand-logo {
        position: static;
    }

    .brand-logo img {
        width: 150px;
    }

    .brand-text h1 {
        font-size: 22px;
    }
}
    @media(min-width:769px){
    .dropdown-menu a:hover{
        background: linear-gradient(135deg,#ff5fa2,#8f4bd8);
        color:#fff;
    }
}

.slideshow-section {
    display: flex;
    gap: 30px;
    padding: 40px;
    align-items: center;
}

/* Slideshow */
.slideshow {
    width: 280px;     /* mobile image size */
    height: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

/* Right content */
.content-area {
    max-width: 420px;
}

.content-area h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.quote {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    font-style: italic;
}

/* Thumbnails */
.thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.thumbnails img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnails img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .slideshow-section {
        flex-direction: column;
        text-align: center;
    }

    .content-area {
        max-width: 100%;
    }
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.slide {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

/* FULL image */
.slide-image {
    width: 50%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* FULL image, no crop */
}

/* Content side */
.slide-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    transition: background 0.6s ease;
}

.hero-slider.white .slide-content {
    background: #ffffff;
}

/* Text */
.slide-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    font-size: 32px;
    cursor: pointer;
    padding: 12px;
    transform: translateY(-50%);
}



.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* Dots */
.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    opacity: 0.3;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
    }

    .slide-image,
    .slide-content {
        width: 100%;
        height: 50%;
    }

    .slide-content {
        padding: 30px;
        text-align: center;
    }
}
/* About Section */
.about-section {
    padding: 120px 20px; /* more top-bottom space to separate from slider */
    background-color: #fdfdfd;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #222;
    margin-bottom: 50px; /* spacing between title and content */
    font-weight: 600;
}

.about-container {
    display: flex;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px; /* space between image and text */
    flex-wrap: wrap;
}

.about-image img {
    width: 200px; /* small neat image */
    height: auto;
    border-radius: 8px; /* subtle rounded corners */
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
    line-height: 1.7;
    color: #555;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Responsive: stack image and content */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image img {
        width: 150px;
        margin-bottom: 20px;
    }

    .about-content {
        min-width: auto;
    }
}
/* Contact Boxes Section */
  .contact-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;

  }

  .contact-box {
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
  }

  .contact-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .contact-box:hover {
    background-color: #e8e8e8;
  }

  .contact-box span {
    font-size: 14px;
    color: #333;
    decoration:none;
  }

  /* Instagram Button */
  .instagram-btn {
    display: block;
    width: 300px;
    margin: 30px auto;
    padding: 15px 0;
    background-color: #ff5fa2;
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
  }

  .instagram-btn:hover {
    background-color: #8f4bd8;
  }

 .insta-embed-section {
  padding: 60px 20px;
  text-align: center;
}

.insta-embed-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.insta-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.insta-embed-box {
  overflow: hidden;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .insta-embed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .insta-embed-grid {
    grid-template-columns: 1fr;
  }
}
.follow-circle {
  width: 260px;
  height: 260px;
  background-color: #f7a6bc; /* soft pink */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.follow-text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.divider {
  width: 120px;
  height: 1px;
  background-color: #fff;
  margin-bottom: 18px;
}

.insta-icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  radius:10px;
}


.insta-icon img:hover {
  transform: scale(1.15);
}
