* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    transition: all .2s cubic-bezier(.34,1.12,.68,1.31);
    color: #000000;
}
    :root {
        --main-color:rgb(248, 219, 88);   
        --text-color:rgb(255, 255, 255);
        --inverted-color:rgb(255, 255, 255); 
        --header-color: #000080;
        --bg-color: rgb(255, 255, 255);
        --hover-color: white;
        --big-font:5rem;
        --h2-font:2.25rem;
        --p-font:0.9rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }

    @media (max-width: 800px) {
        .logo img {
            height: 50px;
            margin-left: -30%;
        }
    }

    .navbar{
        display:flex;
    }
    .navbar a{
        color: #000080;
        font-size: 0.9rem; 
        padding: 10px 20px;
        font-weight: bold;
     /*   text-transform: uppercase; */
    }
    .navbar a:hover{
        color: red;
        transition: .4s;
    }
    
.gd-img {
    background-image: url("Services\ we\ Offer.png");
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}
.pr-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 10rem;
    padding: 4%;
    background: var(--box-color);
    border-radius: 10px;
}
.shirt-ctn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 5rem;
    align-items: center;
    width: 50%;
    margin-left: 25%; 
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000080;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.button-link:hover {
    background-color: gray;
/*    background-color: rgb(248, 219, 88); */
    color: white;
    text-decoration: none;
}

.button-footer {
    display: inline-flexbox;
    padding: 10px 30px;
    background-color: black;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.button-footer:hover {
    background-color: rgb(248, 219, 88);
    color: black;
    text-decoration: none;
}


.demo {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    padding: 100px 190px;
    gap: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 128, 0.1);
    border-radius: 1px;
}

.contact-section {
    flex: 1;
    max-width: 500px;
    background-color: #000080;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 20px 0 0 20px;
}

.contact-section h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item img {
    width: 24px;
    height: 24px;
}

.contact-item a, .contact-item span {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item p {
    color: white;
    line-height: 1.5;
}

.contact-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.map {
    flex: 1;
    height: 450px;
    border-radius: 0 20px 20px 0;
    margin: 0;
    padding: 0;
}

.map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0 20px 20px 0;
    border: 0;
}

/* Tablet View */
@media (max-width: 1200px) {
    .demo {
        padding: 80px 100px;
    }
    
    .contact-section h1 {
        font-size: 2rem;
    }
    
    .contact-item a, .contact-item span {
        font-size: 1rem;
    }
}

