:root {
            --primary: #1E293B;
            --accent: #F59E0B;
            --text: #334155;
            --light: #F8FAFC;
            --secondary: #F59E0B;
        }
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--light);
            font-size: 20px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, opacity 0.3s;
        }
        
        .icon-circle i {
            opacity: 1;
        }

        body {
            
            color: var(--text);
			overflow-x: hidden;
        }
        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 */
        }
        textarea{
            resize:none;
        }
        
        .navbar .dropdown-toggle::after{
            display: none !important;
        }
        .logo{
            height:40px;
        }
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(30, 41, 59, 0.95);
            padding: 1rem 0;
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.5rem !important;
            transition: all 0.3s ease;
        }

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

        .hero-section {
           
            min-height: 100vh;
            color: white;
            position: relative;
        }
        
        

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .hero-text {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-bottom: 3rem;
        }

        .btn-primary {
            background: var(--accent);
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #E67E22;
            transform: translateY(-3px);
        }

        .section-title {
            position: relative;
            margin-bottom: 4rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1rem;
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .feature-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent), #F97316);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card:hover::before {
            opacity: 0.05;
        }
        .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 */
        }
        .feature-icon {
            width: 90px;
            height: 90px;
            background: #FBF3CF;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        .btn-icon{
            background: #F8EDB9;
        }
        .feature-card:hover .feature-icon {
            background: var(--accent);
            color: white;
        }

        .feature-icon i {
            font-size: 36px;
            color: var(--accent);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon i {
            color: white;
        }

        .project-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .project-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(30, 41, 59, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .project-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-content {
            transform: translateY(0);
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
        }

       
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            
        }
    
		/* Gallery Section */

		.gallery-item {
			height: 300px;
		}

		.gallery-item img {
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.gallery-overlay {
			background: rgba(0,0,0,0.7);
			opacity: 0;
			transition: all 0.3s ease;
		}

		.gallery-item:hover .gallery-overlay {
			opacity: 1;
		}

		.gallery-item:hover img {
			transform: scale(1.1);
		}

		.testimonial-card {
			transition: all 0.3s ease;
		}

		.testimonial-card:hover {
			transform: translateY(-10px);
		}

		.stat-card {
			transition: all 0.3s ease;
		}

		.stat-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
		}
		
		@media (max-width: 991.98px) {
		  .navbar-collapse {
			background-color: rgba(10, 38, 71, 0.97); /* Dark solid background */
			padding: 1rem;
			border-radius: 15px;
		  }
		}
		
		.scrolled{
		   background-color:black;
		   color:white;
		   
		}
		/* Team Section */
		.team-intro {
            background: #f8f9fa;
        }

        .member-img-wrapper {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto;
            padding: 8px;
            transition: all 0.3s ease;
        }

        .member-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        
        .yellow { border: 4px solid #F8CD04; }

        .team-member:hover .member-img-wrapper {
            transform: translateY(-10px);
        }

        .team-member h3 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .social-links {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .team-member:hover .social-links {
            opacity: 1;
            transform: translateY(0);
        }

        .text-purple {
            color: #6f42c1;
        }

        @media (max-width: 768px) {
            .member-img-wrapper {
                width: 150px;
                height: 150px;
            }
        }
        
        /* Contact Section */
        
        .contact-section {
            background: #E8E7E4;
        }

        .contact-section .form-control {
            padding: 1rem;
        }

        .contact-section .form-control:focus {
            box-shadow: none;
            border-color: #4169E1;
        }

    

        .contact-section .office-item {
            transition: all 0.3s ease;
        }

        .contact-section .office-item:hover {
            transform: translateX(10px);
        }

        .contact-section .social-links a {
            transition: all 0.3s ease;
        }

        .contact-section .social-links a:hover {
            opacity: 0.8;
            transform: translateY(-3px);
        }

/* description section */
.description-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.image-container {
  position: relative;
}

.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;
  background: #fff;
}

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