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


/* Import Tailwind CSS */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');


/* CSS Variables for Design System */
:root {
/* Core brand colors from logo */
--brand-blue: #272118;
--brand-yellow: #d7b56d;
--brand-dark: #000000;
--brand-light: #f2f4f7;
/* Base colors */
--background: #ffffff;
--foreground: #000000;


/* Card colors */
--card: #ffffff;
--card-foreground: #000000;


/* Popover colors */
--popover: #ffffff;
--popover-foreground: #000000;


/* Primary - Brand Blue */
--primary: #272118;
--primary-foreground: #ffffff;


/* Secondary - Brand Yellow */
--secondary: #d7b56d;
--secondary-foreground: #000000;


/* Muted colors */
--muted: #f2f4f7;
--muted-foreground: #6b7280;


/* Accent - Light Blue */
--accent: #e6f4ff;
--accent-foreground: #302861;


--destructive: #e53935;
--destructive-foreground: #f9fafb;


--border: #e2e8f0;
--input: #e2e8f0;
--ring: #272118;


--radius: 0.75rem;
/* Custom gradients */
--gradient-primary: linear-gradient(135deg, #272118, #d7b56d);
--gradient-hero: linear-gradient(135deg, #272118e6, #000000cc);
--gradient-card: linear-gradient(145deg, #ffffff, #f2f4f74d);
/* Shadows */
--shadow-soft: 0 4px 20px #2721181a;
--shadow-medium: 0 10px 40px #27211826;
--shadow-strong: 0 20px 60px #00000033;
/* Animation variables */
--animation-duration: 0.6s;
--animation-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    border-color: var(--border);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.bg-background { background-color: var(--background); }
.bg-foreground { background-color: var(--foreground); }
.bg-card { background-color: var(--card); }
.bg-card-foreground { background-color: var(--card-foreground); }
.bg-popover { background-color: var(--popover); }
.bg-popover-foreground { background-color: var(--popover-foreground); }
.bg-primary { background-color: var(--primary); }
.bg-primary-foreground { background-color: var(--primary-foreground); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary-foreground { background-color: var(--secondary-foreground); }
.bg-muted { background-color: var(--muted); }
.bg-muted-foreground { background-color: var(--muted-foreground); }
.bg-accent { background-color: var(--accent); }
.bg-accent-foreground { background-color: var(--accent-foreground); }
.bg-destructive { background-color: var(--destructive); }
.bg-destructive-foreground { background-color: var(--destructive-foreground); }
.bg-border { background-color: var(--border); }
.bg-input { background-color: var(--input); }
.bg-ring { background-color: var(--ring); }

.text-background { color: var(--background); }
.text-foreground { color: var(--foreground); }
.text-card { color: var(--card); }
.text-card-foreground { color: var(--card-foreground); }
.text-popover { color: var(--popover); }
.text-popover-foreground { color: var(--popover-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary { color: var(--secondary); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-muted { color: var(--muted); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-destructive { color: var(--destructive); }
.text-destructive-foreground { color: var(--destructive-foreground); }
.text-border { color: var(--border); }
.text-input { color: var(--input); }
.text-ring { color: var(--ring); }

.border-border { border-color: var(--border); }
.border-input { border-color: var(--input); }
.border-ring { border-color: var(--ring); }
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }

/* Brand Colors */
.bg-brand-blue { background-color: var(--brand-blue); }
.bg-brand-yellow { background-color: var(--brand-yellow); }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-brand-light { background-color: var(--brand-light); }

.text-brand-blue { color: var(--brand-blue); }
.text-brand-yellow { color: var(--brand-yellow); }
.text-brand-dark { color: var(--brand-dark); }
.text-brand-light { color: var(--brand-light); }

/* Background Gradients */
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-card { background: var(--gradient-card); }

/* Shadows */
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }
.shadow-strong { box-shadow: var(--shadow-strong); }

/* Hero section styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: #d7b56d75;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp var(--animation-duration) var(--animation-ease);
}

.fade-in-left {
    animation: fadeInLeft var(--animation-duration) var(--animation-ease) 0.2s both;
}

.fade-in-right {
    animation: fadeInRight var(--animation-duration) var(--animation-ease) 0.4s both;
}

.scale-in {
    animation: scaleIn 0.8s var(--animation-ease);
}

/* Button variants */
.btn-hero {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero:hover {
    background-color: var(--secondary);
    filter: brightness(0.9);
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
    transform: scale(1.05);
}

/* Filter buttons */
.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
    cursor: pointer;
}

.filter-btn:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-medium);
}

/* Card styles */

.home-service .card-elevated {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    animation-delay: 0.2s;
}
.home-service .card-elevated h3 {
    text-align: center;
    font-size: 1.2rem;
}
.home-service .card-elevated p{
    text-align: center;
}
.card-elevated {
    background: var(--gradient-card);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.card-elevated:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

/* Section styles */
.section-padding {
    padding: 5rem 1rem;
}

.banner {
    background-image: url(img/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container-max {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-max {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-max {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Text gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive utilities */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.leading-relaxed { line-height: 1.625; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.w-1 { width: 0.25rem; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-48 { width: 12rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }

.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-25 { height: 6rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }

.object-cover { object-fit: cover; }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }

.transition-all { transition: all 0.15s ease-in-out; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
.transition-transform { transition: transform 0.15s ease-in-out; }

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.transform { transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }

.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:bg-white:hover { background-color: white; }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-white:hover { color: white; }
.hover\:text-secondary:hover { color: var(--secondary); }

.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring); }
.focus\:ring-primary:focus { box-shadow: 0 0 0 2px var(--primary); }
.focus\:border-transparent:focus { border-color: transparent; }

.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

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

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

.cursor-pointer { cursor: pointer; }

.resize-none { resize: none; }

.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.flex-col { flex-direction: column; }

.order-first { order: -9999; }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:bg-primary { background-color: var(--primary); }
.group:hover .group-hover\:bg-secondary { background-color: var(--secondary); }
.group:hover .group-hover\:text-primary { color: var(--primary); }
.group:hover .group-hover\:text-white { color: white; }
.group:hover .group-hover\:shadow-strong { box-shadow: var(--shadow-strong); }

/* Responsive breakpoints */
@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-2xl { font-size: 1.5rem; }
}

@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:order-last { order: 9999; }
    .md\:mt-0 { margin-top: 0; }
    .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

.pt-20 { padding-top: 5rem; }

.bg-muted\/30 { background-color: hsla(220, 15%, 95%, 0.3); }
.bg-muted\/50 { background-color: hsla(220, 15%, 95%, 0.5); }
.bg-white\/10 { background-color: hsla(0, 0%, 100%, 0.1); }
.bg-white\/20 { background-color: hsla(0, 0%, 100%, 0.2); }
.bg-background\/95 { background-color: hsla(0, 0%, 100%, 0.95); }
.bg-accent\/10 { background-color: hsla(204, 100%, 92%, 0.1); }
.bg-accent\/20 { background-color: hsla(204, 100%, 92%, 0.2); }
.bg-accent\/50 { background-color: hsla(204, 100%, 92%, 0.5); }

.text-white\/80 { color: hsla(0, 0%, 100%, 0.8); }
.text-white\/90 { color: hsla(0, 0%, 100%, 0.9); }

.border-white\/10 { border-color: hsla(0, 0%, 100%, 0.1); }
.border-white\/20 { border-color: hsla(0, 0%, 100%, 0.2); }
.border-border\/20 { border-color: hsla(220, 15%, 90%, 0.2); }

.from-primary\/10 { --tw-gradient-from: hsla(204, 100%, 38%, 0.1); }
.to-secondary\/10 { --tw-gradient-to: hsla(48, 100%, 60%, 0.1); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }

#projects-grid {
    display: flex !important;
    justify-content: center;
}

#projects-grid .card-elevated {
    width: 50% !important;
}

@media (max-width: 600px) {
	#projects-grid .card-elevated {
    width: 100% !important;
}
}