:root {
            --primary-color: #dc3545;
            --secondary-color: #212529;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, opacity 0.3s;
        }
        
        .icon-circle i {
            opacity: 1;
        }
        
        body {
            color: #333;
        }
        .bg-custom{
            background:rgba(253,210,214,0.9);
        }
        .section-padding {
            padding: 80px 0;
        }
        .logo{
            height:40px;
        }        
        .section-title {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            font-weight: 700;
            position: relative;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #777;
        }
        
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        .bg-primary {
            background-color: var(--primary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #c82333;
            border-color: #bd2130;
        }
        
        .service-card {
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
        }
        .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: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            border-radius: 50%;
            background-color: rgba(220, 53, 69, 0.1);
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .service-number {
            position: relative;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .hero-carousel .carousel-item {
            height: 600px;
            background-size: cover;
            background-position: center;
        }
        
        .hero-carousel .carousel-caption {
            bottom: 180px;
        }
        
        .experience-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            border-radius: 5px;
            position: absolute;
            right: 30px;
            bottom: 30px;
            text-align: center;
        }
        
        .experience-badge h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .progress-bar {
            background-color: var(--primary-color);
        }
        
        .blog-card {
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-meta {
            margin-bottom: 10px;
            font-size: 14px;
            color: #777;
        }
        
        .blog-meta span {
            margin-right: 15px;
        }
        
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer h4 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
         .footer-text,
        .footer-links pre,
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
        }
        
        .progress-wrapper {
            margin-bottom: 30px;
        }
        
        .progress-wrapper h6 {
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .what-we-do-card {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        
        .what-we-do-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .what-we-do-card:hover img {
            transform: scale(1.1);
        }
        
        .what-we-do-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
        }
        
        .what-we-do-content h5 {
            color: white;
            margin-bottom: 10px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            z-index: 99;
            display: none;
            transition: all 0.3s ease;
        }
        
        .back-to-top:hover {
            background-color: #c82333;
        }
        
        pre {
            color: var(--dark);
            background: transparent;
            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 */
        } 
        
        textarea{
            resize:none;
        }
        
        .accordion-button {
            background: rgba(253,210,214,0.9); /* Default bg */
        }
        
        .accordion-button:not(.collapsed) {
            background: rgba(253,210,214,0.9); /* Open state */
        }
        
        .accordion-button.collapsed {
            background: rgba(253,210,214,0.9); /* Closed state */
        }
        .accordian-icon{
            background-color:white;
            color:var(--primary-color);
            padding:10px;
            border-radius:50%;
        }
        
/* 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;
}

.team-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;
}

.team-card:hover .team-social-icon {
    transform: translateY(0);
    opacity: 1;
}

.team-social-icon:hover {
    background: #007bff;
    color: white;
    transform: translateY(-5px);
}

.team-social-icon.facebook:hover { background: #1877f2; }
.team-social-icon.twitter:hover { background: #1da1f2; }
.team-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 */
.team-social-icon:nth-child(1) { transition-delay: 0.1s; }
.team-social-icon:nth-child(2) { transition-delay: 0.2s; }
.team-social-icon:nth-child(3) { transition-delay: 0.3s; }
.team-social-icon:nth-child(4) { transition-delay: 0.4s; }
.team-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 */
    }
    .hero-carousel .carousel-caption {
            bottom: 120px;
    }
}

        /* Gallery Section */
        .gallery-filter {
            margin-bottom: 2rem;
        }

        .btn-filter {
            border: none;
            background: none;
            color: #666;
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-filter.active,
        .btn-filter:hover {
            color: #000;
        }

        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }

        .gallery-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info {
             position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              color: white;
              font-size: 64px;
              text-decoration:none;
              text-align: center;
              color:white;
        }
        
        .bi-star-fill{
            color:var(--primary);
        }
        
/* 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;
  }
}

.cta{
    height:auto;
    background:var(--primary-color);
    padding:20px;
    color:var(--dark-color);
}
.text-custom{
    color:var(--primary-color);
}

.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;
}

.nav-link.active{
    color: var(--primary-color) !important;
    font-weight: 600;
    border:2px solid var(--primary-color);
    border-radius:20px;
    padding-left:10px;
}

.testimonial-img{
    width:80px;
    height:80px;
    object-fit:cover
}