@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
:root {
    --primary: #000;
    --accent: #FFD700;
    --light: #f8fafc;
    --text: #334155;
    --nav: #fff;
    --transition-speed: 0.3s;
}

body {
    color: var(--text);
    line-height: 1.8;
    overflow-x:hidden;
}

.logo{
    height:40px;
}

textarea{
    resize:none;
}

.navbar .dropdown-toggle::after{
    display: none !important;
}
       /* Navbar Styling */
        .navbar {
            background: rgba(0, 0, 0, 0.7);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }

        .nav-link {
            color: white !important;
        }

        /* Banner Section */
        .banner-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .overlays {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Zoom-out effect */
        .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            background-size: cover;
            background-position: center;
            transform: scale(1.3);
            animation: zoomOut 2s ease-out forwards;
        }

        @keyframes zoomOut {
            from {
                transform: scale(1.3);
            }
            to {
                transform: scale(1);
            }
        }

        .banner-content {
            position: relative;
            z-index: 1;
        }
/* End banner */
    

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}


.testimonial-section {
    padding: 80px 0;
    background: var(--light);
}

.testimonial-card {

    padding: 20px;
    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-team {
            overflow: hidden;
            background-color: #fff;
        }

        .decorative-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
        }

        .circle-yellow {
            width: 300px;
            height: 300px;
            background: #FFD700;
            top: -100px;
            left: -100px;
            opacity: 0.15;
        }

        .circle-outline {
            width: 200px;
            height: 200px;
            border: 2px dashed #FFD700;
            top: -50px;
            right: 0;
            opacity: 0.3;
        }

        .dots {
            position: absolute;
            bottom: -20px;
            left: 50px;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(#000 2px, transparent 2px);
            background-size: 10px 10px;
            opacity: 0.1;
        }

        .accent-line {
            width: 80px;
            height: 4px;
            background: #FFD700;
            border-radius: 2px;
        }

        .team-image-wrapper {
            position: relative;
            padding: 20px;
        }

        .team-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .team-image:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            background: #FFD700;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .experience-badge .number {
            display: block;
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .team-stats {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .circle-yellow {
                width: 200px;
                height: 200px;
                top: -50px;
                left: -50px;
            }

            .circle-outline {
                width: 150px;
                height: 150px;
            }

            .experience-badge {
                padding: 15px;
            }
        }

/* Why choose us */
.whyus-carousel {
            margin: 40px auto;
            width: 90%;
        }
        .whyus-post {
            background: #fff;
            padding: 15px;
            text-align: center;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            transition: 0.3s ease-in-out;
        }
        .whyus-post:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        }
        .whyus-post img {
            width: 100%;
            border-radius: 8px;
            height:40vh;
            object-fit:cover;
        }
        .whyus-post h3 {
            margin: 15px 0;
            font-size: 20px;
        }
        .whyus-post p {
            font-size: 14px;
            color: #666;
        }
        .whyus-post a {
            display: inline-block;
            margin-top: 10px;
            text-decoration: none;
            font-weight: bold;
        }
        .whyus-post a:hover {
            text-decoration: none;
        }
        .custom-icon{
            background-color:#f4f4f4;
            padding:15px;
            border-radius:20px;
            font-size:35px;
        }
        .whyus-post:hover .custom-icon{
            background-color:#FFD700;
            
        }

