.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 20px;
            padding-right: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #2c5aa0;
        }

        .logo::before {
            margin-right: 8px;
            font-size: 28px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin-right: 54%;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #11b8aa;
        }

        .nav-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .get-app {
            background: linear-gradient(45deg, #2c5aa0, #4a7bc8);
            color: white;
            padding: 4px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .get-app:hover {
            transform: translateY(-2px);
        }

        .auth-btn {
            background: white;
            border: 1px solid #ddd;
            padding: 3px 16px;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 12px;
            transition: all 0.3s;
        }

        .auth-btn:hover {
            background: #f5f5f5;
        }

        /* Main Content */
        .main-content-custom {
            padding: 60px 0;
            display: flex;
            align-items: center;
            min-height: 500px;
            background:  linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
        
        }

        .content-wrapper {
            display: flex;
            align-items: center;
            gap: 230px;
            width: 100%;
        }

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

        .main-title {
            font-size: 48px;
            font-weight: bold;
            color: #2c5aa0;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 20px;
            color: #2c5aa0;
            margin-bottom: 40px;
        }

        /* Service Icons */
        .services {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .service-item {
            background: white;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            min-width: 90px;
            transition: transform 0.3s;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 8px;
            background: #e8f4f8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .service-text {
            font-size: 11px;
            color: #333;
            font-weight: 500;
            line-height: 1.2;
        }

        /* Search Section */
        .search-section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            display: flex;
            gap: 15px;
            align-items: end;
            width: 125%;
        }

        .search-group {
            flex: 1;
        }

        .search-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .search-input {
            width: 100%;
            padding: 6px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-input:focus {
            border-color: #2c5aa0;
        }

        .search-btn-custom {
            background: linear-gradient(45deg, #2c5aa0, #4a7bc8);
            color: white;
            border: none;
            padding: 6px 30px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .search-btn:hover {
            transform: translateY(-2px);
        }

        /* Right Image */
        .right-content {
            flex: 1;
            position: relative;
        }

        .banner-doctor-image {
            width: 400px;      /* même largeur que ton ancien svg */
            height: 600px;     /* même hauteur */
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 0 auto; /* si tu veux centrer comme le svg */
            display: block;
        }

        /* Background Elements */
        .bg-element {
            position: absolute;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            z-index: -1;
        }

        .bg-element-1 {
            width: 200px;
            height: 200px;
            top: -50px;
            right: -50px;
        }

        .bg-element-2 {
            width: 150px;
            height: 150px;
            bottom: -30px;
            left: -30px;
        }


        
        /* Bouton burger */
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #053178; /* bleu foncé */
            border-radius: 2px;
        }


        .mobile-only {
            display: none;
        }


        .desktop-only{
            display: block;
        }
        
.title-main {
  font-size: 3.5rem !important;;
  color: #053178 !important;;
}

.title-main span {
  color: #053178 !important;;
}

/* Version mobile */
@media (max-width: 768px) {
  .title-main {
    font-size: 2.5rem !important;;
  }
}
        /* Responsive */
        @media (max-width: 768px) {

            .nav-links {
                display: none;
            }

            .content-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .main-title {
                font-size: 36px;
            }

            .services {
                justify-content: center;
            }

            .search-section {
                flex-direction: column;
                gap: 20px;
                width: 100%;
            }

            .search-group {
                width: 100%;
            }


            .right-content {
                display: none;
            }

            .get-app{
                display: none;
            }

            .auth-btn{
                display: none;
            }

            .mobile-only{
                display: block;
            }


            .desktop-only{
                display: none;
            }


            .nav-links {
                display: none; /* caché par défaut */
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 49px;  /* sous le header */
                right: 10px;
                padding: 15px;
                border-radius: 0px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                gap: 0;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .nav-links.active {
                display: flex; /* affiché quand on clique */
            }

            .burger {
                display: flex; /* visible seulement en mobile */
            }

            .left-content {
                margin-top: 25px;
            }

            #doctors-services{
                display: none;
            }

            #userConnected{
                display: none;
            }
        }




        /* Laptop (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-links {
    margin-right: 35%;
  }


  #doctors-services{
    display: none;
  }
}



        
/* Desktop (1200px – 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .content-wrapper {
        margin-left: 25px;
        justify-content: center;
    }

    .nav-actions {
            display: flex;
            gap: 7px;
            align-items: center;
        }
}

/* Large desktop (1400px – 1899px) */
@media (min-width: 1400px) and (max-width: 1699px) {
  .content-wrapper{
    margin-left: 65px;
    justify-content: center;
  }

  .main-title {
            font-size: 42px;
        }
    
        .subtitle{
            font-size: 16px;
            margin-bottom: 25px;
        }



        .banner-doctor-image {
            width: 320px;      /* même largeur que ton ancien svg */
            height: 500px;     /* même hauteur */
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 0 auto; /* si tu veux centrer comme le svg */
            display: block;
        }



        .content-wrapper {
            gap: 150px;
        }
}


