@import url(/assets/fonts/stylesheet.css);

/* General Styles */
body {
    margin: 0;
    font-family: 'Anjoman Condensed';
    direction: rtl;
}

/* General Styles */
:root {
    --primary-color: #D1AB67;
    --secondary-color: #4E7393;
    --text-color: #3E3E3E;
    --overlay-color: rgba(78, 115, 147, 0.9);
    /* 90% overlay */
}

/* Icons and Logo */
.icon {
    width: 22px;
    height: 22px;
    margin-left: -2px;
    vertical-align: middle;
}

.gallery-link .icon {
    background-color: var(--secondary-color);
    border-radius: 100%;
    padding: 9px;
    object-fit: none;
}

.contact-info .icon {
    background-color: var(--primary-color);
    border-radius: 100%;
    padding: 9px;
    object-fit: none;
}

.logo {
    width: 84px;
    height: auto;
}

.gallery-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #F5F5F5;
    padding: 6px 15px;
    border-radius: 30px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #F5F5F5;
    padding: 6px 15px;
    border-radius: 30px;
}

.gallery-link span,
.contact-info span {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
}


/* Mobile Menu */
.mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #EDEDED;
}

.mobile-menu .menu-icons {
    display: flex;
    align-items: center;
}

.mobile-menu .menu-icons .icon {
    border-radius: 50%;
    border: 6px solid #F2F2F2;
    background-color: var(--primary-color);
    padding: 8px;
    object-fit: none;
}

.mobile-menu .gallery-link {
    background-color: var(--secondary-color) !important;
}

.menu-toggle {
    background-color: #F2F2F2 !important;

}


/* Desktop Menu */
.desktop-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;

}

.desktop-menu .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    padding: 14px;
    padding-right: 40px;
}

.desktop-menu .main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 14px;
    box-shadow: 0px 10px 12px 0px rgb(0 0 0 / 5%);
    padding-right: 40px;
}

.desktop-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.desktop-menu nav ul li {
    display: inline;
}

.desktop-menu nav ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-left: 10px;
    display: inline-block;
}

.desktop-menu nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.desktop-menu .search-bar {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    border-radius: 30px;
    padding: 7px 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.desktop-menu .search-bar input {
    border: none;
    outline: none;
    flex-grow: 1;
    background-color: transparent;
    font-size: 16px;
    color: var(--text-color);
    text-align: right;
    padding-right: 10px;
    font-family: 'Anjoman Condensed';
    direction: ltr;
}

.desktop-menu .search-bar .icon {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    vertical-align: middle;
}

.menu-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .mobile-menu {
        display: none;
    }

    .desktop-menu {
        display: flex;
    }
}



.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: white;
    height: 500px;

    width: 95%;
    margin: 0 auto;
    margin-top: 33px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.slider-item.item1 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
        url(https://dayangp.ir/wp-content/uploads/2025/05/SLIDER-01-01-Dayan-GP.webp);
    background-size: contain;
}
.slider-item.item2 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
        url(https://dayangp.ir/wp-content/uploads/2023/05/dayan-banner-num-2-min.jpg);
    background-size: contain;
}

.slider-item.item3 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
        url(https://dayangp.ir/wp-content/uploads/2023/03/MNKJLK-min.jpg);
    background-size: contain;
}


@media (max-width: 945px) {
  /* hide all slides */
  .slider-item {
    display: none !important;
  }
  /* hide the pagination dots */
  .slider-controls .dots{
    display: none !important;
  }

  /* hide the left/right arrows */
  .slider-container .arrow {
    display: none !important;
  }
  /* show only slide-1 with your new image */
  .slider-item.item1 {
    display: block !important;
    background: 
      linear-gradient(
        to top,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2),
        rgba(0,0,0,0)
      ),
      url(https://dayangp.ir/wp-content/uploads/2025/06/slider-bobile.webp) no-repeat center center;
    background-size: contain;
  }
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.slider-content a {
    background-color: #D1AB67;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: 'Anjoman Condensed';
    ;
}

.slider-content p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}


