
            /* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #6b7280;
    --accent-color: #6366f1;
    --background-color: #f9fafb;
    --card-background: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --header-height: 80px;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    background: var(--background-color);
    color: var(--text-primary);
    width: 100%;
    overflow-x: hidden;
}

.wrapper {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header Styles */
.site-header {
    background: var(--card-background);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    height: var(--header-height);
}

.site-header .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* Changed to space-between for all views */
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover {
    transform: scale(1.02);
    transition: var(--transition);
}

/* Desktop Menu Styles */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav .nav-list li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.main-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav .nav-list li a:hover::after {
    width: 80%;
}

.main-nav .nav-list li a:hover {
    color: var(--primary-color);
}

/* Desktop Dropdown Styles */
.dropdown {
    position: relative;
}

.dropbtn {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-background);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    z-index: 1002;
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    border-radius: 8px;
}

.dropdown-content a i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown:hover .dropbtn {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234f46e5' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 35px;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.hero-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-button.secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Tools Section */
.tools-section {
    padding: 100px 0;
    background: var(--background-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--card-background);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.tool-card h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-card h2 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.tool-tag {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tool-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    text-align: justify;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-color);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.calc-button {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calc-button i {
    font-size: 1.2rem;
}

.calc-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.result-panel {
    margin-top: 25px;
    padding: 25px;
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.result-panel h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-panel h3 i {
    font-size: 1.4rem;
}

.result-panel p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.result-panel span {
    color: #ef4444;
    font-weight: 700;
}

/* AdSense Friendly Layout */
.ad-container {
    margin: 40px 0;
    text-align: center;
    background: var(--card-background);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.ad-container p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Future Tools Section */
.future-tools-section {
    padding: 100px 0;
    background: var(--card-background);
    text-align: center;
}

.future-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tool-link {
    padding: 20px;
    background: var(--card-background);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tool-link i {
    font-size: 2rem;
    color: #45a049;
}

.tool-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--background-color);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-background);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    resize: vertical;
    min-height: 150px;
    transition: var(--transition);
    background: var(--background-color);
}

.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.success, .error {
    margin-top: 20px;
    font-size: 1rem;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success { 
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.error { 
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

/* Footer Styles */
.site-footer {
    background: var(--text-primary);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #45a049;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column h3 i {
    font-size: 1.6rem;
}

.footer-column p, .footer-column ul {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
    border: none;
    background: none;
    padding: 5px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Navigation Overlay */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background: rgba(17, 24, 39, 0.95);
    overflow-x: hidden;
    transition: 0.5s ease;
    backdrop-filter: blur(4px);
}

.overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.overlay a {
    padding: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    transition: var(--transition);
    font-weight: 500;
}

.overlay a:hover,
.overlay a:focus {
    color: var(--primary-color);
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 2.5rem;
    color: #fff;
}

/* Mobile Tools Menu */
.mobile-tools {
    position: relative;
    text-align: left;
}

.mobile-tools-toggle {
    font-size: 1.2rem;
    padding: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
}

.mobile-tools-toggle i {
    transition: var(--transition);
}

.mobile-tools.active .mobile-tools-toggle i {
    transform: rotate(180deg);
}

.mobile-tools-list {
    display: none;
    padding: 0 20px;
}

.mobile-tools-list a {
    font-size: 1.1rem;
    color: #fff;
    padding: 12px 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-tools-list a i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.mobile-tools-list a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.mobile-tools.active .mobile-tools-list {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --container-width: 960px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .tools-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 720px;
        --header-height: 70px;
    }
    
    .menu-toggle {
        display: block; /* Show toggle in mobile */
        position: static; /* Remove absolute positioning */
    }
    
    .main-nav {
        display: none; /* Hide desktop nav */
    }
    
    .site-header .wrapper {
        justify-content: space-between; /* Logo left, toggle right */
        padding: 0 15px; /* Add padding for spacing */
    }
    
    .logo {
        margin-left: 0;
        font-size: 1.5rem; /* Slightly smaller for mobile */
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-button {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .tools-container {
        grid-template-columns: 1fr;
    }
    
    .tool-card {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (min-width: 769px) {
    .menu-toggle,
    .overlay {
        display: none !important;
    }
    
    .main-nav {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    :root {
        --container-width: 100%;
        --header-height: 60px;
    }
    
    .wrapper { 
        padding: 0 15px; 
    }
    
    .site-header { 
        padding: 0; 
    }
    
    .logo { 
        font-size: 1.5rem; 
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .menu-toggle { 
        font-size: 1.6rem; 
    }
    
    .overlay-content a { 
        font-size: 20px; 
    }
    
    .overlay .closebtn {
        font-size: 30px;
        top: 10px;
        right: 25px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 { 
        font-size: 2.2rem; 
    }
    
    .hero-section p { 
        font-size: 1.1rem; 
    }
    
    .hero-button { 
        padding: 12px 20px; 
        font-size: 1rem; 
    }
    
    .tool-card, .contact-form { 
        padding: 25px; 
    }
    
    .tool-card h2, .contact-section h2 { 
        font-size: 1.4rem; 
    }
    
    .form-group input, .contact-form .form-group textarea { 
        padding: 12px; 
        font-size: 0.95rem; 
    }
    
    .calc-button { 
        padding: 12px 20px; 
        font-size: 0.95rem; 
    }
    
    .future-tools-grid { 
        grid-template-columns: 1fr; 
    }
    
    .tool-link { 
        padding: 15px; font-size: 0.95rem; 
    }
    
    .site-footer {
        padding: 60px 0 20px;
    }
    
    .footer-grid {
        gap: 40px;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .footer-column p, .footer-column ul {
        font-size: 0.95rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}
.why-text {
    margin-bottom: 15px; /* Adjust the value as needed */
    line-height: 1.6; /* Improve readability */
}


.search-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.search-form {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4a90e2;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #357abd;
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: white;
}