/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');


:root {
--primary-color: #2c5f5d;
--secondary-color: #3d7673;
--accent-color: #4a8b87;
--light-teal: #e6f3f2;
--dark-teal: #1e4b49;
--text-dark: #2c3e50;
--text-light: #ffffff;
--border-color: #d1d5db;
--font-primary: 'Raleway', sans-serif;
}

body {
font-family: var(--font-primary);
margin: 0;
padding: 0;
line-height: 1.6;
color: var(--text-dark);
}

.header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 1rem 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
text-decoration: none;
color: var(--text-light);
font-size: 1.5rem;
font-weight: 700;
gap: 0.5rem;
}

.logo-icon {
width: 40px;
height: 40px;
background: var(--accent-color);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.logo-icon::before,
.logo-icon::after {
content: '';
position: absolute;
border: 2px solid white;
}

.logo-icon::before {
width: 20px;
height: 20px;
transform: rotate(45deg);
}

.logo-icon::after {
width: 12px;
height: 12px;
transform: rotate(45deg);
}

.nav-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
flex-wrap: wrap;
align-items: center;
}

.nav-menu li {
white-space: nowrap;
}

.nav-menu a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
padding: 0.5rem 0.8rem;
border-radius: 4px;
transition: all 0.3s ease;
}

.nav-menu a:hover {
color: var(--accent-color);
background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
display: none;
background: none;
border: none;
color: var(--text-light);
font-size: 1.5rem;
cursor: pointer;
}

.hero {
background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
color: var(--text-light);
padding: 120px 2rem 80px;
text-align: center;
min-height: 55vh;
display: flex;
align-items: center;
justify-content: center;
}

.hero-content {
max-width: 800px;
}

.hero h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.cta-button {
display: inline-block;
background: var(--accent-color);
color: var(--text-light);
padding: 1rem 2rem;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(74, 139, 135, 0.3);
}

.cta-button:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(74, 139, 135, 0.4);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.services {
padding: 80px 0;
background: var(--light-teal);
}

.section-title {
text-align: center;
margin-bottom: 3rem;
}

.section-title h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.section-title p {
font-size: 1.1rem;
color: var(--text-dark);
opacity: 0.8;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1rem;
}

.service-image {
width: 100%;
height: 200px;
margin-bottom: 1.5rem;
border-radius: 8px;
overflow: hidden;
}

.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
transform: scale(1.05);
}

.service-detail {
padding: 80px 0;
background: white;
}

.service-detail.alt-bg {
background: var(--light-teal);
}

.detail-header {
text-align: center;
margin-bottom: 3rem;
}

.detail-header h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.detail-header h2 i {
color: var(--accent-color);
margin-right: 0.5rem;
}

.detail-header p {
font-size: 1.2rem;
color: var(--text-dark);
opacity: 0.8;
}

.detail-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
}

.detail-text h3 {
color: var(--primary-color);
margin-bottom: 1rem;
margin-top: 2rem;
}

.detail-text h3:first-child {
margin-top: 0;
}

.tech-list, .benefits-list {
margin-bottom: 2rem;
}

.tech-list li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--border-color);
}

.benefits-list li {
display: flex;
align-items: center;
padding: 0.5rem 0;
}

.benefits-list i {
color: var(--accent-color);
margin-right: 0.5rem;
}

.detail-features h3 {
color: var(--primary-color);
margin-bottom: 1.5rem;
text-align: center;
}

.feature-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
margin-bottom: 1rem;
box-shadow: 0 2px 10px rgba(44, 95, 93, 0.1);
border-left: 4px solid var(--accent-color);
}

.service-detail.alt-bg .feature-card {
background: #ffffff;
box-shadow: 0 2px 10px rgba(243, 243, 243, 0.05);
}

.feature-card h4 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.feature-card p {
color: var(--text-dark);
opacity: 0.8;
margin: 0;
}
.service-card {
background: white;
padding: 1.5rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 15px rgba(44, 95, 93, 0.1);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(44, 95, 93, 0.2);
}

.service-card i {
font-size: 3rem;
color: var(--primary-color);
}

.service-card h3 {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.service-card p {
margin-bottom: 1.5rem;
color: var(--text-dark);
opacity: 0.8;
}

.learn-more {
color: var(--accent-color);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.learn-more:hover {
color: var(--primary-color);
}

.about {
padding: 80px 0;
background: white;
}

.about-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 3rem;
align-items: center;
}

.about-text h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.about-text p {
margin-bottom: 1rem;
color: var(--text-dark);
opacity: 0.8;
}

.about-image {
text-align: center;
}

.about-image i {
font-size: 8rem;
color: var(--accent-color);
opacity: 0.7;
}

.contact {
padding: 100px 0;
background: var(--light-teal);
}

.contact-form {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 3rem;
border-radius: 16px;
box-shadow: 0 15px 40px rgba(44, 95, 93, 0.1);
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.form-group {
margin-bottom: 1.5rem;
position: relative;
}

.form-group label {
display: block;
margin-bottom: 0.8rem;
color: var(--primary-color);
font-weight: 600;
font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 15px 16px;
border: 2px solid var(--border-color);
border-radius: 10px;
font-family: var(--font-primary);
font-size: 1rem;
transition: all 0.3s ease;
background-color: #fafafa;
box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: var(--accent-color);
box-shadow: 0 0 0 4px rgba(74, 139, 135, 0.15);
background-color: white;
transform: translateY(-1px);
}

.submit-btn {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--text-light);
padding: 1.2rem 3rem;
border: none;
border-radius: 10px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
margin-top: 1rem;
box-shadow: 0 8px 25px rgba(44, 95, 93, 0.2);
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(44, 95, 93, 0.3);
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.footer {
background: var(--dark-teal);
color: var(--text-light);
padding: 3rem 0 1rem;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-section h3 {
color: var(--accent-color);
margin-bottom: 1rem;
}

.footer-section a {
color: var(--text-light);
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
opacity: 0.8;
transition: opacity 0.3s ease;
}

.footer-section a:hover {
opacity: 1;
color: var(--accent-color);
}

.footer-bottom {
border-top: 1px solid var(--secondary-color);
padding-top: 1rem;
text-align: center;
opacity: 0.8;
}

@media (max-width: 1200px) {
.nav-menu {
    gap: 1rem;
}

.nav-menu a {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
}
}

@media (max-width: 768px) {
.nav-menu {
    display: none;
}

.mobile-menu-toggle {
    display: block;
}

.hero h1 {
    font-size: 2.5rem;
}

.about-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.about-image i {
    font-size: 4rem;
}

.detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-image {
    height: 150px;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
}
}

/* Notification Styles */
.notification {
position: fixed;
top: 20px;
right: 20px;
background: white;
border-radius: 10px;
padding: 1rem 1.5rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
gap: 0.8rem;
z-index: 10000;
transform: translateX(400px);
opacity: 0;
transition: all 0.3s ease;
max-width: 400px;
border-left: 4px solid;
}

.notification.success {
border-left-color: #27ae60;
color: #27ae60;
}

.notification.error {
border-left-color: #e74c3c;
color: #e74c3c;
}

.notification.show {
transform: translateX(0);
opacity: 1;
}

.notification i {
font-size: 1.2rem;
}

.notification span {
font-weight: 500;
color: var(--text-dark);
}
