
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** 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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: #e4a010;
    /* background: var(--bs-primary); */
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
    font-size: 14px;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
         right: 0;  /*added on 21-feb2-26 */
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/carousel-2.jpg); */
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/SlidingImage/SliderImage3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0 180px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;   
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;    
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Carousel End ***/


/*** About Start ***/
.about .about-item-content-img {
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-primary) var(--bs-primary) var(--bs-secondary);
}

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/about-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.about .about-item-image .img-1 {
    margin-bottom: 250px; 
    margin-right: 0;
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-light) var(--bs-light) var(--bs-secondary);
    z-index: 3;
}

.about .about-item-image .img-2 {
    margin-top: 250px; 
    margin-left: 0;
    border: 4px solid;
    border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary) var(--bs-light); 
    z-index: 3;
}

.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 2;
}

.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-secondary);
    border: 4px solid var(--bs-primary);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}
/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
    position: relative;
    transition: 0.5s;
}
.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
} 

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--bs-secondary);
}  
/*** Features End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-title {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background: var(--bs-light);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-title {
    margin-right: -100%;
}
/*** Services End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 18, 72, 0.9), rgba(0, 18, 72, 1)), url(../img/footer-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    /* letter-spacing: 1px; */
    color: var(--bs-secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


/* Mine */

.custom-icon-box {
    border-radius: 18px;
    border: 2px solid #ddd;
}

/* Add padding and separator line for dropdown items */
.dropdown-menu .dropdown-item {
    padding: 12px 20px;   /* vertical and horizontal padding */
    position: relative;
}

/* Add a line at the bottom of each item except the last one */
.dropdown-menu .dropdown-item:not(:last-child)::after {
    content: "";
    display: block;
    height: 1px;           /* line thickness */
    background-color: #ddd; /* line color */
    /*margin-top: 12px;       space above the line */
    position: absolute;
    bottom: -1px;
    width: calc(100% - 35px);
}


/* .progress {
    border-radius: 10px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 10px;
} */

.progress {
    height: 14px;          /* increase height */
    border-radius: 12px;
}

.progress-bar {
    border-radius: 12px;
}

.progress-bar.gradient {
    background: linear-gradient(90deg, #0d6efd, #20c997);
}

.faq-row-wrapper {
    background-color: #f8f9fa;   /* light color */
    padding: 30px;
    border-radius: 18px;
}

.faq-block {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.faq-title {
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
    padding-bottom: 6px;
}

.consult-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.consult-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-weight: 500;
}

.consult-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 14px;
}


/* For Customer and project count */

/* .counter-section {
    background-image: url("assets/img/counter-bg.jpg"); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    padding: 80px 0;
    position: relative;
} */
/* parallax effect */

/* .counter-section {
    background-image: url("/img/showcase-4.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
} */

.counter-section {
    background-image: url("/img/showcase-4.jpg");
    /* background-size: 120%; */
    background-size: cover;
    animation: bgMove 20s linear infinite;
    padding: 80px 0;
    position: relative;
}

@keyframes bgMove {
    0%   { background-position: center top; }
    50%  { background-position: center bottom; }
    100% { background-position: center top; }
}


.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65); /* overlay */
}

.counter-section .container {
    position: relative;
    z-index: 1;
}

/* .counter-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.counter-box p {
    color: #dddddd;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
} */

