:root{
    --primary:#CAA23E;
    --secondary:#000;
}
.logo{
    height:40px;
}
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
}

.icon-circle i {
    opacity: 1;
}
/* navbar section */
        .bg-custom{
            background:rgba(0,0,0,0.7);
            color:white;
        }
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-scrolled {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
		.navbar-brand:hover{
			color:white;
		}
        .navbar-scrolled .navbar-brand {
            color: #1a1a1a;
        }
		.navbar-scrolled .navbar-brand:hover {
            color: #1a1a1a;
        }
        .nav-link {
            color: white;
            font-weight: 100;
            margin-left: 30px;
            transition: color 0.3s ease;
            position: relative;
        }
		.nav-link:hover{
			color:white;
		}
        .navbar-scrolled .nav-link {
            color: #1a1a1a;
        }
		.navbar-scrolled .nav-link:hover {
            color: #1a1a1a;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #CAA23E;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .nav-link.active{
			color:var(--primary) !important;
			font-weight:600;
		}
        /* Demo section for scrolling */
        .demo-section {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
		
		/* banner sectin */
        .banner-section {
            min-height: 100vh;

            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .banner-content {
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .banner-subtitle {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: 0.5s;
        }

        .banner-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: 0.8s;
        }

        .banner-description {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: 1.1s;
        }

        .banner-cta {
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: 1.4s;
        }
		
		/* yellow button */
        .btn-primary {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            background: #CAA23E;
            border: none;
            color: #1a1a1a;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: transparent;
            color: white;
			border:2px solid #CAA23E;
            transform: translateY(-3px);
        }

		/* white button */
        .btn-outline {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
            border-radius: 30px;
            margin-left: 20px;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: #fff;
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: 1.7s;
        }

        .scroll-text {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .scroll-icon {
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 768px) {
            .banner-title {
                font-size: 3rem;
            }

            .banner-description {
                font-size: 1.1rem;
            }

            .btn-outline {
                margin: 20px 0 0 0;
                display: block;
                text-align: center;
            }
        }
		
		/* about us section */
		.about-section {
            background: linear-gradient(to bottom, #fff, #f8f9fa);
            overflow: hidden;
        }
        
        .about-image-container {
            position: relative;
            padding-right: 30px;
        }

        .about-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 4px solid #CAA23E;
            border-radius: 30px;
            z-index: -1;
        }

        .about-image img {
            width: 100%;
            height: 600px;
		
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 0;
            background: #fff;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #CAA23E;
            line-height: 1;
        }

        .badge-text {
            font-size: 1rem;
            color: #333;
        }

        .about-content {
            padding-left: 70px;
        }

        .section-subtitle {
            color: #CAA23E;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
		
		/* title */
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .about-description {
            color: #666;
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 50px;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .stat-item {
            padding: 30px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #CAA23E;
            margin-bottom: 15px;
            line-height: 1;
        }

        .stat-text {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .team-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }

        .team-member {
            text-align: center;
			
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .member-image-container {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 25px;
        }

        .member-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
		
       
        .member-name {
            font-size: 1.1rem;
            font-weight: 620;
            margin-bottom: 8px;
			margin-left: 30px;
        }

        .member-position {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }

        @media (max-width: 991px) {
            .about-content {
                padding-left: 0;
                margin-top: 70px;
            }

            .section-title {
                font-size: 3rem;
            }

            .about-image img {
                height: 400px;
            }
        }
		/* service section */
		 .services-section {
            background: linear-gradient(to bottom, #fff, #f8f9fa);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            color: #CAA23E;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .section-description {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .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-card:hover {
            transform: translateY(-10px);
        }

        .service-image {
            position: relative;
            padding-top: 65%;
            overflow: hidden;
        }

        .service-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #CAA23E;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: #1a1a1a;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg);
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-link {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: #CAA23E;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 991px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .service-card {
                margin-bottom: 30px;
            }
        }
		
		/* portfolio sectin */
		 .portfolio-section {
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #CAA23E;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            gap: 15px;
        }

        .filter-btn {
            padding: 10px 25px;
            border: none;
            background: #f8f9fa;
            color: #666;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #CAA23E;
            color: #1a1a1a;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-item:hover .portfolio-image {
            transform: scale(1.1);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .portfolio-category {
            color: #CAA23E;
            font-size: 1rem;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
        }

        .portfolio-item:hover .portfolio-title,
        .portfolio-item:hover .portfolio-category {
            transform: translateY(0);
        }

        .view-more {
            text-align: center;
            margin-top: 50px;
        }

        .view-more-btn {
            padding: 15px 40px;
            background: #CAA23E;
            color: #1a1a1a;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-more-btn:hover {
            background: transparent;
            color: black;
			border:2px solid #CAA23E;
            transform: translateY(-3px);
        }

        @media (max-width: 991px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
		
		/* testimonial section */
		.testimonial-section {
            background: linear-gradient(to bottom right, #f8f9fa, #fff);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            color: #CAA23E;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            margin: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
        }

        .quote-icon {
            position: absolute;
            top: -20px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: #CAA23E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a;
            font-size: 1.5rem;
        }

        .testimonial-content {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
        }

        .client-details h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1a1a1a;
        }

        .client-details p {
            color: #666;
            margin: 0;
        }

        .rating {
            color: #CAA23E;
            margin-bottom: 15px;
        }

        .rating i {
            margin-right: 5px;
        }

        .swiper-pagination {
            position: relative;
            margin-top: 40px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #ddd;
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: #CAA23E;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .testimonial-card {
                padding: 30px;
                margin: 10px;
            }
        }
		
		/* team section */
		.team-section {
            background: linear-gradient(to bottom, #fff, #f8f9fa);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            color: #CAA23E;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .team-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-image {
            position: relative;
            padding-top: 120%;
            overflow: hidden;
        }

        .team-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            transform: translateY(0);
            transition: all 0.4s ease;
        }

        .team-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-position {
            color: #CAA23E;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .team-bio {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .team-card:hover .team-bio {
            opacity: 1;
            transform: translateY(0);
        }

        .team-social-links {
            display: flex;
            gap: 15px;
        }

        .team-social-link {
            width: 35px;
            height: 35px;
            padding:8px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .team-social-link:hover {
            background: #CAA23E;
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        @media (max-width: 991px) {
            .section-title {
                font-size: 2.5rem;
            }
        }
		
		/* gallery section */
		.gallery-section {
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #CAA23E;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 300px;
            gap: 20px;
            padding: 0 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
        }

        .gallery-item.large {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .gallery-category {
            color: #CAA23E;
            font-size: 1rem;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
        }

        .gallery-item:hover .gallery-title,
        .gallery-item:hover .gallery-category {
            transform: translateY(0);
        }

        .view-more {
            text-align: center;
            margin-top: 50px;
        }

        .view-more-btn {
            padding: 15px 40px;
            background: #CAA23E;
            color: #1a1a1a;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-more-btn:hover {
            background: transparent;
            color: black;
			border:2px solid #CAA23E;
            transform: translateY(-3px);
        }

        @media (max-width: 991px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item.wide {
                grid-column: auto;
            }
            
            .gallery-item.large {
                grid-row: auto;
            }
        }
		
		/* footer section */
		.footer {
            background: #1a1a1a;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .footer-top {
            padding: 100px 0 60px;
            position: relative;
        }

        .footer-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(45deg, #CAA23E 25%, transparent 25%),
                        linear-gradient(-45deg, #CAA23E 25%, transparent 25%);
            background-size: 20px 20px;
            opacity: 0.1;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #CAA23E;
        }

        .footer-description {
            color: #999;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #CAA23E;
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #CAA23E;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-link {
            margin-bottom: 15px;
        }

        .footer-text,.footer-link a {
            color: #999;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .footer-link a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 6px;
            background: #CAA23E;
            border-radius: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-link a:hover {
            color: #fff;
            padding-left: 20px;
        }

        .footer-link a:hover::before {
            opacity: 1;
        }
        
        .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: #CAA23E;
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #999;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        .contact-icon i{
            width:40px;
            height:40px;
            padding:12px;
        }

        .newsletter-form {
            position: relative;
            margin-top: 25px;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 120px 15px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #CAA23E;
            border-radius: 30px;
            color: #fff;
        }

        .newsletter-input::placeholder {
            color: #999;
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            padding: 10px 25px;
            background: #CAA23E;
            border: none;
            border-radius: 25px;
            color: #1a1a1a;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: transparent;
			color:white;
			border:2px solid #CAA23E;
            transform: translateX(-3px);
        }

        .footer-bottom {
            padding: 25px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: #999;
        }

        .footer-bottom a {
            color: #CAA23E;
            text-decoration: none;
        }

        @media (max-width: 991px) {
            .footer-widget {
                margin-bottom: 40px;
            }
        }
        textarea{
            resize:none;
        }
        
        
        pre {
            background: transparent;
            line-height: 1.8;
            overflow-x: auto; /* Horizontal scrolling for long content */
            white-space: pre-wrap; /* Wrap text while preserving formatting */
            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;       /* Internet Explorer 5.5+ */
        } 
        
        @media (max-width:768px){
            .section-padding{
                padding-top:150px;
            }
            .stats-container {
                
                grid-template-columns: repeat(1, 1fr);
               
            }
        }
        
/* 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;
  }
}

.cta{
    height: auto;
    padding:20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn-primary{
    background-color:var(--primary);
    color:white;
}
.btn-primary:hover{
    background-color:var(--secondary);
    color:white;
}