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

:root {
    /* Color Palette - Dark Green + Gold + White */
    --primary: #030972;        /* Dark Green */
    --primary-dark: #010854;   /* Deeper Dark Green */
    --gold: #fcc200;           /* Gold */
    --gold-dark: #fdb414;      /* Rich Gold */
    --background: #FFFFFF;     /* Pure White */
    --foreground: #000000;     /* Black Text */
    --muted: #CBCBCB;          /* Light Gray */
    --muted-foreground: #161616d2; /* Gray Text */
    --accent: 	#fcc200;         /* Gold Accent */
    --border: #DCE1E6;        /* Light Border */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #030972, #010854);
    --gradient-gold: linear-gradient(135deg, 	#fcc200, #fdb414);
    --gradient-accent: linear-gradient(135deg, 	#fcc200, #030972);
    
    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px #0309727D; /* 30% opacity of --primary */
    --shadow-gold: 0 0 40px 	#fcc20066; /* 40% opacity of --gold */
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

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

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

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

@keyframes rotateY {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

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

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Utility Classes */
.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: #FFFFFF1A; /* rgba(255, 255, 255, 0.1) */
    backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF33; /* rgba(255, 255, 255, 0.2) */
}

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFFA1; /* #ffffffa1 */
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: #FFFFFFF2; /* rgba(255, 255, 255, 0.95) */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #DCE1E6; /* var(--border) */
    box-shadow: 0 4px 20px #0000001A; /* rgba(0, 0, 0, 0.1) */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 70px; */
}

/* .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition-smooth);
} */

.logo img {
    width: 20%;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: 	#fcc200; /* var(--accent) */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elegant);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #030972CC, #010854B3);
    z-index: -1;
} */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ad;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #FFFFFF; /* white */
    padding: 0 2rem;
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.edge-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.edge-card {
    background: #FFFFFF1A; /* rgba(255, 255, 255, 0.1) */
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #FFFFFF33; /* rgba(255, 255, 255, 0.2) */
    transition: var(--transition-smooth);
}

.edge-card:hover {
    transform: translateY(-10px);
    background: #FFFFFF26; /* rgba(255, 255, 255, 0.15) */
}

.edge-card h3 {
    color: 	#fcc200; /* var(--gold) */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.edge-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-inner-page {
    background-image: url("https://img.freepik.com/free-photo/group-diverse-people-having-business-meeting_53876-25060.jpg");
    min-height: auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-inner-page-overlay {
    background: linear-gradient(135deg, #000000cc, #010854B3);
    padding: 160px 0px 90px 0px;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #030972; /* var(--primary) */
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px 	#fcc20099; /* hsl(var(--gold) / 0.6) */
}

.btn-outline {
    border: 2px solid #FFFFFF4D; /* rgba(255, 255, 255, 0.3) */
    color: #FFFFFF; /* white */
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    background: transparent;
}

.btn-outline:hover {
    background: #FFFFFF1A; /* rgba(255, 255, 255, 0.1) */
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #FFFFFF80; /* rgba(255, 255, 255, 0.5) */
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 12px;
    background: #FFFFFFB3; /* rgba(255, 255, 255, 0.7) */
    border-radius: 2px;
    animation: bounce 2s infinite;
}

/* USP Section */
.usp-section {
    padding: 5rem 0;
    background: #FFFFFF; /* var(--background) */
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usp-card {
    background: #FFFFFF; /* var(--background) */
    border: 2px solid #DCE1E6; /* var(--border) */
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    z-index: -1;
    opacity: 0.05;
}

.usp-card:hover::before {
    left: 0;
}

.usp-card:hover {
    transform: translateY(-10px);
    border-color: 	#fcc200; /* var(--accent) */
    box-shadow: var(--shadow-elegant);
}

.usp-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(1);
    transition: var(--transition-smooth);
}

.usp-card:hover .usp-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.usp-card h3 {
    color: #000000; /* var(--foreground) */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.usp-card p {
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    color: #161616d2; /* var(--muted-foreground) */
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FFFFFF; /* var(--background) */
    border-radius: 0.5rem;
    border-left: 4px solid 	#fcc200; /* var(--accent) */
    transition: var(--transition-smooth);
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-elegant);
}

.feature-number {
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #000000; /* var(--foreground) */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #161616d2; /* var(--muted-foreground) */
    font-size: 0.95rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.about-image img {
    width: 100%;
}

.about-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 2rem;
    margin-top: -10px;
    color: #FFFFFF;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: 	#fcc200; /* var(--gold) */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Masonry Gallery */
.gallery-section {
    padding: 5rem 0;
    background: #FFFFFF; /* var(--background) */
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
/*     grid-auto-rows: 200px; */
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #030972E6, transparent); /* hsla(var(--primary), 0.9), transparent */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #FFFFFF; /* white */
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: 	#fcc200; /* var(--gold) */
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Project Carousel */
.projects-section {
    padding: 5rem 0;
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #030972;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
/*     max-width: 1000px; */
    margin: 0 auto;
    overflow: hidden;
    
}

.carousel {
    display: flex;
    transition: transform 0.7s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 600px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #030972E6, #03097280, transparent); 
} */

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000, #00000069, transparent);
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    color: #FFFFFF; /* white */
}

.carousel-content .category {
    background: 	#fcc20033; /* hsla(var(--gold), 0.2) */
    color: 	#fcc200; /* var(--gold) */
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.carousel-content h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.carousel-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF1A; /* rgba(255, 255, 255, 0.1) */
    border: 1px solid #FFFFFF33; /* rgba(255, 255, 255, 0.2) */
    color: #FFFFFF; /* white */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: #FFFFFF33; /* rgba(255, 255, 255, 0.2) */
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #161616d24D; /* hsl(var(--muted-foreground) / 0.3) */
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: 	#fcc200; /* var(--accent) */
    transform: scale(1.25);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0309720D, 	#fcc2000D); /* hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05) */
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF80; /* hsla(var(--background), 0.5) */
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-elegant);
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #FFFFFF; /* white */
    font-size: 1.5rem;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: 	#fcc200; /* var(--accent) */
    font-size: 1.2rem;
}

.testimonial-content {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #000000; /* var(--foreground) */
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid 	#fcc2004D; /* hsl(var(--accent) / 0.3) */
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #161616d2; /* var(--muted-foreground) */
    font-size: 0.9rem;
}

/* Rotating Cube */
.rotating-cube-container {
    position: fixed;
    top: 90%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 100;
    perspective: 1000px;
}

.rotating-cube {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateY 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border: 2px solid 	#fcc200; /* var(--gold) */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF; /* white */
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    box-shadow: var(--shadow-elegant);
}

.cube-face.front { transform: rotateY(0deg) translateZ(60px); }
.cube-face.back { transform: rotateY(180deg) translateZ(60px); }
.cube-face.right { transform: rotateY(90deg) translateZ(60px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(60px); }
.cube-face.top { transform: rotateX(90deg) translateZ(60px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }

/* Footer */
.footer {
    background: #000329;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: 	#fcc200; /* var(--gold) */
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: 	#fcc200; /* var(--gold) */
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
	display: flex;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section p a{
    opacity: 0.8;
    line-height: 1.6;
	color: #fff;
	text-decoration: none;
}

.footer-section p img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #FFFFFFCC; /* rgba(255, 255, 255, 0.8) */
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: 	#fcc200; /* var(--gold) */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #FFFFFFCC; /* rgba(255, 255, 255, 0.8) */
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: 	#fcc200; /* var(--gold) */
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #FFFFFF33; /* rgba(255, 255, 255, 0.2) */
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* margin-bottom: 4rem; */
}

.story-image {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #161616d2; /* var(--muted-foreground) */
}

.story-content strong {
    color: #000000; /* var(--foreground) */
}

.highlight-quote {
    background: linear-gradient(135deg, 	#fcc2001A, #0309721A); /* hsl(var(--accent) / 0.1), hsl(var(--primary) / 0.1) */
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid 	#fcc20033; /* hsl(var(--accent) / 0.2) */
    margin: 2rem 0;
}

.highlight-quote p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000; /* var(--foreground) */
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #FFFFFF; /* white */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

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

.stat-icon {
    font-size: 3rem;
    color: 	#fcc200; /* var(--accent) */
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fff; /* var(--muted-foreground) */
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 0rem 0 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 2rem;
}

.value-card {
    background: #FFFFFF; /* white */
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

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

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
/*     max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: #FFFFFF; /* white */
    color: #030972; /* var(--primary) */
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-white:hover {
    background: #FFFFFFE6; /* rgba(255, 255, 255, 0.9) */
    transform: scale(1.05);
}

/* Services Grid */
.services-section {
    padding: 5rem 0;
}

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

.service-card {
    background: #FFFFFF; /* white */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px #0309724D; /* hsl(var(--primary) / 0.3) */
}

.service-image {
    width: 100%;
/*     height: 200px; */
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #FFFFFF; /* white */
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-description {
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #161616d2; /* var(--muted-foreground) */
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: 	#fcc200; /* var(--accent) */
    font-weight: bold;
}

.service-link {
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.service-link:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.process-step {
    background: #FFFFFF; /* white */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF; /* white */
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.6;
}

/* Filter Buttons */
.filter-section {
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #DCE1E6; /* var(--border) */
    background: #FFFFFF; /* white */
    color: #000000; /* var(--foreground) */
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: 	#fcc200; /* var(--accent) */
    background: 	#fcc200; /* var(--accent) */
    color: #FFFFFF; /* white */
    transform: translateY(-2px);
}

/* Masonry Gallery */
.projects-section {
    padding: 3rem 0 5rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    grid-auto-rows: 10px;
}

.project-card {
    background: #FFFFFF; /* white */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px #0309724D; /* hsl(var(--primary) / 0.3) */
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.project-content {
    padding: 1.5rem;
}

.project-category {
    background: 	#fcc2001A; /* hsl(var(--accent) / 0.1) */
    color: 	#fcc200; /* var(--accent) */
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #000000; /* var(--foreground) */
}

.project-description {
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-year {
    color: #161616d2; /* var(--muted-foreground) */
    font-size: 0.9rem;
    font-weight: 500;
}

/* Project cards with different heights for masonry effect */
.project-card.tall {
    grid-row-end: span 14;
}

.project-card.medium {
    grid-row-end: span 13;
}

.project-card.short {
    grid-row-end: span 12;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000CC; /* rgba(0, 0, 0, 0.8) */
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #FFFFFF; /* white */
    border-radius: 1rem;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-body {
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFFFFFE6; /* rgba(255, 255, 255, 0.9) */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Featured Article */
.featured-section {
    padding: 5rem 0;
}

.featured-article {
    background: #FFFFFF; /* white */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    margin-bottom: 5rem;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-content {
    padding: 3rem;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: 	#fcc2001A; /* hsl(var(--accent) / 0.1) */
    color: 	#fcc200; /* var(--accent) */
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date {
    color: #161616d2; /* var(--muted-foreground) */
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.2rem;
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.6;
    margin-bottom: 2rem;
}

.read-more-btn {
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.read-more-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Blog Grid */
.blog-section {
    padding: 3rem 0 5rem;
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #FFFFFF; /* white */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px #0309724D; /* hsl(var(--primary) / 0.3) */
}

.blog-image {
    width: 100%;
/*     height: 200px; */
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #161616d2; /* var(--muted-foreground) */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: 	#fcc200; /* var(--accent) */
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: #030972; /* var(--primary) */
}

/* Newsletter */
.newsletter-section {
    padding: 5rem 0;
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-btn {
    background: #FFFFFF; /* white */
    color: #030972; /* var(--primary) */
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: #FFFFFFE6; /* rgba(255, 255, 255, 0.9) */
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: #FFFFFF; /* white */
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-elegant);
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #161616d2; /* var(--muted-foreground) */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: 	#fcc2001A; /* hsl(var(--accent) / 0.1) */
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF; /* white */
    font-size: 1.2rem;
}

.contact-details h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #161616d2; /* var(--muted-foreground) */
    margin: 0;
}

.contact-details p a{
    color: #161616d2; /* var(--muted-foreground) */
	text-decoration: none;
    margin: 0;
}

/* Form */
.contact-form {
    background: #FFFFFF; /* white */
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-elegant);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000; /* var(--foreground) */
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #DCE1E6; /* var(--border) */
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: #FFFFFF; /* white */
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: 	#fcc200; /* var(--accent) */
    box-shadow: 0 0 0 3px 	#fcc2001A; /* hsl(var(--accent) / 0.1) */
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    background: var(--gradient-accent);
    color: #FFFFFF; /* white */
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-button:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background: #CBCBCB4D; /* hsl(var(--muted) / 0.3) */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-item:hover {
    background: 	#fcc2001A; /* hsl(var(--accent) / 0.1) */
    transform: translateY(-5px);
}

.service-item.selected {
    background: 	#fcc2001A; /* hsl(var(--accent) / 0.1) */
    border: 2px solid 	#fcc200; /* var(--accent) */
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.9rem;
    color: #161616d2; /* var(--muted-foreground) */
}