:root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --dark-color: #111827;
            --light-color: #f9fafb;
            --gray-color: #6b7280;
        }
        
        body {
           
            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 */
        } 
        .logo{
            height:40px;
        }
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .navbar.scrolled .nav-link, 
        .navbar.scrolled .navbar-brand {
            color: var(--dark-color) !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 28px;
            color: #fff;
        }
        
        .nav-link {
            color: #fff;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            text-decoration: none;
        }
        
        /* Pseudo-element for underline */
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease, background 0.3s ease;
        }
        
        /* On hover, expand underline */
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Active state underline + optional color change */
        .nav-link.active {
            color: #fff;
        }
        
        .nav-link.active::after {
            width: 100%;
            background: var(--secondary-color);
        }
        /* Banner Section */
        .banner {
            
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: #fff;
            position: relative;
        }
        .banner .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index:1;
        }
        .banner-content {
            z-index: 1;
        }
        
        .banner h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-light {
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styles */
        section {
            padding: 100px 0;
        }
        
        .section-title {
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--primary-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-title.text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* About Section */
        .about-img {
            position: relative;
            z-index: 1;
        }
        
        
        
        .about-img:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            
            top: 20px;
            left: 20px;
            z-index: -1;
            border-radius: 10px;
        }
        
        .about-content {
            padding-left: 30px;
        }
        
        .about-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            background-color: #f8f9fa;
        }
        
        .feature-box {
            padding: 30px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #fff;
            font-size: 28px;
        }
        
        /* Services Section */
        .service-card {
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            color: #fff;
        }
        
        .service-card:hover h4,
        .service-card:hover p {
            color: #fff;
        }
        
        .service-card:hover .service-icon {
            background: #fff;
            color: var(--primary-color);
        }
        .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 {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #fff;
            font-size: 28px;
            transition: all 0.3s ease;
        }
        
        /* Team Section */
        .team-member {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .team-img {
            position: relative;
            overflow: hidden;
        }
        
        .team-img img {
            transition: all 0.5s ease;
            width: 100%;
            height:200px;
            object-fit:cover;
        }
        
        .team-member:hover .team-img img {
            transform: scale(1.1);
        }
        
        .team-info {
            background: #fff;
            padding: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .team-info h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .team-info p {
            color: var(--gray-color);
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
        }
        
        .team-social a {
            width: 35px;
            height: 35px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Projects Section */
        .project-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .project-img {
            position: relative;
            overflow: hidden;
            height: 30vh;
        }
        
        .project-img img {
            transition: all 0.5s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(37, 99, 235, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .project-item:hover .project-overlay {
            opacity: 1;
        }
        
        .project-item:hover .project-img img {
            transform: scale(1.1);
        }
        
        .project-content {
            text-align: center;
            color: #fff;
            padding: 20px;
        }
        
        .project-content h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .project-category {
            font-size: 0.9rem;
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        /* Gallery Section */
        .gallery-item {
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height:300px;
        }
        
        .gallery-item img {
            transition: all 0.5s ease;
            width: 100%;
            height:100%;
            object-fit:cover;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Contact Section */
        .contact-info {
            padding: 30px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #fff;
            font-size: 24px;
        }
        
        .contact-form {
            padding: 40px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form .form-control {
            height: 55px;
            border-radius: 5px;
            padding: 10px 20px;
            margin-bottom: 20px;
            background-color: #1e293b;
			color: #f1f5f9;
			border: 1px solid #475569;
        }
        
        .contact-form textarea.form-control {
            height: 150px;
            padding: 15px 20px;
        }
        
		.contact-form .form-control:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
            background-color: #1e293b;
            color: #f1f5f9;
        }

		.contact-form .form-control::placeholder {
			color: #94a3b8;
		}
        
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: #fff;
            padding: 80px 0 0;
        }
        
        .footer-widget {
            margin-bottom: 40px;
        }
        
        .footer-widget h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--secondary-color);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #fff;
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .navbar-collapse .nav-link {
                color: var(--dark-color) !important;
            }
            
            .banner h1 {
                font-size: 2.5rem;
            }
            
            .about-img:before {
                display: none;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            section {
                padding: 70px 0;
            }
            
            .banner h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
		
		body {
			background-color: #0f172a;
			color: #f1f5f9;
		}

		.navbar,
		.navbar-collapse {
			background-color: #1e293b !important;
		}

		.navbar-collapse .nav-link {
			color: white !important;
		}

		.navbar.scrolled {
			background-color: #1e293b !important;
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
		}

		.banner {
			color: #f1f5f9;
		}

		section,
		.why-choose-us,
		.projects,
		.contact,
		.team,
		.gallery,.bg-custom {
			background-color: #1e293b;
			color: #f1f5f9;
		}

		.feature-box,
		.service-card,
		.team-info,
		.contact-info,
		.contact-form,
		
		.project-item {
			background-color: #334155;
			color: #f1f5f9;
		}

		.service-card:hover {
			background-color: var(--primary-color);
			color: #fff;
		}

		.footer {
			background-color: #0f172a;
			color: #e2e8f0;
		}

		.footer-links a,
		.footer-social a {
			color: #e2e8f0;
		}

		.footer-links a:hover {
			color: var(--primary-color);
		}

		.back-to-top {
			background-color: var(--primary-color);
		}

		.btn-outline-light {
			border-color: #f1f5f9;
			color: #f1f5f9;
		}

		.btn-outline-light:hover {
			background-color: #f1f5f9;
			color: #1e293b;
		}
		
		.projects.bg-light,
		.contact.bg-light {
			background-color: #1e293b !important;
		}

		/* Project item override */
		.project-item {
			background-color: #334155;
		}

		/* Contact Section dark styles */
		.contact-info,
		.contact-form {
			background-color: #334155;
			color: #f1f5f9;
		}

		/* Adjust project overlays and buttons */
		.project-overlay {
			background: rgba(37, 99, 235, 0.85);
		}

		.project-content .btn-outline-light {
			color: #f1f5f9;
			border-color: #f1f5f9;
		}

		.project-content .btn-outline-light:hover {
			background-color: #f1f5f9;
			color: #1e293b;
		}
		
		textarea{
            resize:none;
        }
        
        .navbar .dropdown-toggle::after{
            display: none !important;
        }

/* 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;
  }
}

.img-fit {
  height: 250px; /* ya jo bhi tum fixed height chaaho */
  object-fit: cover;
}

/* Social Media */

    .social-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .social-item img {
      width: 100%;
      height: 40vh;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

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

    .social-item .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(37, 99, 235, 0.6);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .overlay i {
      color: #fff;
      font-size: 2rem;
    }
/* 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;
}

.cta{
    background: var(--secondary-color);
}

.testimonial-img{
    width:60px;
    height:60px;
    object-fit:cover;
}