/* Hero Carousel */
.hero-carousel {
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-position: center 25%;
    object-fit: cover;
    display: block;
}

.carousel-item:nth-child(3) .hero-image {
    object-position: center 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 30%;
    background: transparent;
    border-radius: 15px;
    padding: 30px;
    padding-left: 50px;
    max-width: 700px;
    margin: 0;
    left: 15%;
    right: auto;
    backdrop-filter: none;
    animation: fadeInUp 1s ease;
    border-left: 5px solid #ffffff;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Carousel Caption Responsive Adjustments */
@media (max-width: 1536px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 1366px) {
    .carousel-caption {
        bottom: 25%;
        left: 12%;
        max-width: 650px;
        padding: 25px;
        padding-left: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 992px) {
    .carousel-caption {
        bottom: 20%;
        left: 10%;
        max-width: 80%;
        padding: 20px;
        padding-left: 30px;
        border-left-width: 4px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        top: 50%;
        bottom: auto;
        left: 5%;
        right: 5%;
        transform: translateY(-50%);
        max-width: 90%;
        padding: 15px;
        padding-left: 20px;
        border-left-width: 3px;
        animation: none;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .btn-outline-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        top: 50%;
        bottom: auto;
        left: 3%;
        right: 3%;
        transform: translateY(-50%);
        max-width: 94%;
        padding: 12px;
        padding-left: 15px;
        border-left-width: 2px;
        animation: none;
    }

    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .btn-outline-custom {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

.btn-outline-custom {
    background: var(--dark-gray);
    border: 2px solid var(--dark-gray);
    color: var(--bg-white);
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--dark-gray);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70%;
}


/* Quick Links Section */
.quick-links {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 20vh;
    display: flex;
    align-items: center;
}

.quick-link {
    text-align: center;
    padding: 0 5px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.quick-link:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-link i {
    font-size: 1.8rem;
    color: var(--light-blue) !important;
    margin-bottom: 5px;
}

.quick-link h4 {
    color: var(--light-blue) !important;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-link p {
    margin-bottom: 0;
    font-size: 0.75rem;
    color: var(--light-blue) !important;
}
/*End Quick Links Section*/


/* About US Section in home */

/* Icon styling for mission and vision */
#about-us .fa-solid {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

/* Section Box Styling */
.section-box {
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Font Awesome Icon Styling - replaces images */
.section-box i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.section-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.section-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-box {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .section-box h3 {
        font-size: 1.25rem;
    }

    .section-box i {
        font-size: 3rem;
    }
}

/* About Us Section Background */
#about-us {
    position: relative;
    padding-top: 5%;
    background: linear-gradient(to bottom,
            #2c3e50 0%,
            #34495e 2%,
            #4a5f7a 4%,
            #607d94 6%,
            #7a9aae 10%,
            #a8c0d4 13%,
            /* #d4e3ed 15%, */
            #f0f4f7 17%,
            #ffffff 20%,
            #ffffff 100%);
}

#about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12%;
    background:
        radial-gradient(ellipse 120% 80% at 20% 15%, rgba(44, 62, 80, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 100% 70% at 80% 20%, rgba(52, 73, 94, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 150% 90% at 50% 25%, rgba(74, 95, 122, 0.2) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

#about-us>* {
    position: relative;
    z-index: 1;
}

/* Content Section Styling */
#about-us h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Orange highlight effect */
#about-us h1 .highlight {
    color: #ff8c42;
    font-weight: 800;
}

#about-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

/* Button Wrapper */
.btn-wrapper {
    margin-top: 30px;
}

.btn-get-quote {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b1a 100%);
    color: white;
    border: none;
    height: 50px;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-get-quote:hover {
    background: linear-gradient(135deg, #ff6b1a 0%, #ff8c42 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
    color: white;
}

/* Responsive Typography */
@media (max-width: 768px) {
    #about-us h1 {
        font-size: 2rem;
    }

    #about-us p {
        font-size: 1rem;
    }
        #about-us {    
             padding-top: 10%;
    }
}

/*End About Us Section*/

/*Service Class*/

/* Services Section - matches actual HTML structure */

/* Services Section Container */
.services-section {
    background-color: #d3d3d3;
}

.services-section h1 {
    color: black;
}

.services-section > .container > .row > p {
    color: black;
}

/* Section heading and paragraph */
#services h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
}

#services~.container p,
.container-fluid p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 50px;
}

/* Service Cards */
.service-card {
    height: 550px;
    background-color: white;
    border-radius: 10px;
}

#services .card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: none;
    animation: fadeInUp 0.6s ease;
}

#services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Card image container */
.card-image-container {
    width: 100%;
    height: 75%;
    overflow: hidden;
    background-color: white;
    border-radius: 10px 10px 0 0;
}

#services .card>div:first-child {
    position: relative;
}

#services .card>div:first-child a {
    display: block;
    width: 100%;
    height: 100%;
}

#services .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border: 0;
}

#services .card:hover img {
    transform: scale(1.1);
}

