<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #5e6266;
    --secondary-color: #f8f9fa;
    --accent-color: #007bff;
    --text-color: #333;
    --bs-font-sans-serif: 'Montserrat', sans-serif;
    --bs-body-font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* TÃ¼m baÅŸlÄ±klar iÃ§in Montserrat */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', sans-serif !important;
}

/* Form elemanlarÄ± iÃ§in Montserrat */
input, 
select, 
textarea, 
button,
.form-control,
.btn {
    font-family: 'Montserrat', sans-serif !important;
}

/* Navbar elemanlarÄ± iÃ§in Montserrat */
.navbar,
.nav-link,
.dropdown-item {
    font-family: 'Montserrat', sans-serif !important;
}

/* DiÄŸer Ã¶zel sÄ±nÄ±flar iÃ§in Montserrat */
.section-title,
.section-description,
.card-title,
.card-text,
.footer {
    font-family: 'Montserrat', sans-serif !important;
}

/* Navbar Styles */
.navbar {
    background-color: transparent;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar-scrolled .navbar-logo {
    height: 50px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.nav-item {
    position: relative;
    margin: 0 0.5rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.6rem 1rem !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.navbar-scrolled .nav-link {
    color: var(--primary-color) !important;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link i {
    font-size: 1rem;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.navbar-scrolled .nav-link:hover {
    color: var(--accent-color) !important;
}

.contact-link {
    background: var(--accent-color);
    border-radius: 50px;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
}

.contact-link:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}

.contact-link::after {
    display: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-item {
        margin: 0.3rem 0;
    }
    
    .nav-link {
        color: var(--primary-color) !important;
        padding: 0.8rem 1rem !important;
    }
    
    .contact-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .navbar-toggler {
        color: white;
    }
    
    .navbar-scrolled .navbar-toggler {
        color: var(--primary-color);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease;
    padding: 0 20px;
    margin-top: 76px; /* Navbar yÃ¼ksekliÄŸi kadar margin */
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    animation: logoPulse 3s infinite ease-in-out;
    transform-origin: center center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    color: white;
    cursor: pointer;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
    text-decoration: none;
}

.scroll-text {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
}

.scroll-icon {
    font-size: 24px;
    animation: scrollBounce 2s infinite;
    color: white;
}

.scroll-icon i {
    animation: arrowBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes arrowBounce {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 0px rgba(255,255,255,0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255,255,255,0.8));
        transform: scale(1.05);
    }
    100% {
        filter: drop-shadow(0 0 0px rgba(255,255,255,0.8));
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-btn {
    padding: 1rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn span {
    position: relative;
    z-index: 1;
}

.hero-btn i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-btn.btn-primary {
    background: var(--accent-color);
    border: none;
}

.hero-btn.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}

.hero-btn.btn-outline-light {
    border: 2px solid white;
}

.hero-btn.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        margin: 0;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .scroll-down {
        bottom: 30px;
    }
    
    .scroll-text {
        font-size: 12px;
    }
    
    .scroll-icon {
        font-size: 20px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-item {
        text-align: center;
    }
    
    .nav-link {
        padding: 0.8rem !important;
        font-size: 1rem;
    }
    
    .contact-link {
        margin: 0.5rem 0;
    }
    
    .hero-content {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 250px;
    }
    
    .scroll-down {
        bottom: 20px;
    }
}

@media (max-height: 600px) {
    .hero-logo {
        max-width: 180px;
    }
    
    .scroll-down {
        bottom: 15px;
    }
}

/* About Section */
.about-section {
    margin-top: 0;
    padding: 8rem 0;
    background-color: white;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
}

.about-text {
    position: relative;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.stats-container {
    margin-top: 4rem;
    width: 100%;
}

.stat-item {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .stats-container {
        margin-top: 2rem;
    }
    
    .stat-item {
        min-height: 140px;
        padding: 1.5rem 0.8rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .stats-container .row {
        margin: 0 -8px;
    }
    
    .stats-container [class*="col-"] {
        padding: 0 8px;
    }
    
    .stat-item {
        min-height: 120px;
        padding: 1.2rem 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card:hover .card-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.service-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* References Section */
.references-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 6rem 0;
}

.references-grid {
    position: relative;
}

.reference-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    padding: 2rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reference-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.reference-card:hover::after {
    opacity: 1;
}

.reference-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.reference-card:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background: var(--primary-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
}

.title-separator::before,
.title-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.title-separator::before {
    left: -40px;
}

.title-separator::after {
    right: -40px;
}

.contact-info-item {
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    z-index: 0;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-info-item:hover .contact-icon-wrapper {
    transform: rotateY(360deg);
    background: white;
    color: var(--primary-color);
}

.contact-info-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-info-item p {
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.working-hours p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.working-hours i {
    font-size: 0.8rem;
}

.working-hours .fa-check {
    color: rgba(255, 255, 255, 0.9);
}

.working-hours .fa-times {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    border-color: white;
}

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

.form-label {
    font-weight: 500;
    color: white;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.form-label i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-control-lg, .form-select-lg {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.form-control-lg:focus, .form-select-lg:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: white;
    cursor: pointer;
}

.contact-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-info-item {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Map Section */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: linear-gradient(45deg, var(--primary-color) 0%, #3a3d40 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/logo.png') center/contain no-repeat;
    opacity: 0.02;
    pointer-events: none;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer h5 {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 30px;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 2rem;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 10px;
    }
    
    .about-section,
    .services-section,
    .references-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .reference-card {
        margin-bottom: 1rem;
    }
}

/* About Section */
.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
} </pre></body></html>