:root {
    --primary-color: #3a3a3a;
    --secondary-color: #c9a77c;
    --light-color: #3A3A3B;
    --dark-color: #212529;
    --gray-color: #fff;
}

body {
    color: var(--primary-color);
    overflow-x: hidden;
}
.bg-custom{
    background-color:var(--light-color);
    color:white;
}


.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar Styles */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 1030; /* Ensure navbar stays on top */
}

.navbar.sticky {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: var(--secondary-color);
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    color:var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid var(--secondary-color);
    transition: all 300ms linear;
}

.navbar-toggler-icon:after, 
.navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--secondary-color);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-toggler-icon:after {
    top: 8px;
}

.nav-link.active {
  color: var(--secondary-color) !important; /* Example: pink */
  font-weight: bold;
  border-bottom: 2px solid var(--secondary-color);
}

/* Carousel Styles */
.carousel-item {
    height: 100vh;
    /*min-height: 500px;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*padding-top: 80px;*/
}

/*.carousel-caption {*/
/*    display:flex;*/
/*    justify-content:center;*/
/*    align-items:center;*/
/*}*/

.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 20px; /* for small screens */
}


.carousel-caption h5 {
    font-size: 80px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 2px;

}

.carousel-caption p {
    font-size: 18px;
    line-height: 1.9;
}

.carousel-caption a {
    text-transform: uppercase;
    text-decoration: none;
    background: var(--secondary-color);

    display: inline-block;
    color: white;

    border-radius: 5px;
    transition: all 0.3s ease;
}

.carousel-caption a:hover {
    background: var(--primary-color);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: 70px;
}

.carousel-indicators button {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background-color: var(--secondary-color) !important;
}

/* About Section Styles */
.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.about-img .experience {
    position: absolute;
    right: -30px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img .experience h3 {
    font-size: 40px;
    margin-bottom: 0;
    line-height: 1;
}

.about-img .experience p {
    font-size: 14px;
    margin-bottom: 0;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.about-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
}

.btn-custom {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--secondary-color);
}

textarea{
    resize:none;
}

.navbar .dropdown-toggle::after{
    display: none !important;
}
/* Services Section Styles */
.service-card {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.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-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 167, 124, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Portfolio Section Styles */
.portfolio-filter {
    margin-bottom: 40px;
    text-align: center;
}

.portfolio-filter button {
    background: transparent;
    border: none;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-filter button.active, .portfolio-filter button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.portfolio-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-overlay p {
    color: var(--secondary-color);
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Team Section Styles */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 20px;
    right: -60px;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    right: 20px;
}

.team-social a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.team-info {
    padding: 25px 20px;
    text-align: center;
    background-color: var(--light-color);
}

.team-info h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f9f9f9;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 167, 124, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 40px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-logo {
    font-weight: 700;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-text {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.footer-contact-icon i {
    color: var(--secondary-color);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Carousel Section Styles */
.carousel-section {
    margin-top: 0;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .carousel-caption {
        /*bottom: 100px;*/
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .carousel-caption h5 {
        font-size: 50px;
    }
    
    .carousel-caption p {
        width: 100%;
        font-size: 16px;
    }
    
    .about-img .experience {
        right: 0;
        bottom: 0;
        width: 120px;
        height: 120px;
    }
    
    .about-img .experience h3 {
        font-size: 30px;
    }
    
    .about-content {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .carousel-caption {
        /*bottom: 50px;*/
    }
    
    .carousel-caption h5 {
        font-size: 30px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
}

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 */
}

/* Contact Section */

.contact-section .form-control {
    padding: 0.8rem;
    background-color: var(--light-color);
    border: none;
    border-radius: 8px;
    color: white;
}

.contact-section .form-control:focus {
    box-shadow: none;
    background-color: var(--light-color);
    color:white;
    border: 1px solid var(--secondary-color);
}

.contact-section .form-control::placeholder {
    color:var(--gray-color);
}

.contact-section .info-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-section .icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-section .icon-circle i {
    font-size: 2rem;
    color: white;
}

.contact-section .info-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-section .info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-section .info-card {
        margin-bottom: 1rem;
    }
}

.custom-text{
    color:var(--secondary-color);
}
.custom-margin{
    margin-top:100px;
    height:300px;
}

/* 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;
  }
}

.logo{
    height:40px;
}

.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);
}
.social-media-section h2{
    z-index:10;
}

/* 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;
}