/* Medium Tablet View */
@media (max-width: 1140px) {
    .demo {
        flex-direction: column;
        padding: 50px 30px;
        align-items: center;
        gap: 0;
    }

    .contact-section {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0; /* Rounded top corners */
        padding: 35px 30px;
    }
    
    .contact-section h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-section p {
        text-align: center;
    }

    .map {
        width: 100%;
        height: 400px;
        border-radius: 0 0 20px 20px; /* Rounded bottom corners */
    }
    
    .map iframe {
        border-radius: 0 0 20px 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .demo {
        padding: 40px 20px;
    }
    
    .contact-section {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .contact-section h1 {
        font-size: 1.8rem;
    }
    
    .contact-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-item a, .contact-item span {
        font-size: 0.9rem;
        word-break: break-word; /* Break long text */
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        margin-top: 3px; /* Align with text */
    }
    
    .map {
        height: 350px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .demo {
        padding: 30px 15px;
    }
    
    .contact-section {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .contact-section h1 {
        font-size: 1.5rem;
    }
    
    .contact-section p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-item a, .contact-item span {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
    
    .map {
        height: 300px;
    }
}

/* Very Small Mobile View */
@media (max-width: 360px) {
    .demo {
        padding: 20px 10px;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .contact-section h1 {
        font-size: 1.3rem;
    }
    
    .contact-section p {
        font-size: 0.8rem;
    }
    
    .contact-item a, .contact-item span {
        font-size: 0.75rem;
    }
    
    .contact-icon {
        width: 16px;
        height: 16px;
    }
    
    .map {
        height: 250px;
    }
}
.contact-item p {
    color: white;
    line-height: 1.5;
}

.contact-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

/*
.contact-item:hover {
    color: gray;
}
*/

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.map {
    height: 450px; /* Changed from 580px to match contact section */
    border-radius: 0 20px 20px 0;
    margin: 0; /* Added to remove any default margins */
    padding: 0; /* Added to remove any default padding */
}

.map iframe {
    width: 100%;
    height: 110%;
    display: block; /* Added to remove any inline-block spacing */
    border-radius: 0 20px 20px 0;
}

@media (max-width: 1140px) {
    .demo {
        flex-direction: column;
        padding: 30px;
        align-items: center;
    }

    .contact-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .map {
        width: 100%;
    }
}

.center {
    margin: 0; 
    padding: 0; 
}

.center h1, .center p {
    margin-top: 10px; 
    margin-bottom: 10px; 
}
/*
.demo video {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}
*/

.poster {
    display: grid;
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    align-items: center;
    position: sticky;
}
header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;    
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 110px;
    background-color: white;
    backdrop-filter: blur(10px);
}

.booknow-img {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-position: center;
    background-size: cover;
    position: fixed;
    background-attachment: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
/*    opacity: 0.6; */
}

.gallery {
    min-height: 100vh;
    padding-top: 10px;
    padding-bottom: 40px;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    list-style: none;
}

.gallery .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;   
}
.gallery .image-container .image{
    height: 365px;
    width: 650px;
    overflow: hidden;
    margin: 15px;
}
.gallery .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery .image-container .image:hover img{
    transform: scale(1.10);
}

.video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    background: black;
    border: 2px solid white;
    border-radius: 100%;
    padding: 10px;
    padding-left: 20px;
    padding-right: 18px;
    cursor: pointer;
    z-index: 1;
}

.video-wrapper:hover .play-button {
    display: block;
    font-size: 35px;
    color: white;
    background: black;
    border: 2px solid white;
    border-radius: 100%;
    padding: 10px;
    padding-left: 20px;
    padding-right: 18px;
}

.gallery .image-container .video {
    height: 250px;
    width: 350px;
    overflow: hidden;
    margin: 20px;
}


.gallery .image-container .image video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.gallery .image-container .video:hover video{
    transform: scale(1.4);


}
.services {
    padding: 50px 20px;
    background-color: rgb(0, 0, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5em;
    color: #dadada;
}

.service-item {
    margin-bottom: 40px;
    text-align: center;
}

.service-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #dadada;
}

.service-item p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #f1eded;
}

.service-item img {
    width: 100%;
    max-width: 350px;
    height: auto;
    box-shadow: 0 4px 8px rgba(160, 160, 160, 0.109);
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%; 
    overflow-x: hidden;
}

body, footer {
    margin: 0;
    padding: 0;
}

body{
    color:black;
    background:white;
    margin: 0;
}
.body{
    min-height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
}
.row{
    width: 80%;
    max-width: 1170px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    overflow-x: hidden;
    padding: 5rem 0;
}
.row .imgWrapper{
    overflow: hidden;
  
}
.row .contentWrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
/*    padding-right: 30px; */
}
.img-wrapper{
    float: right;
}
.row .contentWrapper h4{
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
}
.row .contentWrapper p{
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 25px;
    color: rgb(0, 0, 0);
}
.row .contentWrapper li{
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 11px;
    color: rgb(0, 0, 0);
}
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

header li img{
    width: 40px;
    float: left;
    
}
.services {
    padding: 50px 20px;
    background-color: rgb(0, 0, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5em;
    color: #dadada;
}

.logo{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
}
.logo:hover {
    color: var(--main-color);
    transition: .4s;
}
section {
    padding: 3% 10%;
}

.home {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}
.hidden {
    opacity: 0;
/*    transition: all 0.9s; */
    filter: blur(5px);
/*    transform: translateY(10%); */
}
.show {
    opacity: 1;
    filter: blur(0);
/*    transform: translateY(0); */
}
.home h1 {
    font-size: 3rem;
    margin: 1rem 0px;
    color: #000000;

}

footer {
    padding: 5% 0;
    margin: 0;
    background-color: #000080;
    color: white;
    width: 100%; 
    box-sizing: border-box; 
    position: relative; 
}

.footer h1, .footer p {
    color: white;
    margin: 0;;
}

.button-footer {
    color: white;
}

footer p {
    font-size: 12px;
}   

.pr-img {
    width: 100%;
    transition: 0.5s ease;
}

.image-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
}

.image-with-text:hover .pr-img {
    transform: scale(1.05);
    opacity: 1; 
    z-index: 1; 
}

.image-with-text:hover .image-caption {
/*    color: red; */
    transition: 0.4s;
}

.image-caption {
    margin-top: 5px;
    font: sans-serif;
    color: #000080;
    font-size: 1.1rem;
}
.posters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 1rem;
}

