/*** Spinner Start ***/
#spinner {
    background-color: rgba(50,50, 128, 0.5); /* ungu semi transparan */
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1; 
}

/* Animasi logo berputar */
.logo-spinner {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/*** Spinner End ***/

.pagination-custom {
  justify-content: center;
  margin-top: 30px;
}

.pagination-custom li a {
  color: #f5478a;
  border: 1px solid #f5d0ea;
  margin: 0 2px;
  transition: 0.3s;
}

.pagination-custom li.active a {
  background-color: #f5478a;
  color: #fff;
  border-color: #f5478a;
}


/*** Common CSS Start ***/
/* Mengubah tampilan tombol Back to Top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    
    /* Warna Dasar: Navy Gelap & Border Emas */
    background-color: #040d2a !important; 
    color: #DAA520 !important; 
    border: 0px solid #DAA520 !important;
}

/* Efek saat kursor diarahkan (Hover) */
.back-to-top:hover {
    background-color: #DAA520 !important;
    color: #040d2a !important;
    border-color: #DAA520 !important;
    transform: translateY(-5px); /* Sedikit efek melompat ke atas */
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.wow,
.animated {
    animation-duration: 2s !important;
}
/*** Common CSS End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* style.css */

/* Targetkan tombol formal dengan ID-nya */
#cta-formal-button {
    /* 1. Bentuk Formal (Kotak Sempurna) */
    border-radius: 0 !important; /* Hapus semua kelengkungan sudut */
    border: 2px solid #DAA520; /* Tambahkan bingkai emas formal */

    /* 2. Warna Formal (Emas dengan Teks Putih) */
    background-color: #DAA520; /* Latar belakang emas formal */
    color: black; /* Teks putih bersih agar terbaca */

    /* 3. Tipografi Formal (Tambahan) */
    text-transform: uppercase; /* Contoh: All-Caps agar lebih tegas */
    letter-spacing: 1px; /* Tambahkan spasi huruf untuk formalitas */
    font-weight: 700; /* Berat bold */
    
    /* 4. Padding dan Transisi */
    display: inline-block; /* Pastikan padding berfungsi */
    transition: all 0.3s ease; /* Transisi halus untuk efek hover */
}

/* Efek Hover Formal */
#cta-formal-button:hover {
    /* Sedikit lebih gelap pada hover untuk interaksi */
    background-color: #B8860B; /* Warna emas yang lebih gelap (Dark Goldenrod) */
    border-color: #B8860B;
    color: #ffffff;
    text-decoration: none; /* Hapus garis bawah teks */
}

/* Targetkan tombol Selengkapnya dengan ID spesifik */
#cta-formaldark-button {
    /* 1. Bentuk Formal (Kotak Sempurna) */
    border-radius: 0 !important; /* Menghilangkan lengkungan agar lebih kaku dan formal */
    border: 0px solid #DAA520; /* Bingkai emas agar tetap terlihat tegas di latar gelap */

    /* 2. Warna (Background Navy & Teks Goldenrod) */
    background-color: #040d2a; /* Warna Navy sesuai permintaan */
    color: #DAA520; /* Warna tulisan Goldenrod */

    /* 3. Tipografi (Konsisten dengan tombol utama) */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Cinzel', serif; /* Menggunakan font formal yang sebelumnya disarankan */
    
    /* 4. Layout & Animasi */
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Efek Hover (Warna bertukar/Invert agar interaktif) */
#cta-formaldark-button:hover {
    background-color: #DAA520; /* Latar berubah jadi emas saat disentuh kursor */
    color: #040d2a; /* Tulisan berubah jadi navy */
    border-color: #DAA520;
    text-decoration: none;
}

/* CSS Khusus Foto Profil ADTR Rasio 3:4 */

.about-img-container {
    width: 100%;
    position: relative;
    /* 1. Rasio 3:4 (Tinggi = 4/3 dari Lebar) */
    /* Rumus: (4 / 3) * 100% = 133.33% */
    padding-top: 133.33%; 
    
    overflow: hidden;
    /* 2. Sudut melengkung halus */
    border-radius: 12px; 
    /* 3. Bingkai Emas sesuai tema ADTR */
    border:0px solid #DAA520; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 4. Menjaga foto tetap proporsional dalam rasio 3:4 */
    object-fit: cover; 
    transition: transform 0.5s ease;
}

