*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff0336;
    border-radius: 50px;
}

.navbar{
    /* border: 1px solid red; */
    height: 120px;
    width: 100%;
    padding-left: 120px;
    padding-right: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background-color 0.5s, height 0.5s, padding 0.5s;
}

.navbar.scrolled {
    background-color: rgb(0, 0, 0);
    height: 90px;
    box-shadow: 0px 8px 20px rgb(0, 0, 0); 
    padding: 10px 70px;
}

.logo {
    /* border: 1px solid green; */
    height: 65px;
}

.nav-buttons {
    display: flex;
    margin-right: 30px;
}

.nav-button {
    margin-left: 40px;
    text-decoration: none; 
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: 0.5s;
}

.nav-button:hover {
    color: #ff0336;
}

.section-home {
    min-height: 100vh;
    padding: 100px 0;
    background-size: cover;
    position: relative;
}

.section-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 1),rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.section-home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./../assets/bg-1.jpg');
    background-size: cover;
    z-index: -2; 
    transform: rotate(180deg);
}

.home-content{
    /* border: 1px solid white; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-left: 150px;
    position: relative; 
}

.home-content-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    margin-right: 100px;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fit-video {
    width: 100%;
    height: auto; 
    max-width: 100%;
    max-height: 100%;
}


.container{
    /* border: 1px solid red; */
    height: auto;
    width: 100%;
    top: 10%;
    padding-top: 150px;
    position: relative; 
    margin-left: 100px;
}