.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow.left {
    left: 10px;
    background-image: url(/assets/images/arrows/Arrow2.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.arrow.right {
    right: 10px;
    background-image: url(/assets/images/arrows/Arrow1.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.slider-controls {
    z-index: 99;
    top: -51px;
    background-image: url(/assets/images/Shape.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 272px;
    margin: 0 auto;
    height: 31px;
    padding-top: 1px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;



}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

@media (min-width: 768px) {
    .slider-content {
        bottom: 67px;
    }

    .slider-content button {
        font-size: 16px;
        padding: 12px 25px;
    }

    .slider-content p {
        font-size: 18px;
    }

    .slider-container {

        width: 90%;
    }




}

@media (max-width: 1200px) {
    .slider-controls {
        top: -31px;
        width: 262px;
        height: 9px;
        padding-top: 23px;
    }

    .slider-content {
        bottom: 44px;
    }

}

@media (min-width: 1200px) {
    .slider-container {
        margin: 20px auto;
        width: 95%;

    }


    .arrow {
        width: 40px;
        height: 40px;
    }

    .dots {
        margin-top: 20px;
    }
}

.slider-container {
    direction: ltr;
}


.swiper-container {
    width: 50%;
    max-width: 623px;
    height: 295px;
    margin: auto;
    padding: 31px;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    margin-bottom: 10px;
    gap: 20px;
}

.user-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 6px solid var(--primary-color);
}

.stars {
    color: #FFD700;
}




/* Parent Container */
.cards-section {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title Section */
.title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;

    display: flex;
    align-items: center;
    gap: 10px;
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.title img {
    width: 40px;
    height: 30px;
}

.cards-section {
    width: 1200px;
    margin: 0 auto;
    padding-top: 110px;
    padding-bottom: 80px;
}

.space-one-unit {
    height: 50px;
}

/* Cards Container */
.cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;


}

.cards-container .card {
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: visible;
    width: 300px;
    height: 255px;
    text-align: center;
    position: relative;
}

.cards-container .card img {
    width: 100%;
    height: 270px;
    border-radius: 30px;
    object-fit: fill;
    position: relative;
    top: -55px;
}

.card-title {
    background-image: url(/assets/images/Title.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 13px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: visible;
    height: 67px;
    margin: 0 auto;
    width: 243px;
    top: -80px;
    overflow: visible;
    z-index: 1;
}

.shadow {
    position: relative;
    width: 203px;
    height: 31px;
    top: -132px;
    left: -33px;
    box-shadow: 0 0 20px 15px rgb(0 0 0 / 21%);
    border-radius: 30px;
    z-index: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    font-size: 20px;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color) !important;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
    opacity: 1;
}

.swiper-cards .swiper-slide {
    overflow: visible !important;
}

.swiper-3d .swiper-slide-shadow {
    background: transparent !important;
}

@media (max-width: 1200px) {

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .title {
        width: 90%;
    }

    .cards-section {
        width: 85%;
    }

    .cards-container .card {
        margin-top: 70px;
    }

    .cards-section {
        padding-top: 37px;
    }
}


.content-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.content-image {
    flex: 1;
    max-width: 500px;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button {
    font-family: 'Anjoman Condensed' !important;
}

.content-text {
    flex: 1;
    max-width: 500px;

    border-radius: 15px;
    padding: 20px;

}

.content-text h2 {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.content-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 auto;
    display: flex;
}

.content-text button:hover {
    background-color: #c1985d;
}

.switcher-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.switcher-controls img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.switcher-controls img:hover {
    transform: scale(1.2);
}

.switcher-dots {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.switcher-dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.switcher-dot.active {
    background-color: var(--primary-color);
}

.arrow-up {
    background-image: url(/assets/images/arrows/Arrowup.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.arrow-down {
    background-image: url(/assets/images/arrows/Arrowdown.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .arrow-up {
        background-image: url(/assets/images/arrows/Arrowright.svg);
    }

    .arrow-down {
        background-image: url(/assets/images/arrows/Arrowleft.svg);
    }


    .content-switcher {
        flex-direction: column;
    }

    .switcher-controls {
        flex-direction: row;
        justify-content: center;
    }

    .switcher-dots {
        flex-direction: row;
    }

    .content-image,
    .content-text {
        max-width: 90%;
    }
}



.stats-section {
    background: linear-gradient(var(--overlay-color), var(--overlay-color)), url("/assets/images/home/5a299592a5d44d6a15be6fca93f5e891.png");
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
}

.stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 1200px;
    margin: 0 auto;
}

.stat-item {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 10px;
}

.stat-item img {
    background-color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    object-fit: none;
}

.stat-value {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

.stat-label {
    color: white;
    font-size: 17px;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        width: 80px;
        height: 80px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 14px;
    }


    .stats-container {
        display: grid;
        gap: 72px;
        width: 90%;
        grid-template-columns: auto auto;
        margin: 20px;
    }
}





.image-text-section {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.image-text-section .image-container {
    position: relative;
    flex: 1;
    max-width: 50%;
}

.image-text-section .image-container img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    position: relative;
    z-index: 1;
}

.image-text-section .image-container .background-circle-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: url('/assets/images/back_circ2_white.svg') no-repeat;
    background-size: cover;
    top: -43px;
    right: -43px;
}

.image-text-section .image-container .background-circle-2 {
    position: absolute;
    width: 119px;
    height: 119px;
    background: url('/assets/images/back_circ_white.svg') no-repeat;
    background-size: cover;
    bottom: -43px;
    left: -43px;
}

.image-text-section .text-container {
    flex: 1;
    max-width: 40%;
    color: var(--text-color);
    margin-right: 32px;
}

.image-text-section .text-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-text-section .text-container ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-right: 30px;
}

.image-text-section .text-container ul li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('/assets/images/Icon.svg') no-repeat;
    background-size: contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.image-text-section .image-container {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 50px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .image-text-section {
        flex-direction: column;
        padding: 20px;
        width: 85%;
    }

    .image-text-section .image-container,
    .image-text-section .text-container {
        max-width: 100%;
    }


    .image-text-section .image-container img {
        height: 284px;
    }

    .image-text-section .image-container {
        margin: 0;
    }

}


.services-section {
    background: linear-gradient(var(--overlay-color), var(--overlay-color)), url('/assets/images/jpeg/2.jpeg');
    background-size: cover;
    background-position: center;
    padding: 30px;
    color: var(--text-color);
    padding-top: 80px;
    padding-bottom: 100px;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.services-header img {
    width: 20px;
    height: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 1200px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: auto;
    display: block;
}

.service-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.services-section .dots {
    display: none;
}

.title.white {
    color: white;
}

.subtitle {
    color: white;
    font-size: 17px;
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding-right: 94px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        display: none;
    }

    .service-item {
        flex: 0 0 100%;
    }

    .services-section .dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 5px;
    }

    .service-item img {
        width: 100%;
        border-radius: 20px;
    }

    .service-dot {
        width: 10px;
        height: 10px;
        background-color: #ddd;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .service-dot.active {
        background-color: var(--primary-color);
    }

    .subtitle {
        width: 80%;
    }

    .mobile-slider {
        display: block;
    }
}

@media (min-width: 1201px) {
    .mobile-slider {
        display: none;
    }
}


.styled-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--primary-color);
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.styled-button:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.subtitle.black {
    color: var(--text-color);
}

.header-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
}

.header-with-button .title,
.header-with-button .subtitle {
    width: 100%;
}

@media (max-width: 1200px) {
    .header-with-button {
        width: 90%;
    }
}

.demo-services-section {
    background-color: white;

    width: 1200px;
    margin: 0 auto;
}

.demo-services-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.demo-services-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.demo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.demo-service-item {
    position: relative;
    border-radius: 15px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.demo-service-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    border-radius: 20px;
}

.demo-service-overlay-container {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 29px;
}

.demo-service-overlay {

    width: fit-content !important;
    background-color: #00000082;
    color: white;
    text-align: center;
    padding: 7px 69px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: bold;
    border-radius: 15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .demo-services-section {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .demo-services-section {
        width: 90%;
    }
}

.circle-container {
    width: 100%;
    text-align: center;
    position: absolute;
    top: -3px;
}

.circle {
    background-image: url(/assets/images/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 73px;
    height: 16px;
    margin: 0 auto;
}

.big .circle {
    background-image: url(/assets/images/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 75px;
    height: 20px;
    margin: 0 auto;
}

.big .circle-container {

    top: -3px;
}

.social-media-container {
    width: 1200px;
    background: url(/assets/images/Vectors.svg) no-repeat center, var(--primary-color);
    background-size: contain;
    border-radius: 25px;
    height: 224px;
    margin: 0 auto;
}



.header-with-subtitle {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 55px;
}

.header-with-subtitle .title {
    width: auto;
}


@media (max-width: 1200px) {
    .header-with-subtitle {
        padding-top: 150px;
    }

    .social-media-container {
        width: 90%;
        min-height: 444px;
        background: url(/assets/images/VectorsMobile.svg) no-repeat center, var(--primary-color);
    }

    .swiper-container {
        width: 80%;
    }
}

.social-media-icons {
    display: flex;
    justify-content: center;
}

.social-media-icon img {
    width: 100px;
}

.user-info {
    display: flex;
    flex-direction: column;
}


.logos {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}

@media (max-width: 1200px) {

    .logos {
        width: 90%;

    }

}

.swiper-logo {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.custom-footer {
    background: linear-gradient(45deg, #4E7393, #3E5E79);
    color: white;
    padding: 0 66px;
    border-top-left-radius: 100px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    width: 1200px;
    border-bottom-right-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
    overflow: hidden;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  
  .logo-section {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    max-width: 171px;
    padding: 0 12px;
    border-radius: 110px 110px 0 0;
    margin-top: 67px;
    padding-top: 25px;
  }
  
  .footer-logo {
    height: 145px !important;
    width: 145px !important;
    border: 7px solid #40607b !important;

    object-fit: scale-down !important;
    margin-bottom: 20px !important;
    background-color: white !important;
    padding: 20px !important;
    border-radius: 100% !important;
}
  
  .footer-description {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .menu-section h4,
  .contact-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #D1AB67;
  }
  
  .menu-section ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-section ul li {
    margin-bottom: 10px;
  }
  
  .menu-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .contact-section p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .contact-form {
    display: flex;
    margin-bottom: 20px;
    direction: ltr;
  }
  
  .contact-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px 0 0 20px;
    outline: none;
    direction: rtl;
    font-family: 'Anjoman Condensed';
  }
  
  .contact-form button {
    background:var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    color: white;
    padding: 10px;
    padding-right: 30px;
    font-size: 16px;
  }
  
  .contact-form button img {
    width: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .footer-section.menu-section , .contact-section {
    padding-top: 75px;
    padding-bottom: 75px;
}
  
  /* Responsive Design */
  @media (max-width:1200px) {

    .demo-service-overlay {
        
        padding: 1px 23px;

    }
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-section.menu-section, .contact-section {
        padding-top: 0;
        padding-bottom: 20px;
    }

.custom-footer {

    border-top-left-radius:60px;
    border-top-right-radius:  100px;
    border-bottom-left-radius:100px;
    width:90%;
    border-bottom-right-radius: 60px;
    padding: 0;
  }

  .logo-section {
   
    padding: 0 12px;
    border-radius: 0 0 110px 110px;
    margin-top: 0px;
    padding-bottom: 51px;
    padding-top: 31px;
}
  
    .menu-section ul li {
      margin-bottom: 5px;
    }
  
    .contact-form {
      flex-direction: column;
    }
  
    .contact-form input {
      margin-bottom: 10px;
      border-radius: 20px;
    }
  
    .contact-form button {
      border-radius: 20px;
    }
  }


  .swiper-pagination-logos{
   display: flex;
   justify-content: center;
   margin: 24px;
  }

  .menu-icons a{
    text-decoration: none;
  }


  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets{
    margin-bottom: -30px !important;
  }