/* Efek Hover */
.about-img-container:hover .about-photo {
    transform: scale(1.05);
}

.btn.btn-primary {
    border: 0;
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.btn-border-radius {
    border-radius: 25% 10%;
}

.img-border-radius {
    border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
    border-radius: 10% 30%;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--bs-secondary) !important;
}

.topbar .top-link a:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.navbar {
    /* Menghilangkan garis bawah agar tampilan clean */
    border-bottom: none; 
    background-color: #040d2a; /* Navy ADTR */
    padding: 10px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
    color: #DAA520; /* Goldenrod */
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FAFAD2; /* LightGoldenrodYellow */
}

/* Icon Panah Dropdown */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
    color: #DAA520;
}

/* KHUSUS: Toggle Menu Kotak Empat Datar (Grid) */
.navbar-toggler-icon {
    /* Menggunakan SVG kotak empat emas datar tanpa garis tepi */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='6' width='10' height='7' rx='1' fill='%23DAA520'/%3E%3Crect x='16' y='6' width='10' height='7' rx='1' fill='%23DAA520'/%3E%3Crect x='4' y='17' width='10' height='7' rx='1' fill='%23DAA520'/%3E%3Crect x='16' y='17' width='10' height='7' rx='1' fill='%23DAA520'/%3E%3C/svg%3E") !important;
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler {
    /* Menghilangkan garis kotak pada tombol toggle */
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
}

/* --- Tampilan Mobile (Max-width 1199px) --- */
@media (max-width: 1199px) {
    .navbar-collapse {
        /* Warna Navy yang lebih muda/terang */
        background-color: #040d2a !important; 
        padding: 15px;
        border-radius: 0px;
        border: none !important;
    }

    .navbar-collapse .dropdown-menu {
        /* Mengikuti warna background utama agar senada */
        background-color: #243b7a !important; 
        border: none !important;
        border-radius: 4px;
        box-shadow: none !important;
        margin-top: 10px;
    }

    .navbar-collapse .dropdown-item {
        color: #DAA520 !important;
        border-bottom: none !important;
        padding: 10px 15px;
    }

    .navbar-collapse .dropdown-item:hover {
        background-color: #DAA520;
        color: #1a2a5a !important; /* Teks berubah ke navy saat hover */
    }

    .navbar-collapse .nav-link {
        color: #DAA520 !important;
        border-bottom: none !important;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: #FAFAD2 !important;
    }

    /* Memastikan tidak ada garis putih di list item */
    .navbar-nav, .nav-item {
        border: none !important;
        background: transparent !important;
    }
}

/* --- Tampilan Desktop (Min-width 1200px) --- */
@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Cinzel', serif;
        transform: translateY(15px);
        border: 0;
        border-top: 3px solid #DAA520; /* Border atas emas tetap ada untuk pemisah */
        transition: .5s;
        opacity: 0;
        background: #ffffff !important;
        border-radius: 0px !important;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown-menu .dropdown-item {
    color: #040d2a;
    padding: 10px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #040d2a;
    color: #DAA520 !important;
}

#searchModal .modal-content {
    background: rgba(4, 13, 42, .9); 
    border: 1px solid #DAA520;
}


/* Styling Running Text */
.running-text-wrapper {
    background-color: #DAA520; /* Warna Kuning Gold ADTR */
    color: #000; /* Teks Hitam */
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 9;
}

.running-text-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.running-text-content span {
    display: inline-block;
    padding-left: 10px;
}

/* Animasi Berjalan Nyambung */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Agar Running Text terlihat rapat di HP */
@media (max-width: 576px) {
    .running-text-wrapper {
        padding: 5px 0;
        font-size: 12px;
    }
}

/* Pastikan pembungkus navbar benar-benar menempel di atas */
.sticky-top {
    top: 0 !important;
    z-index: 1020; /* Agar navbar berada di atas konten lain */
    position: sticky;
}

.navbar {
    /* Menghilangkan garis bawah agar tampilan clean */
    border-bottom: none; 
    background-color: #040d2a; /* Navy ADTR */
    padding: 10px 0;
    /* Memberikan sedikit bayangan saat melayang */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/*** Navbar End ***/


.hero-header,
.page-header {
  background-color: white;
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.00)), url(../img/hello.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: sans-serif;
}

