:root {
	  --primary-color: #DE1CFB;
	  --dark-bg: #121212;
	  --card-bg: #1e1e1e;
	  --text-color: #e0e0e0;
	  --muted-text: #b0b0b0;
}
        
        body {
            color: #444;
        }
        h2.mb4,h2{
            color:var(--primary-color);
        }
        pre {
            color: white;
            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 */
        } 
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .navbar-brand span {
            color: var(--primary-color);
        }
        .nav-link.active{
            color: var(--primary-color) !important;
            font-weight: 600;
        }
        .hero-section {
            height: 80vh;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.8rem 2rem;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: #F1B4FA;
            color:#000;
            border-color: #0095a8;
        }
        
        .service-card {
            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);
        }
        .service-card 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 */
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .about-section {
            padding: 5rem 0;
        }
        
        .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;
            padding: 2rem;
            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;
        }
        
 
        .contact-section {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0;
        }
        
        .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-text,
        .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;
        }
		textarea{
            resize:none;
        }
        
		body {
		  background-color: var(--dark-bg);
		  color: var(--text-color);
		}

		.bg-dark, .navbar, .dropdown-menu, .feature-box, .testimonial-card, .footer, .top-bar {
		  background-color: var(--card-bg) !important;
		}

		.text-white, .nav-link, .dropdown-item, .stats-text, .footer-links a {
		  color: var(--text-color) !important;
		}

		.nav-link:hover, .dropdown-item:hover, .footer-links a:hover {
		  color: var(--primary-color) !important;
		}

		.navbar-brand span {
		  color: var(--primary-color);
		}

		.btn-primary {
		  background-color: var(--primary-color);
		  border: none;
		}

		.btn-primary:hover {
		  background-color: #F1B4FA;
		  color:#000;
		}

		.service-card, .feature-box, .card, .stats-item {
		  background-color: var(--card-bg);
		  border: 1px solid #2e2e2e;
		  color: var(--text-color);
		}

		.service-icon, .feature-icon {
		  color: var(--primary-color);
		}

		.contact-section {
		  background-color: #004d57;
		}

		.footer h5, .stats-number {
		  color: var(--primary-color);
		}

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

		.contact-section .form-control {
		  background-color: #2a2a2a;
		  border: 1px solid #444;
		  color: var(--text-color);
		}
		
		.contact-section .form-control:focus{
		  background-color: #2a2a2a;
		  border: 1px solid var(--text-color);
		  color: var(--text-color);
		}
		
		.contact-section .form-control::placeholder {
          color: var(--text-color); /* Change to whatever color you want */
          opacity: 1;  /* Make sure it's fully visible (some browsers default to lower opacity) */
        }
		.bg-custom{
			background-color:#202225;
			color:white;
		}
		.text-custom{
		    color:var(--primary-color);
		}
		/* 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: var(--primary-color);
        }
        
        .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-section {
            background: var(--dark-bg);
        }

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

.logo{
    height:40px;
}

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

.contact-section .info-card {
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-section .icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-section .icon-circle i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-section .info-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-section .info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-section .info-card {
        margin-bottom: 1rem;
    }
}
.card-img-top{
    height:40vh;
    object-fit:cover;
}