        
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
           background: linear-gradient(135deg, #d6dcd6 0%, #e8f0e8 100%);

            color: #333;
            line-height: 1.6;
        }

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



        header {

            background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
            padding: 10px 0 10px;
            text-align: center;
            position: relative;
            margin-bottom: 0;


        }

        /* Gradient bottom border */
        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 5px;
            width: 100%;
            /* background: linear-gradient(125deg, rgb(214, 227, 221), #070f0ab9); */
            background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
        }


        .header-top {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo {
            border-radius: 4px;
            position: absolute;
            left: -10%;
            top: 70%;
            transform: translateY(-50%);
            height: 90px;
        }

        header h1 {
            font-size: 2.3rem;
        }

        header a {
            font-size: 1rem;
            margin-top: 0;
            color: #f5f5f5;
            text-decoration: none;
        }

        header a:hover {
            color: #666;
            transition: 0.3s all;
        }

        /* Menu */
        nav.menu {
            margin-top: 15px;
        }

        nav.menu ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        nav.menu ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 5px 2px;
            transition: background-color 0.3s ease;
        }

        nav.menu ul li a:hover {

            background:linear-gradient(135deg, #d4af37 0%, #f4df9f 100%);
            color:#2a5e2a;
            border-radius: 4px;
        }

        /* Hamburger Menu Icon */
        .hamburger {
            display: none;
            position: absolute;
            top: 20px;
            right: 30px;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: white;
        }

        /* Responsive Styles */
        <!-- @media (max-width: 768px) {
            .logo {
                left: 30px;
                height: 60px;
            }
        } -->

          /* Responsive Styles */
       @media (max-width: 1368px) {
      .logo {
      left:-3%;
 
      }
             header h1 {
      font-size: 2.0rem;
    }
    }

       @media (max-width: 1068px) {
        .logo {
      left:-2%;
 
      }
             header h1 {
      font-size: 1.6rem;
    }
    }

    @media (max-width: 768px) {
                header h1 {
      font-size: 1.3rem;
      
    }
      .logo {
        
 /* left:0%; */
        left: 30px;
        height: 60px;
      }
    }

        @media (max-width: 450px) {
            .logo {
                left: 0px;
                height: 55px;
                top: 10%;
                transform: translateY(-10%);
            }

            .hamburger {
                margin-top: 5px;
                display: flex;

            }

            header h1 {
                  font-size: 1.3rem;
                margin-left: 100px;
                margin-right: 100px;
            }




            nav.menu {
                display: none;
                margin-top: 10px;
            }

            nav.menu.active {
                display: block;
            }

            nav.menu ul {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                background-color: linear-gradient(to left, rgb(156, 158, 158), #3d8e7b);
                padding: 10px 0;
            }
        }


 .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            animation: fadeIn 1s ease-in-out;
        }
        
        .title {
            display: block;
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
              background:  linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox support */
  color: transparent;
            /* color: #092410; */
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: slideDown 0.8s ease-out;
        }
        
        .aboutus-title {
            display: block;
            font-size: 1.8rem;
            font-weight: 600;
            background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; /* for Firefox support */
            color: transparent;
            margin: 30px 0 15px 0;
            position: relative;
            padding-left: 15px;
            animation: fadeInLeft 0.8s ease-out;
        }
        
        .aboutus-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 80%;
            width: 5px;
            background: #2ecc71;
            border-radius: 3px;
        }
        
        .one, .two {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .one:hover, .two:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        span {
            display: block;
            margin-bottom: 15px;
            font-size: 1.1rem;
            animation: fadeIn 1s ease-out;
        }
        
        strong {
            font-weight: 600;
            animation: colorChange 15s infinite;
        }
        
        .gann-note {
            background:linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            font-weight: 500;
            animation: pulse 2s infinite;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideDown {
            from { 
                opacity: 0;
                transform: translateY(-50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from { 
                opacity: 0;
                transform: translateX(-30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        /* New color-changing animation for strong elements */
        @keyframes colorChange {
            0% { color: #052d0f; }
            25% { color: #2ecc71; }
            50% { color: #9e2727; }
            75% { color: #865940; }
            100% { color: #74a910; }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {

                   span {
            display: block;
            margin-bottom: 0px;
            font-size: 1.1rem;
            animation: fadeIn 1s ease-out;
        }
            .title {
                font-size: 2rem;
            }
            
            .aboutus-title {
                font-size: 1.5rem;
            }
            
            .one, .two {
                padding: 20px;
            }
        }
            footer {
       background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }


    .hidden {
  opacity: 0.5;
  transform: translateY(-50px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}

/* visible slide */
.hiddenSlide{
  opacity: 0.5;
  transform: translateX(-20px); /* Slide from the left */
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}

.visibleSlide {
  opacity: 1;
  transform: translateX(0); /* Move to original position */
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}


           footer {
            background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }