@import url("https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&display=swap");
/* CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    top: 0 !important;
}

/* Main Header */
.header {
    width: 100%;
    background: #e7d9ca;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    width: 150px;
}

/* Hamburger Icon */
.hamburger {
    width: 30px;
    height: 19px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: #222;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hide checkbox */
#nav-toggle {
    display: none;
}

/* Navigation */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    align-items: center;
}

.nav ul a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}
.contact-btn {
    background: #0b3738;
    padding: 15px 30px;
    border-radius: 25px;
    color: #cc9b67;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: none;
    font-family: "Inter", sans-serif;
}

/* ------------------ MOBILE DESIGN header ------------------ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        display: none;
    }

    /* Show menu when checked */
    #nav-toggle:checked ~ .nav {
        display: block;
        animation: fadeDown 0.3s ease-out;
    }

    /* Vertical menu */
    .nav ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav ul a {
        font-size: 14px;
    }

    /* Hamburger animation */
    #nav-toggle:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #nav-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #nav-toggle:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ------------------ MOBILE DESIGN header ------------------ */

/* banner */
.banner {
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* change opacity/color */
    z-index: 1;
}
.banner .row {
    width: 100%;
}
.our-umrah-image {
    height: 350px;
    width: 450px;
    display: flex;
    justify-content: flex-start; /* Align left */
    align-items: center;
    margin-left: 100px;
    margin-top: 150px;
}
.our-umrah-image img {
    width: 100%;
    z-index: 2;
}
.banner-content {
    width: 80%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}
.banner-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Kalnia", serif;
    z-index: 2;
    position: relative;
    text-align: left;
}

/* .banner-content p::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 3px;
    height: 80px;
    background: #CC9B67;
    z-index: 1;
} */

.banner-content p {
    z-index: 1;
    position: relative;
    text-align: left;
    color: #ffffff;
    border-left: 3px solid #cc9b67;
    padding-left: 10px;
}

.banner-btn {
    border: 2px solid #cc9b67;
    background: #0b3738e3;
    z-index: 2;
}

/* about*/
.about-part {
    background-color: #e7d9ca;
    min-height: 600px;
    margin-top: 80px;
    border-radius: 38px;
    padding: 0px 20px;
}
.about-part .about-contant h2 {
    color: #514435;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 15px 0px;
}
.about-part .about-contant h3 {
    color: #514435;
    font-size: 40px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    margin: 5px 0px;
}
.about-part .about-contant p {
    font-weight: 600;
    font-size: 14px;
    color: #000000;
}
.about-left {
    border-radius: 25px;
    position: relative;
}
.about-part .top-effect {
    position: absolute;
    top: -32px;
    left: 25px;
    z-index: 1;
    background-color: #5E503F;
    width: 50px;
    height: 60px;
    border-radius: 20px 20px 0px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-effect img {
    width: 35px !important;
    height: 42px !important;
    object-fit: contain !important;
    
}
.about-left img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
    position: relative;
}
.about-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* change opacity/color */
    border-radius: 20px;
    z-index: 1;
}
.about-part .about-left .about-left-contant {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
}
.about-left-contant p {
    font-weight: 600;
    font-size: 14px;
    color: #fff !important;
}
.about-left-contant h5 {
    font-family: "Kalnia", serif;
    font-weight: 600;
    color: #e7d9ca;
}
.about-right-image {
    height: 400px;
    width: 400px;

    margin-left: 154px;
}

.about-right-image img {
    width: 100%;
    z-index: 2;
    height: 600px;
    object-fit: cover;
    border-top-right-radius: 38px;
    border-bottom-right-radius: 38px;
}
.for-height {
    padding: 25px 0px;
}

/*about-end*/

