        /* Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* Header styling */

        header {
            background-color: #34495e;
            padding: 40px 0;
            position: relative;
            
        }

        .headeritems {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;

        }

        .headerlogo {
          
           position: absolute;
           left: 10px;
           display: flex;
           align-items: center;
           height: 100%;
        }

        .headertitle h2, .headertitle p {
            color: white;
            text-align: center;

        }

        .headertitle h2 {
            font-size: 2rem;
        }

        /* Navigation styling */
        nav {
            background-color: #2c3e50;
            padding: 1rem 0;
            text-align: center;
            z-index: 2;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav a:hover {
            background-color: #34495e;
            text-decoration: underline;
        }

        /* Navigation dropdown menu styling */

        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #34495e;
            min-width: 210px;
            border: 1px solid #ccc;
            z-index: 1;
            text-align: left;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content a {
            display: block;
            padding: 8px 12px;
            text-decoration: none;
            color: white;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-content a:hover {
            background-color: #2c3e50;
        }

        /* Go to top button */

        .gobottom {
            float: right;
            padding-right: 1rem;
            z-index: 2;
        }

        .gotobottom button {
            font-size: 0.8rem;
            font-weight: 500;
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 3px 15px;
            border-radius: 0 0 6px 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .gotobottom button:hover {
            background-color: #2c3e50;
            transform: translateY(2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            border-radius: 6px;
        }

        .gotobottom button:active {
            background-color: #2c3e50;
            transform: translateY(10px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            border-radius: 6px;
        }

        .gotobottom button i {
            font-size: 1.5rem;
            z-index: 2;
        }

        /* Main Content Section */

        section  {
             max-width: 1400px;
             margin: 2rem auto 0 auto;
             padding: 0 2rem;
        }

        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #3498db;
            padding-bottom: 0.5rem;
        }

        section h2 {
            color: #34495e;
            font-size: 2rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        section h3 {
            color: #34495e;
            font-size: 1.5rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        section p {
            margin-bottom: 1rem;
            max-width: auto;
        }

        section strong {
            color: #2c3e50;
        }

        section em {
            color: #7f8c8d;
        }

        section ul, section ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        section li {
            margin-bottom: 0.5rem;
        }

        section a {
            color: #3498db;
            text-decoration: none;
        }

        section a:hover {
            text-decoration: underline;
        }

        section hr {
            border: none;
            border-top: 2px solid #ecf0f1;
            margin: 2rem 0;
        }

        section span {
            background-color: #fff3cd;
            padding: 0.1rem 0.3rem;
            border-radius: 3px;
        }

        /* Hero Section */

        .hero {
            background-color: #ecf0f1;
            padding: 3rem 2rem;
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 8px;
            transition: all 0.3 ease;
            backdrop-filter: blur(10px);
            z-index: 1;
        }

        .hero:hover {
            transform: scale(102%);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .hero h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.3rem;
            color: #6c757d;
        }

        /* Content sections */

        .content-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 8px;
        }

        .content-section h2 {
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.2rem;
        }

        /* Feature Boxes */

        .feature-box {
            border: 1px solid #e9ecef;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3 ease;
            backdrop-filter: blur(10px);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-box h3 {
            color: #495057;
            margin-bottom: 15px;
        }

        /* Image Box */

        .feature-box2 {
            border: 1px solid #e9ecef;
            padding: 0 1.5rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3 ease;
            backdrop-filter: blur(10px);
        }

        .feature-box2:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-box2 h3 {
            color: #495057;
            margin-bottom: 15px;
        }

        .image-box {
            width: fit-content;
        }

        .feature-box2 img {
            width: auto;
            height: 250px;
            margin-right: 5rem;
        }

        .image-box2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .image-box2 img {
            width: auto;
            height: 300px;
            margin-right: 5rem;
        }

        /* Subfeature Boxes */

        .subfeature-box {
            border: 2px solid #495057;
            display: flex;
            justify-content: stretch;
            width: fit-content;
            border-radius: 8px;
            margin: 1rem 0 1rem 0;
            box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .subfeature-box:hover {
            box-shadow: -15px 0 30px rgba(0, 0, 0, 0.2);
            transform: translateX(10px);
        }

        .sideline {
            background-color: #495057;
            width: 0.8%;
            border-radius: 5px 0 0 5px;
        }

        .h4-box {
            background-color: #f8f9fa;
            padding-left: 0.5rem;
            border-radius: 5px;
        }

        /* big image  */

        .image-box3 {
            display: flex;
        }

        .sub-box {
            width: fit-content;
        }

        .big-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .big-image img {
            width: 700px;
            height: auto;
        }

        /* Go to top button */

        .gotop {
            display: flex;
            justify-content: flex-end;
            padding-right: 1rem;
        }

        .gototop button {
            font-size: 0.8rem;
            font-weight: 500;
            background-color: #34495e;
            color: white;
            border: none;
            padding: 3px 15px;
            border-radius: 6px 6px 0 0;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            float: right;
        }

        .gototop button:hover {
            background-color: #2c3e50;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            border-radius: 6px;
        }

        .gototop button:active {
            background-color: #2c3e50;
            transform: translateY(-10px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            border-radius: 6px;
        }

        .gototop button i {
            font-size: 1.5rem;
        }

        /* Footer Styling */

        footer {
            background-color: #34495e;
            position: relative;
            bottom: 0;
            width: 100%;
            height: 45vh;
            margin: 0;
        }

        /* Footer quick pannel */

        .quick {
            padding: 2% 5% 0.5% 15%;
            
        }

        .quicklinks {
            color: white;
            font-size: 18px;
            
        }

        .links {
            padding-top: 18px;
        }

        .links a:hover {
            color: yellow;
            text-decoration: underline;
        }


        .links ul li {
            text-decoration: none;
            list-style: none;
            padding: 0 0 10px 0;
        }

        .links ul li a {
            text-decoration: none;
            color: white;
        }

        /* Footer social media follow pannel */

        #hr1 {
            align-items: center;
            width: 70%;
            margin: auto;
        }

        #hr2 {
            align-items: center;
            width: 60%;
            margin: auto;
        }

        .social {
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0.6% 30% 0.6% 30%;
            
        }

        #follow {
            color: white;
            line-height: 2;
            box-sizing: border-box;
            
        }

        .icon {
            display: flex;
            gap: 20px;
        }

        .icon a {
            text-decoration: none;
            color: white;
            display: inline-flex;
            align-items: center;
            width: 30px;
            height: 30px;
            justify-content: center;
            border: 2px solid white;
            border-radius: 50%;
            line-height: 1;
            box-sizing: border-box;
        }

        .icon a:hover {
            background-color: black;
            color: white;
            border-color: black;
        }

        /* Footer copyright pannel */

        .copyright {
            
            position: absolute;
            width: 100%;
            justify-content: center;
            margin-bottom: 2%;
            margin-top: 1.5%;
            color: white;
            text-align: center;
            display: flex;
            font-size: 0.9rem;
            
        }