.section-title {
    font-size: 1.85rem;
}/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #7F9790;       /* sage green from logo */
--primary-dark: #6B7C77;        /* medium gray-green from logo */
--secondary-color: #8CA39B;     /* lighter sage */
--accent-color: #1F2D2A;        /* dark charcoal from logo */

--bg-dark: #7F9790;             /* sage green background */
--bg-darker: #6F847D;           /* slightly darker sage */
--bg-card: #8CA39B;             /* lighter sage for cards */

--text-primary: #E8EBE9;        /* light gray-white like logo text */
--text-secondary: #CBD3D0;      /* slightly darker light gray */

--border-color: #5B6C67;

--gradient-1: linear-gradient(135deg, #1F2D2A 0%, #2A3836 100%);
--gradient-2: linear-gradient(135deg, #6B7C77 0%, #5B6C67 100%);
--gradient-glow: radial-gradient(circle at center, rgba(127, 151, 144, 0.3) 0%, transparent 70%);
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: var(--bg-dark);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 20, 19, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-color);
z-index: 1000;
padding: 1rem 0;
transition: all 0.3s ease;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-brand {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-icon {
height: 45px;
width: 45px;      /* Ensures a square box */
border-radius: 50%;
object-fit: cover; /* Makes it crop cleanly into a circle */
transition: opacity 0.3s ease;
}

.logo-icon:hover {
opacity: 0.8;
}

.logo-text {
font-size: 1.25rem;
font-weight: 700;
font-family: 'Inter', sans-serif;
letter-spacing: 4px;
color: var(--text-primary);
}

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

.nav-link {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
font-size: 0.95rem;
}

.nav-link:hover {
color: var(--accent-color);
}

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

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

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--text-primary);
transition: all 0.3s ease;
}

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

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
z-index: 0;
}

.lotus-watermark {
position: absolute;
width: 600px;
height: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0.12;
pointer-events: none;
}

@keyframes floatRotate {
0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}
50% {
    transform: translate(-50%, -52%) rotate(5deg) scale(1.05);
}
}

.hero-content {
text-align: center;
max-width: 800px;
z-index: 1;
}

.hero-title {
font-family: 'Inter', sans-serif;
font-size: 4.5rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
letter-spacing: 4px;
color: var(--text-primary);
opacity: 1;
}

.hero-subtitle {
font-size: 1.5rem;
color: var(--text-primary);
opacity: 1;
margin-bottom: 1rem;
font-weight: 400;
}

.hero-description {
font-size: 1.1rem;
color: var(--text-primary);
opacity: 1;
margin-bottom: 2.5rem;
}

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

.btn {
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.4s ease;
display: inline-block;
border: none;
cursor: pointer;
font-size: 1rem;
position: relative;
overflow: hidden;
}

.btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
width: 300px;
height: 300px;
}

.btn-primary {
background: var(--accent-color);
color: var(--text-primary);
box-shadow: 0 4px 20px rgba(31, 45, 42, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 40px rgba(31, 45, 42, 0.5);
}

.btn-secondary {
background: transparent;
color: var(--accent-color);
border: 2px solid var(--accent-color);
box-shadow: 0 4px 20px rgba(31, 45, 42, 0.2);
}

.btn-secondary:hover {
background: rgba(31, 45, 42, 0.1);
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(31, 45, 42, 0.3);
}

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

.mouse {
width: 24px;
height: 40px;
border: 2px solid var(--accent-color);
border-radius: 15px;
position: relative;
}

.mouse::before {
content: '';
width: 4px;
height: 8px;
background: var(--accent-color);
border-radius: 2px;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
animation: scroll 2s infinite;
}

/* Section Dividers */
.section-divider {
width: 100%;
height: 30px;
display: flex;
align-items: center;
overflow: hidden;
}

.section-divider svg {
width: 100%;
height: 100%;
color: var(--accent-color);
opacity: 0.3;
}

/* Sections */
section {
padding: 5rem 0;
position: relative;
}

.section-title {
font-family: 'Inter', sans-serif;
font-size: 3rem;
font-weight: 700;
text-align: center;
margin-bottom: 1rem;
color: var(--text-primary);
position: relative;
display: inline-block;
left: 50%;
transform: translateX(-50%);
letter-spacing: 3px;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--accent-color);
border-radius: 2px;
}

.section-subtitle {
text-align: center;
color: var(--text-secondary);
font-size: 1.1rem;
margin-bottom: 4rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Services Section */
.services {
background: var(--bg-darker);
}

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

.service-card {
background: var(--bg-card);
padding: 2.5rem;
border-radius: 16px;
border: 1px solid var(--border-color);
transition: all 0.4s ease;
text-align: center;
position: relative;
overflow: hidden;
}

.card-accent {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: var(--accent-color);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.service-card:hover .card-accent {
transform: scaleX(1);
}

.service-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: var(--gradient-glow);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}

.service-card:hover::before {
opacity: 1;
}

.service-card:hover {
transform: translateY(-8px);
border-color: var(--accent-color);
box-shadow: 0 15px 40px rgba(31, 45, 42, 0.25);
}

.service-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
display: inline-block;
}

.service-card h3 {
font-family: 'Inter', sans-serif;
font-size: 1.75rem;
margin-bottom: 1rem;
color: var(--text-primary);
font-weight: 600;
}

.service-card p {
color: var(--text-secondary);
line-height: 1.8;
}

/* About Section */
.about {
background: var(--bg-dark);
}

