/* Base styles */
body {
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #121212;
    color: #e0e0e0;
    scroll-behavior: smooth;
}

/* Navbar styles */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(18,18,18,0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
    transition: background 0.3s;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.navbar-logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.navbar-links li a:hover,
.navbar-links li a:focus {
    color: #fff;
    border-bottom: 2px solid #2ec4b6;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.navbar-toggle .bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu */
.navbar-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #181818;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    z-index: 200;
    padding-top: 4rem;
    transition: transform 0.3s;
    transform: translateX(100%);
}

.navbar-mobile-menu.open {
    display: block;
    transform: translateX(0);
}

.navbar-mobile-menu ul {
    list-style: none;
    padding: 0 2rem;
}

.navbar-mobile-menu li {
    margin-bottom: 2rem;
}

.navbar-mobile-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-mobile-menu a:hover {
    color: #2ec4b6;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(120deg, #121212 60%, #232a34 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 4rem 6vw;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2ec4b6;
    color: #fff;
    box-shadow: 0 2px 12px rgba(46,196,182,0.15);
}

.btn-primary:hover {
    background: #17696a;
}

.btn-secondary {
    background: #232a34;
    color: #e0e0e0;
    border: 1px solid #2ec4b6;
}

.btn-secondary:hover {
    background: #1a1f26;
    color: #2ec4b6;
}

/* Hero image */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 6vw 0 2vw;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 640px;
    max-height: 380px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #232a34;
}

/* Responsive hero */
@media (max-width: 900px) {
    .hero-content {
        padding: 3rem 1rem 3rem 1rem;
    }
    .hero-image {
        padding: 0 1rem 0 1rem;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 700px) {
    .hero-image img {
        max-width: 95vw;
        max-height: 220px;
        aspect-ratio: 16/9;
        border-radius: 18px;
        height: auto;
    }
}

/* About Us Section */
.about {
    width: 100%;
    background: #181818;
    padding: 5rem 0 5rem 0;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 2vw;
    position: relative;
    gap: 0;
}

.about-text {
    flex: 1;
    background: rgba(24,24,24,0.98);
    padding: 3rem 3rem 3rem 4vw;
    border-radius: 24px 0 0 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.about-divider {
    width: 4px;
    height: 48px;
    background: linear-gradient(180deg, #2ec4b6 0%, #232a34 100%);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.15rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-width: 280px;
    margin-left: -48px; /* Overlap effect */
    z-index: 1;
}

.about-image img {
    width: 100%;
    max-width: 440px;
    height: 340px;
    object-fit: cover;
    border-radius: 0 24px 24px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #232a34;
    border-left: 6px solid #2ec4b6;
}

/* Responsive About Section */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    .about-text {
        border-radius: 24px 24px 0 0;
        padding: 2rem 1.5rem 2rem 1.5rem;
        min-width: 0;
    }
    .about-image {
        margin-left: 0;
        justify-content: center;
    }
    .about-image img {
        border-radius: 0 0 24px 24px;
        height: 220px;
        max-width: 95vw;
        border-left: none;
        border-top: 6px solid #2ec4b6;
    }
}

/* Services Section */
.services {
    width: 100%;
    background: #151a1a;
    padding: 5rem 0 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2vw;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.services-list {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: 0 2vw;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    background: rgba(24,24,24,0.98);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    z-index: 2;
    min-width: 220px;
}

.service-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-text p {
    font-size: 1.08rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

.service-icon {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-width: 140px;
    height: 120px;
    background: #181818;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    margin: 0 0;
    z-index: 1;
}

.service-icon svg {
    width: 64px;
    height: 64px;
    display: block;
}

/* Responsive Services Section */
@media (max-width: 900px) {
    .services-list {
        gap: 2.2rem;
    }
    .service-row {
        gap: 1rem;
    }
    .service-text {
        padding: 2rem 1rem;
    }
    .service-icon {
        min-width: 80px;
        height: 80px;
        border-radius: 18px;
    }
    .service-icon svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 700px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column !important;
        align-items: stretch;
        gap: 0.5rem;
    }
    .service-icon {
        margin-bottom: 1rem;
        margin-top: 0;
        align-self: flex-start;
    }
    .service-text {
        border-radius: 18px;
        padding: 1.2rem 0.7rem;
    }
}

/* Projects Section */
.projects {
    width: 100%;
    background: #181818;
    padding: 5rem 0 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2vw;
}

.projects-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.projects-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0 2vw;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #232a34;
}

.project-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    filter: brightness(0.85) grayscale(10%);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18,18,18,0.7) 60%, rgba(46,196,182,0.12) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}

