﻿/* BOUNDLESS STUDENT BIRYANI CASE STUDIES */

/* navbar pilss corections */

/* Base Styles with Soft Grey Background */
html, body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f5f5f5 !important; /* Soft Grey Background */
  color: #121212;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}


/* Hero Content */
.hero-title {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-size: 3.8rem;
  letter-spacing: -1px;
  color: #0d0d0d;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.5;
  color: #4a4a4a !important;
}

/* Custom Curved Split Button (Exact Match) */
.custom-split-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 2px; /* Small gap between pill and arrow circle */
  transition: transform 0.2s ease;
}

.custom-split-btn:hover {
  transform: translateY(-2px);
}

.custom-split-btn .btn-text {
  background-color: #2b2b2b;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 22px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.custom-split-btn .btn-icon {
  background-color: #2b2b2b;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-split-btn:hover .btn-text,
.custom-split-btn:hover .btn-icon {
  background-color: #ea332d;
}

.custom-split-btn:hover .btn-icon {
  transform: rotate(45deg);
}

.custom-split-btn:active {
  transform: translateY(0);
}

/* Right Image Card Placeholder */
.image-placeholder-card {
  width: 100%;
  max-width: 520px;
  height: 280px;
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 20px;
  overflow: hidden;
}

.custom-img {
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .image-placeholder-card {
    height: 220px;
  }
}


/* section-1 crad secction */

/*   cards   */

      /*    December Social Media Post */
      /* Social Media Post */
      /* Social Media Post */


      /* Base Background & Typography */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f1f2f1;
  color: #121212;
}

.posts-slider-section {
  background-color: #f1f2f1;
}

/* Heading Styling */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
}

/* Navigation Arrow Buttons */
.btn-slider {
  background-color: #2b2b2b;
  color: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}

.btn-slider:hover {
  background-color: #ea332d;
  color: #ffffff;
  transform: scale(1.05);
}

/* Post Cards Styling */
.post-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.post-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* Hover Effects */
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.post-card:hover .post-img {
  transform: scale(1.03);
}

/* Responsive Image Heights */
@media (max-width: 768px) {
  .post-img {
    height: 180px;
  }
  .section-title {
    font-size: 1.4rem;
  }
}

/* some cards size increase */

.post-img {
  width: 100%;
  height: 400px; /* Purana 220px tha, ab badha kar 380px kar diya hai */
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}


 /* Social Media Post */


     /* Base Background & Typography */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f1f2f1;
  color: #121212;
}

.posts-slider-section {
  background-color: #f1f2f1;
}

/* Heading Styling */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
}

/* Navigation Arrow Buttons */
.btn-slider {
  background-color: #2b2b2b;
  color: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}

.btn-slider:hover {
  background-color: #ea332d;
  color: #ffffff;
  transform: scale(1.05);
}

/* Post Cards Styling */
.post-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.post-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* Hover Effects */
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.post-card:hover .post-img {
  transform: scale(1.03);
}

/* Responsive Image Heights */
@media (max-width: 768px) {
  .post-img {
    height: 180px;
  }
  .section-title {
    font-size: 1.4rem;
  }
}

/* some cards size increase */

.post-img {
  width: 100%;
  height: 400px; /* Purana 220px tha, ab badha kar 380px kar diya hai */
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* projection information section-2 */


/* Background & Global Fonts */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f5f2;
  color: #2b2b2b;
}

.project-details-section {
  background-color: #f6f5f2;
}

/* Custom Black Pill Badges with Red Dot */
.custom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.custom-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #ea332d;
  border-radius: 50%;
  display: inline-block;
}

/* Metadata Bar (Category, Date, Client) */
.info-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: #121212;
}

.info-value {
  font-weight: 400;
  color: #555555;
  font-size: 0.95rem;
}

.info-divider {
  width: 1px;
  height: 28px;
  background-color: #a0a0a0;
  margin-right: 3rem;
}

/* Project Brief Text */
.project-brief-text {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 900px;
}

/* Subtitle */
.section-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #121212;
}

/* Services List Styling */
.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2b2b2b;
}

.red-bullet {
  width: 10px;
  height: 10px;
  background-color: #ea332d;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Carousel Image Container */
.carousel-img {
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #ffffff;
}

/* Carousel Controls - Red Dots Styling */
.custom-dots-carousel .carousel-indicators {
  position: relative;
  margin-top: 15px;
  margin-bottom: 0;
  justify-content: center;
}

.custom-dots-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff8e8c; /* Inactive dot color */
  border: none;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.custom-dots-carousel .carousel-indicators .active {
  background-color: #ea332d; /* Active red dot color */
  transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .info-divider {
    display: none;
  }
  
  .carousel-img {
    height: 210px;
  }
  
  .info-bar {
    border-bottom: 1px solid #ddd;
  }
}



/* project breif section */




/* Base Section Setup */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f5f4f0;
  color: #2b2b2b;
}

.work-breakdown-section {
  background-color: #f5f4f0;
}

/* Badge Styling */
.custom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2b2b2b;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.custom-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #ea332d;
  border-radius: 50%;
  display: inline-block;
}

/* Info Metadata Bar */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: #121212;
}

.info-value {
  color: #555555;
  font-size: 0.95rem;
}

.info-divider {
  width: 1px;
  height: 24px;
  background-color: #bbbbbb;
  margin-right: 3rem;
}

.project-brief-text {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 900px;
}

/* Expandable Cards Styling (Accordion Hover Effect) */
.expand-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
}

.expand-card-header .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b2b2b;
  transition: color 0.3s ease;
}

