/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: #19E519;
    --supporting-color: #ebf3fe;
    --font-color: #424242;
    /* --bg-color: #ffffff; */
    --bg-color: #f7fcff;
    --heading-color: #000a19;
    --hero-heading-color: #36454f;
    --white-color: #ffffff;
    --para-color: #003285;
    --bnt-hover-bg-color: linear-gradient(to right, #b27f52, #ab8542, #3c863c, #90EE90);
    --btn-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --footer-bg-color: #040d12;
  }

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.hero-heading{
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    line-height: 1.5;
    color: var(--hero-heading-color);
    font-weight: 900;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.2)
}

.logo {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
}

/* /Main Section Starts Here/ */

.main-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px 130px;
    background-image: linear-gradient(
        to top right,
        #448748,
        #2E7D32,
        #43A047,
        #A5D6A7,
        #E8F5E9
    );
}

/* /Shape devider */
.custom-shape-divider-bottom-1718309491 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718309491 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1718309491 .shape-fill {
    fill: #FFFFFF;
}
/* /Shape devider */


.content {
    max-width: 50%;
}

/* .main-section h1 {
    font-size: 2.5em;
    color: #fff;
} */

.main-section p {
    font-size: 1.2em;
    color: #fff;
    margin: 20px 0;
}

 .main-section button {
    /* display: inline-block; */
    padding: 1rem 2.4rem;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: .6rem;
    text-decoration: none;
    font-weight: 800;
    /* outline: none; */
    border: none;
} 

.btn:hover{
    background: linear-gradient(to right, #b27f52, #ab8542, #3c863c, #90EE90);
    cursor: pointer;
    box-shadow: var(--btn-box-shadow);
}   
 

.main-image {
    width: 100%;
    max-width: 500px;
    /* border: 2px solid #ccc; */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .main-image {
        max-width: 400px;
    }
}

/* /Main Section Starts Here/ */

/* Service Cards section starts here*/


.services-section {
    padding: 5rem 5rem 2rem 5rem;
    text-align: center;
    /* margin-bottom: 1rem; */
    /* background-color: #f8f9fa; */
}

.services-section h2{
    font-size: 2.4rem;
}

.services-section h2 {
    margin-bottom: 4rem;
}



.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem;
    width: 22rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-1rem);
}

.service-card i {
    font-size: 4rem;
    color: #FF6347;
}

.service-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.8rem;
}

