@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@300;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: rgb(185, 33, 33);
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
}

.button {
    background-color: rgb(185, 33, 33);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    display: inline-block;
}

.button:hover {
    background-color: #921b1b;
}

/* Popup Modal Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
    margin-top: 0;
}

.popup-content .button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    background-color: #b92121;
    color: white;
    border-radius: 5px;
}

.popup-content .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.popup-content .close:hover {
    color: black;
}


/*
    ----HOME PAGE----
 */

/* HEADER SECTION */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    background-color: rgb(185, 33, 33);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
}

.logo {
    border-radius: 60%;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

#nav-bar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav-bar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#nav-bar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#nav-bar li a:hover,
#nav-bar li a.active {
    color: #E3E6F3;
}

#nav-bar li a.active::after,
#nav-bar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #E3E6F3;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

/* Mobile Menu Button */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
    transition: 0.3s ease;
}

/* 
    Responsiveness 
*/

@media screen and (max-width: 425px) {
    header {
        padding: 10px 20px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .menu-icon {
        display: block;
        font-size: 24px;
    }

    #nav-bar {
        display: none;
        flex-direction: column;
        background: rgb(185, 33, 33);
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    #nav-bar.active {
        display: flex;
    }

    #nav-bar li {
        padding: 10px 0;
    }

    #nav-bar li a {
        font-size: 14px;
    }
}


/* HERO SECTION */

#hero {
    height: auto;
    width: 100%;
    background-color: #E3E6F3;
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

#hero h4 {
    padding-bottom: 10px;
}

#hero h1,
#hero h2 {
    margin: 5px 0;
}

#hero p {
    font-size: 16px;
    margin-bottom: 15px;
}

#hero button {
    background-image: url(images/button.png);
    background-color: transparent;
    color: rgb(185, 33, 33);
    border: 0;
    padding: 14px 80px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    white-space: nowrap;
}

.img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
}

/* 
    Responsiveness 
*/

@media screen and (max-width: 425px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .img {
        margin-top: 20px;
    }

    .img img {
        max-width: 250px;
    }

    #hero button {
        padding: 12px 60px;
        font-size: 14px;
    }
}


/* LATEST-UPDATE SECTION */

#latestUpdates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
}

.section-p1 h2 {
    text-align: center;
    margin-bottom: 20px;
}

#latestUpdates .latestUpdates-box {
    text-align: center;
    padding: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #cce7d0;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    background: white;
    width: calc(100% / 5 - 20px);
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#latestUpdates .latestUpdates-box:hover {
    box-shadow: 10px 10px 30px rgba(185, 33, 33, 0.2);
    transform: translateY(-5px);
}

#latestUpdates .latestUpdates-box img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
    border-radius: 5px;
}

#latestUpdates .latestUpdates-box h6 {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(185, 33, 33);
    background-color: #E3E6F3;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

#latestUpdates .latestUpdates-box h6:hover {
    background-color: #E3E6F3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #latestUpdates .latestUpdates-box {
        width: calc(100% / 3 - 20px);
    }
}

@media (max-width: 768px) {
    #latestUpdates .latestUpdates-box {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 480px) {
    #latestUpdates .latestUpdates-box {
        width: 100%;
    }
}

/* OUR-SERVICES SECTION */

#ourServices {
    text-align: center;
    padding: 50px 80px;
}

#ourServices .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
}

#ourServices .services {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #cce7d0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    width: calc(100% / 4 - 20px);
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ourServices .services:hover {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

#ourServices .services img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
}

#ourServices .services h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

#ourServices .services span {
    display: block;
    font-size: 14px;
    color: rgb(185, 33, 33);
    margin-bottom: 10px;
}

#ourServices a {
    background-color: #b92121;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

#ourServices a:hover {
    background-color: #921b1b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #ourServices .services {
        width: calc(100% / 3 - 20px);
    }
}

