@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Roboto", sans-serif; */

:root {
    --primary-color: #1C0531;
    --secondary-color: #0392CC;

    --text-primary: #1C0531;
    --text-secondary: #0392CC;
    --text-light: #888888;
    --text-white: #fff;

    --btn-gradient: linear-gradient(90deg, #0392CC, #8E42C9);

    --main-font: "Jost", sans-serif;
    --sub-font: "Roboto", sans-serif;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    font-size: 16px;
    line-height: 26px;
    height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------
                    Preloader
----------------------------------------------------*/
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.loader-wrapper {
    text-align: center;
}

.loader-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.loader-icon img {
    width: 250px;
    animation: pulse 1.5s infinite ease-in-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Keyframe animations */
@keyframes fadeInLoader {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}


/* -----------------------------------------------
            1. Header
--------------------------------------------------*/
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
}

.header-container {
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo img {
    width: 210px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #3aa1e7;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:not(.secondary) {
    background: var(--btn-gradient);
    color: var(--text-white);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease-in-out;
}


/* ----------------------------------------------
            2. Hero Banner
-------------------------------------------------*/
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
    align-items: center;
}

.hero-content {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 4rem 10%;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.hero-text-panel {
    max-width: 550px;
}

.subheading {
    font-family: var(--sub-font);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 20px;
}

.hero-text-panel h1 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #BEBEBE;
    font-family: var(--sub-font);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-panel {
    height: 100%;
    overflow: hidden;
}

.hero-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* -----------------------------------------------
            3. Why choose us
--------------------------------------------------*/
.section {
    padding: 80px 0 0 0;
}

.section_title {
    text-align: center;
    padding: 0 0 40px 0;
}

.section_title h1 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.section_title p {
    padding: 0 25%;
    font-size: 16px;
    font-family: var(--sub-font);
    color: var(--text-light);
}

.feature-card {
    background-color: var(--text-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper svg {
    color: var(--text-white);
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 0.75rem 0;
}

.card-description {
    font-size: 16px;
    color: var(--text-light);

    line-height: 1.6;
    margin: 0;
}



/* -----------------------------------------------
            4. About safe
--------------------------------------------------*/
.about-section {
    padding: 6rem 0;
    background-color: #F8F9FA;
    margin: 80px 0 0 0;

}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(42, 0, 61, 0.15);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}


/* -----------------------------------------------
            5. Testimonial
--------------------------------------------------*/
.testimonial-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.testimonial-slider-init .testimonial-card {
    margin: 0 1rem;
    /* Add horizontal spacing between cards */
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: #f5f5f599;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 0 1rem;
    box-sizing: border-box;
    position: relative;
}

.quote {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

.rating {
    color: #ffc107;
}

.quote-icon {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 700;
    color: #d9d9d9;
    z-index: -1;
    line-height: 1;
}

.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color) !important;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover, .slick-next:focus {
    background-color: var(--secondary-color) !important;
}

.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}

.slick-prev::before,
.slick-next::before {
    font-size: 20px !important;
    color: white !important;
    opacity: 1;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button::before {
    font-size: 10px !important;
    color: #ddd !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button::before {
    color: var(--secondary-color) !important;
}

@media (max-width: 768px) {
    .slick-prev {
        left: -10px;
    }

    .slick-next {
        right: -10px;
    }

    .testimonial-slider-init .testimonial-card {
        margin: 0 0.5rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .testimonial-card {
        flex-basis: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .about-section, .testimonial-section {
        padding: 4rem 0;
    }

    .slider-btn.prev {
        left: -10px;
    }

    .slider-btn.next {
        right: -10px;
    }

    .testimonial-card {
        flex-basis: 100%;
        margin: 0 0.5rem;
        padding: 2rem 1.5rem;
    }
}


/* -----------------------------------------------
            6. Footer
--------------------------------------------------*/
.cta-section {
    padding: 0 1.5rem;
}

.cta-content {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 4rem 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 auto 2rem auto;
    max-width: 600px;
}

.cta-button-light {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    background-color: var(--text-white);
    color: var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* --- Footer --- */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-column {
    padding: 0 1rem;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-about .footer-logo img {
    width: 230px;
}

.footer-description {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink, #d93b83);
    padding-left: 5px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #c1c1c1;
    margin: 3rem 0 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 1rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-light, #ffffff);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-about .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}


/* -----------------------------------------------
            7. About us page
--------------------------------------------------*/
.breadcumb_area {
    background: var(--primary-color);
    padding: 50px 0;
}

.breadcumb_content {
    text-align: center;
}

.breadcumb_content h4 {
    color: var(--text-white);
    font-size: 35px;
    font-weight: 600;
}

.breadcumb_content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcumb_content ul li {
    color: #b4b4b4;
    font-family: var(--sub-font);
    font-weight: 600;
}

.breadcumb_content ul li:last-child {
    color: var(--text-secondary);
}

.about-content h6 {
    font-size: 22px;
    color: var(--text-secondary);
}


.counter_section {
    margin: 80px 0;
}

.counter_section {
    background-color: #F8F9FA;
    padding: 60px 0;
}

.couter_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.couter_area .counter_number {
    text-align: center;
}

.couter_area .counter_number h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--text-secondary);
}

.couter_area .counter_number h6 {
    font-size: 22px;
}

.our_mission {
    margin: 0 0 80px 0;
}


/* -----------------------------------------------
            8. Contact us
--------------------------------------------------*/
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.info-card {
    background-color: #F8F8F8;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
}


.card-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: #ddf5ff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-purple);
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.info-card p a {
    color: red;
    font-size: 16px;
    line-height: 1.6px;
}

/* --- Form and Map Section --- */

.contact_form {
    margin: 0 0 80px 0;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(217, 59, 131, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.cta-button {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    background: var(--gradient);
    color: var(--text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* Ensure map has a good height */
    border-radius: 16px;
    overflow: hidden;
    /* Clips the iframe to the border-radius */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.safe_titming h4{
    font-size: 34px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    font-family: var(--sub-font);
}

.safe_titming .card-icon{
    width: 75px;
    height: 75px;
}
.safe_titming .card-icon svg{
    width: 40px;
    height: 40px;
}

.safe_titming .info-card p{
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    color: #888;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-main-content {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .form-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 4rem 0;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }
}


/* ------- Vision mission--------- */
.vision-mission-card {
    border: none;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.col-lg-6:nth-child(2) .vision-mission-card {
    animation-delay: 0.2s;
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.card-title-custom {
    font-family: var(--main-font);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* --- Animation Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .card-title-custom {
        font-size: 1.8rem;
    }
}