.demos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 1rem;
    margin-left: 0%; 
}
@media screen and (max-width: 768px) {
    .shirt-ctn {
        grid-template-columns: repeat(2, 1fr); /* 2 icons per row on tablet */
        gap: 3rem;
        width: 70%;
        margin-left: 15%;
    }
    
    .posters,
    .pr-div {
        grid-template-columns: 1fr; 
    }
    
    .pr-img {
        width: 100px;
        height: 100px;
    }
    
    .image-caption {
        font-size: 0.9rem;
    }
}

/* Mobile View - 2 icons per row */
@media screen and (max-width: 480px) {
    .shirt-ctn {
        grid-template-columns: repeat(2, 1fr); /* 2 icons per row on mobile */
        gap: 2rem;
        width: 85%;
        margin-left: 7.5%;
    }
    
    .pr-img {
        width: 80px;
        height: 80px;
    }
    
    .image-caption {
        font-size: 0.8rem;
    }
}

/* Very Small Mobile - 2 icons per row with smaller sizing */
@media screen and (max-width: 360px) {
    .shirt-ctn {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 90%;
        margin-left: 5%;
    }
    
    .pr-img {
        width: 70px;
        height: 70px;
    }
    
    .image-caption {
        font-size: 0.7rem;
    }
}
.class {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: #000;
    padding: 2%;
}

.class a {
    color: white;
    font-size: 0.5em;
    padding: 40px 40px; 
    font-weight: 800;
    font-size: small;
}

.class a:hover {
    color: var(--main-color);
    transition: .4s;
}


@media screen and (max-width: 768px) {
    .class a {
        padding: 8px 8px; 
    }
}

.note{
    width: 50%;
    padding: 20px;
    margin: auto;
    display: inline-block;
    border: 1px solid #f0f0f0;
    box-sizing: border-box;
    font-size: larger;
}
#menu-icon{
    font-size: 2rem;
    cursor: pointer;
    display: none;
}
.col{
    margin: 20px 0px;
    width: 25%;
}
.col .social{
    width: 280px;
    display: inline-flex;
    align-items: right;
    justify-content: space-between;
}
.col .social a{
    height: 40px;
    width: 40px;
    background: white;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: .4s;
}
.col .social a:hover{
    color: var(--main-color);
    background-color: var(--text-color);
    transform: scale(1.2);
}

@media (max-width: 1140px) {
    section{
        padding: 100px 8%;
    }
    #menu-icon {
        display: initial;
        color: #000080;
    }
    .navbar {
        position: absolute;
        top: -600px;
        left: 0;
        right: 0; 
        display: flex;
        flex-direction: column;
        text-align: center;
        transition: .5s;
        background-color: white;
        backdrop-filter: blur(10px);
        margin-top: 30px;
    }
    .active{
        top: 40px;
        left: 0;
    }
    .navbar a{
        padding: 1.5rem;
        display: block;
        color: #000080;
    }
    .col{
        width: 50%;
        margin-bottom: 10px;
    }
    .pr-div {
        display: block;
    }
    .bg-info p {
        font-size: 0.7rem;
    }
}

