/* ===================================
   BASE STYLES
=================================== */
body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #818181;
    padding-top: 90px;
}

figure, p, address {
    margin: 0;
}

p {
    line-height: 25px;
}

iframe {
    border: 0;
}

a {
    transition: all 0.3s ease-out;
}

a, a:hover, a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: #252525;
}

main > section {
    padding: 70px 0;
}

/* ===================================
   BUTTONS
=================================== */
.btn {
    border-radius: 0;
    border: 0;
    position: relative;
    text-transform: uppercase;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}

.btn-effect {
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}

.btn-effect:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-out;
}

.btn-effect:hover, .btn-effect:focus {
    color: #009EE3;
}

.btn-effect:hover:before, .btn-effect:focus:before {
    transform: scaleX(1);
}

/* ===================================
   SECTION TITLES
=================================== */
.sec-title {
    margin-bottom: 50px;
    text-align: center;
}

.sec-title.white {
    color: #fff;
}

.sec-title h2 {
    font-size: 36px;
    margin: 0 0 30px;
    padding-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}

.sec-title.white h2 {
    color: #fff;
}

.sec-title h2:after {
    border-bottom: 1px solid #009ee3;
    content: "";
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    position: absolute;
    width: 115px;
}

.sec-title.white h2:after {
    border-bottom: 1px solid #fff;
}

.parallax {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===================================
   PRELOADER
=================================== */
#preloader {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loder-box {
    background-color: rgba(0,0,0,0.02);
    border-radius: 10px;
    height: 150px;
    width: 150px;
    left: 50%;
    margin-left: -75px;
    margin-top: -75px;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ===================================
   NAVIGATION - MAIN HEADER
=================================== */
#navigation {
    transition: all 0.8s ease;
    background-color: rgba(0,0,0,0.85);
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#navigation.animated-header {
    padding: 20px 0;
}

#navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    flex-wrap: wrap;
}

.navbar-header {
    display: flex;
    align-items: center;
    float: left;
}

.navbar-brand {
    background: linear-gradient(135deg, #e5e7ec 0%, #9d99a2 100%);
    border-radius: 50px;
    padding: 8px 25px !important;
    margin: 0 !important;
    box-shadow: 0 5px 20px rgba(0,158,227,0.3);
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 70px;
    transition: all 0.3s ease;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(25deg);
    transition: all 0.6s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    left: 120%;
}

.navbar-brand img {
    position: relative;
    z-index: 2;
    max-height: 80px;
    max-width: 260px;
    padding: 5px 10px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(148,130,203,0.12);
}

.navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    list-style: none;
}

.navbar-nav > li {
    position: relative;
    margin: 0 2px;
}

.navbar-nav > li > a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px !important;
    letter-spacing: 0.3px;
    display: flex !important;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

.navbar-nav > li > a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.navbar-nav > .active > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #009EE3;
}

.navbar-toggle {
    display: none;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 9px 10px;
    background-color: transparent;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

/* ===================================
   DROPDOWN MENU
=================================== */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,158,227,0.2);
    border-radius: 16px;
    background: #fffffffa;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
    padding: 8px;
    min-width: 240px;
    backdrop-filter: blur(10px);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f9ff;
    color: #009EE3;
    padding-left: 30px;
}

/* ===================================
   LANGUAGE SWITCHER
=================================== */
.language-switcher > a {
    background-color: #009EE3;
    border-radius: 4px;
    padding: 8px 15px !important;
    margin-left: 10px;
    font-weight: 600;
}

.language-switcher > a:hover {
    background-color: #0077b3 !important;
}

.language-switcher img {
    width: 20px;
    height: auto;
    display: inline-block;
    margin-left: 5px;
}

.language-switcher a {
    display: flex !important;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===================================
   HOME SLIDER
=================================== */
#home-slider {
    position: relative;
    padding: 0;
}

.sl-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sl-slide {
    z-index: 1;
}

.slide-caption {
    color: #fff;
    display: table;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 11;
}

