
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        .heado{
           background: linear-gradient(135deg, #798bd3, #6b80d4);
            /*background-image: url(./imgSH/ourteamA.jpg);*/
            color: rgb(255, 255, 255);
            padding: 30px 0;
            text-align: center;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease; 
        }
        header {
            background: linear-gradient(135deg, #4d4f57, #303135);
            background-image: url(./imgSH/footer1.jpg);
            color: white;
            padding: 30px 0;
            text-align: center;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        header:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        
        header:hover h1 {
            transform: translateY(-3px);
        }
        
        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .subtitleOurteam{
             font-size: 1.1rem;
            opacity: 3.0;
            color: rgb(255, 255, 255);
        }
        
        /* Contact Section */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 50px 0;
        }
        
        .contact-info, .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-info:hover, .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            color: #2541b2;
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            /*background: #4a6cf7;*/
            transition: width 0.3s ease;
        }
        
        .contact-info:hover .section-title::after,
        .contact-form:hover .section-title::after {
            width: 70px;
        }
        
        /* Contact Info Items */
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .info-item:hover {
            transform: translateX(5px);
        }
        
        .info-icon {
            background: #eef2ff;
            color: #4a6cf7;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .info-item:hover .info-icon {
            background: #4a6cf7;
            color: white;
        }
        
        .info-content h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #2541b2;
        }
        
        /* Contact Form */
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus, textarea:focus, select:focus {
            border-color: #4a6cf7;
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
            outline: none;
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: #4a6cf7;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .submit-btn:hover {
            background: #2541b2;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Social Media */
        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #eef2ff;
            color: #4a6cf7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: #4a6cf7;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Map */
        .map-container {
            margin-top: 50px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .map-container:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

        
/*nav section*/
body{
    min-height: 100vh;
    background-image: url(/imgSH/SH2.jpg);
    background-size: cover;
}
nav {

    background-color: rgb(253, 251, 251);
    box-sizing: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    padding-top: 0;

}
nav ul{
    width: 95%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav li{
    height: 40px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}
nav a:hover{
    background-color: white;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: fit-content;
    width: 150px;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
    color: #000000;

}
.menu-button{
    display: none;
}

@media(max-width: 800px){

    .hideOnMobile{
        display: none;
    }

    .menu-button{
    display: block;
    }
    .logo{
        align-content: center;
    }
    
    
}


@media(max-width: 400px){
  
    
  
    .sidebar{
        width: 100%;
    }
    .u-container-layout-3{
      transition: none;
      transform: none;
    }

    
}
.logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: transform 0.3s ease, color 0.3s ease;
        }