* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

section {
    max-width: 1920px;
    margin: auto;
}

.container {
    width: 100%;
    margin: 0 auto;
}


.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards ease-in-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


header {
    background-color: #ffffff;
    position: relative;
    padding: 38px 64px;
    box-sizing: border-box;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (min-width: 1920px) {
    header {
        max-width: 1856px; 
        margin: 0 auto !important;
    }
}



nav {
    display: flex;
    gap: 44px;
    align-items: center;
    color: #000000;
}

.logo {
    font-size: 32px;
    font-weight: 600;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 44px;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    flex-direction: row;
    display: flex;
}

.nav-links li a:hover {
    color: #007BFF;
}

.contact-btn {
    font-weight: 600;
    font-size: 20px;
    padding: 8px 40px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 22px;
    border: 1.3px solid #000000;
    box-sizing: border-box;
}

.contact-btn:hover,
.contact-btn.active  {
    background-color: #282828;
    color: white;
}

@keyframes spin-once {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



.reviews-btn {
    font-weight: 600;
    font-size: 20px;
    padding: 8px 27px;
    color: #000000;
    background-color: white;
    text-decoration: none;
    transition: all 0.3s, background-color 0.3s;
    border-radius: 22px;
    border: 1.3px solid #000000;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-btn:hover {
    background-color: #282828;
    color: white !important;
}


.review-stars-container {
    align-items: center;
    display: flex;
    gap: 3px;
    margin-left: 3px;
}


.review-stars {
    width: 21px;
    height: auto; 
    display: inline-block;
    transition: transform 0.7s ease-in-out; 
}

.reviews-btn:hover .review-stars {
    animation: spin-once 0.7s ease-in-out;
}



@media (max-width: 1650px) {
    header {
        padding: 24px 32px;
        max-width: calc(100% - 64px); 
        margin: 0 auto;
    }

    header .container {
        gap: 20px; 
    }

    .logo {
        font-size: 28px; 
    }

    nav {
        gap: 32px;
    }

    .nav-links {
        gap: 32px;
        text-wrap: nowrap;
    }

    .nav-links li a {
        font-size: 18px; 
    }

    .contact-btn,
    .reviews-btn {
        font-size: 18px;
        padding: 6px 32px;
    }

    .review-stars {
        width: 18px; 
    }
}




@media (max-width: 1400px) {
    .hide-on-max-width {
        display: none !important;
    }
}







section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Dropdown Container */
.contact-dropdown {
    display: none;
    position: absolute;
    right: 65px;
    top: 99px;
    background-color: #ffffff;
    padding: 48px;
    width: 100%;
    max-width: 750px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    z-index: 1000;
}

/* Title */
.contact-dropdown h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

/* Two Columns Layout */
.contact-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

/* Divider */
.divider {
    width: 1px;
    background-color: #ddd;
    margin: 0 20px;
    height: auto;
}

/* Contact Item Styling */
.contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-category {
    font-size: 18px;
    font-weight: 600;
    color: #007BFF;
}

.contact-number {
    font-size: 26px; /* Bigger phone number for emphasis */
    font-weight: 700;
    color: #333;
    letter-spacing: 0.7px;
}

.contact-name {
    font-size: 16px;
    color: #555;
}

/* Icon Row */
.contact-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.icon-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-with-text img {
    width: 28px;
    height: 28px; /* Slightly smaller icons for balance */
}

.icon-with-text span {
    font-size: 14px;
    color: #333;
    margin-top: 6px;
}




@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    /* Container */
    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Logo */
    .logo {
        font-size: 28px;
        text-align: left;
    }

    /* Navigation */
    nav {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        display: none;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: flex-start;
    }

    .nav-links li a {
        font-size: 18px;
        text-align: left;
    }

    /* Contact Button */
    .contact-btn {
        font-size: 18px;
        padding: 10px 30px;
        width: 100%;
        text-align: center;
    }

    /* Dropdown Container */
    .contact-dropdown {
        right: 20px;
        left: 20px;
        top: 80px;
        padding: 20px;
        width: auto;
        max-width: 100%;
        font-size: 14px;
    }

    .contact-dropdown h2 {
        font-size: 20px;
    }

    /* Two Columns Layout to Single Column */
    .contact-columns {
        flex-direction: column;
        gap: 30px;
    }

    /* Divider hidden on mobile */
    .divider {
        display: none;
    }

    /* Contact Item Styling */
    .contact-item {
        gap: 10px;
    }

    .contact-info {
        padding-bottom: 10px;
    }

    .contact-category {
        font-size: 16px;
    }

    .contact-number {
        font-size: 22px;
    }

    .contact-name {
        font-size: 14px;
    }

    /* Icon Row */
    .contact-icons {
        gap: 15px;
    }

    .icon-with-text img {
        width: 24px;
        height: 24px;
    }

    .icon-with-text span {
        font-size: 12px;
    }
}
















































.footer-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.footer {
    position: relative;
    border-radius: 50px 50px 0 0 / 30px 30px 0 0;
    box-sizing: border-box;
    background-color: #222;
    color: #ccc;
    padding: 60px 0;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 2px -5px 40px #22222250;
}


@media (min-width: 1920px) {
    .footer {
        max-width: 1920px; 
        margin: 0 auto !important;
    }
}



.footer h4, .footer h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #007BFF;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    box-sizing: border-box;

}


.footer-column {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}


.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}


.footer-menu img {
    width: 16px;
    height: 16px;
}



.social-media {
    margin-top: 20px;
}

.credits {
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}


.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
    flex: 1;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.newsletter-form button:hover {
    background-color: #777;
}


.general-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.general-link:hover {
    color: #007BFF;
}

.general-link img {
    width: 22px;
    height: 22px;
}


.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 18px;
}

.instagram-link img {
    width: 16px;
    height: 16px;
}


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 40px;
    }
}




.scroll-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #727272;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1px;
    z-index: 998;
    background: transparent;
    transition: background-color 0.3s ease;
}

.scroll-to-top img {
    width: 23px;
    height: 23px;
}

.scroll-to-top:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }
}



@media (max-width: 768px) {
    /* Footer Grid - Stack Columns */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 20px;
    }

    .footer {
        padding: 40px 20px;
        border-radius: 30px 30px 0 0 / 15px 15px 0 0;
    }

    .footer h4 {
        font-size: 18px;
    }

    .footer-column {
        margin-bottom: 0px;
    }

    /* Footer Links */
    .footer a {
        font-size: 15px;
    }

    /* Newsletter Form Adjustments */
    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 8px;
        font-size: 14px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    /* Credits */
    .credits {
        font-size: 12px;
        margin-top: 20px;
    }

    /* Social Media */
    .social-media {
        margin-top: 15px;
    }

    /* Hide Scroll-to-Top Button */
    .scroll-to-top {
        display: none;
    }
}