.slide-caption .caption-content {
    vertical-align: middle;
    display: table-cell;
}

/* ===================================
   ABOUT SECTION
=================================== */
#about {
    background-color: #009EE3;
    color: #fff;
}

#about h3 {
    color: #fff;
    margin: 0 0 35px;
    text-transform: uppercase;
}

#about .welcome-block h3 {
    margin: 0 0 65px;
}

#about .welcome-block img {
    border: 3px solid #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

#about .message-body {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 70px;
}

.about-box {
    text-align: center;
    margin-bottom: 30px;
}

.about-icon {
    margin-bottom: 20px;
    color: #fff;
}

.about-content p {
    color: #fff;
}

/* ===================================
   OUR ADVANTAGE SECTION
=================================== */
#ouradvantage {
    background-image: url(../img/logo1.png);
    padding: 0;
    color: #fff;
}

#ouradvantage .overlay {
    background-color: rgba(15,155,224,0.78);
    padding: 70px 0 40px;
}

#ouradvantage .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#ouradvantage .col-md-3 {
    display: flex;
    justify-content: center;
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.zoom-effect {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zoom-effect:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,193,7,0.5);
    z-index: 10;
}

.advantage-icon {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zoom-effect:hover .advantage-icon img {
    transform: scale(1.15);
}

.advantage-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.advantage-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.zoom-effect:hover .advantage-content h3:after {
    width: 80px;
}

.advantage-content p {
    color: #f0f0f0;
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0 0;
}

/* ===================================
   OUR PROJECTS SECTION
=================================== */
#ourprojects .price-table img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin-bottom: 20px !important;
}

.price-table {
    border: 1px solid #e3e3e3;
    margin-bottom: 30px;
}

.price-table.featured {
    box-shadow: 0 4px 5px rgba(0,0,0,0.19);
}

/* ===================================
   SECTORS WE SERVE SECTION
=================================== */
#thesectorsweserve {
    padding: 70px 0;
}

#thesectorsweserve .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#thesectorsweserve .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

#thesectorsweserve .sec-title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

#thesectorsweserve .sec-title h2 {
    font-size: 36px;
    margin: 0 0 20px;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

#thesectorsweserve .sec-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #009ee3;
}

#thesectorsweserve .sec-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

#thesectorsweserve [class*="col-"] {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Service item styling */
.service-icon {
    border: 3px solid transparent;
    display: inline-block;
    height: 85px;
    width: 85px;
    line-height: 101px;
    transition: all 0.3s ease;
}

.service-item {
    margin-bottom: 30px;
    text-align: center;
}

.service-item:hover .service-icon {
    border: 3px solid #009ee3;
    margin-bottom: 20px;
    color: #009ee3;
}

.service-item h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0 15px;
}

.sector-icon {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.service-item:hover .sector-icon {
    transform: scale(1.1);
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    #thesectorsweserve .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    #thesectorsweserve .last-row {
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    #thesectorsweserve .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile (max-width 767px) */
@media (max-width: 767px) {
    #thesectorsweserve .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #thesectorsweserve .service-item {
        max-width: 280px;
        margin: 0 auto;
    }
    
    #thesectorsweserve .sec-title h2 {
        font-size: 28px;
    }
    
    #thesectorsweserve .sec-title p {
        font-size: 16px;
        padding: 0 15px;
    }
}

/* ===================================
   PORTFOLIO / DOCUMENTS SECTION
=================================== */
.project-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.project-wrapper li {
    display: inline-block;
}