/* Card content */
.card-content {
    width: 100%;
    height: 25%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding-top: 15px;
}

#services .card .row {
    background: white;
}

#services .card h4 {
    color: black;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    width: 100%;
}

#services .card p {
    color: black;
    width: 100%;
}

/* Card link styling - make entire card clickable */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Service Card Button - targeting the actual button classes */
#services .card .btn-warning {
    background: var(--primary-orange);
    color: var(--bg-white);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
    padding: 12px 50px !important;
    width: 100%;
    display: inline-block;
    pointer-events: none;
}

.card-link:hover .btn-warning {
    background: var(--dark-orange);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    #services .card {
        height: 480px;
    }

    #services .card h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    #services h1 {
        font-size: 2rem;
    }

    .container-fluid p {
        font-size: 1rem;
    }

    #services .card {
        height: 450px;
    }
}

@media (max-width: 768px) {
    #services h1 {
        font-size: 1.8rem;
    }

    #services .card {
        height: 400px;
        margin: 0 auto 20px !important;
    }

    #services .card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    #services .card .btn-warning {
        padding: 8px 25px !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #services h1 {
        font-size: 1.5rem;
    }

    .container-fluid p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    #services .card {
        height: 380px;
    }

    #services .card h4 {
        font-size: 1rem;
    }

    #services .card .btn-warning {
        padding: 7px 20px !important;
        font-size: 0.85rem;
    }
}

/*End of Service Section*/
/*Start of news section*/
/* News Section */
.news-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e8eef3 100%);
}

.news-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
    transition: var(--transition);
    height: 100%;
    background: var(--bg-white);
    border: 1px solid rgba(11, 92, 146, 0.1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 92, 146, 0.2);
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.news-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(44, 62, 80, 0.3) 100%);
    transition: var(--transition);
}


.news-date {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-gray) 100%);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(11, 92, 146, 0.3);
}

.news-content {
    padding: 20px;
    background: var(--bg-white);
}

.news-title {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    transition: var(--transition);
}

.news-card:hover .news-title {
    color: var(--light-blue);
}

.news-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-content .btn-outline-danger {
    background: transparent;
    border: 2px solid var(--light-blue);
    color: var(--light-blue);
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.news-content .btn-outline-danger:hover {
    background: var(--light-blue);
    color: var(--bg-white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(11, 92, 146, 0.3);
}

/* News Section Title */
.news-section .section-title h2 {
    color: var(--dark-gray);
}

.news-section .section-title p {
    color: var(--medium-gray);
}

.news-section .view-all {
    color: var(--light-blue);
}

.news-section .view-all:hover {
    color: var(--dark-gray);
}

/* Alert styling for no articles */
.news-section .alert-info {
    background: rgba(11, 92, 146, 0.1);
    border: 1px solid var(--light-blue);
    color: var(--dark-gray);
    border-radius: 10px;
    padding: 20px;
}

.news-section .alert-info i {
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-img {
        height: 180px;
    }

    .news-content {
        padding: 15px;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .news-content p {
        font-size: 0.9rem;
    }
}
/*End of News Section*/

/*Map Section*/
.map-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border: 3px solid var(--dark-gray);
    border-radius: 16px;
}

#europe-map {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.leaflet-container {
    background: #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* L-shaped markers (teal + orange) */
.l-marker {
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
}

.l-marker-inner {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background: transparent;
}

.l-marker--teal .l-marker-inner {
    border-left: 3px solid #0ea5e9;
    border-top: 3px solid #0ea5e9;
}

.l-marker--orange .l-marker-inner {
    border-right: 3px solid #f97316;
    border-bottom: 3px solid #f97316;
}

/* Cluster bubbles */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.9) 0, rgba(59, 130, 246, 0.7) 40%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 999px;
    border: 2px solid #1d4ed8;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.7);
    color: #111827;
}

.marker-cluster div {
    background: #1d4ed8;
    color: #ffffff;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    box-shadow: inset 0 0 0 2px rgba(191, 219, 254, 0.9);
}
/*End of Section*/
/*Start of Contact US section*/

.animated-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.animated-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.custom-btn {
    background: linear-gradient(90deg, #ff8800, #d33d10);
    border: none;
    border-radius: 50px;
    color: #fff;
    padding: 12px 30px;
}


.contact-hero {
    height: 600px;
    position: relative;
    overflow: hidden;
}


.contact-hero-bg {
    /* background-image removed — set by HTML to make image source explicit in markup */
    background: none;
    background-color: #0b1220;
    /* dark fallback while image loads */
    background-position: center center;
    background-size: cover;
    filter: blur(5px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    /* prevents edges from appearing after blur */
}


.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.contact-hero-content {
    position: relative;
    z-index: 2;
}
/*End of Contact US section*/

/*About US STATS SECTION*/

/* Company Overview Stats */
.company-overview {
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #0b5c92;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.ul-about-us {
  line-height: 1.8;
  padding-left: 30%;
  color: #333;
}