.about-content {
max-width: 900px;
margin: 0 auto;
}

.about-description {
color: var(--text-secondary);
text-align: center;
font-size: 1.15rem;
margin-bottom: 1.5rem;
line-height: 1.9;
}

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

.stat-item {
text-align: center;
padding: 2.5rem;
background: var(--bg-card);
border-radius: 16px;
border: 1px solid var(--border-color);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.stat-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: var(--accent-color);
transform: scaleX(0);
transition: transform 0.4s ease;
}

.stat-item:hover::before {
transform: scaleX(1);
}

.stat-item:hover {
transform: translateY(-5px);
border-color: var(--accent-color);
box-shadow: 0 10px 30px rgba(31, 45, 42, 0.2);
}

.stat-number {
font-family: 'Inter', sans-serif;
font-size: 3.5rem;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 0.5rem;
}

.stat-label {
color: var(--text-secondary);
font-size: 1.05rem;
}

/* Portfolio Section */
.portfolio {
background: var(--bg-darker);
}

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

.portfolio-item {
background: var(--bg-card);
border-radius: 16px;
overflow: hidden;
border: 1px solid var(--border-color);
transition: all 0.4s ease;
}

.portfolio-item:hover {
transform: translateY(-10px);
border-color: var(--accent-color);
box-shadow: 0 20px 50px rgba(31, 45, 42, 0.3);
}

.portfolio-image {
width: 100%;
height: 250px;
background: var(--accent-color);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

.portfolio-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
transform: translateX(-100%);
transition: transform 0.6s;
}

.portfolio-item:hover .portfolio-image::before {
transform: translateX(100%);
}

.portfolio-placeholder {
color: var(--text-primary);
font-family: 'Inter', sans-serif;
font-size: 2rem;
font-weight: 600;
z-index: 1;
}

.portfolio-info {
padding: 2rem;
}

.portfolio-info h3 {
font-family: 'Inter', sans-serif;
font-size: 1.75rem;
margin-bottom: 0.75rem;
color: var(--text-primary);
font-weight: 600;
}

.portfolio-info p {
color: var(--text-secondary);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.portfolio-tags {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}

.tag {
padding: 0.4rem 1rem;
background: rgba(31, 45, 42, 0.15);
border: 1px solid var(--accent-color);
border-radius: 30px;
font-size: 0.875rem;
color: var(--accent-color);
transition: all 0.3s ease;
font-weight: 500;
}

.tag:hover {
background: rgba(31, 45, 42, 0.25);
transform: translateY(-2px);
}

.service-icon svg,
.contact-icon svg {
    width: 40px;   
    height: 40px;
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
background: var(--bg-dark);
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
max-width: 1000px;
margin: 0 auto;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 2.5rem;
}

.contact-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
padding: 2rem;
background: var(--bg-card);
border-radius: 12px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}

.contact-item:hover {
border-color: var(--accent-color);
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(31, 45, 42, 0.2);
}

.contact-icon {
font-size: 2rem;
flex-shrink: 0;
}

.contact-item h3 {
font-family: 'Inter', sans-serif;
font-size: 1.4rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
font-weight: 600;
}

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

.contact-item {
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    cursor: pointer;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.form-group label {
color: var(--text-primary);
font-weight: 500;
font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
padding: 1rem;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 10px;
color: var(--text-primary);
font-family: inherit;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
box-shadow: 0 0 0 4px rgba(31, 45, 42, 0.15);
background: rgba(140, 163, 155, 0.8);
}

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

/* Footer */
.footer {
background: var(--bg-darker);
border-top: 1px solid var(--border-color);
padding: 4rem 0 2rem;
}

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-bottom: 3rem;
}

.footer-brand {
display: flex;
flex-direction: column;
gap: 1rem;
}

.footer-logo {
width: 100px;
height: auto;
margin-bottom: 1rem;
}

.footer-brand h3 {
font-family: 'Inter', sans-serif;
font-size: 1.75rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
letter-spacing: 2px;
}

.footer-brand p {
color: var(--text-secondary);
}

.footer-links h4 {
font-family: 'Inter', sans-serif;
margin-bottom: 1.5rem;
color: var(--text-primary);
font-size: 1.3rem;
font-weight: 600;
}

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

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

.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: all 0.3s ease;
position: relative;
padding-left: 0;
}

.footer-links a::before {
content: '→';
position: absolute;
left: -20px;
opacity: 0;
transition: all 0.3s ease;
color: var(--accent-color);
}

.footer-links a:hover {
color: var(--primary-color);
padding-left: 20px;
}

.footer-links a:hover::before {
opacity: 1;
left: 0;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
color: var(--text-secondary);
font-size: 0.95rem;
}

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

@keyframes scroll {
0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
100% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(26, 35, 33, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.nav-menu.active {
    left: 0;
}

.hamburger {
    display: flex;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-title {
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
}

.section-title {
    font-size: 2.25rem;
}

.lotus-watermark {
    width: 400px;
    height: 400px;
}

.services-grid {
    grid-template-columns: 1fr;
}

.portfolio-grid {
    grid-template-columns: 1fr;
}

.contact-content {
    grid-template-columns: 1fr;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-stats {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero-title {
    font-size: 2.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
}

.hero-buttons {
    flex-direction: column;
    width: 100%;
}

.btn {
    width: 100%;
    text-align: center;
}

.logo-text {
    font-size: 1rem;
}

.logo-icon {
    height: 36px;
}

.lotus-watermark {
    width: 300px;
}
}