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

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styles */
.header {
    background-color: #ffffff;
    color: white;
    padding: 5px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo span {
    font-size: 32px;
    margin-right: 10px;
    color: #ff9f00; /* Orange color for "O" part */
}

.logo .text {
    color: #353434; /* Stylish grey for "PT Health" text */
}

.logo-img {
    width: 150px; /* Adjust width according to your needs */
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    left: 10px;

}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.logo-hamburger{
    display: flex;
    flex-direction: row; /* Aligns items horizontally (default behavior) */
    justify-content: space-between; /* Space out logo and hamburger */
    align-items: center; /* Vertically center them */
    gap: 120px;
}

/* Hero section */
.hero {
    background-color: #0091ff;
    color: white;
    padding: 60px 20px;
    height: 60vh;
    text-align: center;
}

/* Hero section */
.hero {
    background-color: #0091ff;
    color: white;
    padding: 0; /* Remove padding to ensure full video coverage */
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Optional: Adjust opacity */
}

/* Ensure content is above the video */
.hero .container {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}


.visuals {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    max-width: 400px;  /* Adjust to fit */
    height: auto;
}

.hero .container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    
}

.hero .container p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #ff9f00;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ff7f00;
}

/* Features section */
.features {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; 
}

.feature {
    background-color: #0091ff;
    padding: 20px;
    width: calc(33% - 20px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    color: #ffffff;
    font-size: 16px;
}





/* Clinics section */
.clinics {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.clinics h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.clinics ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.clinics ul li {
    font-size: 18px;
    margin-bottom: 10px;
}


.images-row {
    padding-top: 6%;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.image-item {
    text-align: center;
    max-width: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.image-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
   
}

.image-item p {
    margin-top: 10px;
    color: #333;
    font-size: 1rem;
    margin-bottom: 5%;
    color: #333;
    
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(87, 87, 87, 0.2);
}




/* Style for the nav links on larger screens */
.nav-links {
    display: flex;
    list-style: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: rgb(51, 51, 51);
    text-decoration: none;
    font-size: 18px;
}

@media (max-width: 768px) {
    .images-row {
        flex-direction: column;
        align-items: center;
    }
    .image-item {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: white;
        
        top: 100%;
        right: 0;
        width: 200px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}




/* Individuals section */
.individuals {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.individuals h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.individuals ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.individuals ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #037cd8;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer h2 {
    font-size: 36px;
    margin-bottom: 20px;

}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    width: 300px;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    width: 320px;
    padding: 12px;
    background-color: #ff9f00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #ff7f00;
}



@media (max-width: 1024px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .image-item {
        max-width: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 12px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .feature {
        width: 100%;
    }

    .image-item {
        max-width: 100%;
    }
}


