@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #F5F2EF;
    overflow-x: hidden;
}

/* Luxury headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

main{
    flex: 1;
    width: 100%;
    overflow-x: hidden;
}

header{
    width: 100%;
    max-width: 100vw;
    height: 55px;
    background-color: #F5F2EF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow-x: hidden;
}

.navbar{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #F5F2EF;
}

header.scrolled-nav{
    background-color: #F5F2EF;
}

.navbar.scrolled-nav{
    background: #F5F2EF;
}



.navlist .dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▾";
    font-size: 12px;
}

.dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: #F5F2EF;
    padding: 8px 0;
    z-index: 1001;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
}

.dropdown-content li {
    margin-right: 0;
}

.dropdown-content li a {
    display: block;
    padding: 8px 14px;
    font-size: medium;
    white-space: nowrap;
    color: #333333;
}

.dropdown-content li a:hover {
    color: #D4AF37;
}

.dropdown.open .dropdown-content {
    max-height: 140px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-right: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.rightnav{
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding-right: 20px;
}

.rightnav input{
    width: 140px;
    height: 35px;
    border-radius: 10px;
    border: 3px solid white;
    padding: 0 12px;
}
.rightnav button{
    width: auto;
    min-width: 50px;
    height: 30px;
    margin-left: 0;
    padding: 0 10px;
    border-radius: 10px;
    border: 3px solid white;
    cursor: pointer;
}

.info{
    margin-top:5vh;
    margin-bottom: 10vh;
    padding-top: 55px;
}

.first{
    margin-top: 5vh;
    text-align: center;
}

.firsttxt{
    margin-top: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.firsttxt .txt{
    display: flex;
    width: 80vw;
}

.video{
    display: flex;
    justify-content: center;
}

.video video{
    width: 50vw;
    border-radius: 10px;
}

.canva-embed{
    width: min(80%, 800px);
    margin: 0 auto 2vh;
}

.canva-embed-frame{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    box-shadow: 0 2px 8px 0 rgba(63, 69, 81, 0.16);
    margin-top: 1.2em;
    overflow: hidden;
    border-radius: 8px;
}

.canva-embed-frame iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

/* Services Section Styles */
.services-section {
    padding: 80px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.services-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 60px;
    letter-spacing: 1px;
    word-wrap: break-word;
    padding: 0 10px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0;
    width: 100%;
    overflow: hidden;
}


.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A7C59 0%, #3a6048 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #3a6048 0%, #4A7C59 100%);
}

.service-icon i {
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    hyphens: auto;
}

.services-details {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px 5%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 90%;
    overflow-x: hidden;
}

.services-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-details ul li {
    padding: 18px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    color: #555555;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-details ul li:last-child {
    border-bottom: none;
}

.services-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
    font-size: 18px;
}

.services-details ul li strong {
    color: #333333;
    font-weight: 600;
}

footer{
    display: flex;
    flex-direction: column;
    background-color: #e0e0e0;
    min-height: 8vh;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: large;
    color: #333333;
    gap: 8px;
    padding: 15px 20px;
}

footer a {
    color: #4A7C59;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #D4AF37;
}

/* Tablet Responsive Styles */
@media (max-width: 768px) and (min-width: 481px) {
    .services-heading {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-item {
        padding: 30px 15px;
    }

    .services-details {
        padding: 30px 5%;
        width: 90%;
    }
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 1024px) {
    .navlist {
        position: fixed;
        left: 0;
        top: 55px;
        height: calc(100vh - 55px);
        width: 100vw;
        background-color: #ffffff;
        flex-direction: column;
        padding-top: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-x: hidden;
        visibility: hidden;
        pointer-events: none;
    }

    .navlist.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .navlist li {
        margin: 15px 0;
        text-align: center;
    }

    .navlist .dropdown {
        width: 100%;
    }

    .navlist .dropdown-content {
        position: static;
        min-width: 100%;
        padding: 0;
        background-color: transparent;
        max-height: 0;
        opacity: 0;
        transform: translateY(-6px);
        overflow: hidden;
        pointer-events: none;
    }

    .navlist .dropdown.open .dropdown-content {
        max-height: 140px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navlist .dropdown-content li a {
        padding: 6px 14px;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
        align-items: center;
    }

    .navbar ul li{
        margin-right: 0;
    }

    .rightnav{
        display: none;
    }

    header{
        height: auto;
    }

    main{
        padding-top: 55px;
        overflow-x: hidden;
    }

    .info{
        padding-top: 0;
    }

    .first{
        font-size: 28px;
    }

    .firsttxt .txt{
        width: 95vw;
        font-size: 14px;
    }

    .services-section {
        padding: 60px 3% 40px;
        width: 100%;
    }

    .services-heading {
        font-size: 22px;
        margin-bottom: 30px;
        padding: 0;
        line-height: 1.3;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
        width: 100%;
    }

    .service-item {
        padding: 20px 8px;
        min-width: 0;
        width: 100%;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-item h3 {
        font-size: 11px;
        line-height: 1.4;
        word-break: break-word;
    }

    .services-details {
        margin: 30px 3% 0;
        padding: 20px 4%;
        width: 94%;
    }

    .services-details ul li {
        padding: 12px 0;
        padding-left: 25px;
        padding-right: 0;
        font-size: 13px;
        line-height: 1.6;
    }

    .services-details ul li::before {
        font-size: 16px;
    }

    .video video{
        width: 90vw;
    }

    footer{
        height: auto;
        padding: 15px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .service-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .service-item:hover .service-icon {
        transform: none;
        background: linear-gradient(135deg, #4A7C59 0%, #3a6048 100%);
    }

    .service-item:hover .service-icon i {
        background: none;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: #ffffff;
        background-clip: border-box;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .services-section {
        padding: 60px 3% 30px;
    }

    .services-heading {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0;
    }

    .service-item {
        padding: 18px 6px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-item h3 {
        font-size: 10px;
    }

    .services-details {
        margin: 25px 3% 0;
        padding: 15px 4%;
        width: 93%;
    }

    .services-details ul li {
        padding: 10px 0;
        padding-left: 22px;
        padding-right: 0;
        font-size: 12px;
    }

    .services-details ul li::before {
        font-size: 14px;
    }
}
/* Desktop - Disable AOS animations to prevent scrollbar issues */
@media (min-width: 769px) {
    .service-item[data-aos] {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
}