        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
      
        :root {
            --primary: #ff4d8d;
            --dark: #2d3436;
            --light: #f8f9fa;
            --primary-color: #f94d8b;
            --secondary-color: #6c757d;
            --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: var(--light);
            font-size: 20px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, opacity 0.3s;
        }
        
        .icon-circle i {
            opacity: 1;
        }
    
        body {
            overflow-x: hidden;
        }
        pre {
            color: var(--dark);
            background-color: var(--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 */
            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;       /* Internet Explorer 5.5+ */
        }
        textarea{
            resize:none;
        }
        
        .navbar .dropdown-toggle::after{
            display: none !important;
        }
        .logo{
            height:40px;
        }
        
        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 77, 141, 0.1);
            animation: float 15s infinite linear;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
        }

        .circle-2 {
            width: 500px;
            height: 500px;
            bottom: -250px;
            right: -250px;
        }

        .triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(255, 77, 141, 0.05);
            animation: rotate 20s infinite linear;
        }

        .triangle-1 {
            top: 20%;
            right: 10%;
        }

        .triangle-2 {
            bottom: 30%;
            left: 15%;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 50px) rotate(180deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Navbar */
        .navbar {
            padding: 1.5rem 0;
            background: transparent;
            
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark);
            margin: 0 1rem;
        }
        .nav-link.active {
          color: var(--primary) !important;
          border-bottom: 2px solid var(--primary-color);
        }
        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 500;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 5rem 0;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .hero-text {
            font-size: 1.2rem;
            color: #636e72;
            margin-bottom: 2rem;
        }

        .hero-image {
            animation: float 6s infinite ease-in-out;
        }

        /* Why Choose Us */
        .why-us {
            padding: 5rem 0;
            background: var(--light);
        }
        .features-section{
            margin-top:80px;
        }
        .feature-card {
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 77, 141, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
        }

        .service-card {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: white;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        /* Portfolio Section */
        .portfolio {
            padding: 5rem 0;
            background: var(--light);
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 77, 141, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 0;
        }

        .testimonial-card {
            padding: 5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 7px 10px rgba(0,0,0,0.1);
            margin: 1rem;
        }

        /* Footer */
                /* Footer */
        .footer {
            background-color: #f9fafb;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-text {
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background-color: rgba(249, 77, 139, 0.1);
            color: var(--primary-color);
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .footer-links h4 {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 25px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #eee;
            margin-top: 30px;
            color: var(--secondary-color);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }
        
         /* Features Section */
        
        .feature-box {
            text-align: center;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box 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 */
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            background-color: rgba(249, 77, 139, 0.1);
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 30px;
        }
        
        .feature-box h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .feature-box p {
            color: var(--secondary-color);
            line-height: 1.6;
        }
        
        /* About Section */
        .about-section {
            background: transparent;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        
        
        /* Team Section */
	    .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px 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.5s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 18px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .team-card:hover .social-links a {
            transform: translateY(0);
            opacity: 1;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-info h4 {
            margin-bottom: 0.5rem;
            color: #333;
        }

        .team-info p {
            color: #666;
            margin: 0;
        }

        /* Delay social icons animation */
        .social-links a:nth-child(1) {
            transition-delay: 0.1s;
        }
        .social-links a:nth-child(2) {
            transition-delay: 0.2s;
        }
        .social-links a:nth-child(3) {
            transition-delay: 0.3s;
        }
        .social-links a:nth-child(4) {
            transition-delay: 0.4s;
        }
        .social-links a:nth-child(5) {
            transition-delay: 0.5s;
        }
	/* Testimonial Section */
		.testimonials {
            background: transparent;
        }

        .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;
            margin-bottom: 0;
        }

        .testimonial-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            position: relative;
            margin: 1rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .quote-icon {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: #ff6b6b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .testimonial-text {
            color: #636e72;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .client-info {
            text-align: center;
        }

        .client-image {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ff6b6b;
            padding: 3px;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .rating {
            color: #ffd43b;
            margin-bottom: 0.5rem;
        }

        .client-info h5 {
            color: #2d3436;
            margin-bottom: 0.25rem;
        }

        .client-info span {
            color: #636e72;
            font-size: 0.9rem;
        }

        .owl-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50% !important;
            background: white !important;
            color: #2d3436 !important;
            font-size: 1.5rem !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .owl-nav button:hover {
            background: #ff6b6b !important;
            color: white !important;
        }

        .owl-prev {
            left: -25px;
        }

        .owl-next {
            right: -25px;
        }

        .owl-dots {
            margin-top: 2rem;
        }

        .owl-dot span {
            width: 10px !important;
            height: 10px !important;
            margin: 5px !important;
            background: #dfe6e9 !important;
            transition: all 0.3s ease;
        }

        .owl-dot.active span {
            background: #ff6b6b !important;
            width: 20px !important;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 2rem;
            }

            .section-header .title {
                font-size: 2rem;
            }

            .owl-nav {
                display: none;
            }
        }
        
        /* Project Section */
        .projects-section {
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .project-card {
            background: transparent;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .projects-section img {
            height:30vh;
            object-fit: cover;
            width: 100%;
            
        }

        .project-card h3 {
          
            font-size: 1.5rem;
            margin-top:1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .project-card p {
            color: #64748B;
            margin-bottom: 1.5rem;
        }

        .btn-purple {
            background: var(--primary);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-purple:hover {
            background: #553C9A;
            color: white;
            transform: translateX(5px);
        }

        .text-purple {
            color: #6B46C1;
        }

        @media (max-width: 768px) {
            .project-card {
                padding: 1.5rem;
            }

        }
        
        /* 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;
        }

        .btn-get-started {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 12px 35px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-get-started:hover {
            opacity: 0.9;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(249, 77, 139, 0.3);
        }
        
/* 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;
  }
}

.text-custom{
    color:var(--primary) !important;
}

.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;
}