/* style.css */
body {
  font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
  }
  
  *{margin:0; padding:0;}
  /* navbar */
/* Logo Styling */
.navbar{
  border-bottom: 2px solid #ffc107;
  background-color: black;
  
}
.logo {
  max-width:50%;
  height: auto;
}

/* Navbar Links Styling */
.navbar-nav .nav-link {
  position: relative;
  padding: 10px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
  
}

/* Hover Effect with Bottom Border */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffc107; /* Change hover color */
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #ffc107; /* Bottom border on hover */
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Mobile Screen Hover & Bottom Border */
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #444;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: #555;
    border-bottom: 2px solid #ffc107;
  }
}

/* Navbar Toggler Icon Styling */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  color: #ffffff;
}
.navbar-toggler{
  background-color: #ffc10775;
  margin-right: 5px;
}
  
 /* Banner */
.carousel-item {
    height: 75vh;
    margin-bottom: -200px;
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 100vh;
  }
  
  .carousel-caption {
    position: absolute;
    top: 0;
    bottom:0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 31%); /* Semi-transparent overlay */
    color: #fff;
    text-align: center; margin-bottom:-250px;
  }
  
  .carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .carousel-caption p {
    font-size: 1.5rem;
  }
  
  @media (max-width: 768px) {
    .carousel-caption h1 {
      font-size: 2rem;
    }
  
    .carousel-caption p {
      font-size: 1.2rem;
    }
  }

/* raga-project */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Section Styles */
#content {
  margin-top: 10px;
  background-color: #e6e0d4;
  padding: 3rem 0;
}

.section-title {
  font-family: fantasy;
  font-size: 2rem;
  /* font-weight: 700; */
  color: #333; /* Dark grey color for text */
 
}

p {
  
  font-size: 1rem;
  color: #666; /* Medium grey color for text */
  line-height: 1.6;
}
#music{padding:50px 0; background-color:#e6e0d4;}

/* About Section Styles */
#about {
  background-image: url('images/back_010.jpg'); /* Set your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* position: relative; */
  z-index: 1;  
  margin-top:10px;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
  z-index: -1;
}

.about-img {
  height: 100%;
  width: 100%;
  max-height: 500px;
  object-fit: cover; 

}
.about-content{ padding:50px 0; }

.about-content h2 {
  color: rgb(250, 214, 83);
  font-size: 2.5rem;
  font-weight: bold;
}

.about-content p {
  font-size: 1.15rem;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 2rem;
    margin-top: 20px;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-img {
    max-height: 350px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 1.75rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}
/* Responsive Adjustments for 320px screens */
@media (max-width: 320px) {
  #about {
    padding: 50px 20px; /* Reduced padding for smaller screens */
  }

  .about-content h2 {
    font-size: 1.5rem; /* Smaller font size for heading */
    margin-top: 10px; /* Reduced margin for spacing */
  }

  .about-content p {
    font-size: 0.85rem; /* Smaller font size for paragraph */
  }

  .about-img {
    max-height: 250px; /* Reduced image height */
    width: 100%; /* Ensure image takes full width */
    object-fit: cover; /* Maintain aspect ratio */
  }
}


  /* Video Gallery */

/* General styles for video items */
.video-item img, .video-item-main img {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: auto;
  width: 100%;
  object-fit: cover;
}

/* Hover effects for images */
.video-item img:hover, .video-item-main img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Play button styling */
.play-btn, .play-btn-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
  background-color: rgba(231, 206, 113, 0.9);
  border-radius: 50%;
  padding: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Main play button for larger items */
.play-btn-main {
  font-size: 3rem;
  padding: 20px;
}

/* Play button hover effect */
.play-btn:hover, .play-btn-main:hover {
  background-color: rgba(231, 206, 113, 1);
  transform: scale(1.1);
}

/* Additional text styling */
.video-item p, .video-item-main p {
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}