@media (max-width: 800px) {
    header{
        padding: 10px 16px;
    }
    .home{
        padding-top: 10%;
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
    }
    .pr-div {
        display: block;
    }
    .col .social {
        width: 100%;
    }
    .home img {
        margin: 0;
    }
    section{
        padding: 100px 7%;
    } 
    
}

@media (max-width: 575px) {
    .col{
        width: 100%;
    }
}


@media (min-width: 600px) {
    .demo {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }
}
@media (min-width: 600px) {
    .demos {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }
}

video {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .gd-img {
        background-position: center;
        margin-top: 0;
        width: 220%;
    }
}

@media (max-width: 480px) {
    .gd-img {
        background-position:center;
        margin-top: 0;
        height: 90vh; 
    }
}
@media (max-width: 768px) {
    .booknow-img {
        background-position: top center;
        height: auto; 
    }
}

@media (max-width: 480px) {
    .booknow-img {
        background-position: top center;
        height: auto; 
    }
}
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }
    .row .contentWrapper {
        padding-left: 0;
        padding-top: 30px;
    }
    .row .contentWrapper h2 {
        font-size: 30px;
    }
    .row .contentWrapper p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .row {
        width: 90%;
        padding: 2rem 0;
    }
    .row .contentWrapper h2 {
        font-size: 25px;
    }
    .row .contentWrapper p {
        font-size: 12px;
        line-height: 20px;
    }
}
@media (max-width: 768px) {
    .booknow-img {
        background-position: top;
        height: 100%;
    }
}


@media (max-width: 576px) {
    .booknow-img {
        background-position: top;
        height: 100%;
    }
}

.featured-section {
background-color: rgb(255, 255, 255);
/*    background-image: url('featured-bg.png');  */
    background-size: cover;
    background-position: center;
    padding: -1px 0; 
    margin: 0; 
    margin-top: 200px;
    box-shadow: 0 0 20px rgba(0, 0, 128, 0.1);
    border-radius: 1px;
}

body {
    font-family: 'Poppins', sans-serif;
}

.book-page {
    background-color: black;
    color: white;
}

.container-form {
    max-width: 600px;
    margin: auto;
}


.input-base {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
}

.text-input {
    border: 1px solid #ffffff;
}

.email-input {
    border: 1px solid #ffffff;
}

.date-input {
    border: 1px solid #ffffff;
}

.message-input {
    height: 100px;
    resize: vertical;
    border: 1px solid #ffffff;
}

.submit-button {
    display: inline-block;
    padding: 10px 155px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    background-color: rgb(255, 255, 255); 
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.submit-button:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(248, 219, 88);
}

.check-dates-button {
    display: inline-block;
    padding: 10px 100px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    background-color: white;
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.check-dates-button:hover {
    border-color: #ffffff;
    color: black;
    background-color: rgb(248, 219, 88); 
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(255,255,255,0.1);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--main-color);
    color: white;
}

.profile-dropdown:hover .dropdown-content {
    display: block;
}

.map{
    height: 545px;
    width: 1030px;
    border-radius: 0 20px 20px 0;
}

.about-section {
    padding: 80px 60px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-title {
    color: #000080;
    font-size: 2.5rem;
    margin-bottom: 40px;
    margin-left: 40px;
}

.about-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 40px 0;
}

