/** Shopify CDN: Minification failed

Line 353:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-img-text (INDEX:17) */
.cbgit{
    background: linear-gradient(to bottom right, white, #F3FFF3);

}
.custom-img-text .cs-top-text {
    margin-bottom: 20px;
}
.custom-img-text {
  margin: 0 auto;
}

.custom-img-text__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
padding: 50px 20px 0px 20px;
}

@media screen and (min-width: 750px) {
  .custom-img-text__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.custom-img-text__text-column {
  order: 1;
}

.custom-img-text__image-column {
  order: 2;
}

@media screen and (max-width: 749px) {
  .custom-img-text__grid {
    grid-template-columns: 1fr;
  }
  
  .custom-img-text__text-column {
    order: 1;
  }
  
  .custom-img-text__image-column {
    order: 2;
  }
}

.custom-img-text__image-wrapper {
  position: relative;
  width: 100%;
}

.custom-img-text__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.custom-img-text__image-placeholder {
  aspect-ratio: 3/2;
  width: 100%;
}
/* END_SECTION:custom-img-text */

/* START_SECTION:latestfeed (INDEX:41) */
.bt-slider-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 0;
}

.bt-slider-header-left,
.bt-slider-header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-slider-header-left{
    position: relative;
        left: 20px;
    bottom: -14px;
}
.bt-slider-header-right {
    position: relative;
    top: -14px;
    left: -59px;
}

.bt-header-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.bt-slider-header-content {
display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.bt-slider-heading {
  background: #f60;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 30px;
  padding: 6px 16px;
  position: relative;
  top: -8px;
  margin: 0;
  line-height: 1;
  display: inline-block;
  transform: rotate(-8deg); 
  transform-origin: left center; 
}

.bt-slider-subheading {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .bt-slider-header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
  }

  .bt-header-icon {
    width: 35px;
    height: 35px;
  }

  .bt-slider-header-content {
    flex-direction: column;
    align-items: center;
  }

  .bt-slider-heading {
    top: 0;
    font-size: 18px;
  }

  .bt-slider-subheading {
    font-size: 14px;
  }
  .bt-slider-header-right {
   
    top: -4px;
   
}
}

/* --------------------------water drop effect css--------------- */

@media (max-width: 1024px) {
  .bt-dropleft,
  .bt-dropright {
    display: none !important;
  }
}
.bt-dropleft img,
.bt-dropright img {
  width: 220px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}
.bt-dropleft {
  position: absolute;
  bottom: 6px;
  left: 140px;
  pointer-events: none; 
}

.bt-dropleft img {
  width: 220px; 
  height: auto;
  transform: rotate(30deg);
  opacity: 0.9;
}


.bt-dropright {
  position: absolute;
    bottom: -22px;
    right: 100px;
    
    pointer-events: none;
    transform: rotate(51deg);
}

.bt-dropright img {
  width: 350px;
  height: auto;
  transform: rotate(-30deg);
  opacity: 0.9;
}


@media (max-width: 768px) {
  .bt-dropleft img,
  .bt-dropright img {
    width: 140px;
    opacity: 0.8;
  }
}
/* ----------------------end water drop effect---------------------- */
  .media-slider-section {
    position: relative;
    padding: 60px 40px;
    overflow: hidden;
        background: linear-gradient(to bottom, #ffffff, #FFEFE4);
  }

  .media-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .media-slider-wrapper {
    position: relative;
    overflow: hidden;
  }

  .media-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
  }

  .media-slider::-webkit-scrollbar {
    display: none;
  }

  .media-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .media-card:hover {
    transform: translateY(-8px);
  }

  .media-card img,
  .media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .slider-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
  }

  .slider-btn:hover {
    background: #333;
    transform: scale(1.1);
  }

  .slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
  }

  @media (max-width: 1024px) {
    .media-card {
      flex: 0 0 calc(33.333% - 14px);
      min-width: calc(33.333% - 14px);
    }
  }

  @media (max-width: 768px) {
    .media-card {
      flex: 0 0 calc(50% - 10px);
      min-width: calc(50% - 10px);
    }

    .media-slider {
      gap: 15px;
    }
  }

  @media (max-width: 480px) {
    .media-card {
      flex: 0 0 85%;
      min-width: 85%;
    }

    .media-slider {
      gap: 15px;
      padding-left: 5px;
    }

    .media-slider-section {
      padding: 40px 0;
    }
  }
/* END_SECTION:latestfeed */

