* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f1ea;
    color: #333;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a3c5e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d4c9a8;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #d4c9a8;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #a8d4c9;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icons i {
    color: #d4c9a8;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}

.nav-icons i:hover {
    color: #a8d4c9;
    transform: scale(1.2);
}

.burger {
    display: none;
    font-size: 24px;
    color: #d4c9a8;
    cursor: pointer;
}

.section {
    padding: 60px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero {
    background: url('images/4.jpg') no-repeat center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 94, 0.6);
}

.hero-content {
    position: relative;
    max-width: 600px;
    text-align: left;
    margin-left: 10%;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: #d4c9a8;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #d4c9a8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #a8d4c9;
    color: #1a3c5e;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    background-color: #8bb8a9;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: #1a3c5e;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about {
    background: url('images/10.jpg') no-repeat center/cover;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 241, 234, 0.8);
}

.about-content {
    position: relative;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-image {
    width: 40%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.section-image:hover {
    transform: scale(1.05);
}

.text-overlay {
    width: 60%;
    text-align: left;
}

.text-overlay p {
    color: #333;
}

.philosophy {
    background: linear-gradient(135deg, #a8d4c9 0%, #e0f7fa 100%);
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 241, 234, 0.8);
}

.philosophy-content {
    position: relative;
    max-width: 600px;
    text-align: left;
    margin-left: 10%;
}

.philosophy-content p {
    color: #333;
}

.services {
    background: linear-gradient(135deg, #1a3c5e 0%, #e8e2d0 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 241, 234, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    justify-items: center;
}

.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 300px;
    height: 200px;
    border: 2px solid #1a3c5e;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 94, 0.6);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 22px;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) 1;
    animation: glow-border 1.5s linear infinite;
    z-index: 2;
}

@keyframes glow-border {
    0% { border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) 1; }
    50% { border-image: linear-gradient(225deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) 1; }
    100% { border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) 1; }
}

.service-content {
    position: relative;
    z-index: 2;
    color: #d4c9a8;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.4;
}

.portfolio-contact-wrapper {
    background: url('images/13.jpg') repeat-x;
    position: relative;
}

.portfolio-contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 241, 234, 0.8);
}

.portfolio, .contact {
    background: none;
}

.contact-content {
    margin: 0%;
    padding: 0% ;
    position: relative;
    max-width: 500px;
    text-align: left;

}



.contact-item {
    display: flex;

    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #f4f1ea;
    font-size: 24px;
}

.contact-info p {
    color: #f4f1ea;
    font-size: 18px;
}

.contact-info a {
    color: #a8d4c9;
    text-decoration: none;
}

.contact-info a:hover {
    color: #8bb8a9;
}

.stage {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #ffffff52;
    position: relative;
}

.container {
    perspective: 2000px;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.ring {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    user-select: none;
}

.img {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    background-position: center;
    background-size: cover;
    backface-visibility: hidden;
}

.content {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%) translateZ(100px);
    font: 400 0.85rem 'Roboto', sans-serif;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
}

.content.active {
    opacity: 1;
}

.content .title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.content .description {
    line-height: 1.7;
    font-size: 0.8rem;
}

.footer {
    background-color: #1a3c5e;
    color: #d4c9a8;
    padding: 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-content a {
    color: #a8d4c9;
    text-decoration: none;
}

.footer-content a:hover {
    color: #8bb8a9;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('wave.png') repeat-x;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

.decor-left, .decor-right {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    background: url('wave-decor.png') no-repeat center/contain;
    opacity: 0.2;
}

.decor-left { left: 0; }
.decor-right { right: 0; }

/* Tablet Styles */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-logo {
        font-size: 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .section {
        padding: 60px 30px;
        min-height: auto;
    }

    .hero-content, .philosophy-content, .contact-content {
        margin-left: 5%;
        max-width: 600px;
    }

    .hero h2, h2 {
        font-size: 2.5rem;
    }

    .hero p, p {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .section-image {
        width: 80%;
        height: 400px;
    }

    .text-overlay {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .service-card {
        max-width: 320px;
        height: 200px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .stage {
        height: 600px;
    }

    .container {
        width: 300px;
        height: 450px;
    }

    .content .title {
        font-size: 2rem;
    }

    .content .description {
        font-size: 0.9rem;
    }

    .footer-content p {
        font-size: 16px;
    }

    .decor-left, .decor-right {
        width: 150px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #1a3c5e;
        padding: 20px;
        text-align: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 18px;
        margin: 15px 0;
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s, color 0.3s;
    }

    .nav-links a:hover {
        background-color: #a8d4c9;
        color: #1a3c5e;
    }

    .burger {
        display: block;
    }

    .burger.active i::before {
        content: '\f00d';
    }

    .section {
        padding: 40px 15px;
        min-height: auto;
    }

    .hero-content, .philosophy-content, .contact-content {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero h2, h2 {
        font-size: 2rem;
    }

    .hero p, p {
        font-size: 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about-content {
        flex-direction: column;
        gap: 15px;
    }

    .section-image {
        width: 100%;
        height: 250px;
    }

    .text-overlay {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        max-width: 100%;
        height: 200px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .stage {
        height: 400px;
    }

    .container {
        width: 240px;
        height: 360px;
    }

    .content .title {
        font-size: 1.5rem;
    }

    .content .description {
        font-size: 0.8rem;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-item i {
        font-size: 24px;
    }

    .footer-content p {
        font-size: 14px;
    }

    .decor-left, .decor-right {
        width: 100px;
        opacity: 0.1;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .navbar {
        padding: 8px 15px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .burger {
        font-size: 24px;
    }

    .nav-links a {
        font-size: 16px;
        margin: 10px 0;
    }

    .section {
        padding: 30px 10px;
    }

    .hero h2, h2 {
        font-size: 1.5rem;
    }

    .hero p, p {
        font-size: 14px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .section-image {
        height: 200px;
    }

    .service-card {
        height: 180px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .stage {
        height: 300px;
    }

    .container {
        width: 200px;
        height: 300px;
    }

    .content .title {
        font-size: 1.2rem;
    }

    .content .description {
        font-size: 0.7rem;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .footer-content p {
        font-size: 12px;
    }

    .decor-left, .decor-right {
        display: none;
    }
}