        :root {
            --primary-color: #333333;
            --secondary-color: #C5A880;
            --accent-color: #f59e0b;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-accent: linear-gradient(135deg, #333333 0%, #C5A880 100%);
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x:hidden;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'DM Serif Display', serif;
            font-weight: 400;
        }

/* Navbar Styles */
.custom-nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 400;
    font-size: 1.8rem;
    color: #333;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 600;
    margin: 0 1rem;
    color: #333 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Banner Carousel Styles */
.carousel {
    margin-top: -76px;
    
}

.banner-image-wrapper {
    height: 100vh;
    overflow: hidden;
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

.carousel-item.active .banner-image-wrapper img {
    transform: scale(1.2);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    padding-top: 25%;
    text-align: center;
    width: 100%;
    left: 0;
}

.caption-box {
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 2rem 3rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.carousel-caption .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.4s forwards;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .caption-box {
        padding: 1.5rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }
}



        .btn-hero {
            background: var(--gradient-accent);
            border: none;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            color: white;
        }

        /* Section Styling */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 3rem;
        }

        /* About Section */
        .about-section {
            background: var(--light-color);
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .stats-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .stats-card:hover {
            transform: translateY(-5px);
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        /* Services Section */
        .service-card {
            background: white;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-card:nth-child(2) .service-icon {
            background: var(--gradient-secondary);
        }

        .service-card:nth-child(3) .service-icon {
            background: var(--gradient-accent);
        }
        .service-card img{
            width:100%;
            height:40vh;
            object-fit:cover;
        }

        /* Team Section */
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
        }

        .team-image {
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-social {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-social {
            opacity: 1;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        /* Gallery Section */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(197, 168, 128, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Parallax Section */
        .parallax-section {
            background: var(--gradient-secondary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,1000 1000,800 1000,1000" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        /* Projects Section */
        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            height: 200px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-content {
            padding: 1.5rem;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin: 0 15px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-stars {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-title {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .footer-link {
            color: white ;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--secondary-color);
        }

        .footer-social {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            text-decoration: none;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .footer-social:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .logo{
            height:40px;
        }
        



/* Contact */
.contact-section {
  padding: 120px 40px;
}

.contact-info i {
  font-size: 1.3rem;
  color: #6f42c1;
  margin-right: 10px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
  border-color: #6f42c1;
}

.btn-purple {
  background: var(--gradient-accent);
  color:white;
  border: none;
}

.btn-purple:hover {
  border:2px solid var(--primary-color);
  background:white;
  color: var(--primary-color);
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

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-family:inherit;
    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; 
}
img{
    object-fit:cover;    
}
textarea{
    resize:none;
}

.btn-primary{
    background:var(--gradient-accent);
    color:white;
    border:none;
}
.text-primary{
    color: var(--secondary-color) !important;
}
h2.section-title{
    color:var(--secondary-color);
}

@media (max-width:768px){
    .col-6{
        width:100%;
    }
}

/* description section */
.description-section-inner {
  display: flex;
  min-height: 100vh;
  flex-wrap: nowrap;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
  overflow-y: auto;
  max-height: 100vh;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
  .description-section-inner {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }

  .content-block {
    max-height: none;
    overflow-y: visible;
  }
}

.parallax-heading {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.navbar .dropdown-toggle::after {
    display: none !important;
}