/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar styles */
.navbar {
    height: 68px;
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1512px;
    height: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    z-index: 1;
}

.logo img {
    height: 27px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 34px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #C3C3C3;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a.active {
    color: #0A2647;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0A2647;
}

.nav-links a:hover {
    color: #0A2647;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    z-index: 1;
    align-items: center;
}

.btn-appointment, .btn-contact {
    padding: 8px 17px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-decoration: none;
}

.btn-appointment {
    border: 1px solid #EE0E00;
    background: transparent;
    color: #EE0E00;
}

.btn-contact {
    border: none;
    background: #EE0E00;
    color: white;
}

.btn-appointment:hover {
    background: #EE0E00;
    color: white;
}

.btn-contact:hover {
    background: #BB0B00;
}

/* Update hero section to account for navbar */
.hero {
    padding: 128px 0 0;
    width: 100%;
    margin: 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    color: #0A2647;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    padding: 10px 20px;
    border: 1px solid #003366;
    background: transparent;
    color: #003366;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: #003366;
    color: white;
}

.hero-image {
    margin-top: 60px;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Update media queries */
@media (max-width: 1200px) {
    .btn-appointment {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        position: relative;
    }
    
    .btn-contact {
        padding: 8px 12px;
    }
    
    .logo {
        order: 1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-buttons {
        order: 2;
    }
    
    .hamburger {
        order: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 100px;
        transition: left 0.3s ease;
        padding: 100px 24px 20px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
        text-align: right;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links.active {
        left: 0;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .nav-links a.active::after {
        display: none;
    }
    
    .nav-links a.active {
        color: #C3C3C3;
        font-weight: 500;
    }
    
    /* Adjust the width of the links container */
    .nav-links a {
        width: auto;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 8px;
    }
    
    .btn-appointment {
        display: none;
    }
}

.services {
    padding: 80px 0;
    width: 100%;
    background-color: #fff;
}

.services-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #EE0E00;
}

.services-categories {
    margin-top: 60px;
}

.services-categories h3 {
    font-size: 28px;
    font-weight: 500;
    color: #797979;
    margin-bottom: 40px;
    margin-top: 80px;
}

/* Update responsive design */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .services-categories h3 {
        font-size: 24px;
    }
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin: 40px 0;
}

.service-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
    background: #F5F5F5;
    padding: 20px;
    border-radius: 4px;
}

.service-card img.plant-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 20px;
    background: #F5F5F5;
    padding: 0;
    border-radius: 4px;
}

.service-card h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 25px;
    display: flex;
    align-items: flex-start;
}

.service-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    flex-grow: 1;
    display: block;
}

.service-card .service-location {
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: auto;
    display: block !important;
}

.enquire-btn {
    margin-top: auto;
    background: #F49C00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.enquire-btn:hover {
    background: #D88A00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

.our-work {
    padding: 80px 0;
    width: 100%;
    background-color: #FAFAFA;
}

.work-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.our-work h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.our-work h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #EE0E00;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.work-item {
    text-align: left;
}

.work-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 15px;
}

.work-item p {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}

.work-item p strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-work {
        padding: 60px 0;
    }
    
    .our-work h2 {
        font-size: 2rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item img {
        height: 250px;
    }
}

.about {
    padding: 80px 0;
    width: 100%;
    background-color: #fff;
}

.about-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #EE0E00;
}

.about-description {
    max-width: 1000px;
    margin: 0 auto 80px;
    font-size: 20px;
    line-height: 1.6;
    color: #666666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature {
    background: #F5F5F5;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #003366;
    line-height: 1.4;
}

/* Update responsive design */
@media (max-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 18px;
        margin-bottom: 60px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature h3 {
        font-size: 16px;
    }
}

.testimonials {
    padding: 80px 0;
    width: 100%;
    background-color: #FAFAFA;
}

.testimonials-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #EE0E00;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.testimonial-card {
    background: #F3F4F6;
    padding: 40px;
    text-align: left;
    border-radius: 8px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.5;
}

.quote-icon svg {
    width: 45px;
    height: 45px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.testimonial-author p {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

/* Update responsive design */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.contact {
    padding: 80px 0;
    width: 100%;
    background-color: #fff;
}

.contact-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #EE0E00;
}

.contact-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.contact-form {
    background: #F3F4F6;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #EE0E00;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #BB0B00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-item h3 {
        font-size: 18px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
}

.footer {
    background-color: #0A2647;
    padding: 60px 0 40px;
    color: white;
}

.footer-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-link {
    color: white;
    text-decoration: underline;
    display: inline-block;
    margin-top: 16px;
}

.contact-label {
    font-size: 16px;
    margin-bottom: 4px;
}

.footer-column p {
    margin-bottom: 16px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 80px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

.appointment-form {
    width: 100%;
}

/* Add animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #0A2647;
    transition: all 0.3s ease;
}

/* Active state for hamburger */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 100px;
        transition: left 0.3s ease;
        padding: 100px 24px 20px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
        text-align: right;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Adjust the width of the links container */
    .nav-links a {
        width: auto;
        min-width: 150px;
    }
}

.clients-section {
    margin: 60px 0;
    text-align: center;
}

.clients-section h3 {
    font-size: 28px;
    font-weight: 500;
    color: #797979;
    margin-bottom: 40px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logos img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    padding: 10px;
}

/* Make logo8 20% bigger */
.client-logos img[src="Logos/logo8.png"] {
    height: 144px; /* 120px * 1.2 */
    transform: scale(1.2);
}

.client-logos img:hover {
    transform: scale(1.05);
}

/* Adjust hover for logo8 */
.client-logos img[src="Logos/logo8.png"]:hover {
    transform: scale(1.25);
}

@media (max-width: 1024px) {
    .client-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .clients-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }
} 