header.fixed-top.stickyHeader .navbar-brand img {
    max-width: 5rem !important;
    margin-bottom: 0rem !important;
}
header.fixed-top.stickyHeader .navbar::before {
    background: #231e54;
}
header.fixed-top .navbar ul li a.nav-link {
    text-transform: none !important;
}

/* Masonry Gallery */
.gallery-box {
    column-count: 4; /* 4 columns desktop */
    column-gap: 15px; /* space between columns */
}

.gallery-box .box {
    break-inside: avoid; /* prevents breaking between columns */
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-box img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-box {
        column-count: 3;
    }
}
@media (max-width: 768px) {
    .gallery-box {
        column-count: 2;
    }
}
@media (max-width: 480px) {
    .gallery-box {
        column-count: 1;
    }
}

/* Button styling */
.more-photos {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-photos:hover {
    background: #ff6600;
    color: #fff;
}

/* Parallax section */
.parallax-section {
    background-image: url("https://indiabythebay.com/assets/img/parallex.jpg"); /* your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px; /* adjust height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}
.parallax-section1 {
    background-image: url("https://indiabythebay.com/assets/img/para.jpg"); /* your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px; /* adjust height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}
.parallax-section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
/* dark overlay for readability */
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.btn-custom {
    margin-top: 20px;
    border-radius: 30px;
    padding: 10px 25px;
    background: #fff;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}
.btn-custom:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}
.about {
    background: linear-gradient(rgba(102, 46, 145, 0.5), rgba(29, 33, 33, 0.8)), url("../img/about-bg.jpg") center center / cover no-repeat fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
@media (max-width: 768px) {
    .about,
    .contact-para,
    .testimonials {
        background-attachment: scroll !important;
    }
}
/* ===== Header & Navbar ===== */
.bg-blue {
    background: #231e54;
}
.navbar-light .navbar-nav .nav-item:last-child .nav-link > span {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.8rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    border-radius: 3rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    line-height: 1.5;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: #fff !important;
}
.navbar-light .navbar-nav .nav-link {
    color: #fff !important;
}

/*////////////////////// here banner /////////////////////////////*/

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%; /* vertically center */
    left: 50%; /* horizontally center */
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
@media (max-width: 767.98px) {
    .hero-text {
        top:35% !important;
    }
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text p {
    font-size: 1.25rem;
    color: #231f20;
    font-weight: bold;
}

.hero-text .btn {
    background: #ff0066;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}
.hero-text .btn:hover {
    background: #e6005c;
}
/*////////////////////// here banner end /////////////////////////////*/

.video-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.05);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/*///////////////////////////////////////////////////////////////*/

.about-festival {
    background: #5e4ea2; /* purple background */
    position: relative;
}

.about-festival h2 {
    font-size: 2.5rem;
}

.about-festival .highlight {
    color: #ffcc00; /* yellow highlight text */
}

.about-festival p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.btn-custom {
    background: #e9108c;
    color: #fff;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px #fff solid;
}
.btn-custom:hover {
    background: #e9108c;
    color: #fff;
}

/* Decorative icons */
.decor {
    position: absolute;
    width: 60px;
}
.decor-decor {
    position: absolute;
    width: 90px;
}
.decor-left {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.decor-right {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/*/////////////////////////////////// timeline start //////////////////*/
.timeline-section {
    padding: 260px 0; /* adjust top/bottom spacing */
    background: #eef5e2;
}

.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}

.timeline ul::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ccc;
    transform: translateY(-50%);
    border-top: 2px dashed #999;
    z-index: 1;
}

.timeline li {
    position: relative;
    text-align: center;
    flex: 1;
}

/* dots */
.timeline .dot {
    width: 14px;
    height: 14px;
    background: #192d7c;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.timeline li:nth-child(even) .dot {
    background: #e81e76;
}
.timeline li:nth-child(even) .year {
    color: #e9108c;
}

/* content block */
.content {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 50%;
    transform: translateX(-50%);
    perspective: 1000px;
    z-index: 2;
}

.timeline li:nth-child(odd) .content {
    top: -180px;
}

.timeline li:nth-child(even) .content {
    bottom: -180px;
}

/* flip card */
.card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
    border: none;
    background: none;
}

.content:hover .card {
    transform: rotateY(180deg);
}

/* front/back faces */
.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    font-family: "proxima-nova", sans-serif;
    
}

.front {
    background: #2d3c94;
}

.back {
    background: #e81e76;
    transform: rotateY(180deg);
}

/* year styling */
.year {
    font-weight: bold;
    font-size: 22px;
    color: #41478f;
    z-index: 9;
    font-family: "Bebas Neue", sans-serif;
}

.timeline li:nth-child(odd) .year {
    margin-top: 8px;
}

.timeline li:nth-child(even) .year {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}
.chakra-inner{
    position: absolute;
    top: 40px;
    left: 30px;
}
.chakra-inner-top{
    position: absolute;
    top: -300px;
    right: 30px;
}

.svg-wrapper svg {
  width: 400px;
  height: 75px;
}
.svg-wrapper text {
    font-family: 'Bebas Neue';
    font-size: 32px;
  }
  .bg-blue-light{
      background:#adb5dc;
  }
  .new-contact-para textarea.form-control{
      background:#adb5dc;
      border: 1px #fff solid;
  }
  .new-contact-para .form-control{
    background: #adb5dc;
    height: 55px;
    border: 1px #fff solid;
  }
  input::placeholder,
  textarea::placeholder {
    color: #222159 !important;
    opacity: 1 !important; 
  }
  .footer-new{
      background:#222159;
  }
  .footer-new {
    background-color: #222159;
    background-image: url('https://indiabythebay.com/assets/img/footer-graphic.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    height:500px;
}

  .footer-new .form-control{
    background: #222159;
    width:100%;
    height: 55px;
    border: 1px #fff solid;
  }
.footer-new input::placeholder {
    color: #6b6588 !important;
    opacity: 1 !important; 
  }
  button#btnSUBSCRIPTION {
        position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    border-radius: 3px;
    padding: 5px 20px;
}

.footer-social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: start;
  gap: 10px;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #fff; /* border color */
  border-radius: 50%;      /* makes it rounded */
  color: #fff !important;             /* icon color */
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.footer-social .social-icon:hover {
  background-color: #fff;
  color: #7a225b; /* change color on hover */
  transform: scale(1.1);  /* small zoom effect */
}
.footer-new h3{
    font-family: 'Bebas Neue';
}
/* responsive */
@media (max-width: 768px) {
      .svg-wrapper svg {
    width: 300px;
    height: 60px;
  }
  .svg-wrapper text {
    font-size: 24px;
  }
    .chakra-inner{
        top: -70px;
    }
    .timeline-section {
        padding: 30px 0;
    }
    .timeline ul {
        flex-direction: column;
        align-items: center;
    }

    .timeline ul::before {
        left: 50%;
        top: 50%;
        height: 100%;
        width: 2px;
        border-left: 2px dashed #999;
        border-top: none;
    }

    .timeline li {
        margin: 30px 0;
    }

    .content {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        margin-top: 20px;
    }

    .timeline li:nth-child(even) .year {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 0;
        margin-top: 8px;
    }
}

/*///////Home Video start///////////////////*/

    .video-container {
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    top: 22px;
    left: 23px;
    }

    /* Circular Video */
    .video-container video {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.8s ease;
      pointer-events: none;
    }

    .video-container video.active {
      opacity: 1;
    }

    /* Ripple Waves - always running */
    .video-button-waves {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 65px;
      height: 65px;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1;
        background: #43458D;
    border-radius: 50%;
    }

    .wave {
      position: absolute;
      border: 5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      animation: ripple 2s infinite;
      background:#ffffff;
    }

    .wave:nth-child(2) {
      animation-delay: 1s;
    }

    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }
      100% {
        transform: scale(2.5);
        opacity: 0;
      }
    }

    /* Play Icon fixed in center */
    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      z-index: 2;
      pointer-events: none; /* ensures hover still works */
      width:40px !important;
    }
    /*///////Home Video end///////////////////*/
    
    h2.main-title {
    color: #6a034e;
    font-size: 5rem;
    font-weight: 800;
}
.about-asia-society p {
    font-size: 18px;
    text-align: justify;
}
.navbar-light .navbar-nav .nav-link{
    font-size:17px !important;
}
.footer-row a.nav-link {
    font-size: 16px !important;
}