/* Text link styles */
.text-l {
  color: rgb(54, 45, 10);
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.text-l:hover {
  text-decoration: underline;
}

/* Carousel Buttons Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

/* Responsive styles for 768px and below */
@media (max-width: 768px) {
  .video-item-main img, .video-item img {
    width: 100%;
    height: auto;
  }
  
  .video-item-main {
    margin: 20px 0;
  }

  .play-btn, .play-btn-main {
    font-size: 2rem;
    padding: 10px;
  }
}

/* Responsive styles for 480px and below */
@media (max-width: 480px) {
  .video-item-main img, .video-item img {
    border-radius: 8px;
  }

  .play-btn, .play-btn-main {
    font-size: 1.8rem;
    padding: 8px;
  }

  .text-l {
    font-size: 16px;
  }

  .video-item p, .video-item-main p {
    font-size: 14px;
  }
}

/* Responsive styles for 320px and below */
@media (max-width: 320px) {
  .video-item-main img, .video-item img {
    border-radius: 5px;
  }

  .play-btn, .play-btn-main {
    font-size: 1.5rem;
    padding: 6px;
  }

  .text-l {
    font-size: 14px;
  }

  .video-item p, .video-item-main p {
    font-size: 12px;
  }
}

/* our client */
h2{
    color: black;
}
.client-logo {
    text-align: center;
}
.client-logo img {
    max-width: 100%;
    height: auto;
    margin: 10px;
}
@media (max-width: 768px) {
    .client-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Event */
/* General Styling */
#events {
  background-color: #f9f9f9;
}

h2 {
  color: #333;
  font-weight: bold;
}

.card {
  border: none;
  transition: transform 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card img{
  height: 250px;
}
.card-title {
  font-size: 1.25rem;
  color: #333;
}

.card-text {
  font-size: 1rem;
  color: #777;
}

.btn-p {
  background-color: #ff6f61;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.btn-p:hover {
  background-color: #e6554c;
  color: white;
}

.card-img-wrap {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

/* Zoom effect on hover */
.card-img-top {
  transition: transform 0.3s ease;
}

.event-card:hover .card-img-top {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-title {
    font-size: 1.15rem;
  }

  .card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}


/* achivements */
#achievements {
  background-color:#e6e0d4;
}

.achievement-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.icon {
  width: 70px;
  height: 70px;
 color: #f0c732;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: white; */
  margin-left: 75px;
}

.icon i {
  font-size: 2rem;
}

h4 {
  font-size: 24px;
  font-weight: bold;
}

p {
  color: #666;
}

/* Responsive Styling */
@media (max-width: 768px) {
  #achievements .row {
    text-align: center;
  }
}

@media (max-width: 576px) {
  #achievements .achievement-item {
    margin-bottom: 20px;
  }
  .icon {
    width: 70px;
    height: 70px;
   color: #e7ce71;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    margin-left: 88px;
  }
}


/* footer */
footer {
  background-color: rgb(33 37 41);
  padding: 40px 0;
}
.footer-column p{
  color:  rgb(245, 244, 241);
 
}
.footer-column h4 {
  color:  rgb(231 206 113);
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-column ul {
  list-style: none;
  padding-left: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: rgb(247, 246, 244);;
  text-decoration: none;
}
.footer-column ul li a:hover {
  color:  rgb(231 206 113);
}
.social-icons a {
  margin-right: 15px;
  font-size: 20px;
  color: rgb(250, 249, 247);
}
.social-icons a:hover {
  color:  rgb(231 206 113);
}
.footer-bottom p{
  padding-top: 20px;
  border-top: 1px solid  rgb(231 206 113);
  text-align: center;
  margin-top: 20px;
  color:  rgb(231 206 113);
}









/* photo -section 
 */
 
  .gallery-item-Heading{
    color:  rgba(206, 177, 73, 0.9); 

  }
  .gallery-item-Heading{
    font-family: Inter, sans-serif;
  }

  /* Album */
  #album {
    background-color: #f9f9f9;
  }
  .text-heading{
    color:  rgba(206, 177, 73, 0.9); 

  }
  .album-item {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .album-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .album-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
  }
  
  .album-content {
    /* background: rgba(0, 0, 0, 0.5);  */
    border-radius: 0 0 10px 10px;
    width: 100%;
    color: #fff;
    padding: 10px;
    text-align: center;
  }
  
  h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  p {
    font-size: 14px;
    margin: 0;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .album-item {
      height: 250px;
    }
  }
  
  @media (max-width: 576px) {
    .album-item {
      height: 200px;
    }
    
    h5 {
      font-size: 16px;
    }
  
    p {
      font-size: 12px;
    }
  }
  