.portfolio-item {
    cursor: pointer;
    margin: 0 1% 1% 0;
    overflow: hidden;
    position: relative;
    width: 32%;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

figcaption.mask {
    background-color: rgba(54,55,50,0.79);
    bottom: -126px;
    color: #fff;
    padding: 25px;
    position: absolute;
    width: 100%;
    text-align: left;
    transition: all 0.4s ease;
}

.portfolio-item:hover figcaption.mask {
    bottom: 0;
}

figcaption.mask h3 {
    margin: 0;
    color: #fff;
}

ul.external {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: -47px;
    transition: all 0.4s ease;
}

ul.external li {
    display: inline-block;
}

ul.external li a {
    background-color: rgba(255,255,255,0.9);
    color: #818181;
    display: block;
    padding: 10px 18px 13px;
    transition: all 0.5s ease;
}

ul.external li a:hover {
    background-color: #009EE3;
    color: #fff;
}

.portfolio-item:hover ul.external {
    top: 0;
}

/* Responsive Portfolio */
@media (max-width: 991px) {
    .portfolio-item {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .portfolio-item {
        width: 90%;
        margin: 0 auto 20px;
    }
    
    figcaption.mask {
        bottom: -107px;
        padding: 15px;
    }
}

/* ===================================
   CONTACT SECTION
=================================== */
.contact-details-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details-horizontal i {
    font-size: 24px;
    color: #009EE3;
}

/* Responsive Contact */
@media (max-width: 767px) {
    .contact-details-horizontal {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===================================
   GOOGLE MAP SECTION
=================================== */
#google-map {
    padding: 0;
}

.map-fullwidth {
    width: 100%;
}

.map-wrapper {
    position: relative;
}

.map-controls {
    text-align: center;
    margin-top: 10px;
}

.map-attribution {
    text-align: center;
    font-size: 12px;
    color: #818181;
    margin-top: 5px;
}

.btn-view-large {
    display: inline-block;
    background-color: #009EE3;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-view-large:hover {
    background-color: #0077b3;
    color: #fff;
}

/* Responsive Map */
@media (max-width: 767px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

/* ===================================
   FOOTER
=================================== */
#footer {
    background-color: #2E2E2E;
    padding: 70px 0;
    color: #fff;
}

.footer-content {
    width: 390px;
    margin: 0 auto;
}

.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li a {
    color: #7f7f7f;
    display: block;
    transition: all 0.2s ease;
}

.footer-social ul li a:hover {
    color: #009EE3;
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-content {
        width: 100%;
        padding: 0 20px;
    }
    
    .footer-social ul li {
        margin: 0 7px;
    }
}

/* ===================================
   RTL SUPPORT
=================================== */
[dir="rtl"] body,
body.rtl {
    direction: rtl;
    text-align: right;
    padding-top: 90px;
}

[dir="rtl"] .navbar-header {
    float: right;
}

[dir="rtl"] .navbar-brand {
    float: right;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

[dir="rtl"] .navbar-brand::before {
    left: auto;
    right: -60%;
    transform: rotate(-25deg);
}

[dir="rtl"] .navbar-brand:hover::before {
    right: 120%;
    left: auto;
}

[dir="rtl"] .navbar-collapse {
    float: left;
}

[dir="rtl"] .navbar-nav {
    float: right !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .navbar-nav > li {
    float: right;
}

[dir="rtl"] .navbar-nav > li > a {
    text-align: right;
}

[dir="rtl"] .language-switcher > a {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .language-switcher img {
    margin-left: 0;
    margin-right: 5px;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
    text-align: right;
}

[dir="rtl"] .sec-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===================================
   RESPONSIVE MEDIA QUERIES (GLOBAL)
=================================== */

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    body {
        padding-top: 80px;
    }
    
    .navbar-brand {
        min-height: 65px;
        padding: 5px 20px !important;
    }
    
    .navbar-brand img {
        max-height: 70px;
        max-width: 220px;
    }
    
    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .sec-title h2 {
        font-size: 32px;
    }
    
    main > section {
        padding: 60px 0;
    }
}

/* Mobile Portrait */
@media (max-width: 767px) {
    body {
        padding-top: 70px;
        font-size: 14px;
    }
    
    .parallax {
        background-attachment: scroll;
        background-position: center top !important;
    }
    
    .sec-title h2 {
        font-size: 28px;
    }
    
    .sec-title h2:after {
        width: 80px;
    }
    
    .sec-title p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    main > section {
        padding: 50px 0;
    }
    
    .navbar-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-brand {
        min-height: 55px;
        padding: 4px 15px !important;
        border-radius: 40px;
    }
    
    .navbar-brand img {
        max-height: 55px;
        max-width: 180px;
        padding: 3px 5px;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .navbar-collapse {
        width: 100%;
        background: rgba(0,0,0,0.95);
        margin-top: 10px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar-collapse.in {
        max-height: 500px;
        overflow-y: auto;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }
    
    .navbar-nav > li {
        width: 100%;
        margin: 0;
    }
    
    .navbar-nav > li > a {
        padding: 12px 20px !important;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        justify-content: flex-start !important;
    }
    
    .navbar-nav > .active > a:after {
        display: none;
    }
    
    .dropdown-menu {
        position: static !important;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        display: none;
    }
    
    .dropdown.open > .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 10px 35px !important;
        color: #ddd;
    }
    
    .language-switcher > a {
        margin: 5px 20px !important;
    }
    
    .advantage-card {
        padding: 20px 15px;
    }
    
    .advantage-icon {
        width: 90px;
        height: 90px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .navbar-brand {
        padding: 3px 12px !important;
        border-radius: 30px;
    }
    
    .navbar-brand img {
        max-height: 45px;
        max-width: 150px;
    }
    
    .sec-title h2 {
        font-size: 24px;
    }
}
/* ===================================
   NAVBAR TOGGLE (MOBILE)
=================================== */
.navbar-toggle {
    display: none;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 9px 10px;
    margin-top: 8px;
    background-color: transparent;
    position: relative;
    z-index: 1001;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background-color: rgba(255,255,255,0.2);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .navbar-toggle {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        margin-top: 0;
        padding: 80px 20px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }
    
    .navbar-collapse.in {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav > li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav > li > a {
        padding: 15px 20px !important;
        text-align: left;
        justify-content: flex-start !important;
        font-size: 16px;
    }
    
    .navbar-nav > .active > a:after {
        display: none;
    }
    
    /* Dropdown menu mobile */
    .dropdown-menu {
        position: static !important;
        width: 100%;
        background: rgba(255,255,255,0.1);
        border: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        display: none;
        margin-top: 0;
        border-radius: 0;
    }
    
    .dropdown.open > .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 12px 20px 12px 40px !important;
        color: #ddd;
        font-size: 14px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(0,158,227,0.3);
        color: #fff;
        padding-left: 45px !important;
    }
    
    /* Language switcher mobile */
    .language-switcher > a {
        margin: 0 !important;
        justify-content: space-between !important;
        background-color: transparent;
    }
    
    .language-switcher > a:hover {
        background-color: rgba(255,255,255,0.1) !important;
    }
}
/* ===================================
   DROPDOWN MENU (Desktop)
=================================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,158,227,0.2);
    border-radius: 16px;
    background: #fffffffa;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
    padding: 8px;
    min-width: 240px;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover pour desktop */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 2px 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f9ff;
    color: #009EE3;
    padding-left: 30px;
}

/* Caret animation */
.dropdown-toggle .caret {
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle .caret,
.dropdown:hover .dropdown-toggle .caret {
    transform: rotate(180deg);
}

/* ===================================
   MOBILE DROPDOWN STYLES
=================================== */
@media (max-width: 767px) {
    .dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static !important;
        width: 100%;
        background: rgba(255,255,255,0.1);
        border: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
        backdrop-filter: none;
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu li a {
        padding: 12px 20px 12px 40px !important;
        color: #ddd;
        font-size: 14px;
        background: transparent;
        border-radius: 0;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(0,158,227,0.3);
        color: #fff;
        padding-left: 45px !important;
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle .caret {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .dropdown.open .dropdown-toggle .caret {
        transform: translateY(-50%) rotate(180deg);
    }
}
/* ===================================
   FIX DROPDOWN CLICKABLE
=================================== */

/* S'assurer que le dropdown est interactif */
.dropdown-menu {
    pointer-events: auto !important;
    z-index: 1001 !important;
}

/* S'assurer que les liens sont cliquables */
.dropdown-menu li a {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1002;
    display: block;
}

/* Empêcher le dropdown de se fermer immédiatement au clic */
.dropdown-menu li {
    pointer-events: auto;
}

/* Version mobile - améliorer la cliquabilité */
@media (max-width: 767px) {
    .dropdown-menu li a {
        min-height: 44px; /* Zone de touche optimale pour mobile */
        display: flex;
        align-items: center;
        padding: 12px 20px !important;
        -webkit-tap-highlight-color: rgba(0,158,227,0.3);
    }
    
    /* S'assurer que le dropdown reste ouvert au clic */
    .dropdown.open .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Version desktop - hover et clic */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .dropdown-menu li a:hover,
    .dropdown-menu li a:focus {
        background: #f5f9ff;
        color: #009EE3;
        padding-left: 30px;
        outline: none;
    }
}

/* Corriger les problèmes de superposition */
.navbar-nav > li {
    position: relative;
    z-index: 1000;
}

/* S'assurer que le toggle dropdown est clickable */
.dropdown-toggle {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Pour le mobile - s'assurer que le caret est clickable */
.dropdown-toggle .caret {
    pointer-events: none; /* Le caret ne doit pas intercepter les clics */
}

/* Animation fluide pour le dropdown */
.dropdown-menu {
    transition: all 0.3s ease;
}

/* Empêcher le fermeture rapide du dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
/* ===================================
   FIX DROPDOWN CLICKABLE - OUR SERVICES
=================================== */

/* S'assurer que le dropdown est au-dessus du contenu */
.navbar-nav > .dropdown {
    position: relative;
    z-index: 1001;
}

/* Dropdown menu - base styles */
.dropdown-menu {
    pointer-events: auto !important;
    z-index: 1002 !important;
    margin-top: 5px;
}

/* Liens du dropdown - rendre cliquables */
.dropdown-menu li a {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1003;
    display: block;
    -webkit-tap-highlight-color: rgba(0,158,227,0.3); /* Feedback tactile mobile */
}

/* Empêcher le caret d'intercepter les clics */
.dropdown-toggle .caret {
    pointer-events: none;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle .caret,
.dropdown:hover .dropdown-toggle .caret {
    transform: rotate(180deg);
}

/* ===================================
   VERSION MOBILE (max-width: 767px)
=================================== */
@media (max-width: 767px) {
    
    /* Dropdown en position statique pour mobile */
    .dropdown {
        position: static !important;
    }
    
    .dropdown-menu {
        position: static !important;
        width: 100%;
        background: rgba(255,255,255,0.1) !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        display: none; /* Caché par défaut, affiché via JS */
        float: none !important;
    }
    
    .dropdown.open > .dropdown-menu {
        display: block !important;
    }
    
    /* Liens du dropdown mobile */
    .dropdown-menu li a {
        padding: 14px 20px 14px 40px !important;
        color: #fff !important;
        font-size: 15px;
        min-height: 44px; /* Zone tactile optimale */
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu li a:hover,
    .dropdown-menu li a:active,
    .dropdown-menu li a:focus {
        background: rgba(0,158,227,0.4) !important;
        color: #fff !important;
        padding-left: 45px !important;
    }
    
    /* Toggle dropdown mobile */
    .dropdown-toggle {
        cursor: pointer !important;
        padding-right: 35px !important;
        position: relative;
    }
    
    /* Caret positionné à droite sur mobile */
    .dropdown-toggle .caret {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .dropdown.open .dropdown-toggle .caret {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* ===================================
   VERSION DESKTOP (min-width: 768px)
=================================== */
@media (min-width: 768px) {
    
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    /* Afficher au hover ET au click */
    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 10px 20px;
        color: #444;
        font-size: 14px;
    }
    
    .dropdown-menu li a:hover {
        background: #f5f9ff;
        color: #009EE3;
        padding-left: 30px;
    }
}