/* Circular Arrow Icon */
.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #6c757d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* Smooth Accordion Text Collapse Effect */
.expand-card-content {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Hover & Active States */
.expand-card:hover,
.expand-card.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Expand Content on Hover */
.expand-card:hover .expand-card-content,
.expand-card.active .expand-card-content {
  max-height: 150px;
  opacity: 1;
}

/* Arrow Icon Effect on Hover */
.expand-card:hover .arrow-btn,
.expand-card.active .arrow-btn {
  background-color: #2b2b2b;
  transform: rotate(0deg);
}

.expand-card:not(:hover):not(.active) .arrow-btn {
  transform: rotate(45deg);
}

/* Image Slider Styling */
.breakdown-img {
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* Slider Red Dots Overlay Styling */
.dots-only-carousel {
  position: relative;
}

.dots-only-carousel .overlay-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.dots-only-carousel .overlay-dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff9898;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.dots-only-carousel .overlay-dots .active {
  background-color: #ea332d;
  transform: scale(1.25);
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
  .breakdown-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .info-divider {
    display: none;
  }
  .expand-card-header .card-title {
    font-size: 1.05rem;
  }
}


/* 3d animated video section */

/* some corrections of videos left right */

/* Base Section Setup */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f5f2;
}

.video-animation-section {
  background-color: #f6f5f2;
}

/* Heading Styling */
.video-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e252b;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

/* Video Wrapper Card Styling */
.video-container-wrapper {
  background-color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.3s ease;
}

.video-container-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .video-section-title {
    font-size: 1.3rem;
  }
}

/* Base Section Setup */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f5f2;
}

.video-animation-section {
  background-color: #f6f5f2;
}

/* Heading Styling */
.video-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e252b;
  letter-spacing: -0.5px;
}

/* Video Wrapper Card Styling */
.video-container-wrapper {
  background-color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.3s ease;
}

.video-container-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .video-section-title {
    font-size: 1.5rem;
  }
}

/* video section */
/*   Design Promotional Video Animation for Student Biryani*/


/* Base Section Setup */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f5f2;
}

.video-animation-section {
  background-color: #f6f5f2;
}

/* Heading Styling */
.video-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e252b;
  letter-spacing: -0.5px;
}

/* Video Wrapper Card Styling */
.video-container-wrapper {
  background-color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.3s ease;
}

.video-container-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .video-section-title {
    font-size: 1.5rem;
  }
}


/* shorts video section */


/* Base Background & Typography */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f7f9;
}

.influencer-marketing-section {
  background-color: #f6f7f9;
}

/* Section Title Styling */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e252b;
  letter-spacing: -0.5px;
}

/* 9:16 Vertical Aspect Ratio Custom Class for Shorts */
.ratio-9x16 {
  --bs-aspect-ratio: 177.77%; /* (16 / 9) * 100 for Vertical Video Format */
}

/* Shorts Card Container */
.short-card {
  background-color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.short-card iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Mobile Devices Optimization */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
}

/* ===== Real gallery / lightbox / video popup (Kaacib-style) ===== */

/* Campaign snapshots slider */
.sb-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.sb-slider-track::-webkit-scrollbar {
  display: none;
}

.sb-slider-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.sb-slider-item .post-img {
  height: 220px;
  width: auto;
}

.sb-slider-item--reel {
  width: 124px;
  aspect-ratio: auto;
  height: 220px;
  border-radius: 18px;
  cursor: pointer;
}

@media (max-width: 575px) {
  .sb-slider-item .post-img {
    height: 150px;
  }

  .sb-slider-item--reel {
    width: 85px;
    height: 150px;
  }
}

/* Scroll-reveal */
.sb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.row.g-4 > .sb-reveal:nth-child(3n+2) {
  transition-delay: 0.08s;
}

.row.g-4 > .sb-reveal:nth-child(3n+3) {
  transition-delay: 0.16s;
}

.row.g-3 > .sb-reveal:nth-child(4n+2) {
  transition-delay: 0.06s;
}

.row.g-3 > .sb-reveal:nth-child(4n+3) {
  transition-delay: 0.12s;
}

.row.g-3 > .sb-reveal:nth-child(4n+4) {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .sb-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.sb-lightbox-img {
  cursor: zoom-in;
}

/* Video click-to-play cards */
.sb-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.sb-video-card--vertical {
  aspect-ratio: 9 / 16;
}

.sb-video-card:hover {
  box-shadow: 0 0 32px rgba(234, 51, 45, 0.35);
}

.sb-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sb-video-card:hover img {
  opacity: 0.4;
  transform: scale(1.04);
}

.sb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #ea332d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.4rem;
}

.sb-video-card--vertical .sb-play-icon {
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
}

.sb-video-card:hover .sb-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ea332d;
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(234, 51, 45, 0.25), 0 0 40px rgba(234, 51, 45, 0.55);
}

/* Lightbox / video popup overlay */
.sb-modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sb-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sb-modal-close {
  position: fixed;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
}

#sbLightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

.sb-modal-overlay.active #sbLightboxImg,
.sb-modal-overlay.active .sb-video-modal-box {
  transform: scale(1);
}

.sb-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2001;
}

.sb-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

.sb-lightbox-prev {
  left: 24px;
}

.sb-lightbox-next {
  right: 24px;
}

.sb-video-modal-box {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.3s ease, aspect-ratio 0.2s ease;
}

.sb-video-modal-box--vertical {
  max-width: 380px;
  aspect-ratio: 9 / 16;
}

.sb-video-modal-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 575px) {
  .sb-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .sb-lightbox-prev {
    left: 8px;
  }

  .sb-lightbox-next {
    right: 8px;
  }

  .sb-modal-close {
    top: 12px;
    right: 16px;
  }
}

