@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline:opsz,wght@10..72,100..900&display=swap');
:root {
    --primary: #000;
    --accent: #c8a456;
    --light: #f8fafc;
    --text: #334155;
}

body {
    color: var(--text);
    line-height: 1.8;
}

textarea{
    resize:none;
}


.logo{
    height:40px;
}
h1, h2, h3, h4, h5 {
    font-weight: 600;
}

    /* Top Bar */
    .top-bar {
	  background: rgba(0,0,0,0.8);
	  color:white;
	  font-size: 14px;
	  padding: 5px 0;
	  width: 100%;
	  border-bottom: 1px solid #e3e3e3;
	  font-weight: 400;
	  backdrop-filter: blur(6px);
	}

	.top-bar a {
	  color: white;
	  text-decoration: none;
	  margin-right: 20px;
	  transition: color 0.3s ease;
	  font-weight: 500;
	}

	.top-bar a:hover {
	  color: #0d6efd;
	}

	.top-bar i {
	  margin-right: 6px;
	  color: #888;
	}

    /* Navbar */
    .navbar {
      background-color: #ffffff !important;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .nav-link {
      font-weight: 500;
      color: #333 !important;
    }

    .nav-link:hover {
      color: #0d6efd !important;
    }

    .navbar-brand img {
      height: 30px;
    }
    
    .nav-link:hover,
    .nav-link.active {
          color: var(--primary) !important;
          border-bottom: 2px solid #000;
          
    }
    
    /* Video Banner */
    .video-banner {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
    
    .video-banner video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    
    /* Overlay with depth and readability */
    .angled-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(200, 164, 86, 0.15) 60%,
        rgba(0, 0, 0, 0.85) 100%
      );
      z-index: 1;
      pointer-events: none;
    }
    
    /* Centered Banner Content */
    .banner-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      z-index: 2;
      text-align: center;
      padding: 2rem;
      max-width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    /* Headline and Paragraph */
    .banner-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    
    .banner-content p {
      font-size: 1.25rem;
      line-height: 1.6;
      margin: 0 auto;
      max-width: 700px;
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
      .banner-content h1 {
        font-size: 2.8rem;
      }
    
      .banner-content p {
        font-size: 1.125rem;
      }
    }
    
    @media (max-width: 768px) {
      .banner-content h1 {
        font-size: 2.2rem;
      }
    
      .banner-content p {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .banner-content {
        padding: 1rem;
      }
    
      .banner-content h1 {
        font-size: 1.8rem;
      }
    
      .banner-content p {
        font-size: 0.95rem;
      }
    }

    

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.services-section {
    padding: 120px 0;
    background: var(--light);
}

.service-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.service-icon {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service-card img {
    display: block;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0; /* Remove any default image spacing */
    height: 40vh;
    object-fit: cover;
}
        
.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.stats-section {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-section {
    padding: 120px 0;
    background: var(--light);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 20px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer {
    background: var(--primary);
    color: white;
    padding: 100px 0 0;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 80px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* About us section */
.about-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.about-us .content-wrapper {
    padding-right: 3rem;
}


.about-us .main-image {
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.about-us .main-image:hover {
    transform: scale(1.02);
}

.about-us .experience-badge {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .about-us .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

/* why choose us section */
.why-choose-us {
    background-color: #f8f9fa;
    overflow: hidden;
}

.content-wrapper {
    padding-right: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #E2EAE4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: black;
    transition: all 0.3s ease;
}

.feature-item:hover .icon-box {
    background: var(--primary);
    color: white;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #0066FF;
}

.feature-content h5 {
    font-size: 1rem;
    margin: 0;
    color: #6c757d;
}

.image-wrapper {
    position: relative;
    padding: 2rem;
}

.main-image {
    width: 100%;
    border-radius: 20px;
  
}

.experience-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.experience-badges .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badges .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-wrapper {
        padding: 1rem;
    }

    .experience-badge {
        padding: 1rem 1.5rem;
    }

    .experience-badge .number {
        font-size: 2rem;
    }
}

/* Project Section */
.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.event-date .month {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.event-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-outline-primary {
    border-color: #2c3e50;
    color: #2c3e50;
}

.btn-outline-primary:hover {
    background: #2c3e50;
    color: white;
}

@media (max-width: 768px) {
    .event-img {
        height: 180px;
    }
}

/* Team Section */
.team-card {
  background: #fff;
  border-radius: 30px 30px 0 0;
  text-align: center;
  padding: 30px 20px;
  margin: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -80px;
  border: 5px solid #fff;
}

.team-card h5 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.team-card .desc {
  font-size: 14px;
  color: #777;
  padding: 0 10px;
  margin-bottom: 15px;
}

.team-card .social-icons a {
  color: #666;
  margin: 0 6px;
  font-size: 15px;
  transition: 0.3s;
}

.team-card .social-icons a:hover {
  color: #007bff;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 10px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(6) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-icon {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.quote-icon {
    color: black;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    color:white;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: white;
}

@media (max-width: 991px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-image {
        margin-top: 30px;
    }
    
    .testimonial-image img {
        height: 300px;
    }
}

/* Footer Section */
footer a:hover {
    color: white !important;
}

.list-inline-item:not(:last-child) {
    margin-right: 0;
}

@media (max-width: 767px) {
    .list-inline-item {
        margin: 0 10px;
    }
}

pre {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
} 

.section-padding{
    padding-top: 120px;
    padding-bottom:50px;
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
}

.contact-section .info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-section .info-card:hover {
    transform: translateY(-5px);
}

.contact-section .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-section .icon-box i {
    color: white;
    font-size: 20px;
}

.contact-section .info-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section .info-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.contact-section .form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-section .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact-section .btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 500;
}

.contact-section .btn-primary:hover {
    background: var(--primary);
}

.contact-section .social-links {
    display: flex;
    gap: 15px;
}

.contact-section .social-links a {
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-section .social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .contact-section .contact-content {
        margin-top: 40px;
        text-align: center;
    }

    .contact-section .social-links {
        justify-content: center;
    }
}


/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}

.img-fit {
  height: 250px; /* ya jo bhi tum fixed height chaaho */
  object-fit: cover;
}



.social-media-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-section .view-icon {
  color: #fff;
  font-size: 30px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.social-media-section .social-icons {
  color: #fff;
  font-size: 30px;

}

.social-media-section .position-relative:hover .overlay {
  opacity: 1;
}

.social-media-section  .position-relative:hover .view-icon {
  transform: scale(1);
}

/* Parallax Section */
.parallax-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index:10;
}

.parallax-section .parallax-text {
    color: #fff;
    z-index:10;
}

.parallax-section .subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
    z-index:10;
}

.parallax-section .title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    z-index:10;
}

.parallax-section .custom-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    z-index:10;
}

.parallax-section .custom-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index:1;
}
@media (max-width: 768px) {
    .parallax-section .title {
        font-size: 2.5rem;
    }
    
    .parallax-section .subtitle {
        font-size: 1rem;
    }
    
    .parallax-section .custom-btn {
        padding: 12px 30px;
    }
}

/* Optional Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.parallax-section .parallax-text {
    animation: float 3s ease-in-out infinite;
}