
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            transform: skewX(-10deg);
            display: inline-block;
        }
        
        .logo span {
            color: #2ecc71;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* Hero Section */
        
        
        @keyframes slideIn {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
       
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            display: inline-block;
            transform: perspective(500px) rotateX(20deg);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            /*background: #2ecc71;*/
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%) skewX(-20deg);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .about-text.in-view {
            transform: translateY(0);
            opacity: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #35383a;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            perspective: 1000px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transform: rotateY(20deg) scale(0.9);
            transition: all 0.8s ease;
        }
        
        .about-image.in-view img {
            transform: rotateY(0) scale(1);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #ecf0f1;
            background-image: url(./imgSH/SH1.jpg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: transparent;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            transform: scale(0.95);
            opacity: 0;
        }
        
        .feature-card.in-view {
            transform: scale(1);
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            font-size: 40px;
            color: #3498db;
            margin-bottom: 20px;
            display: inline-block;
            transform: rotate(0);
            transition: all 0.5s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotate(15deg) scale(1.2);
            color: #2ecc71;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .feature-card p{
            color: #2c3e50;;
        }
        /* Team Section */
        .team {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .team-member.in-view {
            transform: translateY(0);
            opacity: 1;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 20px;
            background: white;
        }
        
        .member-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .member-info p {
            color: #7f8c8d;
            font-size: 14px;
        }
        
       
                 /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background: #3498db;
            bottom: -8px;
            left: 0;
        }
        
        .footer-section p, .footer-section a {
            color: #bdc3c7;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin: 0 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
            transform: translateY(-5px);
        }
        
        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        
        
        /* Animation on scroll */
        @media (prefers-reduced-motion: no-preference) {
            .in-view {
                opacity: 1;
                transform: none;
            }
        }

        /*nav*/
        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%;
}
.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;
        }
