@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+Devanagari:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Devanagari", sans-serif;
}

body {
    width: 100%;
    height: fit-content;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.hero {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-top: 70px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.676);
    /* semi-transparent black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.overlay h1 span {
    color: crimson;
}

.overlay p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin: 0 auto 20px auto;
    white-space: normal;
    /* allows text to wrap */
    padding: 0 20px;
}

.overlay p strong {
    color: crimson;
}

.overlay .call-btn {
    padding: 10px 15px;
    background-color: crimson;
    color: white;
    display: none;
}

.call-btn a {
    color: white;
}

.header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.041) 0px 3px 6px, rgba(0, 0, 0, 0.064) 0px 3px 6px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.inner-header {
    width: 90%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 24px;
    font-weight: 600;
    color: black;
}



.header-link {
    display: flex;
    gap: 20px;
}

.header-link a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-btns {
    display: flex;
    gap: 15px;
}

.header-btn {
    padding: 10px 15px;
    background-color: #114EB7;
    color: white;
    border-radius: 8px;
}

.header-btn.two {

    background-color: transparent;
    color: black;
}

.heading {
    width: 100%;
    height: fit-content;
    margin-top: 30px;
    margin-bottom: 25px;

}

.inner-heading {
    width: 90%;
    height: fit-content;
    margin: auto;
    text-align: center;
}

.inner-heading {
    width: 90%;
    max-width: 900px;
    margin: 60px auto 40px auto;
    text-align: center;
    padding: 20px;
}

.inner-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    position: relative;
}

.inner-heading h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ff5a5f;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.inner-heading p {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    margin-top: 10px;
}

.sectiontwo {
    width: 100%;
    padding: 40px 0;
    background-color: #fce4e4;
}

.inner-sectiontwo {
    width: 90%;
    margin: auto;
}

.img-card {
    width: 100%;
    max-width: 350px;
    /* Control card width */
    height: 250px !important;
    /* Fixed height for uniformity */
    overflow: hidden;
    margin-left: 20px;


    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-card img {
    width: 100%;
    height: 100% !important;
    /* Fill full height */
    object-fit: cover;
    /* Crop to fit */
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}




.slick-dots {
    bottom: -30px;
    display: flex !important;
    justify-content: center;
    gap: 10px;
}

.slick-dots li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Active dot */
.slick-dots .slick-active button {
    background-color: #ff5a5f;
    width: 14px;
    height: 14px;
}

.footer {
    width: 100%;
    height: fit-content;
    background-color: rgb(18, 18, 18);
    margin-top: 50px;
    border-top: 5px solid #114EB7;
}

.inner-footer {
    width: 90%;
    height: 300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: #114EB7;
}

.footer-logo span {
    color: rgb(255, 255, 255);
}

.footer-link {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-link a {
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link a i {
    margin-right: 15px;
    color: white;
}

.footer-link a:hover {
    color: #114EB7;
}

.copy {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    padding: 15px 10px;
    background-color: black;
    color: white;
}

.copy a {
    color: #114EB7;
    margin-left: 10px;
}