.container img{
    height: 40px;
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.head-text{
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.section-home h1{
    font-size: 48px;
    font-weight: 450;
    color: #fff;
    margin-top: 125px;
    line-height: 65px;
}

.section-home h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.head-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    /* border: 2px solid #ff0336; */
    height: 55px;
    width: 200px;
    background-color: #fff;
    margin-top: 40px;
    position: relative;
}

.head-btn .custom-icon{
    color: #ff0336;
}

.head-btn:after {
    content: "";
    height: 55px;
    width: 200px;
    border: 1px solid rgba(255,255,255,.362);
    position: absolute;
    top: -15px;
    left: 15px; 
    transition: all .4s;
}

.head-btn:hover:after {
    top: 0;
    left: 0;
}

.share-links {
    /* Existing styles */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 35%;
    margin-top: 170px;
    opacity: 0;
    animation: slideInFromBottom 1s ease forwards;
}


.share-links .share-text {
    /* border: 1px solid yellow; */
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    letter-spacing: .1em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.share-links .space {
    background-color: #ff0336;
    height: 40px;
    width: 3.5px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.share-links .share-btns {
    /* border: 1px solid aliceblue; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.share-links .share-btns .wp-btn,
.share-links .share-btns .insta-btn,
.share-links .share-btns .fb-btn{
    border: 2px solid #fff;
    border-radius: 50px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.share-links .share-btns .link-icon{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.share-links .share-btns .wp-btn:hover{
    background-color: #25d366;
    border: none;
    box-shadow: 0 0 25px #25d366; 
}

.share-links .share-btns .insta-btn:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
    border: none;
    box-shadow: 0 0 25px #833ab4;
}

.share-links .share-btns .fb-btn:hover {
    background: linear-gradient(135deg, #1877f2, #55acee);
    border: none;
    box-shadow: 0 0 25px #1877f2;
}

/* About Section */
.section-about{
    height: auto;
    position: relative;
}

.section-about .about-container{
    /* border: 1px solid red; */
    padding-left: 300px;
    padding-right: 300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-about .about-container .about-cards{
    /* border: 1px solid blue; */
    display: flex;
    gap: 2.5rem;
    margin-top: -70px;
}

.section-about .about-container .about-cards .about-card{
    /* border: 1px solid green; */
    height: 400px;
    width: 400px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.225);
    background-color: #fff;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    opacity: 0;
    transition: opacity 0.5s ease; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.section-about .about-container .about-cards .about-card .serv-icon{
    /* border: 1px solid black; */
    font-size: 65px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: #ff0336;
}

.section-about .about-container .about-cards .about-card .service-info{
    /* border: 1px solid black; */
    height: auto;
    width: 100%;
    text-align: center;
}

.section-about .about-container .about-cards .about-card .service-info .service-title{
    /* border: 1px solid red; */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 17.5px;
    margin-top: 10px;
    text-transform: uppercase;
}

.section-about .about-container .about-cards .about-card .service-info .service-content{
    /* border: 1px solid red; */
    font-size: 15px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 24px;
}

.section-about .about-container .about-cards .about-card:hover{
    background-color: #ff0336;
    color: #fff;
}

.section-about .about-container .about-cards .about-card:hover .serv-icon .service-icon{
    color: #fff;
}

.view-more{
    display: flex;
    width: 90%;
    gap: 30px;
    margin-top: 50px;
 }

 .view-more .view-services-btn{
    width: 180px;
    height: 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    border: 2px solid #ff0336;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.view-more .divider{
    background-color: #000;
    height: 3px;
    width: 50%;
    margin-top: 20px;
    border-radius: 50px;
}

.view-more .view-services-btn:hover{
    background: linear-gradient(135deg, #94001e, #ff0336);
    color: #fff;
    border: none;
    box-shadow: 0px 8px 20px #ff03356e; 
}


.section-about .about-container .more-info{
    /* border: 1px solid saddlebrown; */
    margin-top: 20px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
}

.directors-heading {
    /* border: 1px solid red; */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.director {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.director-info {
    /* border: 1px solid red; */
    position: relative;
    height: auto;
    width: 300px;
    padding-top: 30px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.director-info:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.director-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    /* background-color: red; */
    transition: width 0.3s ease-in-out;
}


.director-info:hover::after {
    width: 100%;
}

.director-info:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.director-image {
    /* border: 1px solid red; */
    width: 200px;
    height: 200px; 
    margin-bottom: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-image img {
    width: 100%;
    height: auto; 
}

.director h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.director-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.director-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000;
}

.fa-brands{
    font-size: 18px;
    font-weight: 700;
}

.whatsapp:hover{
    background-color: #25d366;
    border: none;
    box-shadow: 0 0 25px #25d366; 
    color: #fff;
}

.facebook:hover{
    background: linear-gradient(135deg, #1877f2, #55acee);
    border: none;
    box-shadow: 0 0 25px #1877f2; 
    color: #fff;
}

.instagram:hover{
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
    border: none;
    box-shadow: 0 0 25px #833ab4;
    color: #fff;
}

.section-contact{
    /* border: 1px solid red; */
    height: 300px;
    background-image: url('./../assets/bg-1.jpg');
    background-size: cover;
    display: flex;
    justify-content: start;
    align-items: center;
    background-position: center left;
    padding-left: 300px;
    padding-right: 300px;
    overflow: hidden;
    background-color: #000;
}

.contact-head{
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-no{
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.call-label{
    color: #ff0336;
    font-weight: 600;
}

.contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    /* border: 2px solid #ff0336; */
    height: 55px;
    width: 200px;
    background-color: #ff0336;
    margin-top: 40px;
    position: relative;
    color: #fff;
}


.contact-btn .custom-icon{
    color: #000;
}

.contact-btn:after {
    content: "";
    height: 55px;
    width: 200px;
    border: 1px solid #ff033566;
    position: absolute;
    top: -15px;
    left: 15px; 
    transition: all .4s;
}

.contact-btn:hover:after {
    top: 0;
    left: 0;
}

.footer {
    height: auto;
    padding: 0 300px;
    padding-bottom: 30px;
    background-color: #f2f2f2;
    border-top: 5px solid #ff0336;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.footer-logo {
    width: 30%;
    padding-top: 50px;
}

.footer-logo img {
    width: 90px;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 14px;
}

.social-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

.social-buttons li {
    margin-right: 10px;
}

.footer-nav, .working-hours {
    width: 30%;
    padding-top: 50px;
}

.navbar-links a {
    display: block;
    margin-bottom: 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.navbar-links a:hover {
    color: #ff0336;
}

.working-hours p {
    margin-bottom: 10px;
}

.working-hours p:last-child {
    margin-bottom: 0;
}

.footer-content{
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

.socials{
    border: 2px solid #000;
    border-radius: 50px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
}

.socials i{
    color: #000;
}

.socials:hover i{
    color: #fff;
}

.footer-heading{
    margin-bottom: 15px;
    font-size: 22px;
}

.day{
    font-weight: 700;
    margin-bottom: 10px;
    color: #646464;
}

.time{
    font-weight: 500;
    color: #646464;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.section-home h1,
.section-home h2,
.container
{
    animation: slideInFromLeft 1s ease forwards;
}

.section-home .head-btn {
    animation: fadeIn 1s ease forwards;
}

.director-info {
    transition: transform 0.3s ease-in-out;
}

.director-info:hover {
    transform: translateY(-5px);
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-links .share-text,
.share-links span {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.share-links .share-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.share-links .share-btns .wp-btn,
.share-links .share-btns .insta-btn,
.share-links .share-btns .fb-btn {
    opacity: 0;
    animation: slideInFromBottom 0.5s ease forwards;
    animation-delay: 1s;
}

/* Navbar */
.hamburger {
    display: none;
}


.navigation-items {
   display: none;
}

@media only screen and (max-width: 1650px) {
    .section-about .about-container .about-cards .about-card {
        padding: 5px;
    }

    .section-about .about-container .about-cards .about-card .serv-icon{
        font-size: 32px;
    }

    .section-about .about-container .about-cards .about-card .service-info .service-title {
        font-size: 16px;
    }

    .section-about .about-container .about-cards .about-card .service-info .service-content {
        font-size: 12px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 1300px) {
    .section-about .about-container{
        padding-left: 100px;
        padding-right: 100px;  
    }

    .section-about .about-container .about-cards .about-card {
        padding: 5px;
    }

    .section-about .about-container .about-cards .about-card .serv-icon{
        font-size: 42px;
    }

    .section-about .about-container .about-cards .about-card .service-info .service-title {
        font-size: 18px;
    }

    .section-about .about-container .about-cards .about-card .service-info .service-content {
        font-size: 13px;
        line-height: 20px;
    }

    .section-contact {
        padding-left: 150px;
        padding-right: 150px;
    }

    .footer{
        padding: 0 150px;
    }
}

@media only screen and (max-width: 1120px) {
    .home-content {
        padding-left: 50px;
    }

    .share-links .share-text{
        font-weight: 700;
        font-size: 20px;
    }

    .container img {
        height: 32px;
        left: 18%;
    }

    .head-text{
        left: 18%;
        font-size: 20px;
    }
    
    .section-home h1{
        font-size: 40px;
    }

    .section-home h2{
        font-size: 40px;
    }

    .container{
        width: 100%;
        margin-left: 50px;
    }
    
}

@media only screen and (max-width: 900px) {
    .hamburger {
        display: block;
        cursor: pointer;
        color: #fff;
        font-size: 26px;
    }

    .nav-buttons{
        display: none;
    }

    

    .navigation-items {
        position: fixed;
        top: 0;
        width: 100%;
        height: 50vh;
        background-color: #fff; 
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        right: -100%;
    }

    .navigation-items.active {
        right: 0;
    }

    .navigation-items .nav-button{
        color: #000;
        line-height: 50px;
        transition: 0.3s ease-in-out;
        font-size: 20px;
        font-weight: 700;
    }

    .navigation-items .nav-button:hover{
        color: #ff0336;
    }

    .close-icon {
        position: absolute;
        top: 10px;
        right: 10px; 
        cursor: pointer;
        font-size: 26px;
        font-weight: 700;
        transition: 0.3s ease-in-out;
    }

    .close-icon:hover{
        color: #ff0336;
    }

    .home-content-2{
        display: none;
    }

    .section-home{
        background-image: url(./../assets/bg-1.jpg);
        background-size: cover;
        background-position: right;
    }

    .section-about .about-container .about-cards{
        display: flex;
        flex-direction: column;
    }

    .section-about .about-container .about-cards .about-card {
        height: 300px;
    }

    .section-about .about-container {
        padding-left: 100px;
        padding-right: 100px;
    }

    .section-contact {
        padding-left: 100px;
        padding-right: 100px;
    }

    .footer {
        padding: 0 50px;
    }

    .footer-logo img {
        width:60px;
    }

    .footer-logo p {
        font-size: 12px;
    }

    .socials {
        height: 30px;
        width: 30px;
        border: 1.5px solid #000;
    }

    .socials i{
        font-size: 15px;
    }

    .footer-heading {
        font-size: 20px;
    }


    .footer-nav{
        line-height: 40px;
    }
    .time{
        font-size: 14px;
    }

    .footer-nav, .working-hours {
        line-height: 40px;
    }
}

@media only screen and (max-width: 530px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 230px;
        height: 80px;
    }

    .navbar.scrolled {
        height: 80px;
    }

    .logo{
        height: 50px;
    }

    .home-content {
        padding-left: 10px;
    }

    .container{
        margin-left: 50px;
        top: -11%;
    }

    .container img{
        left: 28%;
    }

    .head-text{
        left: 28%;
    }

    .section-home h1 {
        font-size: 28px;
        line-height: 50px;
    }

    .section-home h2 {
        font-size: 32px;
    }

    .head-btn {
        height: 40px;
        width: 145px;
        font-size: 12px;
    }

    .head-btn:after {
        height: 40px;
        width: 145px;
    }

    .section-about .about-container{
        padding-left: 50px;
        padding-right: 50px;
    }

    .section-about .about-container .about-cards .about-card .service-info .service-title {
        font-size: 16px;
    }

    .section-about .about-container .about-cards .about-card .service-info .service-content {
        font-size: 10px;
        line-height: 20px;
    }

    .view-more .view-services-btn{
        font-size: 14px;
        width: 250px;
    }

    .view-more{
        gap: 10px;
        width: 95%;
    }

    .director{
        display: flex;
        flex-direction: column;
    }

    .director-image{
        width: 220px;
        height: 220px;
    }

    .director h3{
        font-size: 26px;
    }

    .section-contact {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-head {
        font-size: 28px;
    }

    .contact-no {
        font-size: 24px;
    }

    .contact-btn {
        height: 45px;
        width: 145px;
        font-size: 12px;
    }

    .contact-btn:after{
        height: 45px;
        width: 145px;
    } 

    .footer-container{
        display: flex;
        flex-direction: column;
    }
    .footer-logo, .footer-nav, .working-hours{
        width: 100%;
    }

    .footer-nav, .working-hours {
        line-height: 22px;
    }

    .working-hours {
        margin-top: -26px;
        margin-bottom: 30px;
    }
}