        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e67e22;
            --text-color: #333;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Noto Serif', serif;
            color: var(--text-color);
        }
        
        h1, h2, h3, h4, h5, h6 {
          font-family: 'Poppins', sans-serif;
        }

        pre {
            font-family:inherit;
            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; 
        }
        .text-custom{
            color: var(--secondary-color);
        }
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 1rem;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            height: 100%;
        }

        .hero-slide {
            height: 100vh;
            position: relative;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 6s ease;
        }

        .carousel-item.active .hero-slide img {
            transform: scale(1.2);
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease 0.2s forwards;
        }

        .hero-btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 50px;
            background: var(--secondary-color);
            color: #fff;
            border: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease 0.4s forwards;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
		/* About Section Styles */
		.about-section {
			background-color: #f8f9fa;
			overflow: hidden;
		}

		.about-img {
			padding: 20px;
		}

		.main-img {
			width: 100%;
			height: auto;
			transition: transform 0.5s ease;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		}

		.floating-img {
			position: absolute;
			width: 200px;
			bottom: 0;
			right: -30px;
			border: 10px solid white;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
			animation: float 3s ease-in-out infinite;
		}

		.experience-badge {
			position: absolute;
			top: 30px;
			left: 0;
			background: linear-gradient(45deg, #2c3e50, #3498db);
			color: white;
			padding: 20px;
			border-radius: 0 15px 15px 0;
			text-align: center;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
		}

		.experience-badge h2 {
			font-size: 2.5rem;
			font-weight: 700;
			color: #fff;
		}

		.subtitle {
			color: #3498db;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 2px;
			display: block;
			margin-bottom: 10px;
		}

		.section-title {
			font-size: 2.5rem;
			font-weight: 700;
			margin-bottom: 20px;
			color: #2c3e50;
		}

		.features-grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
			margin-top: 30px;
		}

		.feature-item {
			padding: 20px;
			background: white;
			border-radius: 10px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			transition: transform 0.3s ease;
		}

		.feature-item:hover {
			transform: translateY(-5px);
		}

		.feature-item i {
			font-size: 2rem;
			color: #3498db;
			margin-bottom: 15px;
		}

		.feature-item h4 {
			font-size: 1.2rem;
			font-weight: 600;
			margin-bottom: 10px;
			color: #2c3e50;
		}

		.feature-item p {
			color: #666;
			margin-bottom: 0;
		}

		.btn-primary {
			background: linear-gradient(45deg, #2c3e50, #3498db);
			border: none;
			padding: 12px 30px;
			border-radius: 50px;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}

		.btn-primary:hover {
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
		}

		@keyframes float {
			0%, 100% {
				transform: translateY(0);
			}
			50% {
				transform: translateY(-20px);
			}
		}

		/* Responsive Styles */
		@media (max-width: 991.98px) {
			.floating-img {
				width: 150px;
				right: 0;
			}
			
			.experience-badge {
				padding: 15px;
			}
			
			.experience-badge h2 {
				font-size: 2rem;
			}
			
			.section-title {
				font-size: 2rem;
			}
		}

		@media (max-width: 767.98px) {
			.features-grid {
				grid-template-columns: 1fr;
			}
			
			.floating-img {
				display: none;
			}
		}
		
/* Why Choose Us Section Styles */
.why-choose-us {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.subtitle {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lead {
    max-width: 600px;
    color: #666;
}

/* Achievement Cards */
.achievement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 2rem;
    color: white;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Features List */
.features-list {
    padding-right: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    border-radius: 50%;
    padding:20px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    margin-bottom: 0;
}

/* Image Grid */
.image-grid {
    position: relative;
    padding: 20px;
}

.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-image-1 {
    position: absolute;
    width: 200px;
    top: 0;
    right: 0;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-image-2 {
    position: absolute;
    width: 180px;
    bottom: 0;
    left: 0;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .features-list {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .floating-image-1,
    .floating-image-2 {
        width: 150px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .achievement-card {
        margin-bottom: 30px;
    }
    
    .floating-image-1,
    .floating-image-2 {
        display: none;
    }
}

/* Services Section Styles */
.services-section {
    background-color: #f8f9fa;
    overflow: hidden;
}

.subtitle {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lead {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.service-features li i {
    color: #3498db;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Service Link */
.service-link {
    color: #3498db;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #2c3e50;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}
/* Parallax Section */
.parallax-section {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6') center/cover no-repeat fixed;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.parallax-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Styles */
.stats-row {
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Particles */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .parallax-section {
        padding: 80px 0;
    }

    .parallax-title {
        font-size: 2.5rem;
    }

    .parallax-subtitle {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .parallax-title {
        font-size: 2rem;
    }

    .stat-item {
        padding: 20px;
    }
}

/* Projects Section Styles */
.projects-section {
    background-color: #f8f9fa;
}

.subtitle {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lead {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    background: white;
    color: #2c3e50;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: white;
    transform: translateY(-2px);
}

/* Project Cards */
.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-view-project {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-view-project:hover {
    background: white;
    color: #2c3e50;
}

.btn-view-project i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-view-project:hover i {
    transform: translateX(5px);
}

/* Project Modal */
.project-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.project-modal .modal-header {
    position: absolute;
    right: 0;
    z-index: 1;
}

.project-modal .btn-close {
    background-color: white;
    opacity: 1;
    padding: 10px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-slider img {
    border-radius: 10px;
    width: 100%;
}

.project-details {
    padding: 20px;
}

.project-details h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.project-category {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 20px;
}

.project-description {
    color: #666;
    margin-bottom: 20px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #666;
}

.meta-item i {
    color: #3498db;
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .project-image img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .filters {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Social Media Section Styles */
.social-media-section {
    background-color: #f8f9fa;
    overflow: hidden;
}

.subtitle {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lead {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Feed Grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Feed Items */
.feed-item {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feed-item:hover {
    transform: translateY(-10px);
}

.feed-content {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.feed-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feed-item:hover .feed-content img {
    transform: scale(1.1);
}

/* Overlay Styles */
.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

.feed-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.feed-icon {
    width: 40px;
    height: 40px;
    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;
}

.feed-icon:hover {
    background: white;
    color: #2c3e50;
    transform: scale(1.1);
}

.feed-stats {
    display: flex;
    gap: 20px;
    color: white;
}

.feed-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feed-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feed-item:hover .feed-play-button {
    background: white;
    color: #2c3e50;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.feed-caption {
    padding: 15px;
}

.feed-caption p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Follow Button */
.btn-follow {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-follow:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feed-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .feed-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .feed-icon {
        width: 35px;
        height: 35px;
    }
    
    .feed-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f8f9fa;
    overflow: hidden;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

/* Filter Buttons */
.gallery-filters .btn {
    border-radius: 30px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.gallery-filters .btn.active,
.gallery-filters .btn:hover {
    background-color: var(--bs-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Gallery Cards */
.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.1);
}

/* Overlay Styles */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.gallery-popup {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.gallery-popup:hover {
    color: var(--bs-primary);
    transform: scale(1.2);
}


.logo{
    height:40px;
    object-fit:cover;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}


.team-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    position: relative;
    padding-top: 125%; /* 4:5 Aspect Ratio */
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .social-icon {
    transform: translateY(0);
    opacity: 1;
}

.social-icon:hover {
    background: #007bff;
    color: white;
    transform: translateY(-5px);
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #636e72;
    font-size: 0.9rem;
}

/* Animation delays for social icons */
.social-icon:nth-child(1) { transition-delay: 0.1s; }
.social-icon:nth-child(2) { transition-delay: 0.2s; }
.social-icon:nth-child(3) { transition-delay: 0.3s; }
.social-icon:nth-child(4) { transition-delay: 0.4s; }
.social-icon:nth-child(5) { transition-delay: 0.5s; }

@media (max-width: 768px) {
    .section-header .title {
        font-size: 2rem;
    }
    
    .team-image {
        padding-top: 100%; /* 1:1 Aspect Ratio for mobile */
    }
}

/* Testimonial */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-card.active {
    background: #ff9800;
    color: white;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.active .quote-icon {
    color: rgba(255,255,255,0.2);
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rating {
    color: #ffd700;
}

.active .rating {
    color: white;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.client-position {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

/* Footer Section */
/* Footer Styles */
.footer-section {
    background: linear-gradient(45deg, var(--bs-dark), #2a2a2a);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
}

/* Logo */
.footer-logo img {
    height: 50px;
    object-fit: contain;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    height: 50px;
    padding-right: 50px;
    color: white;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-primary-light));
    border: none;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--bs-primary);
}

/* Contact Icons */
.footer-widget i.fas {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* CTA */
.cta-section {
  background: #e67e22;
  color: white;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease forwards;
}

.cta-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: white;
  color: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 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;
  }
}

.section-padding{
    padding-top:120px;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #2c3e50, #e67e22);
    margin: 0 auto 2rem;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2c3e50, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-box {
    transform: rotate(360deg);
}

.icon-box i {
    font-size: 24px;
    color: white;
}

.contact-card h4 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-floating > .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #2c3e50, #e67e22);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
textarea{
    resize:none;
}
.padding{
    padding-top:120px;
    padding-bottom:30px;
}
.navbar .dropdown-toggle::after {
    display: none !important;
}