/* Root Variables */
        :root {
            --primary: #4F46E5;
            --secondary: #6366F1;
            --dark: #1E293B;
            --light: #F8FAFC;
            --transition: all 0.3s ease;
        }
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--light);
            font-size: 20px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, opacity 0.3s;
        }
        
        .icon-circle i {
            opacity: 1;
        }
        textarea{
            resize:none;
        }
        .text-custom{
            color:var(--secondary);
        }
        /* Global Styles */
       
        pre {
            color: var(--dark);
            background-color: 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 */
            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;       /* Internet Explorer 5.5+ */
        } 
        .logo{
            height:40px;
        }
        .footer-logo{
            height:80px;
        }
        /* Animated Background */
        .animated-shape {
            position: absolute;
            pointer-events: none;
            opacity: 0.1;
            z-index: -1;
        }

        .shape-1 {
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morph 15s ease-in-out infinite;
        }

        .shape-2 {
            bottom: 0;
            left: 0;
            width: 400px;
            height: 400px;
            background: linear-gradient(-45deg, var(--primary), var(--secondary));
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation: morph 12s ease-in-out infinite;
        }

        @keyframes morph {
            0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark);
            margin: 0 1rem;
            padding: 0.5rem 0.5rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(79, 70, 229, 0.1);
        }
        .nav-link.active {
          color: var(--secondary) !important;
          border-bottom: 2px solid var(--secondary);
        }
        /* Hero Section */
        .hero {
            padding: 5rem 0 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #64748B;
            margin-bottom: 2.5rem;
        }

        /* Stats Counter */
        .stats-counter {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #64748B;
            font-size: 1rem;
        }

        /* Services Section */
        .services {
            padding: 1.5rem 0;
            background: var(--light);
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            color: #64748B;
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: var(--transition);
            height: 100%;
        }

        .service-card img {
            display: block;
            width: 100%;
            height:50vh;
            object-fit:cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin: 0; /* Remove any default image spacing */
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(79, 70, 229, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        /* Features Grid */
        .features {
            padding: 1.5rem 0;
            background: white;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-item {
            text-align: center;
            padding: 2.5rem;
            border-radius: 20px;
            background: var(--light);
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* Portfolio Section */
        .portfolio {
            padding: 1.5rem 0;
            background: var(--light);
        }

        .portfolio-item {
            position: relative;
            border-radius: 20px;
            height:300px;
            overflow: hidden;
        }
        .portfolio-item img{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(79, 70, 229, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

       
        /* CTA Section */
        .cta {
            padding: 5rem 0;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
        }

        /* Footer */
        .footer {
            padding: 8rem 0 0;
            background: var(--dark);
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-text,.footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-social-links {
            display: flex;
            gap: 1rem;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(67,97,238,0,6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .footer-social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Buttons */
        .btn-custom {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-primary {
            background: var(--primary);
            border: none;
            color: white;
        }

        .btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .stats-counter {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .animated-shape {
                display: none;
            }
        }
        
        
        /* Team Section */
        .team-section {
            padding: 2rem 0;
            overflow: hidden;
        }

        .subtitle {
            color: #5bc0be;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        .gradient-text {
            background: linear-gradient(45deg, #5bc0be, #3a8f8d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .team-card {
            padding: 20px;
        }

        .member-wrapper {
            position: relative;
            text-align: center;
        }

        .shape-bg {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            z-index: 1;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .shape-primary { background: rgba(67,97,238,0.5) }


        .image-wrapper {
            position: relative;
            width: 250px;
            height: 250px;
            margin: 0 auto;
            border-radius: 50%;
            overflow: hidden;
            z-index: 2;
            border: 8px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: grayscale(100%);
        }

        .member-info {
            margin-top: 25px;
            position: relative;
            z-index: 2;
        }

        .member-info h4 {
            color: #2d3436;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .member-info p {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: var(--primary);
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .team-card:hover .shape-bg {
            transform: rotate(30deg) scale(1.1);
        }

        .team-card:hover .image-wrapper {
            transform: translateY(-10px);
        }

        .team-card:hover .image-wrapper img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .team-card:hover .social-links {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            
            .image-wrapper {
                width: 200px;
                height: 200px;
            }
            .shape-primary{
                display:none;
            }
            
        }
        /* 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);
        }
        
        /* Testimonial */
        .testimonial-section {
            background-color: #fff5f2;
            padding: 80px 0;
        }

        .testimonial-card {
            background: rgba(67,97,238,0.5);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            height: 100%;
        }

       

        .testimonial-card.teal {
             background: rgba(67,97,238,0.5);
        }

        .shield-wrapper {
            width: 100px;
            height: 100px;
            margin: -60px auto 20px;
            position: relative;
        }

        .client-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid white;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content {
            text-align: center;
            color: white;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .client-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
        }

        .arrow-down {
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid rgba(67,97,238,0.5);
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
        }

        
        @media (max-width: 768px) {
            .testimonial-card {
                margin-bottom: 60px;
            }
            .arrow-down{
                display:none;
            }
        }
         body {
            overflow-x: hidden;
            background: var(--light);
        }
        
/* 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-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;
}