@media (max-width: 768px) {
    #ourServices .services {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 480px) {
    #ourServices .services {
        width: 100%;
    }
}

/* BANNER SECTION */

#banner {
    text-align: center;
    padding: 20px 10%;
    background-color: #E3E6F3;
    border-radius: 10px;
}

#banner h1 {
    font-size: 36px;
    font-weight: bold;
    color: rgb(185, 33, 33);
    margin-bottom: 20px;
}

#banner h2 {
    font-size: 28px;
    color: #333;
    margin-top: 20px;
}

#banner p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
}

/* 
    Responsiveness 
*/

@media (max-width: 425px) {
    #banner h1 {
        font-size: 30px;
    }
}

/* REVIEWS SECTION */

#reviews {
    text-align: center;
    padding: 50px 10%;
    background-color: #F9F9F9;
}

#reviews h2 {
    margin-bottom: 20px;
}

.testimonial {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-content {
    width: 300px;
    padding: 20px;
    border: 1px solid #cce7d0;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    transition: 0.3s ease;
}

.testimonial-content:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.testimonial-des {
    font-size: 13px;
    font-weight: bold;
    color: rgb(185, 33, 33);
    margin-top: 10px;
}

.review-button {
    margin-top: 30px;
}


/* FOOTER SECTION */

footer {
    background-color: #222;
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 15px;
}

.logo {
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

.footer-line {
    width: 100%;
    border: 0;
    height: 1px;
    background: #444;
    margin: 15px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    text-align: left;
    padding: 20px 0;
}

footer .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer h4 {
    font-size: 18px;
    padding-bottom: 8px;
    color: rgb(185, 33, 33);
    font-weight: bold;
    text-transform: uppercase;
}

footer p,
footer a {
    font-size: 14px;
    color: #E3E6F3;
    transition: 0.3s ease-in-out;
}

footer .col p {
    margin-bottom: 10px;
}

footer a {
    text-decoration: none;
    font-weight: 500;
    display: block;
    width: fit-content;
}

footer a:hover {
    color: #ff4d4d;
    transform: translateX(5px);
}

footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #444;
}

footer .copyright p {
    color: rgb(185, 33, 33);
    font-size: 14px;
}

/* 
    Responsiveness 
*/
@media (max-width: 425px) {
    #footer .footer-content {
        display: block;
    }

    #footer .footer-content .col {
        margin-top: 20px;
    }
}

/*
    ----ABOUT PAGE----
 */

/* ABOUT-US SECTION */

#about-us {
    height: auto;
    width: 100%;
    background-color: #E3E6F3;
    padding: 50px 10%;
    text-align: center;
}

#about-us h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

#about-us p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto 30px;
    line-height: 1.6;
}

#about-us .company-name {
    color: rgb(185, 33, 33);
    font-weight: 700;
}

#about-us .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
}

#about-us .col {
    padding: 20px;
    border-radius: 15px;
    background: #eaebf0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

#about-us .col h4 {
    font-size: 1.4rem;
    color: #d62828;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#about-us .col h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 60%;
    background: #d62828;
    transform: translateY(-50%);
    border-radius: 2px;
}

#about-us .col p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-left: 0;
}

#about-us .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/*
    ----SERVICES PAGE----
 */

/* SERVICES SECTION */

#services {
    height: auto;
    width: 100%;
    background-color: #E3E6F3;
    padding: 50px 10%;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

#services p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto 5px;
    line-height: 1.6;
}

#services p .spantag {
    color: rgb(185, 33, 33);
    font-weight: 600;
}

#services ul {
    padding-left: 20px;
    text-align: left;
    margin: 0 auto;
}

#services .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
}

#services .col {
    padding: 20px;
    border-radius: 15px;
    background: #eaebf0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

#services .col h4 {
    font-size: 1.4rem;
    color: #d62828;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#services .col h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 60%;
    background: #d62828;
    transform: translateY(-50%);
    border-radius: 2px;
}

#services .col p,
#services .col ul li {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-left: 0;
}

