        :root {
            --primary: #6366f1;
            --secondary: #ff6b6b;
            --dark: #1e293b;
            --light: #f8fafc;
        }

        textarea{
            resize:none;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background: white;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 800;
        }

        .navbar-brand span:first-child {
            color: var(--primary);
        }
        
        .navbar .scrolled{
            background:transparent;
        }

        .nav-link {
            font-weight: 600;
            color: var(--dark);
            padding: 10px 20px !important;
        }
        .nav-link.active {
          color: var(--primary) !important; /* Example: pink */
          font-weight: bold;
          border-bottom: 2px solid var(--primary);
        }
        .search-box {
            background: var(--light);
            border-radius: 30px;
            padding: 8px 20px;
        }

        

        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light);
            cursor: pointer;
        }
        .logo{
            height:50px;
        }
        /* Hero Section */
        .hero-section {
            height: 100vh;
            padding: 100px 0;
            background: linear-gradient(135deg, #fff 60%, #6366f1 60%);
            position: relative;
            overflow: hidden;
            display:flex;
            justify-content: between;
            align-items: center;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .hero-text {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline {
            border: 2px solid var(--dark);
            background: transparent;
            color: var(--dark);
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .card-top {
            top: -30px;
            right: -30px;
        }

        .card-bottom {
            bottom: -30px;
            left: -30px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                background: white;
            }
            .floating-card {
                display: none;
            }
        }
		
		/* Feature section */
		.features {
			background-color: #f8f9fa;
		}

		.feature-card {
			transition: all 0.3s ease;
			border: 1px solid rgba(0,0,0,0.1);
		}

		.feature-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
		}

		.icon-box {
			width: 70px;
			height: 70px;
			background: rgba(99, 102, 241, 0.1);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.text-primary {
			color: #6366f1 !important;
		}
		
		/* Service Section */
		.services-section {
            position: relative;
            padding: 100px 0;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index:10;
        }
        
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .icon-wrapper i {
            font-size: 35px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .service-card p {
        
            margin-bottom: 0;
            position: relative;
        
            transition: all 0.3s ease;
        }
        
        .service-card img {
            display: block;
            width: 100%;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin: 0; /* Remove any default image spacing */
            height:40vh;
            object-fit:cover;
        }
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
        }

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-section .social-links {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .social-links {
    opacity: 1;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .social-links a {
    transform: translateY(0);
}

.team-section .social-links a:hover {
    background: var(--primary);
    color: white;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.team-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .team-card {
        margin-bottom: 30px;
    }
}

/* Footer Section */
.footer {
    background: #14151c;
    color: white;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.footer-brand span {
    color: #ff6b6b;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    color: var(--primary);
}

.footer .social-link {
    display: flex;
    gap: 15px;
}

.footer .social-link a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-link a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}



.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0a0a0;
}
.footer p{
    color:white;
}
@media (max-width: 991px) {
    .footer-title {
        margin-top: 1.5rem;
    }
}

/* About section */
.about-us-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.quote-icon {
    color: #ff6b6b;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: white;
}

@media (max-width: 991px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-image {
        margin-top: 30px;
    }
    
    .testimonial-image img {
        height: 300px;
    }
}

/* Service Description Section */
.service-description {
    background-color: #f8fdff;
    overflow: hidden;
}

.service-description .service-content {
    padding-right: 50px;
}

.service-description .text-primary {
    color: #00bcd4 !important;
}

.service-description .feature-item {
    font-size: 1.1rem;
    color: #555;
}

.service-description .btn-primary {
    background: #00bcd4;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-description .btn-primary:hover {
    background: #008c9e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,188,212,0.2);
}

.service-description .service-image {
    position: relative;
    padding: 20px;
}

.service-description .service-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-description .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .service-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .floating-element {
        display: none;
    }
}


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 */
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}
.btn-dark{
    background-color:var(--primary);
    color:white;
    border:none;
}
/* contact section */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-control {
    border: none;
    background: white;
    padding: 15px 20px;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #dc3545;
}

.btn-danger {
    background: #dc3545;
    border: none;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #bb2d3b;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .contact-form {
        margin-top: 30px;
    }
}

/* Portfolio */

.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.portfolio-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--dark);
    color: white;
    transform: scale(1.1);
}

.portfolio-item {
    display: none;
}

.portfolio-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .portfolio-img img {
        height: 250px;
    }
}

/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.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;
  }
}

.bg-custom{
    background:var(--primary);
}
.text-custom{
    color:var(--primary);
}

/*Gallery Section */
.gallery-card {
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.gallery-card:hover img {
    transform: scale(1.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;
}

/* cta section */
.cta-section{
    background-color:var(--primary);
    color:white;
}
.custom-btn{
    bacground-color:black;
    color:white;
    border:none;
}

.img-fit {
  height: 250px; 
  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);
}
