        :root {
            --primary: #6c63ff;
            --secondary: #ff6584;
            --light-purple: #b8b5ff;
            --light-blue: #a7d7f9;
            --dark: #333;
        }
        
        body {
            overflow-x: hidden;
        }
        
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 28px;
            color: var(--dark);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark) !important;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
          color: var(--primary) !important;
          border-bottom: 2px solid var(--primary);
        }
        
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero-shape {
            position: absolute;
            z-index: -1;
        }
        
        .shape1 {
            top: -200px;
            right: -200px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background-color: rgba(255, 101, 132, 0.2);
        }
        
        .shape2 {
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background-color: rgba(108, 99, 255, 0.2);
        }
        
        .shape3 {
            bottom: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background-color: rgba(167, 215, 249, 0.3);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .section-title {
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 25%;
        }
        
        .service-card {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px 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: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }
        
        .bg-primary-light {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary);
        }
        
        .bg-secondary-light {
            background-color: rgba(255, 101, 132, 0.1);
            color: var(--secondary);
        }
        
        .bg-blue-light {
            background-color: rgba(167, 215, 249, 0.1);
            color: var(--light-blue);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            background-color: white;
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 18px;
            color: var(--dark);
        }
        
        .team-member {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .team-img {
            transition: all 0.3s ease;
            height:50vh;
            object-fit : cover;
			aspect-ratio:1;
        }
        
        .team-info {
            position: absolute;
            bottom: -100px;
            left: 0;
            width: 100%;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }
        
        .team-member:hover .team-info {
            bottom: 0;
        }
        
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        
        .team-member .social-links a {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size:15px;
            padding:5px;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .team-member .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        
        /* Testimonial Section */
        .testimonial-card {
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 20px 10px;
            position: relative;
            background-color:white;
        }
        
        .testimonial-card:before {
            content: '\f10d';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 24px;
            color: rgba(108, 99, 255, 0.2);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .client-details h5 {
            margin-bottom: 5px;
        }
        
        .client-details p {
            color: #777;
            margin: 0;
        }
        
        .contact-info-box {
            display: flex;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary);
            font-size: 24px;
        }
        
        .form-control {
            height: 55px;
            border-radius: 10px;
            padding: 10px 20px;
            margin-bottom: 20px;
            border: 1px solid #eee;
        }
        
        textarea.form-control {
            height: 150px;
            padding: 15px 20px;
            resize:none;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        
        footer {
            background-color: #85FFBD;
            background-image: linear-gradient(45deg, #E2C7EB 0%, #FFE0E6 100%);

            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-links h5 {
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }
        
        .footer-links ul {
            padding: 0;
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-social-links i {
            margin-right: 10px;
            color:black;
            
            width:30px;
            height:30px;
            padding:10px;
            border-radius:50%;
        }
        .footer-social-links i:hover {
            margin-right: 10px;
            color:white;
            background-color:var(--primary);
            width:30px;
            height:30px;
            padding:10px;
            border-radius:50%;
        }
        
        .footer-links .footer-nav {
            margin-bottom: 1rem;
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid #eee;
            margin-top: 50px;
        }
        
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        

        /* Responsive */
        @media (max-width: 768px) {
            
            .hero-content {
                text-align: center;
                margin-top: 100px;
            }
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                margin-top: 15px;
            }
            
            .hero-content {
                text-align: center;
                margin-bottom: 40px;
            }
        }
        
        pre {
            
            overflow-x: auto; /* Horizontal scrolling for long content */
            white-space: pre-wrap; /* Wrap text while preserving formatting */
            line-height: 1.5; /* Improved line spacing */
            font-size: 16px; /* 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; 
        }
        
        /* Gallery Section */
        
        .gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(226, 199, 235, 0.8) 0%, rgba(255, 224, 230, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.hover-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.hover-content h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.hover-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .hover-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-card:hover .hover-content {
    transform: translateY(0);
}

.view-btn:hover {
    background: #dc3545;
    color: white;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .image-wrapper {
        padding-top: 66.67%; /* 3:2 Aspect Ratio for mobile */
    }
}
        
        /* 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;
          }
        }
        .logo{
            height:40px;
        }
        
        .premium-box {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            padding: 30px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
        }
        textarea{
            resize:none;
        }
        
        .navbar .dropdown-toggle::after{
            display: none !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;
}

.card-img-top{
    width:100%;
    height:40vh;
    object-fit:cover;
    
}