:root{
    --primary:#dc3545;
    --secondary: #000;
}

textarea{
    resize:none;
}
        
pre {
	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 {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #dc3545 !important;
    color:white !important;
    border-radius:10px;
    padding-left:14px;
}

.hero-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content .container {
    position: relative;
    z-index: 1;
}

.carousel-indicators {
    margin-bottom: 3rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    opacity: 1;
}

.mode-switch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mode-switch:hover {
    background: #f8f9fa;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
}



.how-section {
    background-color: #fff;
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.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 */
}

.icon-circle {
    width: 90px;
    height: 90px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.icon-circle.bg-danger {
    background-color: #dc3545;
    
}

.service-icon {
    width: 40px;
    height: 40px;
    font-size:30px;
    object-fit: contain;
}

.bg-danger .service-icon {
    filter: brightness(0) invert(1);
    
}

/* Gallery Section */
.project-section {
    overflow: hidden;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-buttons .btn {
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-buttons .btn.active {
    background-color: #dc3545;
    color: white;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 53, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.project-popup {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.project-popup:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
    border:2px solid #fff;
}

.project-filter {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.project-filter.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}




.unique-designs {
    background-color: #fff;
    overflow: hidden;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.design-image {
    position: relative;
    transition: all 0.3s ease;
}

.design-image:hover {
    transform: translateY(-10px);
}

.design-image img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 991.98px) {
    .design-image img {
        height: 300px;
    }
    
    .design-image.mt-5 {
        margin-top: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .design-image img {
        height: 250px;
    }
}




/* why us section */
.py-120 {
    padding: 120px 0;
}

.subtitle-style {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.subtitle-style .line {
    width: 50px;
    height: 2px;
    background: #ff3e3e;
}

.subtitle-style h6 {
    color: #ff3e3e;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

.title-style {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: #ff3e3e;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    margin: 0;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: #ff3e3e;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #e63535;
    color: #fff;
    transform: translateY(-3px);
}

.image-block {
    position: relative;
    padding: 30px;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #ff3e3e;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
}

.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-img-1, .float-img-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.float-img-1 {
    top: 0;
    right: -30px;
    animation: float1 4s ease-in-out infinite;
}

.float-img-2 {
    bottom: 50px;
    left: -30px;
    animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

@media (max-width: 991.98px) {
    .py-120 {
        padding: 80px 0;
    }

    .title-style {
        font-size: 36px;
    }

    .main-image img {
        height: 400px;
    }

    .float-img-1, .float-img-2 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .floating-images {
        display: none;
    }
}








.testimonial-section {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
                url('https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e') center/cover;
    position: relative;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.quote-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc3545;
}

.review {
    font-size: 1.2rem;
    line-height: 1.8;
}

.testimonial-indicators {
    position: relative;
    margin-top: 3rem;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dc3545;
    opacity: 0.5;
    border: none;
}

.testimonial-indicators .active {
    opacity: 1;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .client-img {
        width: 60px;
        height: 60px;
    }
    
    .review {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
}

/* news section */
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc3545;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #dc3545;
}

.read-more {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    color: #dc3545;
    gap: 10px;
}

@media (max-width: 768px) {
    .news-img img {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
}

/* footer */

.footer {
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: #dc3545;
}
.footer-text{
    color: rgba(255,255,255,0.7);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #dc3545;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-3px);
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    padding-right: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.1);
    border-color: #dc3545;
    box-shadow: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991.98px) {
    .footer-title {
        margin-top: 1rem;
    }
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.section-header .subtitle {
    color: #ff6b6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-header .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
}

.team-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    position: relative;
    padding-top: 125%; /* 4:5 Aspect Ratio */
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    padding:10px;
}

.team-card:hover .social-icon {
    transform: translateY(0);
    opacity: 1;
}

.social-icon:hover {
    background: #007bff;
    color: white;
    transform: translateY(-5px);
}

.social-icon.linkedin:hover { background: #0A66C2; }
.social-icon.youtube:hover { background: #FF0000; }
.social-icon.facebook:hover { background: #1877F2; }
.social-icon.twitter:hover { background: #000408; }
.social-icon.instagram:hover { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #636e72;
    font-size: 0.9rem;
}

/* Animation delays for social icons */
.social-icon:nth-child(1) { transition-delay: 0.1s; }
.social-icon:nth-child(2) { transition-delay: 0.2s; }
.social-icon:nth-child(3) { transition-delay: 0.3s; }
.social-icon:nth-child(4) { transition-delay: 0.4s; }
.social-icon:nth-child(5) { transition-delay: 0.5s; }

@media (max-width: 768px) {
    .section-header .title {
        font-size: 2rem;
    }
    
    .team-image {
        padding-top: 100%; /* 1:1 Aspect Ratio for mobile */
    }
}



/* 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;
}

.feature-icon{
    font-size: 35px;
}

.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 .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;
  }
}