/* Default CSS  */
:root {
    --white-color: #ffffff;
    --dark-color: #2A4759;
    --black-color: #000000;
    --body-bg: #ffffff;
    --old-contact-bg: linear-gradient(135deg, #dceefb 0%, #b6e3d4 100%);
    --contact-bg: linear-gradient(135deg, #a29bfe 0%, #74b9ff 100%);
    --title-color-1: #2A4759;
    --title-color-2: #000000;
    --banner-title: #eeaa39;

    --paragraph-color-1: #333333;
    --paragraph-color-2: #2A4759;

    --mark-color: #da6c3d;

    --navLink-color: #383664;
    --navLink-hover: #da6c3d;
    --navLink-active: #da6c3d;

    --navToggle-color: #383664;
    --navToggle-hover: #da6c3d;

    --home-banner-bg-1: #373764;
    --home-banner-bg-2: #494172;

    --circle-color: #efaa39;
    --diamond-outer-color: #da6b3c;
    --diamond-inner-color: #423e6d;
    --small-square: #efaa39;
    --small-circle: #da6b3c;
    --small-triangle: #dd8528;

    --button-color: #ffffff;
    --button-bg-1: #efaa3a;
    --button-bg-2: #de8427;

    --border-color: #494172;

    --bg-1: #18153a;
    --bg-2: #072237;
    --bg-3: #ffffff;
    --bg-4: #f4f8f9;

    --inner-service-item-bg: #ffffff;

    --open-sans-font: "Open Sans", sans-serif;
    --roboto-font: "Roboto", sans-serif;

    --footer-bg: #000000;
    --footer-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--open-sans-font);
    background: var(--body-bg);
}

/* Override for contact page only */
html body.contact-page {
    background: var(--contact-bg); 
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Page Width  */
.myContainer {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* All Main Title */
.main-title {
    font-size: 45px;
    font-family: var(--roboto-font);
    color: var(--title-color-1);
    font-weight: 600;
    padding: 0 0 10px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}

@media screen and (max-width: 480px) {
    .main-title {
        font-size: 30px;
    }
}

/* All Buttons */
.button-container {
    padding-top: 20px;
}

.button-container a,
.button-container button {
    background-image: linear-gradient(90deg, var(--button-bg-1) 0%, var(--button-bg-2) 100%);
    box-shadow: 0px 20px 30px -10px rgba(212, 165, 46, 0.4);
    z-index: 9;
    position: relative;
    font-family: var(--roboto-font);
    color: var(--button-color);
    padding: 20px 36px;
    font-weight: 700;
    border-color: transparent;
    border-width: 1px;
    border-style: solid;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 0 transparent;
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
    font-size: 14px;
}

.button-container a .fa-angle-right,
.button-container button .fa-angle-right {
    display: none;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.4s;
}

.button-container a:hover .fa-angle-right,
.button-container button:hover .fa-angle-right {
    display: inline-block;
}

.button-container a:hover,
.button-container button:hover {
    letter-spacing: 5.5px;
}

@media screen and (max-width: 420px) {

    .button-container a,
    .button-container button {
        font-size: 13px;
        padding: 20px;
        display: block;
    }

    .button-container a:hover,
    .button-container button:hover {
        letter-spacing: 3.5px;
    }
}


/* CSS  */
/* <------- All Pages Header Section Start -----> */
/* <------- All Pages Header Section Start -----> */
/* <------- All Pages Header Section Start -----> */
header {
    /* background-color: #eaf1fb;  Or #f0f2f5 or another light shade */
    /* background-color: #fdf6ec; */
    /*background-color: #eaf1fb; */
    background-color: #f5f3ff;
}
nav {
    background-color: #fdf6ec;
    padding: 5px 20px;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    font-size: 1.5rem;
    color: var(--navToggle-color);
    background: transparent;
    border-color: transparent;
    transition: all 0.3s linear;
    cursor: pointer;
}

.nav-toggle:hover {
    color: var(--navToggle-hover);
}

.logo img {
    height: 90px;
}

.links-container {
    height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
}

.show-links {
    height: auto;
}

.links a {
    background: transparent;
    color: var(--navLink-color);
    font-size: 17px;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s linear;
    font-weight: 700;
    padding: 0.75rem 0;
}

.links a:hover {
    color: var(--navLink-hover);
}

.links a.active {
    color: var(--navLink-active);
}

/* NAVBAR RESPONSIVE  */
@media screen and (min-width: 800px) {
    nav {
        background: transparent;
    }

    .nav-center {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-header {
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

    .links-container {
        height: auto !important;
    }

    .links {
        display: flex;
    }

    .links a {
        background: transparent;
        color: var(--navLink-color);
        font-size: 16px;
        text-transform: uppercase;
        display: block;
        transition: all 0.3s linear;
        margin: 0 1rem;
        font-weight: 700;
        padding: 0;
    }



    .links a:hover {
        color: var(--navLink-hover);
    }

    .links a.active {
        color: var(--navLink-active);
    }
}

/* <------- All Pages Header Section End -----> */
/* <------- All Pages Header Section End -----> */
/* <------- All Pages Header Section End -----> */



/* <------- All Pages Banner Section Start -----> */
/* <------- All Pages Banner Section Start -----> */
/* <------- All Pages Banner Section Start -----> */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.banner .banner-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.banner .banner-content .name {
    font-family: var(--roboto-font);
    font-size: 40px;
    margin-top: 30px;
    color: var(--white-color);
    font-weight: 700;
    padding: 0 0 15px;
    line-height: 1.3em;
    text-transform: none;
    letter-spacing: 3px;
    text-align: center;
}

.banner .banner-content .title {
    font-size: 45px;
    color: var(--banner-title);
    font-family: var(--roboto-font);
    font-weight: 900;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.banner .banner-content .subheader {
    font-size: 28px;
    color: var(--white-color);
    font-family: var(--roboto-font);
    font-weight: 600;
    text-shadow: 0 0 0 transparent;
    line-height: 1.4em;
    text-align: center;
    text-transform: none;
    padding-bottom: 20px;
    margin: 0 auto;
    max-width: 800px;
}

.banner .banner-content p {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    padding: 0 0 30px;
    text-align: center;
    line-height: 2em;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

css.banner .banner-content .list-container {
    width: 100%;
    max-width: 800px; /* Match the paragraph width */
    margin: 0 auto;
    text-align: center; /* Center the container itself */
    padding: 0 0 30px;
}

.banner .banner-content .list-container ul {
    display: inline-block;
    text-align: left; /* Left align the text within the list */
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 2em;
}

.banner .banner-content .list-container li {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 2em;
}

/* Banner Section Responsive */
@media screen and (max-width: 1024px) {
    .banner .banner-content .title {
        font-size: 60px;
        line-height: 60px;
    }
}

@media screen and (max-width: 568px) {
    .banner .banner-content .title {
        font-size: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .banner .banner-content p {
        font-size: 16px;
        line-height: 1.5rem;
    }
}

@media screen and (max-width: 368px) {
    .banner .banner-content .title {
        font-size: 35px;
        line-height: 40px;
    }
}


/* <------- All Pages Banner Section End -----> */
/* <------- All Pages Banner Section End -----> */
/* <------- All Pages Banner Section End -----> */




/* Home Page */
/* <------- Home Page Start -----> */
/* <------- Home Page Start -----> */
/* Home Banner Section */
/* Home Banner Section */
/* Home Banner Section */
.home-banner.banner {
    background: url(../images/banner-image-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 90vh;
    position: relative;
}


/* <------- Home Page End -----> */
/* <------- Home Page End -----> */



/* About Page */
/* <-------About Page Start -----> */
/* <-------About Page Start -----> */
/* <-------About Page End -----> */
/* <-------About Page End -----> */
/* About Banner Section */
/* About Banner Section */
/* About Banner Section */
.banner.about-banner {
    background: url(../images/banner-image-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
}



/* About Section */
/* About Section */
/* About Section */
.about-section {
    padding: 60px 0;
    background: var(--bg-4);
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /* align-items: stretch; */
    gap: 40px;
}

.about-details .title {
    color: var(--mark-color);
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
}

.about-details p {
    font-size: 16px;
    font-weight: 400;
    color: var(--paragraph-color-1);
    padding: 0 0 10px;
    text-align: left;
    line-height: 2em;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.about-photo img {
    width: 400px !important;
    height: auto !important; 
    max-width: 400px !important;
    /* object-fit: cover; */
    border-radius: 5px;
}

/* About Section Responsive */
@media screen and (max-width: 1024px) {
    .about-container {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}






/* <------- Services Page Start -----> */
/* <------- Services Page Start -----> */
/* <------- Services Page Start -----> */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.services-banner {
    background: url(https://cdn.vectorstock.com/i/500p/33/04/ai-artificial-intelligence-background-vector-42903304.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
}

/* Services Section */
/* Services Section */
/* Services Section */
.services-section {
    padding: 60px 0;
    background: var(--bg-1);
}

.services-section .main-title {
    color: var(--white-color);
}

.services-section .services-container {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
    margin-top: 30px;
    /* gap: 20px; */
}

.services-section .service-item {
    background: var(--inner-service-item-bg);
    padding: 50px 20px;
    box-shadow: 0px 2px 70px 0px rgba(110, 130, 208, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex: 1;
    text-align: center;
    margin-top: 30px;
    border-radius: 20px;

}

.services-section .service-item img {
    width: 80px;
}

.services-section .service-item .name {
    font-size: 30px;
    font-family: var(--roboto-font);
    color: var(--title-color-2);
    font-weight: 600;
    padding: 20px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: center;
}

.services-section .service-item p {
    font-size: 18px;
    font-family: var(--open-sans-font);
    color: var(--paragraph-color-1);
    font-weight: 400;
    padding-top: 15px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.8em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
}

.services-section .service-item .button-container a {
    padding: 10px 20px;
}

/* Inner Services Section Responsive */

@media screen and (max-width: 568px) {
    .services-section .service-item .name {
        font-size: 22px;
    }

    .services-section .service-item {
        padding: 35px 10px;
    }
}

/* <------- Services Page End -----> */
/* <------- Services Page End -----> */
/* <------- Services Page End -----> */






/* <------- Contact Page Start -----> */
/* <------- Contact Page Start -----> */
/* <------- Contact Page Start -----> */
/* COntact Banner Section */
/* COntact Banner Section */
/* COntact Banner Section */
.banner.contact-banner {
    background: url(../images/banner-image-4.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    min-height: 60vh;
    position: relative;
}


/* Appointment Section */
/* Appointment Section */
/* Appointment Section */
.appointment-section {
    padding: 60px 0;
    /* background: var(--white-color); */
    background: var(--contact-bg);  

}

.appointment-container {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    padding: 0 20px;
    align-items: center;
}

.appointment-details .title {
    font-size: 24px;
    color: var(--title-color-2);
    font-weight: 600;
    margin-bottom: 15px;
}

.appointment-details .time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--paragraph-color-1);
    font-size: 17px;
    /* font-weight: 700; */
}

.appointment-details p {
    font-size: 16px;
    font-family: var(--open-sans-font);
    color: var(--paragraph-color-6);
    font-weight: 400;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    padding-top: 20px;
    line-height: 1.8em;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

.appointment-wight img {
    width: 100%;
    border-radius: 5px;
}

/* Appointment Section Responsive */
@media screen and (max-width: 768px) {
    .appointment-container {
        grid-template-columns: 1fr;
    }
}


/* Contact Form Section */
/* Contact Form Section */
/* Contact Form Section */
.contact-form {
    padding-bottom: 60px;
    /* background: var(--white-color); */
    background: var(--contact-bg);  
}

.contact-form .form-container {
    width: 100%;
    max-width: 870px;
    margin: auto;
    margin-top: 30px;
    padding: 0 20px;
}

.contact-form .title {
    font-size: 55px;
    line-height: 65px;
    color: var(--title-color-1);
    font-weight: 600;
    text-align: center;
}


/* Form */
.form-container .input-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-container p.label-text {
    font-size: 18px;
    line-height: 25px;
    color: var(--title-color-2);
}

.form-container .label-text span,
.form-container label.label-text span {
    color: #A9A9A9;
}

.form-container .input-fill {
    margin-top: 30px;
}

.form-container label.label-text {
    font-size: 18px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 600;
}

.form-container .label-text2 {
    font-size: 16px;
    line-height: 30px;
    color: #444;
    padding: 10px 0;
}

.form-container .input-fill input,
.form-container .input-fill textarea {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid var(--border-color);
    background: #f4f8f9;
    color: #0f2c45;
    padding: 10px;
    height: 58px;
    line-height: 38px;
    margin-top: 10px;
    font-size: 18px;
}

.form-container .input-fill textarea {
    height: 100px;
}

.form-container .input-fill input:focus,
.form-container .input-fill textarea:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid var(--border-color);
}

.form-container .isntSubmit.req-message {
    margin-bottom: 20px;
}

.form-container .req-message {
    display: none;
    background: #ff0000;
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
    padding: 10px;
    align-items: center;
    gap: 20px;
}

.form-container .req-message i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1px solid var(--white-color);
    text-align: center;
    border-radius: 50%;
}

.form-container .button-container {
    padding-top: 30px;
}

.form-container .button-container button {
    padding: 1.2em 2.004em;
    letter-spacing: .1em;
    font-size: 18px;
    line-height: 23px;
    color: var(--button-color);
    border-radius: 16px 0;
    background-image: linear-gradient(90deg, var(--button-bg-1) 0%, var(--button-bg-2) 100%);
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.form-container .button-container button:hover {
    letter-spacing: 5.5px;
}

.contact-form .applicationSubmit-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white-color);
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: none;
}

.contact-form .applicationSubmit-message p {
    font-size: 18px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 600;
}

/*Application Form Section Responsive */
@media screen and (max-width: 768px) {
    .contact-form .title {
        font-size: 30px;
        line-height: 40px;
    }

    .contact-form .form-container .input-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 530px) {
    .contact-form .title {
        font-size: 25px;
        line-height: 35px;
    }
}


/* <------- Contact Page End -----> */
/* <------- Contact Page End -----> */
/* <------- Contact Page End -----> */






/* <------- All pages section Start -----> */
/* <------- All pages section Start -----> */
/* <------- All pages section Start -----> */

/* Chart Section */
/* Chart Section */
/* Chart Section */
.chart-section {
    background: var(--white-color);
    padding-top: 60px;
    padding-bottom: 40px;
}

.chart-section .chart-container {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    align-items: center;
    gap: 20px;
}

.chart-container .chart img {
    width: 100%;
}

.chart-container .chart-details .title {
    font-size: 45px;
    font-family: var(--roboto-font);
    color: var(--title-color-1);
    font-weight: 600;
    padding: 0 0 10px;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: left;
}

.chart-container .chart-details .title span {
    color: var(--mark-color);
}

.chart-container .chart-details p {
    font-size: 18px;
    color: var(--paragraph-color-1);
    font-weight: 400;
    padding: 0 0 30px;
    text-align: left;
    line-height: 2em;
}

.chart-container .chart-details ul li {
    margin-bottom: 15px;
}

/* Chart Section Responsive */
@media screen and (max-width: 1120px) {
    .chart-container .chart-details .title {
        font-size: 35px;
    }
}

@media screen and (max-width: 920px) {
    .chart-container .chart-details .button-container a:hover {
        letter-spacing: 3.5px;
    }
}

@media screen and (max-width: 902px) {
    .chart-container .chart-details .title {
        font-size: 30px;
    }

    .chart-container .chart-details .button-container a {
        padding: 20px 25px;
    }
}

@media screen and (max-width: 768px) {
    .chart-section .chart-container {
        grid-template-columns: 1fr;
    }

    .chart-container .chart-details .title {
        font-size: 45px;
        text-align: center;
    }

    .chart-container .chart-details p {
        text-align: center;
    }

    .chart-container .chart-details .button-container {
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .chart-container .chart-details .title {
        font-size: 30px;
    }

}


/* Inner Services Section */
/* Inner Services Section */
/* Inner Services Section */
.inner-services-shape {
    width: 100%;
    height: 90px;
    background: var(--bg-1);
    clip-path: polygon(0% 76%, 100% 0, 100% 100%, 0% 100%);
    margin-bottom: -5px;
}

.inner-services {
    padding-bottom: 150px;
    background: var(--bg-1);
    /* Bottom Polygon */
    clip-path: polygon(0 0, 100% 0, 100% 89%, 0% 100%);
}

.inner-services .main-title {
    color: var(--white-color);
}

.inner-services .services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 20px;
}

.inner-services .service-item {
    background: var(--inner-service-item-bg);
    padding: 35px 15px;
    box-shadow: 0px 2px 70px 0px rgba(110, 130, 208, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex: 1;
}

.inner-services .service-item img {
    width: 80px;
}

.inner-services .service-item .name {
    font-size: 18px;
    font-family: var(--roboto-font);
    color: var(--title-color-2);
    font-weight: 600;
    padding: 20px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: center;
}

.inner-services .service-item p {
    font-size: 16px;
    font-family: var(--open-sans-font);
    color: var(--paragraph-color-1);
    font-weight: 400;
    padding: 0 20px 40px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.8em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
}

.inner-services .service-item .button-container a {
    padding: 10px 20px;
}

/* Inner Services Section Responsive */
@media screen and (max-width: 992px) {
    .inner-services .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .inner-services {
        padding-bottom: 200px;
    }

    .inner-services .services-container {
        grid-template-columns: 1fr;
    }
}


/* How It's Done  */
/* How It's Done  */
/* How It's Done  */
.howIts-done {
    padding-top: 7vh;
    padding-bottom: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--bg-3);
}

.howIts-done p {
    font-size: 18px;
    color: var(--paragraph-color-2);
    font-weight: 400;
    padding: 0 0 30px;
    text-align: center;
    line-height: 1.6em;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.howIts-done .button-container {
    text-align: center;
}



/* Intro Section */
/* Intro Section */
/* Intro Section */
.intro-section {
    background: var(--bg-1);
    height: 100%;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0% 100%);
}

.intro-section .intro-content {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.intro-section .intro-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    margin-top: 20vh;
}

.intro-details .intro-text .intro-title {
    font-size: 45px;
    font-family: var(--roboto-font);
    color: var(--mark-color);
    font-weight: 600;
    padding: 0 0 10px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: left;
}

.intro-details .intro-text p {
    font-size: 18px;
    color: var(--white-color);
    font-weight: 400;
    padding: 0 0 30px;
    text-align: left;
    line-height: 1.6em;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.intro-details .intro-photo img {
    width: 100%;
}

/* Video Container */
/* Video Container */
/* Video Container */
.video-container {
    margin-top: 40px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    overflow: hidden;
    padding-bottom: 60px;
}

.video-thumbnail {
    margin-top: 40px;
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #ff0000;
    margin-left: 7px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 1001;
}

.youtube-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Intro Section Responsive */
@media screen and (max-width: 1024px) {
    .intro-details .intro-text .intro-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .intro-section {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }

    .intro-section .intro-details {
        grid-template-columns: 1fr;
        margin-top: 7vh;
    }

    .intro-details .intro-text {
        text-align: center;
    }

    .intro-details .intro-text .intro-title {
        margin-top: 60px;
        text-align: center;
    }

    .intro-details .intro-text p {
        text-align: center;
    }
}

/* Calendar stuff  */
/* Calendar stuff  */
/* Calendar stuff  */
.skeleton-header {
  height: 60px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 20px;
}

.skeleton-calendar {
  display: grid;
  gap: 15px;
}

.skeleton-row {
  height: 80px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Footer Banner  */
/* Footer Banner  */
/* Footer Banner  */
.footer-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../images/footer-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 80vh;
}

.footer-banner .sub-heading {
    font-size: 24px;
    font-family: var(--roboto-font);
    color: var(--white-color);
    font-weight: 600;
    padding: 0 0 20px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.3em;
    text-transform: none;
    letter-spacing: 3px;
    text-align: center;
}

.footer-banner .title-heading {
    font-size: 50px;
    font-family: var(--roboto-font);
    color: var(--white-color);
    font-weight: 600;
    padding: 0 0 30px;
    opacity: 1;
    text-shadow: 0 0 0 transparent;
    line-height: 1.4em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    width: 75%;
    margin: auto;
    position: relative;
    z-index: 7;
}

.footer-banner .button-container {
    text-align: center;
}

/* Footer Banner Section Responsive */
@media screen and (max-width: 1224px) {
    .footer-banner .title-heading {
        font-size: 40px;
    }
}

@media screen and (max-width: 992px) {
    .footer-banner .title-heading {
        width: 100%;
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-banner .content-container {
        padding: 0;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 530px) {
    .footer-banner .sub-heading {
        font-size: 16px;
    }

    .footer-banner .title-heading {
        font-size: 20px;
    }

    .footer-banner .button-container a {
        letter-spacing: 2px;
    }
}


/* Social Icons */
/* Social Icons */
/* Social Icons */

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-icon a {
    display: block;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 30px;
    background: var(--footer-color);
    text-align: center;
    border-radius: 50%;
}

.social-icon a img {
    width: 18px;
}

    .toast-notification {
        position: fixed;
        background-color: #333;
        color: white;
        padding: 12px 20px;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        font-family: inherit;
        font-size: 14px;
        pointer-events: none;
    }





/* Footer Section */
/* Footer Section */
/* Footer Section */
.footer {
    background: var(--footer-bg);
    padding: 20px 0;
}


.footer .copyright-text {
    color: var(--footer-color);
    font-size: 14px;
    text-align: center;
}

/* <------- All pages section End -----> */
/* <------- All pages section End -----> */
/* <------- All pages section End -----> */