/* START_SECTION:ourusp (INDEX:67) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');



.courusp .cs-section-header {
  text-align: left;
  justify-content: left;
  display: flex;
  align-items: baseline;
}

.courusp h2.cs-section-heading,
.courusp p {
  color: white;
}

.courusp .cs-top-text {
  background: #1D2C3A !important;
}

/* ---------- Base Section ---------- */
.fullwidth-overlay-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.section-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-overlay {
  position: relative;
  z-index: 2;
  width: clamp(40%, 50%, 60%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
  box-sizing: border-box;
  transition: width 0.4s ease, padding 0.4s ease;
}

/* ---------- Top Cards ---------- */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 1.5vw, 25px);
  width: 100%;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.overlay-card {
  flex: 1 1 calc(50% - clamp(7.5px, 0.75vw, 12.5px));
  min-width: clamp(160px, 18vw, 220px);
  max-width: 100%;
  height: 104px;
  background: #212121f2;
  border-radius: clamp(10px, 1vw, 12px);
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.overlay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: clamp(4px, 0.5vw, 6px);
  letter-spacing: clamp(0.5px, 0.1vw, 1px);
  color: #fff;
  line-height: 1.3;
}

.card-divider {
  width: clamp(120px, 75%, 230px);
  height: clamp(8px, 0.8vw, 10px);
  border-radius: 2px;
  margin-bottom: clamp(6px, 0.8vw, 10px);
}

.card-divider.leftd {
  background: #fedcc6;
}

.card-divider.rightd {
  background: #eafccc;
}

.card-description {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  color: #fff;
}

/* ---------- Bottom Content ---------- */
.bottom-content {
  width: 100%;
  max-width: clamp(700px, 70vw, 900px);
}

.content-block {
  margin-bottom: 0;
}

.content-text {
  background: rgba(255, 255, 255, 0.9);
  border-radius: clamp(10px, 1vw, 12px);
  padding: clamp(20px, 2.5vw, 30px) clamp(25px, 3vw, 35px);
  text-align: center;
  margin-bottom: clamp(15px, 2vw, 20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.content-text h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: #000;
  margin-bottom: clamp(8px, 1vw, 12px);
  line-height: 1.3;
}

.content-text p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #444;
  margin: 0;
  line-height: 1.6;
}

.content-image {
  width: 100%;
  border-radius: clamp(10px, 1vw, 12px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: flex-start;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: clamp(10px, 1vw, 12px);
}

/* ---------- Mobile Background ---------- */
.mobile-bg {
  display: none;
}

/* ---------- Responsive ---------- */
/* Large Desktop - 1200px+ */
@media (min-width: 1200px) {
  .section-overlay {
    width: 50%;
  }
  
  .overlay-card {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 220px;
  }
}

/* Medium Desktop - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .section-overlay {
    width: 55%;
    padding: clamp(50px, 5vw, 70px) clamp(30px, 4vw, 40px);
  }
  
  .overlay-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 190px;
  }
}

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .section-overlay {
    width: 60%;
    padding: clamp(40px, 5vw, 60px) clamp(25px, 3.5vw, 35px);
  }
  
  .overlay-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 160px;
    padding: clamp(12px, 2vw, 18px);
  }
  
  .card-description {
    font-size: clamp(12px, 1.5vw, 14px);
  }
}

/* Mobile - Below 768px */
@media (max-width: 767px) {
  .fullwidth-overlay-section {
    flex-direction: column;
    min-height: auto;
  }

  .section-background.desktop-bg {
    display: none;
  }

  .mobile-bg {
    display: block;
  }

  .section-overlay {
    width: 100%;
    left: 0;
    min-height: auto;
    padding: clamp(25px, 5vw, 35px) clamp(15px, 4vw, 20px);
    align-items: center;
    background: rgba(0, 0, 0, 0.55);
  }

  .cards-container {
    flex-direction: column;
    gap: clamp(12px, 2.5vw, 18px);
    margin-bottom: clamp(20px, 3.5vw, 28px);
  }

  .overlay-card {
    flex: 1 1 100%;
    min-width: auto;
    max-width: 100%;
    padding: 16px 18px;
  }

  .card-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .card-divider {
    width: 140px;
    height: 8px;
    margin-bottom: 8px;
  }
  
  .card-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .content-text {
    padding: clamp(15px, 4vw, 20px);
  }

  .content-text h3 {
    font-size: clamp(18px, 4.5vw, 20px);
  }

  .content-text p {
    font-size: clamp(13px, 3.5vw, 14px);
  }

  .content-image img {
    border-radius: clamp(8px, 2vw, 10px);
  }
}

/* Small Mobile - Below 480px */
@media (max-width: 480px) {
  .section-overlay {
    padding: 20px 20px;
            padding-top: 40px;
  }
  
  .cards-container {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .overlay-card {
    padding: 14px 16px;
  }

  .card-title {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .card-divider {
    width: 120px;
    height: 7px;
    margin-bottom: 7px;
  }
  
  .card-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .content-text h3 {
    font-size: clamp(16px, 4vw, 18px);
  }

  .content-text p {
    font-size: clamp(12px, 3vw, 13px);
  }
}

/* Hide mobile image on desktop */
.mobile-only {
  display: none!important;
}

/* Hide desktop image on mobile */
@media (max-width: 767px) {
  .desktop-only {
    display: none!important;
  }
  .mobile-only {
    display: block!important;
  }
}
/* END_SECTION:ourusp */