:root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --accent-color: #000;
            --light-color: #ecf0f1;
        }

        .logo{
            height:40px;
        }

        pre {
            line-height: 1.8;
            overflow-x: auto; /* Horizontal scrolling for long content */
            white-space: pre-wrap; /* Wrap text while preserving formatting */
            font-size: 18px; /* Comfortable font size */
            margin-bottom: 20px; /* Spacing from other elements */
        }
        textarea{
            resize:none;
        }
        /* Top Bar Styles */
        .top-bar {
            background: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
        }

        .top-bar i {
            margin-right: 5px;
        }

        /* Navbar Styles */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            
            font-size: 2rem;
            color: var(--primary-color);
        }

        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            padding: 8px 15px !important;
            transition: color 0.3s ease;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
            padding: 8px 15px !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-color);
        }

        /* Search Box Styles */
        .search-box {
            position: relative;
            width: 300px;
		  margin-right:20px;
        }

        .search-box input {
            width: 100%;
            padding: 8px 35px 8px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
        }

        .search-box button {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: none;
            color: var(--secondary-color);
            cursor: pointer;
        }

        /* Icons Styles */
        .nav-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-icon {
            position: relative;
            color: var(--secondary-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .nav-icon:hover {
            color: var(--accent-color);
        }

        .icon-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-color);
            color: white;
            font-size: 0.7rem;
            padding: 2px 5px;
            border-radius: 10px;
            min-width: 15px;
            text-align: center;
        }


        /* Dropdown Menu Styles */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .dropdown-item {
            padding: 8px 20px;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--light-color);
            color: var(--accent-color);
        }

        /* Sticky Navbar */
        .sticky-top {
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        @media (max-width: 991px) {
            .search-box {
                width: 100%;
                margin: 15px 0;
            }

            .nav-icons {
                margin-top: 15px;
                justify-content: center;
            }
        }
        
        
        /* Banner Section */
        .parallax-banner {
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          text-align: center;
          position: relative;
        }
    
        .parallax-banner::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text visibility */
          z-index: 1;
        }
    
        .banner-content {
          position: relative;
          z-index: 2;
        }
        /* hero section */
        .hero-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: #fff;
        }

        .display-3 {
            font-size: 3.5rem;
            line-height: 1.2;
        }

        .btn-outline-dark {
            border-width: 2px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-outline-dark:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .display-3 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                min-height: auto;
                padding: 4rem 0;
            }
        }
        
        
        
        
        
        .service-card {
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            background-color: white;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
      
        
        .stats-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .stats-text {
            font-size: 1.2rem;
            color: #666;
        }
        
        .feature-box {
            border: 1px solid #eee;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .pricing-section {
            background-color: #f9f9f9;
            padding: 5rem 0;
        }
        
        .feature-box img {
            display: block;
            width: 100%;
            height:40vh;
            object-fit:cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin: 0; /* Remove any default image spacing */
        }
        
        .footer {
            background-color: #222;
            color: #ccc;
            padding: 4rem 0 2rem;
            border-top: 2px solid;
            border-top-color: var(--primary-color);
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-block pre,
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .social-icons a {
            color: #ccc;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 2rem;
            margin-top: 3rem;
        }


	
		.copyright {
		  border-top: 1px solid #333;
		}


		/* Team Section */
		.team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .member-image {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .member-image img {
            transform: scale(1.1);
        }
        
        .social-overlay {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }
        
        .team-card:hover .social-overlay {
            left: 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .team-card:hover .social-link {
            transform: translateY(0);
            opacity: 1;
        }
        
        .social-link:hover {
            background: white;
            color: #17d1d1;
        }
        
        .social-link:nth-child(1) { transition-delay: 0.1s; }
        .social-link:nth-child(2) { transition-delay: 0.2s; }
        .social-link:nth-child(3) { transition-delay: 0.3s; }
        .social-link:nth-child(4) { transition-delay: 0.4s; }
        .social-link:nth-child(5) { transition-delay: 0.5s; }
        
        .member-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .member-info h4 {
            
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .member-info p {
            
            margin: 0;
            font-weight: 500;
        }
        
        @media (max-width: 991px) {
            .member-image {
                height: 350px;
            }
        }
        
/* 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 */


        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .testimonial-card.active {
            background: #ff9800;
            color: white;
        }

        .quote-icon {
            font-size: 2rem;
            color: rgba(0,0,0,0.1);
            margin-bottom: 1rem;
        }

        .active .quote-icon {
            color: rgba(255,255,255,0.2);
        }

        .client-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .rating {
            color: #ffd700;
        }

        .active .rating {
            color: white;
        }

        .client-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .client-position {
            font-size: 0.85rem;
            opacity: 0.8;
            margin: 0;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                margin-bottom: 1.5rem;
            }
        }
/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  background:var(--dark-color);
}

.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;
  }
}




.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.bg-purple {
    background-color: #6f42c1;
}

/* Floating Elements Animations */
.floating-card {
    position: absolute;
    transition: all 0.3s ease;
}

.floating-card .card {
    width: 200px;
    height: 100px;
    border-radius: 10px;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    right: 25%;
    animation: float 8s ease-in-out infinite;
}

.floating-note {
    position: absolute;
    top: 40%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
}

.sticky-note {
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
    border-radius: 5px;
}

/* Chat Bubble */
.chat-bubble {
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background: #e9ecef;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .floating-card, .floating-note, .team-tag {
        display: none;
    }
}


.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;
}

.project-section img{
    height:40vh;
    width:100%;
    object-fit:cover;
}