@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;
}

.logo{
    height:40px;
}
.gradient-text {
  background:linear-gradient(to right, #007bff, #28a745);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1, h2, h3, h4, h5 {
    font-weight: 600;
      background: linear-gradient(to right, #007bff, #28a745);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

    /* Top Bar */
    .top-bar {
	  background: linear-gradient(to right, #007bff, #28a745);
	  color:white;
	  font-size: 14px;
	  padding: 5px 0;
	  width: 100%;
	  border-bottom: 1px solid #e3e3e3;
	  font-weight: 400;
	  backdrop-filter: blur(6px);
	  background-color: rgba(255, 255, 255, 0.8);
	}

	.top-bar a {
	  color: #555;
	  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);
}




.service-card {
    padding: 50px 40px;
    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 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-card {
    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;
}

.footer-bottom a{
    text-decoration:none;
}

.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-section {
            position: relative;
            overflow: hidden;
        }

        .image-block {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .circle-cutout {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            z-index: 3;
            border: 15px solid #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .circle-cutout img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .green-circle {
            position: absolute;
            width: 200px;
            height: 200px;
            background: #1B4D3E;
            border-radius: 50%;
            right: -20px;
            bottom: 0;
            z-index: 1;
        }

        .dot-pattern {
            position: absolute;
            width: 200px;
            height: 200px;
            background-image: radial-gradient(#E2E8F0 2px, transparent 2px);
            background-size: 15px 15px;
            right: 50px;
            bottom: 50px;
            z-index: 2;
            opacity: 0.5;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 4;
        }

        .shape-1 {
            position: absolute;
            width: 50px;
            height: 50px;
            background: #FFD700;
            top: 10%;
            right: 20%;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .shape-2 {
            position: absolute;
            width: 40px;
            height: 40px;
            background: #FF6B6B;
            top: 30%;
            right: 10%;
            border-radius: 10px;
            transform: rotate(45deg);
        }

        .shape-3 {
            position: absolute;
            width: 30px;
            height: 30px;
            border: 4px solid #4CAF50;
            top: 50%;
            right: 25%;
            border-radius: 50%;
        }

        .btn-primary {
            background: #6366F1;
            border: none;
            font-weight: 500;
        }

        .btn-primary:hover {
            background: #4F46E5;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .image-block {
                height: 400px;
                margin-top: 40px;
            }

            .circle-cutout {
                width: 300px;
                height: 300px;
            }

            .green-circle {
                width: 350px;
                height: 350px;
                right: -50px;
            }
        }

/* Why choose us */
        
        .title-border {
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #007bff, #28a745);
            margin: 20px auto;
            border-radius: 2px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #007bff, #28a745);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card img {
            display: block;
            width: 100%;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin: 0; /* Remove any default image spacing */
            height: 30vh;
            object-fit:cover;
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
        }

        .icon-wrapper.item-0 {
            background: rgba(0, 123, 255, 0.1);
        }

        .icon-wrapper.item-1 {
            background: rgba(40, 167, 69, 0.1);
        }

        .icon-wrapper i {
            font-size: 28px;
        }

        .icon-wrapper.blue i {
            color: #007bff;
        }

        .icon-wrapper.green i {
            color: #28a745;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: #6c757d;
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .feature-card {
                padding: 20px;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .icon-wrapper i {
                font-size: 24px;
            }
        }

/* Project Section */

        .view-all {
            color: #ff4d4d;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .view-all:hover {
            color: #ff3333;
        }

        .project-card {
            cursor: pointer;
        }

        .project-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 123, 255, 0.8), rgba(40, 167, 69, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-overlay .btn {
            width: 50px;
            height: 50px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .project-tags {
            display: flex;
            gap: 10px;
        }

        .tag {
            background: #f8f9fa;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #666;
        }

        .project-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        @media (max-width: 768px) {
            .project-image img {
                height: 250px;
            }
        }

/* Team Section */
        
        
        .divider {
            height: 4px;
            width: 60px;
            background:linear-gradient(to right, #007bff, #28a745);
        }

        .shadow-hover {
            transition: all 0.3s ease;
        }

        .shadow-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
        }

        .member-image-wrapper {
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .member-image {
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .member-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 123, 255, 0.8), rgba(40, 167, 69, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .member-social {
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: white;
            color: #6366f1;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #6366f1;
            color: white;
            transform: translateY(-3px);
        }

        .team-card:hover .member-overlay {
            opacity: 1;
        }

        .team-card:hover .member-social {
            transform: translateY(0);
        }

        .team-card:hover .member-image img {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .member-image {
                aspect-ratio: 1;
            }
        }

/* Gallery Section */
.gallery-section {
    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: linear-gradient(to right, rgba(0, 123, 255, 0.8), rgba(40, 167, 69, 0.8));
    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 */

.quote-icon {
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    width: 30px;
    border-radius: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* 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 */
} 
.team-card-margin{
    margin-bottom:15%;
}
.section-padding{
    padding: 115px 0;
}

/* 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-blocks {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-blocks img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-blocks {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-blocks {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}
textarea{
    resize:none;
}


.cta-block{
    background:#E2E2E2;
    padding:30px;
    margin-top:40px;
    margin-bottom:40px;
    border-radius:50px;
}
.cta-block h2{
    color:white !important;
}

.footer-heading{
    color:white;
    font-size:25px;
    text-transform:uppercase;
}

.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;
}