.project-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    background: rgba(24,24,24,0.7);
    padding: 0.7rem 1.3rem;
    border-radius: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.project-item:hover img,
.project-item:focus img {
    transform: scale(1.07);
    filter: brightness(1) grayscale(0%);
}

.project-item:hover .project-overlay,
.project-item:focus .project-overlay {
    opacity: 1;
}

/* Responsive Projects Section */
@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .project-item {
        min-height: 220px;
    }
    .project-item img {
        min-height: 220px;
    }
}

@media (max-width: 700px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .project-item {
        min-height: 180px;
        border-radius: 14px;
    }
    .project-item img {
        min-height: 180px;
        border-radius: 14px;
    }
    .project-overlay {
        padding: 1rem;
    }
    .project-title {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 10px;
    }
}

/* Team Section */
.team {
    width: 100%;
    background: #151a1a;
    padding: 5rem 0 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2vw;
}

.team-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.team-list {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: 0 2vw;
}

.team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.team-row.reverse {
    flex-direction: row-reverse;
}

.team-photo {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 180px;
    height: 160px;
    margin: 0;
}

.team-photo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 32px rgba(46,196,182,0.12);
    background: #232a34;
    display: block;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 220px;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.team-role {
    font-size: 1rem;
    color: #2ec4b6;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.linkedin-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0.2rem;
    transition: opacity 0.2s;
    opacity: 0.85;
}
.linkedin-icon:hover {
    opacity: 1;
}

/* Responsive Team Section */
@media (max-width: 900px) {
    .team-list {
        gap: 2.2rem;
    }
    .team-row {
        gap: 1rem;
    }
    .team-photo {
        min-width: 80px;
        height: 80px;
        max-width: 100px;
    }
    .team-photo img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 700px) {
    .team-row,
    .team-row.reverse {
        flex-direction: column !important;
        align-items: stretch;
        gap: 0.5rem;
    }
    .team-photo {
        margin-bottom: 1rem;
        margin-top: 0;
        align-self: flex-start;
    }
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    background: #181818;
    padding: 5rem 0 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2vw;
}

.testimonials-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.testimonials-carousel {
    width: 100%;
    max-width: 700px;
    display: flex;
    overflow-x: hidden;
    position: relative;
    min-height: 220px;
}

.testimonial {
    min-width: 100%;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(120deg, rgba(46,196,182,0.08) 0%, rgba(24,24,24,0.98) 100%);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(46,196,182,0.10);
    z-index: 1;
}

.testimonial.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

.testimonial-photo {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
}

.testimonial-photo img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(46,196,182,0.15);
    background: #232a34;
    display: block;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content p {
    font-size: 1.08rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-size: 1rem;
    color: #2ec4b6;
    font-weight: 600;
}

/* Testimonial controls */
.testimonial-controls {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial-controls button {
    background: #232a34;
    color: #2ec4b6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(46,196,182,0.10);
    transition: background 0.2s, color 0.2s;
}

.testimonial-controls button:hover {
    background: #2ec4b6;
    color: #fff;
}

/* Contact Section */
.contact {
    width: 100%;
    background: #151a1a;
    padding: 5rem 0 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 2vw;
}

.contact-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.contact-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 3rem;
    padding: 0 2vw;
    align-items: flex-start;
    justify-content: center;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(24,24,24,0.98);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    min-width: 260px;
    max-width: 420px;
}

