.home-1 {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 20px;
            max-width: 1200px;
            margin: 2rem auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
        }

        .home-1__content {
            flex: 1;
            min-width: 0;
            animation: slideInLeft 0.8s ease-out;
        }

        .home-1__content h2 {
            font-size: 28px;
            color: #213f33;
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .home-1__content h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px; /* space between text and line */
            width: 60px;  /* length of the underline strip */
            height: 3px;  /* thickness */
            background-color: #213f33; /* same color as text */
            border-radius: 2px;
        }


        .home-1__content p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .home-1__content-description {
            font-size: 13px;
            color: #888;
            margin-bottom: 0px;
            line-height: 1.8;
        }

        .home-1__btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .home-1__btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .home-1__btn:active {
            transform: translateY(0);
        }

        .home-1__image {
            flex: 1;
            min-width: 0;
            animation: slideInRight 0.8s ease-out;
        }

        .home-1__image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease;
        }

        .home-1__image img:hover {
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .home-1 {
                flex-direction: column;
                gap: 2rem;
                padding: 2rem 1.5rem;
            }

            .home-1__content,
            .home-1__image {
                flex: 1;
                width: 100%;
            }

            .home-1__content h1 {
                font-size: 1.8rem;
            }

            .home-1__content p {
                font-size: 1rem;
            }

            .home-1__content-description {
                font-size: 0.9rem;
            }

            .home-1__image img {
                max-width: 100%;
            }
            .home-1__content h2 {
            font-size: 20px;
            color: #213f33;
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
            display: inline-block;
            }
        }

        @media (max-width: 480px) {
            .home-1 {
                padding: 1rem 1rem;
                gap: 1.5rem;
            }

            .home-1__content h1 {
                font-size: 1.5rem;
            }

            .home-1__content p {
                font-size: 0.95rem;
            }

            .home-1__btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }
            .home-1__content h2 {
            font-size: 20px;
            color: #213f33;
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
            display: inline-block;
            }
        }
        
        
        
        
        
        
        
        
      @media only screen and (max-width: 600px) {  
        .home-1 {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 20px;
  max-width: 1200px;
  margin: 0rem auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}
      }  
        
        
        
        
        
        
        
        
        
        
        
        
        