- {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
}

/* Navigation */
.navbar {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
display: flex;
align-items: center;
gap: 1rem;
}

.logo img {
width: 60px;
height: 60px;
filter: brightness(1.2);
}

.logo h1 {
color: #fff;
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 2px;
}

.logo p {
color: #b8b8d1;
font-size: 0.75rem;
letter-spacing: 3px;
margin-top: -5px;
}

.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}

.nav-links a {
color: #fff;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

.nav-links a:hover {
color: #ffd700;
}

.cta-button {
background: #ffd700;
color: #000 !important;
padding: 0.7rem 1.5rem;
border-radius: 5px;
font-weight: 600;
}

.cta-button:hover {
background: #ffed4e;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
padding: 8rem 5%;
text-align: center;
color: #fff;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 700;
}

.hero-subtitle {
font-size: 1.5rem;
color: #ffd700;
margin-bottom: 1.5rem;
font-weight: 600;
}

.hero-description {
font-size: 1.1rem;
max-width: 900px;
margin: 0 auto 2.5rem;
line-height: 1.8;
color: #e0e0e0;
}

.hero-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.primary-btn {
background: #ffd700;
color: #000 !important;
padding: 1rem 2.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
background: #ffed4e;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.secondary-btn {
background: transparent;
color: #000 !important;
padding: 1rem 2.5rem;
border: 3px solid #ffd700;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s;
background: #ffd700;
}

.secondary-btn:hover {
background: #ffed4e;
border-color: #ffed4e;
transform: translateY(-3px);
}

/* Stats Section */
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding: 4rem 5%;
background: #f8f9fa;
}

.stat-item {
text-align: center;
padding: 2rem;
}

.stat-item h2 {
font-size: 4rem;
color: #16213e;
margin-bottom: 0.5rem;
}

.stat-item p {
font-size: 1.2rem;
color: #666;
font-weight: 600;
}

/* About Section */
.about {
padding: 6rem 5%;
max-width: 1200px;
margin: 0 auto;
}

.about h2 {
font-size: 2.5rem;
color: #16213e;
margin-bottom: 2rem;
text-align: center;
}

.section-intro {
font-size: 1.2rem;
color: #555;
text-align: center;
margin-bottom: 2rem;
line-height: 1.8;
}

.expertise-tags {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
margin: 2rem 0;
}

.tag {
background: #16213e;
color: #fff;
padding: 0.5rem 1.5rem;
border-radius: 25px;
font-weight: 600;
}

.about-text {
font-size: 1.1rem;
color: #444;
line-height: 1.8;
margin-top: 2rem;
}

/* Services Section */
.services {
padding: 6rem 5%;
background: #f8f9fa;
}

.services h2 {
font-size: 2.5rem;
color: #16213e;
margin-bottom: 3rem;
text-align: center;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 0 auto;
}

.service-card {
background: #fff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
color: #16213e;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.service-card p {
color: #666;
margin-bottom: 1rem;
line-height: 1.6;
}

.service-card ul {
list-style: none;
padding-left: 0;
}

.service-card ul li {
color: #555;
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
}

.service-card ul li::before {
content: “✓”;
color: #ffd700;
font-weight: bold;
position: absolute;
left: 0;
}

/* Portfolio Section */
.portfolio {
padding: 6rem 5%;
}

.portfolio h2 {
font-size: 2.5rem;
color: #16213e;
margin-bottom: 1rem;
text-align: center;
}

.portfolio-filters {
display: flex;
gap: 1rem;
justify-content: center;
margin: 3rem 0;
flex-wrap: wrap;
}

.filter-btn {
background: transparent;
border: 2px solid #16213e;
color: #16213e;
padding: 0.7rem 1.5rem;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
background: #16213e;
color: #fff;
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 0 auto;
}

.portfolio-item {
position: relative;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
cursor: pointer;
}

.portfolio-item img {
width: 100%;
height: 400px;
object-fit: cover;
transition: transform 0.5s;
}

.portfolio-item:hover img {
transform: scale(1.1);
}

.portfolio-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
color: #fff;
padding: 2rem;
transform: translateY(70%);
transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
transform: translateY(0);
}

.portfolio-overlay h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.portfolio-overlay p {
font-size: 0.95rem;
margin-bottom: 1rem;
line-height: 1.6;
}

.project-tags {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

.project-tags span {
background: #ffd700;
color: #000;
padding: 0.3rem 0.8rem;
border-radius: 15px;
font-size: 0.85rem;
font-weight: 600;
}

/* Quote Section */
.quote-section {
padding: 6rem 5%;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: #fff;
}

.quote-section h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
text-align: center;
}

.quote-section > p {
text-align: center;
font-size: 1.2rem;
margin-bottom: 3rem;
color: #b8b8d1;
}

.quote-form {
max-width: 800px;
margin: 0 auto;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
padding: 1rem;
border: 2px solid #2c5364;
border-radius: 8px;
font-size: 1rem;
background: rgba(255,255,255,0.1);
color: #fff;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
color: #b8b8d1;
}

.quote-form select {
color: #fff;
}

.quote-form select option {
background: #16213e;
color: #fff;
}

.quote-form textarea {
width: 100%;
resize: vertical;
}

.submit-btn {
background: #ffd700;
color: #000 !important;
border: none;
padding: 1rem 3rem;
font-size: 1.1rem;
font-weight: 700;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s;
width: 100%;
margin-top: 1rem;
}

.submit-btn:hover {
background: #ffed4e;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Contact Section */
.contact {
padding: 6rem 5%;
background: #f8f9fa;
}

.contact h2 {
font-size: 2.5rem;
color: #16213e;
margin-bottom: 3rem;
text-align: center;
}

.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.contact-item {
text-align: center;
padding: 2rem;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item h3 {
color: #16213e;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.contact-item p {
font-size: 1.1rem;
color: #555;
}

.contact-item a {
color: #16213e;
text-decoration: none;
font-weight: 600;
}

.contact-item a:hover {
color: #ffd700;
}

/* Footer */
footer {
background: #1a1a2e;
color: #fff;
padding: 3rem 5% 1rem;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
flex-wrap: wrap;
gap: 2rem;
}

.footer-logo {
display: flex;
align-items: center;
gap: 1rem;
}

.footer-logo img {
width: 50px;
height: 50px;
filter: brightness(1.2);
}

.footer-links {
display: flex;
gap: 2rem;
flex-wrap: wrap;
}

.footer-links a {
color: #b8b8d1;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: #ffd700;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #2c5364;
color: #b8b8d1;
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}


.hero-content h1 {
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1rem;
}

.form-row {
    grid-template-columns: 1fr;
}

.portfolio-grid {
    grid-template-columns: 1fr;
}

.services-grid {
    grid-template-columns: 1fr;
}


}