body {
      background-color: #fff;
      font-family: "Open Sans", sans-serif;
      overflow-x: hidden;
    }
    
    body a {
    color: #9f9bcf;
    text-decoration: none;
}

    /* Navigation */
    nav {
      padding: 30px 0;
      text-align: right;
    }
    nav a {
      color: #555;
      text-decoration: none;
      margin-left: 20px;
      font-size: 0.95rem;
    }
    nav a:hover {
      color: #000;
    }

    /* Logo */
    .logo {
      position: relative; 
      width: 100px;
    }

    /* Portfolio */
    .portfolio-container {
      padding: 0;
    }

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8; 
}

/* Smooth Slide Offcanvas Animation */
.offcanvas {
  transition: transform 0.45s ease-in-out; /* smoother slide */
}

/* Backdrop fade smoother */
.offcanvas-backdrop {
  transition: opacity 0.4s ease-in-out;
}

/* Optional: Slide from right with softer easing */
.offcanvas-end {
  transform: translateX(100%);
}
.offcanvas-end.show {
  transform: translateX(0);
}

/* Hide offcanvas on desktop */
@media (min-width: 992px) {
  .offcanvas,
  .navbar-toggler {
    display: none !important;
  }
}


.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.4s ease;
  
}

.fixed-video {
    height: 400px;  
    object-fit: cover;  
    background: #000;  
  }
 
  @media (max-width: 768px) {
    .fixed-video {
      height: 250px;
    }
  }
 
  .fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.6s ease forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
 
   .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255);
    color: #000000;
    display: flex
;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s 
ease;
    border-radius: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 35px;
}

    .portfolio-item:hover img {
      transform: scale(1.08);
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-item a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 50px 0;
      font-size: 0.9rem;
      color: #777;
    }

    @media (max-width: 768px) {
      nav {
        text-align: center;
      }
.logo {
        position: static;
        display: block;
        margin: 0px auto;
        width: 44px !important;
    }
      .portfolio-item { 
    height: 22vh; 
}
    }

    /* ---------- Navbar ---------- */
.navbar {
  background-color: #fff !important;
  box-shadow: none;
  border: none;
}

.navbar-brand img.logo {
  width: 70px;
  height: auto;
}

/* Menu Links */
.navbar .nav-link {
    color: #777 !important;
    font-size: 16px;
    margin-left: 20px;
    transition: color 0.3s 
ease;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #9f9bcf !important; /* purple tone like your screenshot */
}

/* Remove border on hamburger icon */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Center text and adjust spacing on mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }
  .navbar-nav .nav-link {
    margin: 8px 0;
    font-size: 1rem;
    display: inline-block;
  }
}

.collection-header {
    max-width: 670px;
    margin-right: auto;
    margin-left: auto; 
}

.collection-header h1{
    font-size:18px;
}
 
.fullimg {
    text-align: center;
  }

  .fullimg img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
    border-radius: 5px; 
    transition: opacity 1s ease-out, transform 1s ease-out; 
    transform: translateY(30px);
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .back-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .back-link:hover {
    color: #555;
  }
  
  .carousel {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.carousel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Hide default arrows */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

.btn-dark {
  border-radius: 50px;
  transition: background 0.3s ease;
}

.btn-dark:hover {
  background: #333;
}


.ratio {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

iframe {
  width: 100%;
  height: 100%;
}

 video {
  border-radius: 10px;
  outline: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

video::-webkit-media-controls {
  opacity: 0.9;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}


.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 40vh; /* adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or "contain" if you don’t want cropping */
  border-radius: 10px;
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .photo-item {
    height: 30vh; /* reduce height on mobile */
  }
}

    .photo-item:hover img {
      transform: scale(1.05);
    }
    .photo-overlay {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.85);
      color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: all 0.3s ease;
      font-size: 1.2rem;
      text-transform: capitalize;
    }
    .photo-item:hover .photo-overlay {
      opacity: 1;
    }
    
    
    
.about-section {
      padding: 60px 0;
    }

    .about-image img {
      border-radius: 12px;
      width: 100%;
      height: auto;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .about-content h2 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .about-content p {
      font-size: 15px;
      color: #555;
    }

    .highlight-title {
      font-weight: 600;
      margin-top: 40px;
      font-size: 18px;
    }

    .slider-section img {
      border-radius: 12px;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .contact-btn {
      background-color: transparent;
      border: 2px solid #e63946;
      color: #e63946;
      padding: 10px 30px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }
    .contact-btn:hover {
      background-color: #e63946;
      color: #fff;
    }

    @media (max-width: 768px) {
      .about-content {
        margin-top: 30px;
        text-align: center;
      }
    }    
    
    .modal-content {
      border: none;
      border-radius: 10px;
      padding: 25px 30px;
    }

    .modal-header {
      border: none;
    }

    .modal-title {
      font-size: 24px;
      font-weight: 600;
      text-transform: lowercase;
    }

    .btn-close {
      background: none;
      border: none;
      font-size: 20px;
    }

    label {
      font-size: 13px;
      color: #333;
      font-weight: 500;
    }

    .form-control {
      border: none;
      border-bottom: 1px solid #ccc;
      border-radius: 0;
      padding-left: 0;
      background-color: #fafafa;
    }

    .form-control:focus {
      border-color: #e63946;
      box-shadow: none;
      background-color: #fff;
    }

    .submit-btn {
      border: 2px solid #e63946;
      background: none;
      color: #e63946;
      padding: 10px 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #e63946;
      color: #fff;
    }

    .required {
      font-size: 12px;
      color: #999;
      font-style: italic;
      margin-left: 4px;
    }
 .navbar .nav-link.active { 
  font-weight: 600;
  border-bottom: 2px solid #9f9bcf;
}   




.sqs-html-content>*:last-child {
    margin-bottom: 0;
}
.sqs-html-content>*:first-child {
    margin-top: 0;
}
.sqs-html-content *:not(h1):not(h2):not(h3) {
    word-wrap: break-word;
}
blockquote {
    border-left-color: inherit;
    border-left: 1px solid rgba(0, 0, 0, .2);
    font-style: italic;
    margin: auto;
    padding-right: 1.3em;
    padding-left: 1.3em;
}

.fullimg {
  padding: 20px 0;
}

.gallery-img-box { 
  border-radius: 10px;
  cursor: zoom-in;
}

.gallery-img-box img {
  width: 100%; 
  object-fit: cover;
  transition: transform 0.3s ease;
}

 

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}








    
    