.counter-box {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter-box h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.counter-box p {
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Team member */
.team-section {
    background-color: #f7f8fa;
}

.team-card {
    background: #ffffff;
    border: 1px solid #e6e8eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
}

/* .team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden; 
    text-align: center;
    height: 100%;
} */

.team-card:hover {
    transform: translateY(-4px);
    border-color: #0d6efd;
}

/* .team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
} */

.team-card img {
    width: 100%;
    height: 300px;              /* adjust if needed */
    object-fit: cover;          /* keeps aspect ratio */
    object-position: top center;/* 🔥 THIS FIXES TOP CUTTING */
    display: block;
}

.team-info {
    padding: 18px;
}

.team-info h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.team-info span {
    font-size: 13px;
    color: #6c757d;
    display: block;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #0d6efd;
    border-radius: 50%;
    color: #0d6efd;
    transition: all 0.25s ease;
}

.linkedin-link:hover {
    background: #0d6efd;
    color: #ffffff;
}


.team-social {
    display: flex;
    gap: 10px;
}

.team-social .social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #495057;
    transition: all 0.25s ease;
}

/* LinkedIn */
.team-social .linkedin:hover {
    background: #0a66c2;
    color: #fff;
    border-color: #0a66c2;
}

/* Twitter */
.team-social .twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

/* Instagram */
.team-social .instagram:hover {
    background: linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
    color: #fff;
    border-color: transparent;
}

/* project */

.project-card {
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.project-card h3 {
    font-size: 2rem;
    color: #0d6efd;
}

.project-card p {
    font-size: 1rem;
    color: #6c757d;
}

/* achievement */

.project-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.achievement-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
    top: 0;
    left: 0;
}

.achievement-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.achievement-card h3 {
    font-size: 40px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 5px;
}

.achievement-card p {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}


/* blogs */
.blog-card {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.blog-card img {
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-content h5 {
    transition: color 0.3s;
}

.blog-card:hover h5 {
    color: #0d6efd;
}


/* indivusla blogs */


    .blog-detail h1 {
        font-weight: 700;
    }

    .blog-detail h3 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .blog-detail p {
        font-size: 1rem;
        line-height: 1.8;
        color: #555;
    }

    .blog-share a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .related-posts h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .card {
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* events */

    /* SECTION */
.events-section {
    background: #f8f9fa;
}

/* CARD */
.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* IMAGE SLIDER */
.event-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 220px;
    object-fit: fill;
    /* object-fit: cover; */
}

/* BADGE */
.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.event-badge.workshop { background: #0d6efd; }
.event-badge.visit { background: #198754; }
.event-badge.seminar { background: #fd7e14; }

/* CONTENT */
.event-content {
    padding: 20px;
}

.event-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* META */
.event-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

/* SCROLLABLE DESCRIPTION */
.event-desc {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 6px;
    font-size: 14px;
    line-height: 1.6;
}

/* SCROLLBAR (MODERN) */
.event-desc::-webkit-scrollbar {
    width: 5px;
}

.event-desc::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 10px;
}

.event-desc::-webkit-scrollbar-track {
    background: transparent;
}

/* CAROUSEL ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}


/* Optional: hide default carousel bg */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Address */

.contact-info-text .d-flex div {
    transform: translateX(-12px);
    opacity: 0.85;
    transition: all 0.4s ease;
}

.contact-info-text .d-flex:hover div {
    transform: translateX(0);
    opacity: 1;
}


/* About section */

.about-vmv-section {
    background: #f8f9fa;
}

.vmv-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ff5e15;
    top: 0;
    left: 0;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background:#ff5e15;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vmv-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.vmv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}


/* Company Achievement */

/* Ensure correct stacking context */
.company-achievements .achievement-item {
    position: relative;
    border-top: 2px solid rgba(197, 157, 95, 0.7);
    border-left: 2px solid rgba(197, 157, 95, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover polish */
.company-achievements .achievement-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.company-achievements .achievement-image {
    position: relative;
    z-index: 1;
}

/* Overlay text */
.company-achievements .achievement-info {
    z-index: 3;
}

/* Icon badge – always on top */
.company-achievements .achievement-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
}


/* Our approach */

.approach-section {
    background: #ffffff;
}

.approach-card {
    background: #f8f9fa;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-icon i {
    font-size: 28px;
    color: #0d6efd;
    transition: all 0.4s ease;
}

.approach-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.approach-card p {
    color: #6c757d;
    font-size: 15px;
}

/* Hover Effects */
.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.approach-card:hover .approach-icon i {
    transform: scale(1.2);
    text-shadow: 0 0 12px rgba(13,110,253,0.6);
}

/* Top border animation */
.approach-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #0d6efd;
    transition: width 0.4s ease;
}

.approach-card:hover::before {
    width: 100%;
}

/* ===========================
   SERVICES SECTION (SIMPLE)
   =========================== */

.services-section {
    background: #f8f9fa;
}

/* MAIN CARD */
.services-section .service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* IMAGE CONTAINER */
.services-section .service-img {
    height: 300px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE – FULLY VISIBLE */
.services-section .service-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* 🔥 no cut */
}

/* CONTENT */
.services-section .service-content {
    padding: 24px;
}

.services-section .service-desc {
    line-height: 1.7;
}

.services-section .service-list {
    padding-left: 18px;
}

.services-section .service-list li {
    margin-bottom: 6px;
}

/* RIGHT NAV */
.services-section .service-nav-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.services-section .service-nav {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.services-section .service-nav li {
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.services-section .service-nav li:hover,
.services-section .service-nav li.active {
    background: #0d6efd;
    color: #fff;
}
.services-section .service-title {
    padding: 20px 24px 10px;
}

.services-section .service-title h4 {
    margin: 0;
    font-weight: 600;
}

/* ===========================
   SERVICE CONTENT DECORATION
   =========================== */

.services-section .service-content {
    padding: 24px;
    position: relative;
}

/* Accent line */
.services-section .service-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    height: calc(100% - 48px);
    width: 3px;
    background: #0d6efd;
    border-radius: 4px;
}

/* Description */
.services-section .service-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-left: 12px;
}

/* Highlight text */
.services-section .highlight {
    color: #0d6efd;
    font-weight: 600;
}

/* Decorated list */
.services-section .service-list.decorated {
    list-style: none;
    padding-left: 12px;
    margin-top: 15px;
}

.services-section .service-list.decorated li {
    margin-bottom: 10px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-section .service-list.decorated i {
    color: #0d6efd;
    font-size: 14px;
}
/* ===========================
   SERVICE TITLE BACKGROUND
   =========================== */

.services-section .service-title {
    background: linear-gradient(90deg, #0d6efd 0%, #0b5ed7 100%);
    padding: 16px 24px;
}

.services-section .service-title h4 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}



/* =========================
   PROJECTS SECTION
   ========================= */

   
.projects-section .project-main-img {
    height: 420px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-section .project-main-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
}

/* SCROLLABLE THUMBNAILS */
.projects-section .project-thumb-wrapper {
    overflow-x: auto;
    padding-top: 12px;
}

.projects-section .project-thumb-row {
    display: flex;
    gap: 12px;
    /* width: max-content; */
    width: fit-content;     /* ✅ OR remove width completely */
    max-width: 100%;
}

.projects-section .project-thumb-row img {
    height: 90px;
    width: 130px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    flex-shrink: 0;
    transition: 0.3s;
}

.projects-section .project-thumb-row img.active {
    opacity: 1;
    outline: 3px solid #0d6efd;
}

.projects-section .project-thumb-row img:hover {
    opacity: 1;
}

/* ===========================
   PROJECT DETAILS – STYLED
   =========================== */

.project-details-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.project-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 22px;
}

/* INFO LIST */
.project-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.25s ease;
}

.project-info li i {
    color: #0d6efd;
    font-size: 15px;
    min-width: 18px;
}

.project-info li strong {
    margin-right: 4px;
    font-weight: 600;
}

/* Hover effect */
.project-info li:hover {
    background: #e7f1ff;
    transform: translateX(4px);
}

/* ===========================
   PROJECT SCROLL AREA
   =========================== */

.project-scroll {
    max-height: 360px;        /* fixed card height */
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 6px;
}

/* Scrollbar styling (modern) */
.project-scroll::-webkit-scrollbar {
    width: 6px;
}

.project-scroll::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 10px;
}

.project-scroll::-webkit-scrollbar-track {
    background: transparent;
}

/* ===========================
   COURSES SECTION
   =========================== */

.courses-section .course-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* TITLE */
.courses-section .course-title {
    /* background: linear-gradient(90deg, #0d6efd, #0b5ed7); */
background: linear-gradient(90deg, #e4a010, #0b5ed7);
    
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.courses-section .course-title h4 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.courses-section .course-badge {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* CONTENT */
.courses-section .course-content {
    padding: 26px;
}

.courses-section .course-desc {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 20px;
}

/* INFO LIST */
.courses-section .course-info {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.courses-section .course-info li {
    padding: 8px 0;
    font-size: 14px;
}

/* HIGHLIGHTS */
.courses-section .course-highlights h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.courses-section .course-highlights ul {
    padding-left: 18px;
}

.courses-section .course-highlights li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* RIGHT NAV */
.courses-section .course-nav-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.courses-section .course-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.courses-section .course-nav li {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 8px;
    background: #f8f9fa;
    transition: 0.25s ease;
}

.courses-section .course-nav li:hover,
.courses-section .course-nav li.active {
    background: #e7f1ff;
    color: #0d6efd;
    font-weight: 500;
}
/* ===========================
   COURSE IMAGE
   =========================== */

.courses-section .course-image {
    width: 100%;
   /* height: 320px;            fixed, controlled height */
    overflow: hidden;
}

.courses-section .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 fills div completely */
    display: block;
}

/* ===========================
   COURSE KEYWORD HIGHLIGHT
   =========================== */

.courses-section .service-style-highlight {
    background: #e7f1ff;
    color: #0d6efd;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 500;
    /* white-space: nowrap; */
    /* color: #0d6efd;
    font-weight: 600; */
}


.courses-section .course-highlight {
    background: linear-gradient(180deg, transparent 60%, #ffeeba 60%);
    font-weight: 600;
    color: #212529;
    padding: 0 4px;
    border-radius: 4px;
}

/* ===========================
   COURSE INFO WITH ICONS
   =========================== */

.courses-section .course-info {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.courses-section .course-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.25s ease;
}

.courses-section .course-info li i {
    color: #0d6efd;
    font-size: 15px;
    min-width: 18px;
}

.courses-section .course-info li strong {
    font-weight: 600;
}

/* Hover (subtle, professional) */
.courses-section .course-info li:hover {
    background: #e7f1ff;
    transform: translateX(4px);
}

.courses-section .learn-checklist {
    list-style: none;
    padding: 0;
}

.courses-section .learn-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
}

.courses-section .learn-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
}

/* .bg-coursecrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/student1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 180px 0 180px 0;
} */

.bg-coursecrumb {
    position: relative;
    /* background-image: url('../img/student1.jpg'); */
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/student3.jpg);
    background-size: auto;
    background-position: center;
    height: 600px;
}

.bg-coursecrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.bg-coursecrumb h1 {
    position: relative;
    color: #fff;
    text-align: center;
}

/* ===== UNDER DEVELOPMENT BAR ===== */

.site-dev-topbar {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    animation: siteDevSlideDown 0.4s ease-in-out;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.site-dev-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-dev-text {
    letter-spacing: 0.3px;
}

.site-dev-close {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #111;
    padding: 2px 8px;
    transition: 0.3s ease;
}

.site-dev-close:hover {
    opacity: 0.6;
}

/* Slide Animation */
@keyframes siteDevSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 100px 0;
    background: #f9fafb;
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-header h2 {
    font-size: 40px;
    font-weight: 700;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #c59d5f;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.client-card {
    height: 140px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: 0.4s ease;
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* THIS makes image fill correctly */
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* ===== ENTERPRISE TESTIMONIAL SECTION ===== */

.enterprise-testimonial-section {
    padding: 120px 20px;
    background: #ffffff;
}

.enterprise-testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.enterprise-testimonial-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.enterprise-testimonial-header p {
    color: #666;
    margin-bottom: 70px;
}

/* Slider */
.enterprise-testimonial-slider {
    position: relative;
}

/* Hide all */
.enterprise-testimonial-item {
    display: none;
    transition: opacity 0.3s ease;
}

/* Active */
.enterprise-testimonial-item.active {
    display: block;
}

/* Card */
.enterprise-testimonial-card {
    background: #f8fafc;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
}

/* Quote Icon */
.enterprise-quote-icon {
    font-size: 60px;
    color: #fbbf24;
    margin-bottom: 20px;
}

/* Text */
.enterprise-testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Client Info */
.enterprise-testimonial-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.enterprise-testimonial-client img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}
/* 
.enterprise-testimonial-client img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
} */

.enterprise-client-info h4 {
    margin: 0;
    font-size: 18px;
}

.enterprise-client-info span {
    font-size: 14px;
    color: #777;
}

/* Dots */
.enterprise-testimonial-dots {
    margin-top: 40px;
}

.enterprise-testimonial-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.enterprise-testimonial-dots .dot.active {
    background-color: #fbbf24;
}


/* ===== PREMIUM WHY SECTION ===== */

.premium-why-section {
    padding: 120px 20px;
    background: #ffffff;
}

.premium-why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left Side */
.premium-why-left {
    flex: 1;
}

.premium-why-subtitle {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    /* color: #fbbf24; */
    color: #ff5e15;
    font-weight: 600;
    margin-bottom: 20px;
}

.premium-why-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.premium-why-desc {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* Right Side */
.premium-why-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.premium-why-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Accent Line */
.premium-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    /* background: #fbbf24; */
    background: #ff5e15;
    transition: 0.3s;
}

.premium-why-card i {
    font-size: 28px;
    /* color: #fbbf24; */
    color: #ff5e15;
    margin-bottom: 20px;
}

.premium-why-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.premium-why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effect */
.premium-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* Contact page */

.office-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.office-card h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.office-card p {
    margin-bottom: 12px;
    color: #555;
}

.office-card i {
    color: #c59d5f;
    margin-right: 10px;
}

.office-card a {
    text-decoration: none;
    color: #555;
}

.office-card a:hover {
    color: #c59d5f;
}

.map-box {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.project-summary-card{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.05);
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
}

.project-title{
font-size:26px;
font-weight:600;
margin-bottom:20px;
}

.project-summary{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}

.project-meta{
display:flex;
flex-direction:column;
gap:8px;
font-size:14px;
color:#444;
}

.project-meta span strong{
color:#111;
}


/* =========================================
   MULTI OFFICE SECTION
========================================= */

.multi-office-section {
    background: #f8f9fa;
}

/* CARD */

.multi-office-section .office-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* HEADER */

.multi-office-section .office-header {
    margin-bottom: 30px;
}

.multi-office-section .office-header h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.multi-office-section .office-header span {
    background: #e7f1ff;
    color: #ff7638;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

/* INFO BOX */

.multi-office-section .office-info-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.multi-office-section .office-info-box i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #ff7638;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.multi-office-section .office-info-box h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.multi-office-section .office-info-box p {
    margin: 0;
    color: #6c757d;
    line-height: 1.8;
}

/* CONTACT CHANNELS */

.multi-office-section .contact-channels {
    margin-top: 35px;
}

.multi-office-section .contact-channels h5 {
    font-weight: 600;
    margin-bottom: 22px;
}

/* GRID */

.multi-office-section .channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* CARD */

.multi-office-section .channel-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8f9fa;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

/* ICON */

.multi-office-section .channel-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff7638, #fff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* CONTENT */

.multi-office-section .channel-content {
    flex: 1;
}

.multi-office-section .channel-content span {
    display: block;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.multi-office-section .channel-content strong {
    display: block;
    color: #212529;
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
}

/* HOVER */

.multi-office-section .channel-card:hover {
    background: #ffffff;
    border-color: #0d6efd;
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(13,110,253,0.12);
}

/* MAP */

.multi-office-section .map-box {
    height: 100%;
    min-height: 700px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.multi-office-section .map-box iframe {
    width: 100%;
    height: 100%;
}

/* MOBILE */

@media (max-width: 768px) {

    .multi-office-section .office-card {
        padding: 24px;
    }

    .multi-office-section .channel-grid {
        grid-template-columns: 1fr;
    }

    .multi-office-section .map-box {
        min-height: 400px;
    }

}