/* Akash Construction - Professional Design System (HEX Version) */


:root {
    --primary-orange: #272118;        /* hsl(25, 95%, 53%) */
    --primary-orange-light: #343434;  /* hsl(25, 95%, 65%) */
    --primary-orange-dark: #000000;   /* hsl(25, 95%, 45%) */
    --deep-blue: #001a66;             /* hsl(220, 100%, 20%) */
    --deep-blue-light: #0047b3;       /* hsl(220, 100%, 35%) */
    --accent-gold: #d7b56d;           /* hsl(45, 100%, 60%) */
    --text-dark: #262626;             /* hsl(0, 0%, 15%) */
    --text-light: #f2f2f2;            /* hsl(0, 0%, 95%) */
    --background-light: #fafafa;      /* hsl(0, 0%, 98%) */
    --background-dark: #121926;       /* hsl(220, 15%, 8%) */
    --border-light: #d9d9d9;          /* hsl(0, 0%, 85%) */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
}
/* Hero Banner Styles */
        .hero-banner {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero-banner:first-of-type {
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.7);
            transition: transform 0.3s ease;
        }

        .hero-banner:hover .hero-bg {
            transform: scale(1.02);
        }

        .hero-banner::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(135deg, rgb(31 17 0 / 40%) 0%, rgb(0 0 0 / 60%) 100%);
			z-index: 1;
		}

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-light);
            width: 100%;
        }

        .hero-text h1, .hero-text h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px var(--shadow-heavy);
        }

        .pricing {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 30px auto;
            max-width: 600px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 15px;
            text-shadow: 1px 1px 4px var(--shadow-medium);
        }

        .pricing .features {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .pricing .location {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }

        .scroll-arrow {
            display: inline-block;
            color: var(--text-light);
            font-size: 2rem;
            text-decoration: none;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
        }

        .scroll-arrow:hover {
            color: var(--accent-gold);
            transform: translateX(-50%) scale(1.1);
        }

        /* Project Overview Styles */
        .project-overview {
            padding: 100px 0;
            background: var(--background-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h3 {
            font-size: 1.2rem;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--deep-blue);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .overview-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 40px;
        }

        .project-highlights {
            margin-bottom: 40px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 140, 0, 0.05);
            border-radius: 15px;
            border-left: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow-light);
            background: rgba(255, 140, 0, 0.1);
        }

        .highlight-item i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-top: 5px;
            min-width: 24px;
        }

        .highlight-item p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
        }

        .view-all-btn {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
            background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
        }

        .project-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 40px var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .project-image:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px var(--shadow-heavy);
        }

        /* Connectivity Section */
        .connectivity-section {
            padding: 100px 0;
            background: #000;
            color: var(--text-light);
        }

        .connectivity-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .connectivity-header h3 {
            color: var(--accent-gold);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .connectivity-header h2 {
            color: var(--text-light);
            font-size: 2.5rem;
            font-weight: 700;
        }

        .connectivity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .connectivity-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .connectivity-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .connectivity-item .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .connectivity-item:hover .icon {
            transform: rotate(360deg) scale(1.1);
        }

        .connectivity-item .icon i {
            font-size: 2rem;
            color: white;
        }

        .connectivity-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .connectivity-item p {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Education Section */
        .education-section {
            padding: 100px 0;
            background: var(--background-light);
        }

        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .education-item {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-orange);
        }

        .education-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--shadow-medium);
        }

        .education-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .education-item:hover .education-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .education-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .education-item h4 {
            font-size: 1.3rem;
            color: #000;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .education-item p {
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Amenities Section */
        .amenities-section {
            padding: 100px 0;
            background: #000;
            color: var(--text-light);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .amenity-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .amenity-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .amenity-item i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .amenity-item:hover i {
            transform: scale(1.2);
            color: var(--primary-orange-light);
        }

        .amenity-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Footer Styles */
        .footer {
            background: var(--background-dark);
            color: var(--text-light);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-logo {
            height: 60px;
            width: auto;
        }

        .footer-brand h3 {
            color: var(--primary-orange);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
        }

        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary-orange);
            padding-left: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-item i {
            color: var(--primary-orange);
            font-size: 1.1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

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

        .social-links a:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
        }

        /* Animation Classes */
        .fade-in-up {
            animation: fadeInUp 1s ease-out;
        }

        .fade-in-left {
            animation: fadeInLeft 1s ease-out;
        }

        .fade-in-right {
            animation: fadeInRight 1s ease-out;
        }

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Gallery Section Styles */
        .gallery-section {
            padding: 0px 0px 100px 0px;
            background: var(--background-light);
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: var(--primary-orange);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-btn:hover {
            background: var(--primary-orange-dark);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary-orange-dark), var(--accent-gold));
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
        }

        .masonry-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 10px;
            grid-gap: 25px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow-light);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .gallery-item:not(.hidden) {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .gallery-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .gallery-info {
            text-align: center;
            color: var(--text-light);
            padding: 20px;
        }

        .gallery-info h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .gallery-info p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .gallery-zoom {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--primary-orange);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-zoom:hover {
            background: var(--accent-gold);
            transform: scale(1.1);
        }

        .gallery-load-more {
            text-align: center;
        }

        .load-more-btn {
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
            background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
        }

        /* Lightbox Modal Styles */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .lightbox-modal.active {
            display: flex;
        }

        .lightbox-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -30px;
            right: -30px;
            background: var(--primary-orange);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: var(--accent-gold);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .lightbox-prev,
        .lightbox-next {
            background: var(--primary-orange);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: var(--accent-gold);
            transform: scale(1.1);
        }

        .lightbox-prev {
            margin-left: -80px;
        }

        .lightbox-next {
            margin-right: -80px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
            }
            
            .contact-info {
                display: none;
            }
            
            .hero-text h1, .hero-text h2 {
                font-size: 2.5rem;
            }
            
            .pricing {
                padding: 20px;
            }
            
            .pricing .price {
                font-size: 1.5rem;
            }
            
            .overview-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .connectivity-grid,
            .education-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .gallery-filters {
                justify-content: center;
                gap: 10px;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 0.8rem;
            }
            
            .masonry-gallery {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                grid-gap: 15px;
            }
            
            .gallery-info h4 {
                font-size: 1.1rem;
            }
            
            .gallery-info p {
                font-size: 0.9rem;
            }
            
            .lightbox-prev {
                margin-left: -40px;
            }
            
            .lightbox-next {
                margin-right: -40px;
            }
            
            .lightbox-close {
                top: -40px;
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1, .hero-text h2 {
                font-size: 2rem;
            }
            
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .masonry-gallery {
                grid-template-columns: 1fr;
                grid-gap: 20px;
            }
            
            .gallery-filters {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .filter-btn {
                width: 200px;
                text-align: center;
            }
            
            .lightbox-prev,
            .lightbox-next {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .lightbox-prev {
                margin-left: -25px;
            }
            
            .lightbox-next {
                margin-right: -25px;
            }
        }

        /* Mobile Menu Styles */
        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 20px var(--shadow-light);
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .nav-menu.mobile-active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .nav-menu a {
                display: block;
                padding: 15px 30px;
                border-bottom: 1px solid rgba(255, 140, 0, 0.1);
            }
            
            .header.scrolled {
                background: rgba(255, 255, 255, 0.98);
            }
        }
        
        .animate-in.fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .animate-in.fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
        }
        
        .animate-in.fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
        }