/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #ff6b6b;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --text-color: #334155;
    --border-radius: 8px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50px;
    z-index: -2;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-small {
    padding: 10px 22px;
    font-size: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 38px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -12px;
    left: calc(50% + 45px);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: #64748b;
    font-size: 19px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.logo h1::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.logo p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #e2e8f0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.checkbtn {
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 60%, rgba(30, 58, 138, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInDown 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-text p:last-child {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-color);
    font-style: italic;
    color: var(--primary-color);
}

.about-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 300px;
}

.stat-box {
    background-color: white;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box h3 {
    font-size: 42px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-box p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.project-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.project-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.project-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 15px;
}

.project-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.project-info p {
    margin-bottom: 25px;
    color: #64748b;
    line-height: 1.7;
}

/* Services Section */
.services {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.services::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 44px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    background-color: rgba(255, 107, 107, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s, color 0.3s;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('../images/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    top: -100px;
    left: 50px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials::after {
    content: '"';
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    bottom: -200px;
    right: 50px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 300px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(255, 107, 107, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 14px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--secondary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    color: var(--text-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) inset;
}

.form-group textarea {
    height: 170px;
    resize: vertical;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background-color: white;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 14px;
}

/* Privacy Policy Styles */
.privacy-policy {
    margin-top: 76px;
    padding-top: 60px;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.privacy-policy::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    top: 100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
}

.privacy-policy::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    bottom: 100px;
    right: -150px;
    border-radius: 50%;
    z-index: 0;
}

.policy-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 50px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.policy-section h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.policy-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #64748b;
    line-height: 1.7;
}

.policy-section ul li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.contact-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.contact-list li {
    margin-bottom: 15px;
    padding-left: 30px !important;
    position: relative;
}

.contact-list li::before {
    display: none;
}

.contact-list li strong {
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: 600;
}

.last-updated {
    margin-top: 50px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
    font-style: italic;
    color: #94a3b8;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

footer::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex: 2;
    min-width: 250px;
}

.footer-logo h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-logo p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-links,
.footer-projects {
    flex: 1;
    min-width: 170px;
}

.footer-links h3,
.footer-projects h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after,
.footer-projects h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li,
.footer-projects ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-projects ul li a {
    color: #94a3b8;
    transition: var(--transition);
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::before,
.footer-projects ul li a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transform: translateX(-10px);
    display: inline-block;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-projects ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links ul li a:hover::before,
.footer-projects ul li a:hover::before {
    opacity: 1;
    margin-right: 8px;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: #94a3b8;
}

.footer-bottom a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation classes for scroll animations */
.service-card, .project-card, .stat-box, .testimonial {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate, .project-card.animate, .stat-box.animate, .testimonial.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for cards */
.service-card:nth-child(1), .project-card:nth-child(1), .stat-box:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2), .project-card:nth-child(2), .stat-box:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3), .project-card:nth-child(3), .stat-box:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4), .project-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -0.5px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .policy-content {
        padding: 40px 30px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .checkbtn {
        display: block;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        transition: var(--transition);
    }
    
    .checkbtn:hover {
        color: var(--secondary-color);
    }
    
    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-color);
        top: 76px;
        left: -100%;
        flex-direction: column;
        text-align: center;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        padding-top: 30px;
    }
    
    nav ul li {
        margin: 25px 0;
    }
    
    nav ul li a {
        color: white;
        font-size: 18px;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    #check:checked ~ ul {
        left: 0;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-content,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-box,
    .testimonial {
        min-width: 100%;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .project-img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .project-info {
        padding: 25px 20px;
    }
    
    .footer-logo, .footer-links, .footer-projects {
        min-width: 100%;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .stat-box h3 {
        font-size: 36px;
    }
} 