/*image-carousel */
.image-carousel {
    background-color: #edd4b9;
    min-height: 100px;
    padding: 10px;
}
.image-carousel .carousel-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #514435;
}
.image-carousel .carousel-image i{
    color: #cc9b67;
    font-size: 16px;
}
.image-carousel .carousel-text p{
    font-size: 15px;
    font-weight: 500;
    color: #514435;
    font-family: kalnia, serif;
    padding: 0px 0px;
    margin: 0px 0px;
}
.image-carousel .col-auto {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.image-carousel .carousel-container .row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.carousel-image {
    width: 200px;
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.carousel-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-content {
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between !important;
    align-items: center;

    .carousel-elm {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

/*image-carousel */

/*special_offer*/
.special_offer {
    background-image: url(../images/special_offer.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 25px 20px;
}

.special_offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* change opacity/color */
    z-index: 1;
}
.special-container {
    width: 100%;
    margin: auto;
    padding: 15px 20px;
    background-color: #edd4b9;
    min-height: 600px;
    position: relative;
    z-index: 2;
    border-radius: 40px 40px 0 0;
}
.offer-image {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.special-container h3 {
    color: #5e503f;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 5px 0px;
}
.special-container h2 {
    color: #5e503f;
    font-size: 40px;
    font-family: "Kalnia", serif;
    font-weight: 600;
}
.special-container p {
    color: #5e503f;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
.offer-image {
    padding: 10px;
    border-radius: 25px;
}
.offer-contant {
    background-color: #c6ac8f;
    padding: 20px 20px;
    border-bottom: 3px solid #1f0c0c;
    height: 400px;
}
.offer-contant h4 {
    font-family: kalnia;
    font-weight: 600;
    color: #000000;
    font-size: 20px;
    padding-top: 10px;
}
.offer-contant p {
    font-family: inter;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
}
.offer-list li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 10px;
    color: #ffffff;
    border-bottom: 1px solid #000000;
    padding: 10px 0px;
    width: 87%;
    gap: 25px;
    justify-content: start;
}
.offer-list li:last-child {
    border: none;
}

.offer-list li img {
    width: 20px;
    height: 20px;
}

.offer-btn {
    background: #1f0c0c;
    padding: 15px 30px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: none;
    font-family: "Inter", sans-serif;
}

/*special_offer*/

/* journey */
.journey-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.journey .journey-container .row {
    width: 100%;
}
.journey .journey-image {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.journey-contant {
    padding-left: 50px;
}
.journey-contant h3 {
    color: #514435;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 15px 0px;
}
.journey-contant h2 {
    font-size: 40px;
    color: #1f0c0c;
    font-family: "Kalnia", serif;
    font-weight: 600;
    margin: 0px 0px;
}
.journey-image-down {
    position: relative;
    border-radius: 20px;
    cursor: pointer;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
.journey-image-down::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 218, 202, 0.1); /* change opacity/color */
    z-index: 1;
    border-radius: 15px;
}
.journey-image-down:hover::before {
    background: rgba(219, 160, 87, 0.5); 
    color: #fff !important;
}

/*test */

/* test-end */
.journey-image-down.active::before {
    background: rgba(219, 160, 87, 0.5);
}
.journey-down-contant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: left;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}
.journey .journey-down-contant h5 {
    color: #422b11;
    font-size: 16px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    border-bottom: 1px solid #422b11;
    padding-bottom: 10px;
    width: 80%;
}
.journey .journey-down-contant p {
    color: #422b11;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
.journey-image-down .journey-btn {
    background: #422b11;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: none;
    font-family: "Inter", sans-serif;
}
.journey-btn img {
    width: 20px;
    height: 20px;
}
.top-journey {
    position: absolute;
    background-color: #5d503f;
    color: #fff;
    width: 40px;
    height: 40px;
    top: -17px;
    left: 16%;
    transform: translateX(-50%);
    z-index: 7;
    border-radius: 15px 15px 0px 0px;
    padding: 8px;
}
.foot-journey {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.foot-journey .journey-btn {
    background: #ffffff;
    width: 120px;
    border-radius: 30px;
    padding: 7px 0px;
    color: #422b11;
    border: 1px solid #422b11 !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: none;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.journey-cirle {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.journey-cirle li {
    width: 35px;
    height: 35px;
    border: 1px solid #422b11;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*journey end*/

/* counter */
.counting-part {
    background-color: #e7d9ca;
    min-height: 100px;
    margin-top: 80px;
    overflow: hidden;
}
.counting-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}
.counting-part .count-text {
    color: #514435;
    font-size: 14px;
    font-family: "Kalnia", serif;
    font-weight: 400;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    position: relative;
}
/* apply separator to every column except the last column in the row */
.counting-part .row > [class*="col"]:not(:last-child) .count-text::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -20px;
    width: 1px;
    height: 100%;
    background: #1f0c0c;
    z-index: 1;
    border-radius: 15px;
}

/* make sure there is no line on the last column's count-text */
.counting-part .row > [class*="col"]:last-child .count-text::after {
    display: none;
}
.count-text .countNumber {
    font-size: 60px !important;
    font-weight: bold;
}

/* counter */

/* packege */
.packege-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.packege-container h3 {
    color: #514435;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 15px 0px;
}
.packege .packege-container p{
    color: #5e503f;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.packege-container h2 {
    color: #1f0c0c;
    font-size: 40px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 0px 0px;
}
.packege .packege-container .row {
    width: 100%;
}
.packege .packege-part {
    background-color: #ffffff;
    border: 1px solid #5e503f;
    border-radius: 30px;
    text-align: center;
    padding: 25px 20px;
    height: 475px;
}
.packege .packege-part h3 {
    color: #5e503f;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 5px 0px;
}
.packege .packege-part p {
    color: #5e503f;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding: 0px 0px;
    text-align: left;
}
.packege .packege-part h4 {
    color: #5e503f;
    font-size: 24px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 0px 0px;
    text-align: left;
}

.packege-list {
    padding: 0;
    margin: 0;
}

.packege-list li {
    list-style: none;
    display: flex;
    align-items: start;
    font-size: 12px;
    gap: 10px;
    color: #2c2c2c;
    border-bottom: 1px solid #5e503f;
    padding: 10px 0px;
    width: 87%;
    gap: 25px;
    justify-content: start;
}

.packege-list li:first-child {
    border-top: 1px solid #5e503f;
}
packege-list li:last-child {
    border: none;
}

.packege-list li img {
    width: 20px;
    height: 20px;
}
.packege .packege-part .offer-btn {
    background: #5e503f;
    padding: 15px 30px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: none;
    font-family: "Inter", sans-serif;
}

/* packege */

/* Video section */

.video-section {
    position: relative;
    width: 100%;
    height: 400px; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 50% black overlay */
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    font-family: "Kalnia", serif;
    display: flex;
    flex-direction: column;
    align-items: center
}

.video-content h1 {
    width: 60%;
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.video-btn {
    display: flex;
    gap: 20px;
}

.video-btn button {
    padding: 8px 16px;
    font-size: 1rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

#videoBtn {
    aspect-ratio: 1 / 1;
    border-radius: 100%;
}

.video-content button:hover {
    background-color: #e65c00;
}

.arrow {
    color: #1f0c0c;
    background: #fff;
    padding: 5px 10px;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .video-content h1 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1rem;
    }
}
/* Video section */


/* contact-us */
.contact-container {
    max-width: 1400px;
    margin: auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-us{
    background-color: #E7D9CA;
    min-height: 500px;
}
.contact-us-image img{
    width: 100%;
    height: 600px;
    object-fit: contain;
}
.contact-us .contact-container .row {
    width: 100%;
}
.contact-us .contact-us-contant h4{
    color: #5D503F;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
   
}
.contact-us .contact-us-contant h2{
    color: #1F0C0C;
    font-size: 40px;
    font-family: "Kalnia", serif;
    font-weight: 600;
   
}
.contact-form .form-inner {
    border: none;
    border: 1px solid #5D503F;
    background: transparent;
    color: #5D503F;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    width: 100%;
    padding: 8px 15px;
    border-radius: 30px;
}
.contact-form .form-message{
    min-height: 200px;
     border: none;
    border: 1px solid #5D503F;
    background: transparent;
    color: #5D503F;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
}
.contact-form .form-labl{
    width: 100%;
     margin-left: 20px;
    font-family: kalnia, serif;
    color: #422B11;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 400;
}
.contact-us .offer-btn {
    background: #5E503F;
    padding: 15px 55px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    border: none;
    font-family: "Inter", sans-serif;
}


/* contact-us */
.address-container{
    max-width: 1400px;
    margin: auto;
    padding: 25px 20px;
   
    
}
.address-part .footer-logo{
   width: 150px;
   height: auto;
   img{
    width: 100%;
    height: auto;
   }
}
.address-part .phone-image-foot {
    background-color: #5E503F;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 55px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.address-part .phone-image-foot{
    img{
        width: 20px;
        height: 20px;
    }
}
.address-part .detail-address h5{
    font-family: kalnia, serif;
    font-size: 18px;
    font-weight: 400;
}
.detail-address p{
    color: #503F2A;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

/* address  */

/* footer*/
.footer-part{
    background-color: #5E503F;
    min-height: 300px;
    padding: 20px 0px;
    color: #fff;
}
.footer-container{
    max-width: 1400px;
    margin: auto;
    padding: 25px 20px 5px 20px;
    background-color: #5E503F;
    
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}
.footer-part h4{
    color: #fff;
    font-size: 20px;
    font-family: "kalnia", sans-serif;
    font-weight: 400;
    padding: 10px 0px;
}
.footer-part .copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    
   

}

iframe {
    display: none;
    height: 0 !important;
    width: 0 !important;
}

#customTranslate {
    padding: 10px 15px;
    background-color: #5E503F;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
}

/*footer-end */

/* right-slider */
.right-slider {
    position: fixed;
    right: 5px;
    bottom: 5%;
    width: 60px;
    padding: 15px 0;
    z-index: 999;
   
    
    border-radius: 40px;
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.right-slider ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-slider ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    transition: 0.3s ease;
    margin: 15px 0px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.right-slider ul li a:hover {
    transform: translateY(-4px) scale(1.1);
    background: #25D366; /* WhatsApp green on hover */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.right-slider ul li img {
    width: 28px;
    height: 28px;
}


/* right-slider */


/* guide */
.guide-container {
    max-width: 1400px;
    margin: auto;
    padding: 25px 20px;
    background: #e7d9ca;
}
.guid-part .guided-ziyarat-image {
    overflow: hidden;
    border-radius: 15px;
    img{
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
    }
    :hover{
        transform: scale(1.1);
        transition: 0.8s ease-in-out;
    }
}
.guid-part .guided-ziyarat-contant h3{
    color: #514435;
    font-size: 20px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    padding: 0px 0px;
}
.guid-part .guided-ziyarat-contant h2{
   color: #514435;
    font-size: 40px;
    font-family: "Kalnia", serif;
    font-weight: 600;
    margin: 5px 0px;
}