/* Banner Section Styling */
.photo-banner-section {
    height: 50vh; /* 50% of the viewport height */
    background-image: url('images/photo-banner.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
  }
  
  /* Overlay for Dark Effect */
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

  }
  
  /* Text Content Positioning */
  .banner-content {
    z-index: 1;
  }
  
  .banner-title {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .text-highlight {
    color: rgb(231 206 113); /* Highlighted color */
  }
  
  .banner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Button Customization */
  .btn-primary {
    background-color: rgb(231 206 113);
    border: none;
    color: #000;
  }
  
  .btn-primary:hover {
    background-color:  rgb(233, 184, 8);
    color: #fff;
  }

  /* gallery */
  /* Gallery Section Styling */
/* Gallery Section Styling */
.gallery-section {
    background-color: #f8f9fa;
  }
  
  .gallery-item {
    position: relative;
  }
  
  .gallery-img {
    width: 100%;
    height: auto;
    cursor: pointer;
  }
  
  .gallery-content {
    position: relative;
    text-align: center;
    padding: 10px;
    /* background-color: rgba(0, 0, 0, 0.6); */
    color: #fff;
    margin-top: 10px;
  }
  
  .modal-body img {
    max-width: 100%;
    height: auto;
  }
  

  /* video  */
   .gallery-item-Heading{
    color:  rgba(206, 177, 73, 0.9); 

  }
  .gallery-item-Heading{
    font-family: Inter, sans-serif;
  }
  
/* Banner Section Styling */
.video-banner-section {
    height: 50vh; /* 50% of the viewport height */
    background-image: url('images/back_010.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
  }
  
  /* Overlay for Dark Effect */
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

  }
  
  /* Text Content Positioning */
  .banner-content {
    z-index: 1;
  }
  
  .banner-title {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .text-highlight {
    color: rgb(231 206 113); /* Highlighted color */
  }
  
  .banner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Button Customization */
  .btn-primary {
    background-color: rgb(231 206 113);
    border: none;
    color: #000;
  }
  
  .btn-primary:hover {
    background-color:  rgb(233, 184, 8);
    color: #fff;
  }

/* Album */
#album {
  background-color: #f9f9f9;
}
.text-heading{
  color:  rgba(206, 177, 73, 0.9); 

}
.album-item {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.album-bg {
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.album-content {
  /* background: rgba(0, 0, 0, 0.5); */
  border-radius: 0 0 10px 10px;
  width: 100%;
  color: #fff;
  padding: 10px;
  text-align: center;
}

h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  margin: 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .album-item {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .album-item {
    height: 200px;
  }
  
  h5 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }
}



  /* gallery */
/* Video Gallery Section Styling */
.video-gallery-section {
    background-color: #f8f9fa;
  }
  
  .video-item {
    position: relative;
  }
  
  .video-thumbnail {
    width: 100%;
    height: auto;
    cursor: pointer;
  }
  
  .video-content {
    position: relative;
    text-align: center;
    padding: 10px;
    /* background-color: rgba(0, 0, 0, 0.6); */
    color: #fff;
    margin-top: 10px;
  }
  
  .modal-body video {
    max-width: 100%;
    height: auto;
  }
  

  /* about  */
  .rounded-circle-custom {
  width: 200px;         
  height: 200px;        
  object-fit: cover;    
  border-radius: 50%;   
  border: 2px solid #ccc;
  margin: 0 auto;      
  display: block;   
}
/* Banner Section Styling */
#customBanner {
  height: 50vh; 
  background-image: url('image_gallery/8.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

/* Overlay for Dark Effect */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

/* Text Content Positioning */
.banner-content {
  z-index: 1;
}

.banner-title {
  font-size: 3rem;
  font-weight: bold;
}

.text-highlight {
  color: rgb(231 206 113); /* Highlighted color */
}

.banner-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Button Customization */
.btn-primary {
  background-color: rgb(231 206 113);
  border: none;
  color: #000;
}

.btn-primary:hover {
  background-color:  rgb(233, 184, 8);
  color: #fff;
}

#intro-section {
    background-color:#fffefc;
  }
  
  #intro-section .rounded-circle {
    max-width: 300px; /* Adjust as necessary */
    height: auto;
  }
  
  #image-grid .rounded-circle {
    width: 100%;
    height: auto;
    max-width: 150px; /* Adjust size for smaller images */
    object-fit: cover;
  }
  
  #image-grid h5 {
    margin-top: 1rem;
    font-weight: bold;
  }
  
  #image-grid p {
    font-size: 14px;
    color: #555;
  }
  