/* Project Section */
       

        .features-section {
            background: #FBF6DC;
            position: relative;
            overflow: hidden;
        }
        
        .feature-section {
            background: white;
            position: relative;
            overflow: hidden;
        }
        .feature-card {
            background: #F8F9FA;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .card-icon {
            
            margin-bottom: 1.5rem;
        }

        .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .feature-card img{
            width:100%;
            height:40vh;
            border-radius:10px;
            object-fit:cover;
        }
        .feature-card h3 {
          
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            color: #64748B;
            margin-bottom: 1.5rem;
        }

        .btn-purple {
            background: var(--accent);
            color: black;
            padding: 0.5rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-purple:hover {
            background: black;
            color: white;
            transform: translateX(5px);
        }

        .text-purple {
            color: var(--accent);
        }
        .bg-yellow{
            background-color:var(--accent);
        }
        @media (max-width: 768px) {
            .feature-card {
                padding: 1.5rem;
            }

            .card-icon {
                width: 80px;
                height: 80px;
            }
        }
     
        
/* Team Section */
        .team-section{
            background-color:var(--accent);
        }
        .team-sections{
            background-color:white;
        }
       .team-member {
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            cursor: pointer;
        }

        .member-img {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .member-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .member-info {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .member-info h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .member-info p {
            margin: 5px 0 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .team-member:hover .member-overlay {
            opacity: 1;
        }

        .team-member:hover .member-info {
            transform: translateY(0);
        }

        .team-member:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .member-info h5 {
                font-size: 0.9rem;
            }
            .member-info p {
                font-size: 0.8rem;
            }
        }

/* Gallery Section */

.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 300px; /* Fixed height for all gallery items */
}

.gallery-item img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Remove any gaps between images */
.gl-row {
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.gl-4, .gl-6 {
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }
}

/* Testimonial Section */
.quote-icon {
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    
    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 */
} 

.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;
    }
}
.transform-section h2{
    color:white;
}
.transform-section p{
    color:white;
}
.text-custom{
    background-color:var(--nav);
}



.topbar-list {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
  text-align:center;
}

.topbar-list li.social-icons a {
  color: #555;
  background:var(--accent);
  margin: 0 5px;
  border-radius:40%;
  font-size: 16px;
}

.topbar-list li.social-icons a:hover {
  color: var(--nav);
  background-color:#555;
}

.bg-accent{
    background-color:var(--accent);
}

/* description section */
/* Main scroll section */
.scroll-section {
  position: relative;
  padding-top: 80px;
  min-height: 100vh;
  background-color: #ffffff;
}

/* Left column with image */
.image-column {
  position: relative;
  padding: 0 24px;
  opacity: 0.85;
  transition: opacity var(--transition-speed) ease;
}

.image-column:hover {
  opacity: 1;
}

.sticky-image {
  position: sticky;
  top: 24px;
  padding: 16px 0;
  transition: transform var(--transition-speed) ease;
}

.sticky-image img {
  
  transition: transform var(--transition-speed) ease;

}

.sticky-image img:hover {
  transform: scale(1.02);

}

/* Right column with content */
.content-column {
  padding: 0 24px;
  background: linear-gradient(to right, rgba(255,255,255,0.95), #ffffff);
  border-radius: 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.03);
}

.content-wrapper {
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.content-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.content-wrapper h3 {
  color: var(--dark-color);
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.content-wrapper p {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-wrapper .lead {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.content-wrapper::-webkit-scrollbar {
  width: 6px;
}

.content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}


.card {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Media queries for responsiveness */
@media (max-width: 991.98px) {
  .image-column {
    margin-bottom: 40px;
    opacity: 1;
  }
  
  .sticky-image {
    position: relative;
    top: 0;
  }
  
  .content-wrapper {
    max-height: none;
    overflow: visible;
    padding: 16px;
  }

  .content-column {
    background: #ffffff;
    box-shadow: none;
  }
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* JavaScript helper class */
.end-scrolling {
  position: relative;
}

.cta{
    background: var(--accent);
}

.img-fit {
  height: 250px; /* ya jo bhi tum fixed height chaaho */
  object-fit: cover;
}

/* Social Media Section */
.social-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:10;
}

.social-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: #fff;
  font-size: 2rem;
  z-index:20;
}

/* 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;
}

.navbar-toggler {
  border-color: white; /* if you want the border to be white */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.text-left{
    text-align:left;
}
.text-right{
    text-align:right !important;
}

@media (max-width:768px){
    .text-left,.text-right{
        text-align:center !important;
    }
}