/* Ganti gambar saat layar lebar maksimal 576px (ukuran mobile) */
@media (max-width: 576px) {
  .hero-header,
  .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.00)), url(../img/hello2.jpg);
  }
}



/*** About Start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/about.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}



.client-section {
  background-color: #ffff;
  padding: 40px 20px;
  text-align: center;
}

.client-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.client-swiper {
  overflow: hidden;
}

.client-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.client-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}

.client-swiper .logo-box {
  width: 140px;
  height: 100px;
  background: #fff;
  border-radius: 12px;
 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0;
}

.client-swiper .logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-swiper .logo-box img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}



.img-akreditasi {
    max-width: 25%;
    height: auto;
}

/* Media query untuk layar kecil (HP) */
@media (max-width: 768px) {
    .img-akreditasi {
        max-width: 50%;
    }
}



.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video.border {
    border-radius: 50% 20% / 10% 40%;
}

.about {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** About End ***/


/*** service Start ***/
.service {
    background: linear-gradient(rgba(255, 72, 128, 0.05), rgba(255, 72, 128, 0.2));
}

.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%;
    border-radius: 50% 20% / 10% 40%;
    transition: 0.5s;
    position: relative;
}

.service-content::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    background: transparent;
    border-radius: 50% 20% / 10% 40%;
    transition: .5s;
}

.service-item:hover {
    border: 1px solid var(--bs-secondary) !important;
}

.service-item:hover .service-content::after {
    background: var(--bs-secondary);
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.service-item .service-content .service-content-inner {
    position: relative;
    z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner a.h4 {
    transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner p {
    color: var(--bs-white) !important;
}
.service-item:hover .service-content-inner a.h4 {
    color: var(--bs-primary);
}

.service-item:hover .service-content-inner a.btn-primary {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.service-item .service-content-inner a.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Programs Start ***/
.program {
    background: linear-gradient(rgba(255, 72, 128, 0.1), rgba(255, 72, 128, 0.1));
}

.program .program-item .program-img .program-rate {
    position: absolute;
    width: 100px; 
    top: -20px; 
    left: 50%; 
    margin-left: -50px; 
    border-radius: 10% / 50%;
}

.program .program-item .program-text {
    padding-top: 150px; 
    margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
    transition: 0.5s;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
    transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
    color: var(--bs-primary) !important;
}
/*** Programs End ***/


/*** Events Start ***/
.events .events-item {
    width: 100%;
    height: 100%;
    border-radius: 30%;
    position: relative;
}

.events .events-item .events-inner .events-rate {
    position: absolute;
    width: 120px; 
    top: -20px; 
    left: 50%; 
    margin-left: -60px; 
    border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
    opacity: 1;
}

.events .events-item .events-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px;
    transition: 0.5s;
}

.events .events-item:hover .events-img::after {
    height: 100%;
    opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
    transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
    color: var(--bs-primary) !important;
}

.events .events-item:hover .events-img img {
    transform: scale(1.3);
}

.events-img canvas,
.events-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important;
}

/*** Events End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
    opacity: 1;
}

.blog .blog-item .blog-date-comments {
    padding-top: 150px !important; 
    margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
    color: var(--bs-primary);
}
/*** Blog End ***/


/* Default untuk semua page-header (misalnya halaman depan) */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.00)), url(../img/hero-imgf.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.our-team-header {
    background-image: url(../img/DER.jpg);
    background-size: 100% auto;         /* lebar penuh, tinggi otomatis */
    background-repeat: no-repeat;
    background-position: center top;    /* posisi gambar di tengah atas */
    height: 300px;                      /* tinggi default untuk desktop */
}

/* Tambahan untuk perangkat mobile */
@media (max-width: 768px) {
    .page-header.our-team-header {
        height: 200px;                  /* lebih pendek di mobile */
    }
}


/*** Team Start ***/
.team .team-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.team .team-item .team-icon {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
    opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    background: var(--bs-primary) !important;
    border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content p {
    color: var(--bs-dark) !important;
}
/*** Team end ***/


/*** testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
    
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-secondary);
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 1)), url(../img/background.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-galary-img img {
    width: 100%;
    border-style: dotted; 
    border-color: var(--bs-primary);
    transition: 0.5s;
}

.footer .footer-galary-img img:hover {
    transform: scale(1.2);
}

.footer-item a.text-body:hover {
    color: var(--bs-secondary) !important;
}
/*** Footer End ***/


