/* Base styles */
body {
  font-family: 'Playfair Display', serif;
 
  
}
h2{
  color:#174962;
}

/* Navbar styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  padding: 20px 0;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar .navbar-brand {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 24px;
  transition: color 0.3s ease;
  padding-left: 98px;
}

.navbar.scrolled .navbar-brand {
  color: #333;
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: #333;
}

.navbar .nav-link:hover {
  color: #f8f9fa;
}

.navbar.scrolled .nav-link:hover {
  color: #0d6efd;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: background-image 0.3s ease;
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Adjust the carousel container to account for fixed navbar */
.carousel-container {
  margin-top: -76px;
}

/* Carousel styles */
.carousel-container {
  position: relative;
}

.carousel {
  height: 80vh;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.static-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
  width: 80%;
  padding: 0 15px;
}

.static-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.static-content p {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.book-now-btn {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 1.2rem;
  background-color: #FFBE00;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.video-container video {
    width: 100%;
    height: auto;
    display: block;
  }


@media (max-width: 1199.98px) {
  .static-content h1 {
    font-size: 3.5rem;
  }
  .static-content p {
    font-size: 1.3rem;
  }
}


@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    position: static !important;
    display: block;
    margin: 0 auto 10px auto;
    padding-left: 0;
    text-align: center;
  }
  .navbar .navbar-toggler {
    z-index: 1100;
  }
  .navbar .collapse.navbar-collapse {
    background: rgba(23, 73, 98, 0.98); /* fallback for menu background */
    padding: 1rem 0;
    border-radius: 0 0 10px 10px;
  }
  .navbar .navbar-nav .nav-link {
    color: #fff !important;
    text-align: center;
    margin: 10px 0;
  }
  .static-content h1 {
    font-size: 3rem;
  }
  .static-content p {
    font-size: 1.2rem;
  }
  .book-now-btn {
    padding: 10px 25px;
    font-size: 1.1rem;
  }
  .carousel, .carousel-item {
    height: 70vh;
  }
}
.service-card-large {
    width: 50%;
    border: 1px solid #808080;
    height: 450px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
  }

  .bg-cover-large {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .overlay-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }

  @media (max-width: 991.98px) {
    .service-card-large {
      width: 45%;
    }
  }

  @media (max-width: 767.98px) {
    .service-card-large {
      width: 100%;
      margin-bottom: 1rem;
    }

    .carousel-item > .d-flex {
      flex-direction: column;
      align-items: center;
    }
  }

/* Footer Styles */
.footer {
    background-color: #174962;
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #FFBE00, #e74c3c);
}

.footer h4 {
    color: #FFBE00;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #FFBE00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFBE00;
    transform: translateX(5px);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #FFBE00;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Section Styles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FFBE00, #e74c3c);
}

/* Enhanced Button Styles */
.book-now-btn {
    background: linear-gradient(45deg, #FFBE00, #e74c3c);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e74c3c, #FFBE00);
    transition: all 0.5s ease;
    z-index: -1;
}

.book-now-btn:hover::before {
    left: 0;
}

/* Enhanced Card Styles */
.service-card-large {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Info Styles */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info i {
    color: #FFBE00;
    margin-right: 10px;
}

/* Newsletter Form Styles */
.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #FFBE00;
    border: none;
    padding: 7px 15px;
    border-radius: 3px;
    color: #174962;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e74c3c;
    color: #fff;
}

/* Why Choose Us Section Styles */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(23, 73, 98, 0.03) 0%, rgba(255, 190, 0, 0.03) 100%);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #FFBE00, #e74c3c);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFBE00, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-title {
    color: #174962;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.stats-container {
    background: linear-gradient(45deg, #174962, #1a5571);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFBE00;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Experience Timeline Styles */
.experience-section {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(23, 73, 98, 0.02), rgba(255, 190, 0, 0.02));
    position: relative;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #FFBE00, #e74c3c);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: calc(50% - 30px);
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FFBE00;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #174962, #1a5571);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
    left: -130px;
}

.timeline-item:nth-child(even) .timeline-year {
    right: -130px;
}

.timeline-title {
    color: #174962;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.timeline-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.achievement-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 190, 0, 0.1);
    color: #FFBE00;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -10px;
        right: auto;
        top: -40px;
        transform: none;
    }
}

/* Redesigned Media & Arts Journey Section */
.media-journey {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.media-journey::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 190, 0, 0.1) 0%, rgba(255, 190, 0, 0) 70%);
    border-radius: 50%;
}

.media-journey::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 70%);
    border-radius: 50%;
}

.journey-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #FFBE00, #e74c3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #174962, #1a5571);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.journey-title {
    color: #174962;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.journey-text {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-project-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 190, 0, 0.1) 0%, rgba(255, 190, 0, 0) 70%);
    border-radius: 50%;
}

.project-image-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.project-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.project-image-container:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image-container:hover .project-overlay {
    opacity: 1;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.achievement-tag {
    padding: 6px 15px;
    background: rgba(255, 190, 0, 0.1);
    color: #FFBE00;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.achievement-tag:hover {
    background: #FFBE00;
    color: #fff;
    transform: translateY(-2px);
}

.media-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #174962;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFBE00, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.horizontal-gallery {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-gallery::-webkit-scrollbar {
    display: none;
}

         .gallery-item {
     flex: 0 0 400px;
     height: 500px;
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     scroll-snap-align: start;
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

         @media (max-width: 768px) {
     .gallery-item {
         flex: 0 0 300px;
         height: 400px;
     }
 }

/* Add smooth scrolling behavior */
.horizontal-gallery {
    scroll-behavior: smooth;
}

/* Add hover effect to indicate scrollable */
.horizontal-gallery::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
    pointer-events: none;
}
