 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            font-size: 16px;
            color: #333333;
            line-height: 1.6;
            background-color: #f0f5f0;
        }

        /* Professional Header Styles */
        header {
            background: linear-gradient(135deg, #4CAF50, #3d8b40);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #3d8b40;
        }

        .header-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-section {
            display: flex;
            flex-direction: column;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            margin-right: 12px;
            background: linear-gradient(135deg, #ffffff, #e0e0e0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4CAF50;
            font-weight: bold;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }

        .tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            margin-top: 1px;
            margin-left: 72px;
            font-style: italic;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        /* --- FIX IS HERE --- */
        nav ul li {
            margin-left: 25px;
            position: relative;
            transition: transform 0.3s ease; /* Added for smooth lift */
        }

        nav ul li a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        nav ul li a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: rgba(255,255,255,0.2);
            transition: left 0.5s ease;
            z-index: -1;
            border-radius: 30px;
        }

        nav ul li a:hover:before {
            left: 0;
        }

        /* --- FIX IS HERE --- */
        nav ul li a:hover {
            background-color: #95D332;
            color: #ffffff;
        }
        
        /* --- NEW RULE FOR THE FIX --- */
        nav ul li:hover {
            transform: translateY(-2px);
        }

        nav ul li.active a {
            background-color: rgba(255,255,255,0.3);
            color: #ffffff;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: white;
        }

        /* Main Content */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1px 0;
        }

        .page-title {
            text-align: center;
            margin-bottom: 10px;
        }

        .page-title h1 {
            font-size: 36px;
            color: #4CAF50;
            margin: 0;
            font-weight: 700;
        }

        .page-subtitle {
            text-align: center;
            margin-bottom: 30px;
            color: #666;
            font-size: 18px;
        }

        /* Professional Tool Area */
        .tool-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            padding: 30px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .tool-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
        }

        .tool-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .tool-header h2 {
            font-size: 24px;
            color: #4CAF50;
            margin: 0 0 10px;
            font-weight: 600;
        }

        .tool-header p {
            color: #666;
            margin: 0;
        }

        #drop-zone {
            border: 3px dashed gray; border-radius: 10px;
            border-color: #4CAF50;
            background-color: #FFFFFF; 
            text-align: center;
            margin: 20px 0;
            min-height: 200px;
            position: relative;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            overflow: hidden;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #drop-zone:hover {
            background-color: #e0e0e0;
            border-color: #4CAF50; 
            border: 2px solid gray;
            color: #333;
            cursor: pointer;
            transform: scale(1.01);
        }

        #drop-zone p {
            margin: 0;
            color: #999999;
        }

        #image-upload {
            display: none;
        }

        .image-preview-container {
            display: inline-block;
            position: relative;
            margin: 5px;
            padding: 5px;
            border: 1px solid #ccc;
            background-color: #ffffff;
        }

        .image-name,
        .file-info {
            margin-top: 5px;
            color: #666666;
            font-size: 12px;
        }

        .image-preview {
            max-width: 100px;
            max-height: 100px;
        }

        .remove-icon {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: red;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .remove-icon::before,
        .remove-icon::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 2px;
            background-color: white;
        }

        .remove-icon::before {
            transform: rotate(45deg);
        }

        .remove-icon::after {
            transform: rotate(-45deg);
        }

        .hidden {
            display: none;
        }
		
		#choose-btn {
         pointer-events: none;
        }

        .btn {
            background-color: #4CAF50;
            border: none;
            color: #fff;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #95D332;
        }

        .custom-select {
            width: 100%;
            max-width: 80px;
            padding: 10px;
            border-radius: 10px;
            border: 1px solid #ccc;
        }

        .form-group {
            margin-bottom: 15px;
        }

        label {
            font-weight: bold;
        }

        input[type="number"],
        select {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 100%;
            max-width: 150px;
        }

        .center {
            text-align: center;
        }

        .centered-image {
            max-width: 80%;
            max-height: 80%;
            margin: 20px auto;
        }

        .radio-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .radio-container label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .radio-container input[type="radio"] {
            margin-right: 10px;
            margin-left: 200px;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* SEO Content Section */
.seo-content {
    background-color: #fff;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: justify;
    line-height: 1.7; /* optional: improves readability */
}


        .seo-content h2 {
            color: #4CAF50;
            margin-top: 0;
        }

        .seo-content h3 {
            color: #333;
            margin-top: 25px;
        }

        .seo-content p {
            margin-bottom: 15px;
        }

        .seo-content ul {
            padding-left: 20px;
        }

        .seo-content li {
            margin-bottom: 8px;
        }

        /* Footer Styles */
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
        }

        .footer-container {
            width: 90%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            margin-top: 0;
            margin-bottom: 15px;
            color: #4CAF50;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #4CAF50;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #aaa;
            font-size: 14px;
        }

       

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 10px 0;
            }

            .logo {
                margin-bottom: 15px;
            }

            .tagline {
                margin-left: 0;
                text-align: center;
                margin-bottom: 10px;
            }

            nav ul {
                flex-direction: column;
                width: 100%;
                text-align: center;
            }

            nav ul li {
                margin: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }

            nav {
                width: 100%;
                display: none;
            }

            nav.active {
                display: block;
            }

            .radio-container input[type="radio"] {
                margin-left: 0;
            }

            .container {
                width: 95%;
            }

            .seo-content {
                padding: 20px;
            }
        
		
		/* for content Styles */
		
		