.contact-form label {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: none;
    background: #232a34;
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(46,196,182,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #181818;
    box-shadow: 0 0 0 2px #2ec4b6;
}

.contact-form button {
    margin-top: 0.5rem;
    width: 100%;
}

/* Contact Details */
.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 260px;
    max-width: 420px;
}

.contact-info p {
    font-size: 1.08rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #2ec4b6;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #17696a;
}

.contact-map {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(46,196,182,0.10);
    background: #232a34;
}

/* Footer Section */
.footer {
    width: 100%;
    background: #101313;
    padding: 2.2rem 0 1.2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #2ec4b6;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a svg {
    display: block;
    transition: opacity 0.2s;
    opacity: 0.85;
}
.footer-social a:hover svg {
    opacity: 1;
}

.footer-copy {
    width: 100%;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Responsive styles */
@media (max-width: 900px) {
    .navbar-container {
        padding: 0.5rem 1rem;
    }
    .navbar-links {
        gap: 1.2rem;
    }
}

@media (max-width: 700px) {
    .navbar-links {
        display: none;
    }
    .navbar-toggle {
        display: flex;
    }
}

/* Responsive About Section */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    .about-text {
        border-radius: 24px 24px 0 0;
        padding: 2rem 1.5rem 2rem 1.5rem;
        min-width: 0;
    }
    .about-image {
        margin-left: 0;
        justify-content: center;
    }
    .about-image img {
        border-radius: 0 0 24px 24px;
        height: 220px;
        max-width: 95vw;
        border-left: none;
        border-top: 6px solid #2ec4b6;
    }
}

/* Responsive Services Section */
@media (max-width: 900px) {
    .services-list {
        gap: 2.2rem;
    }
    .service-row {
        gap: 1rem;
    }
    .service-text {
        padding: 2rem 1rem;
    }
    .service-icon {
        min-width: 80px;
        height: 80px;
        border-radius: 18px;
    }
    .service-icon svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 700px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column !important;
        align-items: stretch;
        gap: 0.5rem;
    }
    .service-icon {
        margin-bottom: 1rem;
        margin-top: 0;
        align-self: flex-start;
    }
    .service-text {
        border-radius: 18px;
        padding: 1.2rem 0.7rem;
    }
}

/* Responsive Projects Section */
@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .project-item {
        min-height: 220px;
    }
    .project-item img {
        min-height: 220px;
    }
}

@media (max-width: 700px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .project-item {
        min-height: 180px;
        border-radius: 14px;
    }
    .project-item img {
        min-height: 180px;
        border-radius: 14px;
    }
    .project-overlay {
        padding: 1rem;
    }
    .project-title {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 10px;
    }
}

/* Responsive Team Section */
@media (max-width: 900px) {
    .team-list {
        gap: 2.2rem;
    }
    .team-row {
        gap: 1rem;
    }
    .team-photo {
        min-width: 80px;
        height: 80px;
        max-width: 100px;
    }
    .team-photo img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 700px) {
    .team-row,
    .team-row.reverse {
        flex-direction: column !important;
        align-items: stretch;
        gap: 0.5rem;
    }
    .team-photo {
        margin-bottom: 1rem;
        margin-top: 0;
        align-self: flex-start;
    }
}

/* Responsive Testimonials Section */
@media (max-width: 900px) {
    .testimonials-carousel {
        max-width: 95vw;
    }
    .testimonial {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 700px) {
    .testimonial {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 0.7rem;
        border-radius: 14px;
    }
    .testimonial-photo {
        margin-bottom: 1rem;
    }
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Responsive Contact Section */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .contact-form,
    .contact-details {
        max-width: 100%;
        min-width: 0;
    }
}

/* Footer Section */
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1vw;
    }
    .footer-links {
        gap: 1.2rem;
    }
}

/* Smooth transitions */
.navbar,
.navbar-links li a,
.btn,
.hero-image img {
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
