:root {
    --primary-color: #7030a0;
    --secondary-color: #ff9800;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
}

body {
    overflow-x: hidden;
}


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 */
}
.bg-custom{
    background-color:var(--primary-color);
}		

.text-custom{
    color:var(--secondary-color);
}
.navbar-brand {
    font-weight: 700;
    font-size: 28px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
}

.btn-get-started {
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-get-started:hover {
    background-color: var(--secondary-color);
    color: white;
}

.hero-section {
	background: linear-gradient(135deg, #7030a0 0%, #b066cc 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	color: white;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://www.transparenttextures.com/patterns/stardust.png'); /* optional texture */
	opacity: 0.1;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}


.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-read-more {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
}

.btn-read-more:hover {
    background-color: #e68a00;
    color: white;
}

.btn-contact-us {
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
    margin-left: 15px;
    border: none;
}

.btn-contact-us:hover {
    background-color: #f0f0f0;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
	transform: scaleY(-1);
}

.wave-bottom .shape-fill {
    fill: #FFFFFF;
}

/* Services Section */

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.service-card {
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    background-color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.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-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 30px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    color: #6c757d;
}

/*About Section */
.about-img {
    border-radius: 10px;
    overflow: hidden;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-list li {
    padding: 8px 0;
    color: #6c757d;
}

.about-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Project-section */


.project-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    transition: all 0.5s;
    height:35vh;
    width:100%;
    object-fit:cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(112, 48, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay a {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.project-overlay a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.project-info {
    padding: 20px;
    background-color: white;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    color: #6c757d;
    margin-bottom: 0;
}

/*Team Section */

.team-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.team-img {
    position: relative;
    overflow: hidden;
    height:200px;
    object-fit:cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(112, 48, 160, 0.8);
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.team-social a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.contact-section {
    padding: 80px 0;
}

.contact-info {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background-color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    color: white;
    font-size: 24px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
    resize:none;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.footer {
    background-color: #212529;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-links h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    margin-bottom: 30px;
}

.newsletter-form input {
    height: 50px;
    border-radius: 30px;
    padding-right: 120px;
    border: none;
}

.newsletter-form button {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    transition: all 0.3s;
    opacity: 0.8;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    opacity: 1;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-img {
        margin-top: 40px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .btn-contact-us {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

/* 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;
  }
}


.footerlogo{
    height:80px;
}
.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;
}

/* 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;
  }
}

.nav-link.active {
  color: #ff4081;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}