#services .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* FEATURED-SERVICES SECTION */

#featured-services {
    text-align: center;
    padding: 50px 10%;
    background-color: #F9F9F9;
}

#featured-services h2 {
    margin-bottom: 20px;
}

.featured {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-content {
    width: 300px;
    padding: 20px;
    border: 1px solid #cce7d0;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    transition: 0.3s ease;
}

.featured-content:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

.featured h4 {
    font-size: 18px;
    color: rgb(185, 33, 33);
    margin-bottom: 10px;
}

.featured p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.featured-des {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 20px 20px;
}

.featured-des li {
    margin-bottom: 10px;
}

.featured-des span {
    font-weight: 600;
}

#featured-services ul {
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}

/*
    ----BLOGS PAGE----
 */

/* BLOG SECTION */

#blog {
    text-align: center;
    padding: 50px 10%;
    background-color: #F9F9F9;
}

#blog h2 {
    margin-bottom: 20px;
}

.blogs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-content {
    width: 300px;
    padding: 20px;
    border: 1px solid #cce7d0;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    transition: 0.3s ease;
}

.blog-content:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-img img {
    width: 200px;
    height: 200px;
    border-radius: 20%;
    object-fit: cover;
    margin-bottom: 15px;
}

.blogs h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.blogs p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

#blog a {
    background-color: #b92121;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

#blog a:hover {
    background-color: #921b1b;
}

#blog .page-no .active {
    background-color: #921b1b;
    font-weight: bold;
}

.page-no {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.page-no a {
    background-color: #b92121;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.page-no a.active,
.page-no a:hover {
    background-color: #921b1b;
    font-weight: bold;
}

/*
    ----CONTACT PAGE----
 */

/* CONTACT-DETAILS SECTION */

#contact-details {
    background-color: #E3E6F3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span,
#form-details form span {
    font-size: 12px;
    font-weight: 600;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
    text-align: start;
    margin-bottom: 0;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p {
    font-size: 14px;
    margin: 0;
}

#contact-details .map {
    width: 55%;
    height: 400px;
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
}

/* 
    Responsiveness 
*/

@media (max-width: 768px) {
    #contact-details .details h2 {
        font-size: 20px;
    }

    #contact-details .details div li p {
        font-size: 12px;
    }
}

@media screen and (max-width: 425px) {
    #contact-details {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    #contact-details .details {
        width: 100%;
        text-align: center;
    }

    #contact-details .details h2 {
        font-size: 18px;
        line-height: 28px;
        padding: 15px 0;
        text-align: center;
    }

    #contact-details .details li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #contact-details .details li i {
        padding-right: 0;
        padding-bottom: 5px;
    }

    #contact-details .map {
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }

    #contact-details .map iframe {
        height: 100%;
    }
}


/* FORM-DETAILS SECTION */

#form-details {
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #cce7d0;
}

#form-details form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #cce7d0;
}

#form-details .people div {
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-details .people div img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .people div p {
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-details .people div span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* 
    Responsiveness 
*/

@media (max-width: 768px) {
    #form-details form h2 {
        font-size: 20px;
    }

    #form-details .people {
        margin-left: 50px;
    }

    #form-details .people div p {
        font-size: 10px;
    }

    #form-details .people div {
        display: block;
    }
}

@media screen and (max-width: 425px) {
    #form-details {
        flex-direction: column;
        padding: 30px 5%;
    }

    #form-details form {
        width: 100%;
    }

    #form-details form input,
    #form-details form textarea {
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    #form-details .people {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    #form-details .people div {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 15px;
    }

    #form-details .people div img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    #form-details .people div p {
        font-size: 12px;
        text-align: center;
    }

    #form-details .people div span {
        font-size: 14px;
        font-weight: 600;
    }
}


/*
    ----TERM & CONDITIONS PAGE----
 */

/* TERM & CONDITIONS SECTION */