.tab {
    padding: 15px 20px;
    color: #4a4a4a;
    cursor: pointer;
    width: 20%;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.tab.active {
    color: #2a3267;
    background: #f8f9fa;
    border-left: 3px solid #000080;
}

.tab:hover {
    background: lightgray;
    width: 20%;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    margin-top: -220px; /* move content upward */
    padding-top: 0; /* remove top padding inside */
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.about-logo {
    width: 475px;
    height: auto;
    margin-bottom: 30px;
    margin-left: 70px;

}

.about-text {
    text-align: center;
    font-size: 18px;
}

.about-text p {
    color: #3C3C3C;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: 70px;
    font-weight: 500;
    font-size: 18px;
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-tabs {
        margin: 20px 0;
    }
    
    .tab {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tab:hover {
        width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
        margin-top: -80px; /* Changed from -150px to move content down */
    }
    
    .logo-container {
        margin-bottom: 20px;
        margin-top: 40px; /* Added to push logo down */
    }
    
    .about-logo {
        width: 100%;
        max-width: 300px;
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .about-text {
        text-align: left;
        font-size: 16px;
    }
    
    .about-text p {
        margin-left: 0;
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .about-text .about-title {
        font-size: 1.5rem;
        text-align: left;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .about-section {
        padding: 30px 15px 15px;
    }
    
    .about-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-tabs {
        margin: 15px 0;
    }
    
    .tab {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .about-content {
        padding: 15px 5px;
        margin-top: -50px; /* Changed from -120px to move content down */
    }
    
    .logo-container {
        margin-top: 50px; /* Added to push logo down more on small screens */
    }
    
    .about-logo {
        max-width: 250px;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .about-text p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .about-text .about-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .about-text br {
        display: none;
    }
}

/* Very small devices (360px and below) */
@media (max-width: 360px) {
    .about-section {
        padding: 20px 10px 10px;
    }
    
    .about-title {
        font-size: 1.3rem;
    }
    
    .tab {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .about-content {
        margin-top: -30px; /* Changed from -100px to move content down */
        padding: 10px 5px;
    }
    
    .logo-container {
        margin-top: 60px; /* Added to push logo down even more */
    }
    
    .about-logo {
        max-width: 200px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .about-text .about-title {
        font-size: 1.2rem;
    }
}

/* Services Page Styles */
.services-container {
    max-width: 1200px;
    margin: 120px auto 50px;
    padding: 0 20px;
}

.services-main-title {
    color: #000080;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: left;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.service-card-header {
    background: #000080;
    padding: 20px 30px;
    position: relative;
}

.service-card-header h2 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    margin-right: 800px;
}

.service-card-body {
    padding: 40px;
}

.service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.service-column {
    min-width: 0; /* Important: allows content to shrink */
}

.service-column h3 {
    color: #3C3C3C;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-right: 0; /* Changed from 350px */
    font-weight: 600;
    position: relative;
    padding-left: 25px;
    word-wrap: break-word; /* Wrap long words */
}

.service-column h3:before {
    content: '▸';
    position: absolute;
    left: 0; /* Changed from -20px */
    color: #000080;
    font-size: 1.8rem;
    top: 0;
}

.service-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 0; /* Changed from 100px */
}

.service-column ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #4a4a4a;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word; /* Wrap long text */
}

.service-column ul li:before {
    content: '•'; /* Changed to bullet point */
    position: absolute;
    left: 5px;
    color: red; /* Dark blue color */
    font-size: 1.7rem;
    top: 0;
    padding-left: 5px;
}

.service-list-plain li {
    padding-top: 8px;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #5b9bd5;
}

.info-card h2 {
    color: #3C3C3C;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #3C3C3C;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Button styling */
.button-container {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        margin: 100px auto 30px;
        padding: 0 15px;
    }
    
    .services-main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .service-card-header {
        padding: 15px 20px;
    }
    
    .service-card-header h2 {
        font-size: 1rem;
        margin-right: 0;
    }
    
    .service-card-body {
        padding: 20px;
    }
    
    .service-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-column h3 {
        margin-right: 0;
        padding-left: 25px;
        min-width: auto;
    }
    
    .service-column h3:before {
        left: 0;
        font-size: 1.5rem;
    }
    
    .service-column ul {
        margin-right: 0;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h2 {
        font-size: 1.1rem;
    }
    
    .service-column ul li {
        font-size: 0.9rem;
    }
}

/* Doctors Section Styling */
.doctors-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.doctors-section h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.doctors-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.doctor-card {
    background: linear-gradient(90deg, #000080 0%, #CC0000 100%);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 128, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc((100% - 80px) / 5);
    min-width: 220px;
    max-width: 260px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/*
.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 128, 0.4);
}
*/

.doctor-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    position: relative;
    height: 3.4em; /* Fixed height - ensures all names take same space */
    line-height: 1.4;
    overflow: hidden;
    word-wrap: break-word;
}

.doctor-specialty {
    font-size: 1.2rem;
    color: red;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    height: 4.2em; /* Fixed height - ensures all specialties take same space */
    line-height: 1.4;
    overflow: hidden;
    word-wrap: break-word;
}

.doctor-schedule {
    border-top: 2px solid black;
    padding-top: 15px;
    margin-top: 0; /* Changed from 'auto' to '0' - bar appears right after specialty */
    flex-grow: 1; /* Takes up remaining space */
}

.doctor-schedule p {
    font-size: 0.9rem;
    margin: 8px 0;
    color: white;
    line-height: 1.5;
}

.doctor-schedule strong {
    color: #0096FF;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .doctor-card {
        width: calc((100% - 60px) / 4);
    }
    
    .doctor-name {
        font-size: 1.3rem;
        height: 3.6em;
    }
    
    .doctor-specialty {
        font-size: 1.3rem;
        height: 4.4em;
    }
}

@media (max-width: 1100px) {
    .doctor-card {
        width: calc((100% - 40px) / 3);
    }
    
    .doctor-name {
        font-size: 1.4rem;
        height: 3.8em;
    }
    
    .doctor-specialty {
        font-size: 1.4rem;
        height: 4.6em;
    }
}

@media (max-width: 768px) {
    .doctors-container {
        gap: 15px;
    }
    
    .doctor-card {
        width: calc((100% - 15px) / 2); /* 2 cards per row */
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .doctor-name {
        font-size: 1.1rem;
        height: 4.5em; /* Increased to fit 3 lines */
        line-height: 1.3;
    }
    
    .doctor-specialty {
        font-size: 1.1rem;
        height: 5em; /* Increased to fit 3-4 lines */
        line-height: 1.3;
    }
    
    .doctor-schedule p {
        font-size: 0.85rem;
    }
    
    .doctors-section h1 {
        font-size: 2rem;
    }
}

/* Mobile View - 2 cards per row */
@media (max-width: 480px) {
    .doctors-container {
        gap: 12px;
        padding: 15px;
    }
    
    .doctor-card {
        width: calc((100% - 12px) / 2); /* 2 cards per row on mobile */
        padding: 20px 15px;
        min-width: 0; /* Remove min-width constraint */
    }
    
    .doctor-name {
        font-size: 0.95rem;
        height: 5em; /* Increased to fit 3-4 lines */
        line-height: 1.3;
    }
    
    .doctor-specialty {
        font-size: 0.95rem;
        height: 5.5em; /* Increased to fit 4 lines */
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .doctor-schedule {
        padding-top: 12px;
    }
    
    .doctor-schedule p {
        font-size: 0.75rem;
        margin: 5px 0;
        line-height: 1.4;
    }
    
    .doctors-section h1 {
        font-size: 1.8rem;
    }
}

/* Very Small Mobile - Still 2 cards per row */
@media (max-width: 360px) {
    .doctor-card {
        width: calc((100% - 10px) / 2);
        padding: 15px 10px;
    }
    
    .doctor-name {
        font-size: 0.85rem;
        height: 5.2em; /* Increased for very small screens */
        line-height: 1.25;
    }
    
    .doctor-specialty {
        font-size: 0.85rem;
        height: 5.8em; /* Increased for very small screens */
        line-height: 1.25;
    }
    
    .doctor-schedule p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}