.service-card p {
    color: #666;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card:hover i {
    background: linear-gradient(to right, #b27f52, #ab8542, #3c863c, #90EE90);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* Service Cards section ends here */

/* /Reusable Elements/ */

p,
li,
a,
label {
    font-family: "Urbanist", sans-serif;
    font-size: 1.2rem;
    letter-spacing: .06rem;
    font-weight: 600;
    color: var(--para-color);
    line-height: 1.5;
}

 .navbar ul li a{
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    /* border: 2px solid red; */
    margin: 1rem;
    text-wrap: nowrap;
    color: green;
    position: relative;

    &::after{
        content: "";
        position: absolute;
        bottom: -.3rem;
        left: 0;
        width: 0%;
        border-bottom: .2rem solid green;
        transition: all .3s linear;
    }
}

.navbar ul li a:hover::after{
    width: 100%;
}

.navbar ul li a:hover{
    color: orange;
}

/* /Reusable Elements/ */

/* Contact Us Section Starts Here */

.intro-text p{
    color: black;
}

.contact-details-content, p {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}



.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}
.intro-text {
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    /* background-color: white; */
}
.contact-details {
    width: 100%;
    max-width: 50%;
    padding: 20px;
    color: white;
    background: url('./asset/doctorImg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.contact-details-content {
    position: relative;
    z-index: 2;
    margin: 20px;
}
.detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping within the detail elements */
}
.detail span {
    margin-right: 10px;
}
.detail div {
    flex: 1; /* Ensure the content within .detail can shrink */
    min-width: 0; /* Prevents the flex item from overflowing */
    word-wrap: break-word; /* Break long words */
}
.form-container {
    width: 100%;
    max-width: 50%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.input {
    max-width: 40rem; /* setting max-width to 28rem */
    width: 100%;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 1em;
    margin-bottom: 15px;
    background-color: #ccc;
    box-shadow: inset 2px 5px 10px rgba(1, 300, 10, 0.3);
    transition: 300ms ease-in-out;
}
.input:focus {
    background-color: white;
    transform: scale(1.05);
    box-shadow: 13px 13px 100px #969696, -13px -13px 100px #ffffff;
}
.input[type="submit"] {
    background-color: #333;
    color: white;
    cursor: pointer;
}
.input[type="submit"]:hover {
    background-color: #555;
}
@media (max-width: 768px) {
    .container {
        width: 95%;
        flex-direction: column;
        align-items: center;
    }
    .contact-details, .form-container {
        max-width: 100%;
        margin: 0 auto;
        padding-right: 3rem;
    }
    .input {
        max-width: 95%; /* ensure inputs are responsive */
    }
}
/* Contact Us Section Ends Here */





@media (max-width: 700px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: white;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    }

    
    .nav-links.active {
        display: flex;
    }

    .contact-details{
        max-width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .main-section {
        flex-direction: column;
        padding: 100px 20px 80px;
    }

    .content {
        max-width: 100%;
    }

    .main-section h1 {
        font-size: 2em;
    }

    .main-section p {
        font-size: 1em;
    }

    .main-section button {
        font-size: 1em;
    }

    .main-image {
        display: none;
    }
}


/* /Footer/ */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

footer {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 20px 100px 0px 100px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 150px;
}

.footer-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.footer-column {
    margin-bottom: 20px;
    text-align: center;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column h3 a {
    color: white;
    text-decoration: none;
}

.footer-column h3 a:hover {
    text-decoration: underline;
}

.social-media ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

li {
    padding-bottom: .5rem;
    font-size: 2rem;
    font-weight: 700;
}

.social-media ul li {
    margin-right: 10px;
}

.social-media ul li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.social-media ul li a:hover {
    color: #ddd;
}


.footer-bottom {
    text-align: center;
    margin-top: 0;
    padding: 0 0 20px 0;
    background-color: #4CAF50; /* Green background */
}

@media (min-width: 700px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-columns {
        flex-direction: row;
        align-items: flex-start;
        width: auto;
        margin-top: 0;
    }
    
    .footer-column {
        margin-right: 20px;
        text-align: center;
    }
    
    .footer-column:last-child {
        margin-right: 0;
    }

    .social-media {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-around;
        margin: 0;
        /* font-size: 4rem; */
    }

    /* .footer-column .social-media{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    } */

    .social-media li:hover  i{
        color: orange;
        font-size: 2rem;
    }
}



.font{
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.links a{
    text-decoration: none;
    position: relative;

    &::after{
        content: "";
        width: 0%;
        border-bottom: 2px solid var(--para-color);
        position: absolute;
        bottom: 0;
        left: -100%;
        transition: all .4s linear;
    }

    &:hover::after{
        width: 200%;
    }
}

.social-media li:hover  i{
    color: orange;
    font-size: 2rem;
}

.social-media li{
    list-style-type: none;
    text-align: center;
    padding: 1rem;
}

.no-pointer{
    pointer-events: none;
    text-decoration: none;
}

.social-media a{
    font-size: 2rem;
}

@media (max-width: 700px) {
    .social-media {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-around;
        margin: 0;
        /* font-size: 4rem; */
    }
}

/* /Footer/ */


/* dropdown */
.dropdown {
    display: none;
    position: absolute;
    background-color: #efeff6;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.dropdown li {
    width: 200px;
    list-style-type: none;
}

.dropdown a {
    padding: 5px;
}

.specialities-menu:hover .dropdown {
    display: block;
}

@media (max-width: 768px) {
    .dropdown {
        position: static;
        margin-left: 0;
    }
}

@media (min-width: 769px) {
    .dropdown {
        left: auto;
        right: 0;
    }
}

/* dropdown */

/* /About us page/ */
.mission-vision-values h2,
.mission-vision-values h3 {
    font-size: 2rem;
    color: orange;
    font-weight: 700;
}

.why-choose-us h2{
    color: orange;
    position: relative;
    z-index: 3;
    font-size: 2rem;
}
.why-choose-us h3{
    color: orange;
    position: relative;
    z-index: 3;
    font-size: 1.4rem;
}

.why-choose-us i{
    color: white;
    position: relative;
    z-index: 3;
    font-size: 2rem;
}

.head{
    color: white;
    margin-top: 0;
    padding-bottom: 1rem;
}
    .hero {
        background: url("./asset/doctorImgForAboutUs.png") no-repeat center center;
        background-size: cover;
        color: white;
        padding: 5rem 2rem;
        text-align: center;
        margin-top: 5rem;
    }

    .about-us, .mission-vision-values h1{
        font-size: 2rem;
        font-weight: 800;
        color: orange;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

    .my-hero{
        padding: 50px;
    }

    .mission-vision-values, .our-team, .testimonials {
        padding: 40px 20px;
        background: #fff;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .why-choose-us{
        padding: 40px 20px;
        background: url("./asset/landscapeImg.jpg") no-repeat center center;
        background-size: cover;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        position: relative;
        /* border: 2px solid red; */
    }

    .why-choose-us::before{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

   

    .why-choose-us, p {
        position: relative;
        z-index: 2;
        color: White;
    }
    

   

    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .grid-item {
        position: relative;
        padding: 20px;
        color: white;
        border-radius: 20px;
        overflow: hidden;
    }

    .grid-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .grid-item h2, .grid-item p, .grid-item li {
        position: relative;
        z-index: 2;
    }

    .our-mission {
        background: url("./asset/OurValues.jpg") no-repeat center center;
        background-size: cover;
    }

    .our-vision {
        background: url("./asset/ourMission.jpg") no-repeat center center;
        background-size: cover;
    }

    .our-values {
        background: url("./asset/OurVision.jpg") no-repeat center center;
        background-size: cover;
    }

    .icon-quality, .icon-innovation, .icon-integrity, .icon-collaboration, .icon-compassion, .icon-expertise, .icon-customized, .icon-commitment {
        font-size: 2em;
        margin-bottom: 10px;
        color: #fff;
    }

    .team-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .team-member {
        text-align: center;
        width: 200px;
    }

    .team-member img {
        width: 100%;
        border-radius: 50%;
    }

    .reasons-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
    }

    .reason {
        text-align: center;
        width: 200px;
    }


    /* scrolling effect */
    .mission-vision-values,
.why-choose-us,
.hero {
    transform: scale(0.85);
    transition: transform 0.7s ease-in-out;
}

.scrolled .mission-vision-values,
.scrolled .why-choose-us,
.scrolled .hero {
    transform: scale(1);
}


    
/* /About us page/ */