#terms-conditions {
    height: auto;
    width: 100%;
    background-color: #E3E6F3;
    padding: 50px 10%;
    text-align: center;
}

#terms-conditions h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

#terms-conditions .col p,
#terms-conditions li {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

#terms-conditions .col {
    padding: 20px;
    border-radius: 15px;
    background: #eaebf0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

#terms-conditions .col h4 {
    font-size: 1.4rem;
    color: #d62828;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#terms-conditions .col h5 {
    font-size: 1rem;
    color: #d62828;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#terms-conditions .col h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 60%;
    background: #d62828;
    transform: translateY(-50%);
    border-radius: 2px;
}

#terms-conditions .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

#terms-conditions .col a {
    color: #d62828;
    text-decoration: none;
}

#terms-conditions #date {
    margin-top: 50px;
}

/*
    ----PRIVACY & POLICY PAGE----
 */

/* PRIVACY & POLICY SECTION */

#privacy-policy {
    height: auto;
    width: 100%;
    background-color: #E3E6F3;
    padding: 50px 10%;
    text-align: center;
}

#privacy-policy p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto 30px;
    line-height: 1.6;
}

#privacy-policy h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

#privacy-policy .col p,
#privacy-policy li {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

#privacy-policy .col {
    padding: 20px;
    border-radius: 15px;
    background: #eaebf0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

#privacy-policy .col h4 {
    font-size: 1.4rem;
    color: #d62828;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#privacy-policy .col h5 {
    font-size: 1rem;
    color: #d62828;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

#privacy-policy .col h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 60%;
    background: #d62828;
    transform: translateY(-50%);
    border-radius: 2px;
}

#privacy-policy .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

#privacy-policy a {
    color: #d62828;
    text-decoration: none;
}

/*
    ----LOGIN & SIGNUP PAGE----
 */

/* LOGIN & SIGNUP SECTION */

#signup-login {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E3E6F3;
    min-height: 100vh;
}

.form-container {
    position: relative;
    width: 850px;
    height: 550px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 20px;
}

.form-box {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    color: #222;
    text-align: center;
    padding: 40px;
    z-index: 1;
    transition: .6s ease-in-out 1.2s, visibility 0s 1s;
}

.form-container.active .form-box {
    right: 50%;
}

.form-box.register {
    visibility: hidden;
}

.form-container.active .form-box.register {
    visibility: visible;
}

form {
    width: 100%;
}

.form-container h1 {
    font-size: 36px;
    color: #222;
}

.input-box {
    position: relative;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    padding: 13px 50px 13px 20px;
    border-radius: 8px;
    background: #E3E6F3;
    border: none;
    outline: none;
    font-size: 16px;
    color: #222;
    font-weight: 500;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.forgot-link {
    margin: -15px 0 15px;
}

.forgot-link a,
.form-container p {
    font-size: 14.5px;
    color: #222;
    text-decoration: none;
}

.btn {
    width: 100%;
    height: 48px;
    background: rgb(185, 33, 33);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    padding: 10px;
    border: 2px solid #E3E6F3;
    border-radius: 8px;
    font-size: 24px;
    color: #222;
    text-decoration: none;
    margin: 0 8px;
}

.toggle-box {
    position: absolute;
    width: 100%;
    height: 100%;
}

.toggle-box::before {
    content: "";
    position: absolute;
    left: -250%;
    width: 300%;
    height: 100%;
    background: rgb(185, 33, 33);
    border-radius: 150px;
    z-index: 2;
    transition: 1.8s ease-in-out;
}

.form-container.active .toggle-box::before {
    left: 50%;
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 2;
    transition-delay: .6s ease-in-out;
}

.toggle-panel.toggle-left {
    left: 0;
    transition-delay: 1.2s;
}

.form-container.active .toggle-panel.toggle-left {
    left: -50%;
    transition-delay: .6s;
}

.form-container.active .toggle-panel.toggle-right {
    right: 0;
    transition-delay: 1.2s;
}

.toggle-panel h1,
.toggle-panel p {
    color: #fff;
}

.toggle-panel.toggle-right {
    right: -50%;
    transition-delay: .6s;
}

.btn.register-btn,
.btn.login-btn {
    width: 160px;
    height: 46px;
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
    border-radius: 10px;
    align-items: center;
}

/* Responsiveness */
@media screen and (max-width: 425px) {

    .form-container {
        height: calc(100vh - 40px);
    }

    .form-box {
        bottom: 0;
        width: 100%;
        height: 70%;
    }

    .form-container.active .form-box {
        right: 0;
        bottom: 30%;
    }

    .toggle-box::before {
        left: 0;
        top: -270%;
        width: 100%;
        height: 300%;
        border-radius: 20vw;
    }

    .form-container.active .toggle-box::before {
        top: 70%;
        left: 0;
    }

    .toggle-panel {
        width: 100%;
        height: 30%;
    }

    .toggle-panel.toggle-left {
        top: 0;
    }

    .form-container.active .toggle-panel.toggle-left {
        left: 0;
        top: -30%;
    }

    .toggle-panel.toggle-right {
        right: 0;
        bottom: -30%;
    }

    .form-container.active .toggle-panel.toggle-right {
        bottom: 0;
    }
}

.alert-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center;
    display: none;
    min-width: 280px;
}

