        body {
            font-family: Arial, sans-serif;
            font-size: 16px;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
       
        header {
            background-image: url(headerBG.jpg);
            background-color: rgb(8, 8, 52);
            background-size: cover;
            background-position: center;
            height: 5%;
            width: 100%;
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: bold;
            flex-shrink: 0;
            position: sticky;
            top: 0;
            box-shadow: 0 0 10px black;
            z-index: 1000;
            border-radius: 20px;
            
        }
        .header-content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            flex-wrap: wrap;
            gap: 20px;
        }
        .header-content img {
            border-radius: 25px;
            width: 230px;
            margin-left: 30px;
        }
        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 0;
            margin: 0;
            
        }
        nav ul li {
            margin: 5px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            box-shadow: 0 0 10px black;
        }
        nav ul li:hover{
            transform: scale(1.2);
        }
        main {
            padding: 2rem;
            flex-grow: 1;
            overflow-y: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        section {
            flex: 1;
            min-width: 300px;
            margin: 10px;
        }
        footer {
            background-image: url('headerBG.jpg');
            background-color: #011732;
            color: white;
            text-align: center;
            padding: 1rem;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            height: 50px;
            padding: 10px;
        }
        button {
            background-color: #008080;
            color: white;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            font-size: 1rem;
            border-radius: 25px;
        }
        button:hover {
            background-color: #FFA500;
            transform: scale(1.2);
        }
        img {
            max-width: 100%;
            height: auto;
        }
       
        .login-button {
            background-color: #FFA500;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-size: 1rem;
            border-radius: 25%;
            margin-left: 1em;
        }
        .login-button:hover {
            background-color: #FF8C00;
        }

        .fingerFlip:hover{
            transform: scale(1.2);
            transition: 0.5s;
            transform-origin: left;
        }
        
        :root {
      --icon-size: 50px; /* Size of the light bulb icon */
      --background-size: 100px; /* Size of the background circle */
      --ray-length: 10px; /* Length of the rays */
      --ray-thickness: 2px; /* Thickness of the rays */
      --bg-color: white; /* Background color */
      --ray-color: navy; /* Color of the bulb and rays */
      --hover-bg-color: navy; /* Background color on hover */
      --hover-ray-color: white; /* Color of the bulb and rays on hover */
    }

    .icon-container {
      margin-top: 50%;
      justify-content: center;
      align-items: center;
      display: flex;
      background-color: var(--bg-color);
      border-radius: 50%;
      padding: calc(var(--background-size) / 2 - var(--icon-size) / 2);
      transition: all 0.3s ease-in-out;
      position: relative;
      width: var(--background-size);
      height: var(--background-size);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
    }

    .ray {
      position: absolute;
      background: var(--ray-color);
      width: var(--ray-thickness);
      height: var(--ray-length);
      transform-origin: center center;
    }

    .ray1 { top: 20%; left: 50%; transform: translate(-50%, -100%); }
    .ray2 { top: 45%; left: 23%; transform: translate(-100%, -50%) rotate(90deg); }
    .ray3 { top: 45%; right: 23%; transform: translate(100%, -50%) rotate(90deg); }
    .ray4 { top: 25%; right: 25%; transform: translate(-50%, -50%) rotate(45deg); }
    .ray5 { top: 25%; left: 25%; transform: translate(50%, -50%) rotate(-45deg); }
    .ray6 { bottom: 43%; left: 25%; transform: translate(50%, 100%) rotate(-135deg); }
    .ray7 { bottom: 43%; right: 25%; transform: translate(-50%, 100%) rotate(135deg); }

    .circleNum {
      position: absolute;
      top: 60px;
      left: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background-color: navy;
      color: white;
      border: 4px solid white;
      border-radius: 50%;
      font-size: 1.5rem;
      font-weight: bold;
      z-index: 1;
      box-shadow: 0 0 5px black; /* Add shadow */
    }

    .nav-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 80px; /* Space between the icons */
    }

    .icon-container:hover {
      background-color: var(--hover-bg-color); /* Change background color on hover */
      transform: scale(1.2);
    }

    .icon-container:hover .fas.fa-lightbulb,
    .icon-container:hover .fas.fa-cog {
      color: var(--hover-ray-color); /* Change icon color on hover */
      
    }

    .icon-container:hover .fas.fa-pencil-ruler {
      color: var(--hover-ray-color); /* Change icon color on hover */
    }

    .icon-container:hover .fas.fa-vial {
      color: var(--hover-ray-color); /* Change icon color on hover */
    }

    .icon-container:hover .ray {
      background-color: var(--hover-ray-color); /* Change ray color on hover */
      
    }

    .fas.fa-lightbulb {
      font-size: var(--icon-size);
      color: var(--ray-color); /* Initial color of the icon */
      transition: color 0.3s ease-in-out;
      
    }

    .fas.fa-cog {
      position: absolute;
      font-size: 20px; /* Adjust size as needed */
      color: var(--ray-color); /* Initial color of the icon */
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: color 0.3s ease-in-out;
    }

    .bulb-title {
      position: absolute;
      top: 100px; /* Adjust as needed */
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.5rem;
      color: var(--ray-color);
    }

    .bulb-description {
      position: absolute;
      top: 130px; /* Adjust as needed */
      left: 50%;
      transform: translateX(-50%);
      font-size: 1rem;
      color: var(--ray-color);
      text-align: center;
      width: 80%; /* Adjust as needed */
    }

    .bulb-button {
      position: absolute;
      top: 160px; /* Adjust as needed */
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--ray-color);
      color: var(--bg-color);
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      border-radius: 5px;
    }

    .bulb-button:hover {
        
      background-color: var(--hover-bg-color);
      color: var(--hover-ray-color);
    }

    .discussion-icon-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: var(--background-size);
      height: var(--background-size);
      background-color: var(--bg-color);
      border-radius: 50%;
      border: 2px solid navy;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
      margin-left: 20px; /* Space between the icons */
    }

    .discussion-icon {
      fill: navy;
      width: 80%;
      height: 80%;
    }

    .icon {
      color: navy;
      font-size: 2rem;
    }

    .icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

        .flex-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .flex-container .image-side, .flex-container .text-side {
            flex: 1;
            min-width: 300px;
            margin: 10px;
        }
        .flex-container .image-side img {
            width: 100%;
            border-radius: 10px;
        }

        .team-photo {
    position: relative;
    display: inline-block;
}
.team-photo img {
    display: block;
    border-radius: 2%;
    width: 100%;
    height: auto;
    transition: filter 0.3s;
}
.team-photo:hover img {
    filter: brightness(90%);
}
.social-icons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
   
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}
.team-photo:hover .social-icons {
    opacity: 1;
}
.social-icons a {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 0 10px navy;
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.linkedin-bg { background-color: #0077b5; }
.facebook-bg { background-color: #3b5998; }
.twitter-bg { background-color: #1da1f2; }
.xing-bg { background-color: #026466; }
.google-bg { background-color: #db4437; }
.youtube-bg { background-color: #ff0000; }
.tiktok-bg { background-color: #010101; }


        .blog-section {
            padding: 2rem;
            text-align: center;
        }

        .blog-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
            overflow: hidden;
            position: relative;
        }

        .blog-posts {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .blog-post {
            min-width: 200px;
            height: 200px; /* Extended height */
            margin: 0 1rem;
            background-color: white;
            padding: 1rem;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .blog-post:hover {
            box-shadow: 0 0 20px rgba(0, 0, 255, 0.5);
            transform: scale(1.1);
        }

        .slide-btn {
            background-color: transparent;
            color: navy;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 2rem;
            transition: all 0.3s ease;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .slide-btn:hover {
            color: blue;
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(0, 0, 255, 0.5);
        }

        .left {
            left: 0;
        }

        .right {
            right: 0;
        }

        .slide-btn:before {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }

        .left:before {
            border-right: 15px solid navy;
        }

        .right:before {
            border-left: 15px solid navy;
        }

        .slide-btn:hover .left:before {
            border-right-color: blue;
        }

        .slide-btn:hover .right:before {
            border-left-color: blue;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            flex: 1;
        }

        .sections-wrapper {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .follow-us .social-iconss {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30%;
            
        }

        .social-iconss a {
            font-size: 2.5rem;  /* Increased size */
            width: 60px; /* Increased size */
            height: 60px; /* Increased size */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }

        .social-iconss a:hover {
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            
        }

        .linkedin-bg { background-color: #0077b5; }
        .facebook-bg { background-color: #3b5998; }
        .twitter-bg { background-color: #1da1f2; }
        .xing-bg { background-color: #026466; }
        .google-bg { background-color: #db4437; }
        .youtube-bg { background-color: #ff0000; }
        .tiktok-bg { background-color: #010101; }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form input, .contact-form textarea {
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid #ccc;
            width: 100%;
            box-sizing: border-box;
        }

        .contact-form button {
            padding: 1rem;
            border-radius: 5px;
            border: none;
            background-color: navy;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .contact-form button:hover {
            background-color: blue;
        }

        .contact-info {
            text-align: center;
        }

        .contact-info p {
            margin: 0.5rem 0;
        }

        .recent-posts-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .recent-posts {
            display: flex;
            gap: 1rem;
        }

        .recent-post {
            display: flex;
            flex-direction: column;
            border: 1px solid #ccc;
            border-radius: 10px;
            overflow: hidden;
        }

        .recent-post img {
            width: 100%;
            height: auto;
        }

        .recent-post-content {
            padding: 1rem;
        }

        .recent-post-date {
            font-size: 0.9rem;
            color: #777;
        }

        .recent-post-title {
            font-size: 1.2rem;
            color: #333;
            margin: 0.5rem 0 0;
        }

            /* Scoped header nav styling to avoid conflicts */
        header nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 0;
            margin: 0;
        }

        header nav ul li {
            margin: 5px;
        }

        header nav ul li a {
            color: white;
            text-decoration: none;
            box-shadow: 0 0 10px black;
            margin-right: 20px;
        }

        header nav ul li:hover {
            transform: scale(1.2);
        }

        .search-container {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 0.5rem;
            border-radius: 5px;
        }

        .search-container input[type="text"] {
            border: none;
            outline: none;
            margin-left: 10px;
            font-size: 1rem;
        }

        .search-container input[type="text"]::placeholder {
            color: #888;
        }