.alert-box p {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.alert-box button {
    background-color: #b92121;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.alert-box button:hover {
    background-color: #d62828;
}

/*
    ----CALCULATOR PAGE----
 */

/* CALCULATOR TABS SECTION */

.dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    height: auto;
}

.dashboard-welcome h1 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-weight: bold;
}

.dashboard-welcome button {
    background-color: #fff;
    color: #b92121;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dashboard-welcome button:hover {
    background-color: #b92121;
    color: #fff;
}

#calculator-tabs {
    padding: 15px 0;
    background-color: #f5f5f5;
}

.tabs {
    max-width: 900px;
    margin: 0 80px;
    text-align: center;
}

#tab-bar {
    display: flex;
    justify-content: left;
    gap: 20px;
    padding: 10px 0;
    flex-wrap: wrap;
}

#tab-bar li {
    list-style: none;
}

#tab-bar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    padding: 12px 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#tab-bar li a:hover {
    border-color: #b92121;
    color: #b92121;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#tab-bar li a.active {
    background-color: #b92121;
    color: #fff;
    border-color: #b92121;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    z-index: 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a.active {
    background-color: #9b3b3b;
    color: white;
}

/* CALCULATION SECTION */

#calculation {
    text-align: center;
    padding: 50px 10%;
    background-color: #F2F2F2;
    border-radius: 25px;
}

#calculation h2 {
    margin-bottom: 20px;
    color: #000;
}

.calculator {
    width: 100%;
    padding: 20px;
    border: 1px solid #555;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #3A3A3A;
    transition: 0.3s ease;
    margin: 0 auto;
}

.calculator:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.calculator h4 {
    font-size: 18px;
    color: #B92121;
}

.calculator p,
.calculator ul li {
    font-size: 14px;
    color: #DDD;
    line-height: 1.5;
}

.calculator p span {
    font-weight: bold;
}

.calculator ul li {
    list-style-type: none;
    margin-bottom: 5px;
}

.calculator input {
    width: 100%;
    border-radius: 8px;
    text-align: left;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #777;
    background-color: #444;
    color: #FFF;
    outline: none;
    margin-bottom: 10px;
}

.calculator input::placeholder {
    color: #CCC;
}

.calculator button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background-color: #B92121;
    color: white;
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.calculator button:hover {
    background-color: #A11C1C;
}

#result {
    margin-top: 50px;
}

#t10Form label {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #CCC;
}

/* BANNER SECTION */

#consult-banner {
    text-align: center;
    padding: 20px 10%;
    border-radius: 10px;
}

#consult-banner h2 {
    font-size: 28px;
    color: #333;
    margin-top: 20px;
}

#flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 5%;
    box-sizing: border-box;
}

#calculation,
#consult-banner {
    width: 48%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 25px;
}

#youtube-link iframe {
    border-radius: 25px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.calcBtn {
    width: 100%;
    padding: 12px;
    background-color: #005bb5;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.clacBtn:hover {
    background-color: #005bb5;
}

.result-box {
    margin-top: 30px;
}

.result-box h3 {
    color: #005bb5;
    text-align: center;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.result-table th,
.result-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.result-table th {
    background-color: #f0f0f0;
}

/* Hide all steps by default */
#t10Form .step {
    display: none;
    text-align: left;
}

/* Show only the active step */
#t10Form .step.active {
    display: block;
}

/* Optional: Add transition for smoother step switching */
#t10Form .step {
    transition: opacity 0.3s ease;
}

#servicePeriodFrom, #servicePeriodTo{
    text-align: center;
}

.custom-alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.custom-alert-box {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 80%;
    animation: fadeIn 0.3s ease-in-out;
}

.custom-alert-box p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.custom-alert-box button {
    padding: 10px 20px;
    background-color: rgb(185, 33, 33);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.custom-alert-box button:hover {
    background-color: #921b1b;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* POPUP STYLE */
#notePopup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#notePopup .custom-alert-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

#notePopup .custom-alert-box h3 {
  margin-top: 0;
}

#notePopup .custom-alert-box button {
  margin-top: 15px;
  margin-right: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#notePopup .custom-alert-box button:first-of-type {
  background-color: #4CAF50;
  color: white;
}

#notePopup .custom-alert-box button:first-of-type:hover{
  background-color: #3b883d;
  color: white;
}

#notePopup .custom-alert-box button:last-of-type {
  background-color: #ccc;
}

#notePopup .custom-alert-box button:last-of-type:hover {
  background-color: #921b1b;
}




/* ------------ Responsive Design ------------ */

/* Tablets (portrait and landscape, 768px - 1024px) */
@media (max-width: 1024px) {
    #tab-bar {
        justify-content: center;
        gap: 10px;
    }

    #flex-container {
        flex-direction: column;
        padding: 20px 5%;
    }

    #calculation,
    #consult-banner {
        width: 100%;
    }

    .calculator {
        padding: 15px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    /* Nav Bar */
    #nav-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: rgb(185, 33, 33);
        text-align: center;
        padding: 15px 0;
        display: none;
    }

    #nav-bar.active {
        display: flex;
    }

    #nav-bar li {
        padding: 10px 0;
    }

    #nav-bar li a {
        font-size: 14px;
    }

    /* Logo */
    .logo {
        width: 60px;
        height: 60px;
    }

    /* Hamburger Menu Icon */
    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: white;
        transition: 0.3s ease;
    }
}

/* Mobile Phones (up to 767px) */
@media (max-width: 767px) {

    .calculator {
        padding: 10px;
    }

    input[type="text"],
    input[type="number"],
    .calculator button,
    .calcBtn {
        font-size: 14px;
        padding: 10px;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    #footer .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .right-hand-side {
        width: 100%;
    }

    iframe {
        width: 100%;
        height: 200px;
    }

    /* Nav Bar */
    #nav-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: rgb(185, 33, 33);
        text-align: center;
        padding: 15px 0;
        display: none;
    }

    #nav-bar.active {
        display: flex;
    }

    #nav-bar li {
        padding: 10px 0;
    }

    #nav-bar li a {
        font-size: 14px;
    }

    /* Logo */
    .logo {
        width: 60px;
        height: 60px;
    }

    /* Hamburger Menu Icon */
    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: white;
        transition: 0.3s ease;
    }
}

/* ===================================================================================================================== */


/* styles for foreign calculator */

.foreign {
    text-align: left;
}

.calculator label {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #CCC;
}