/* Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-color: #374151;
    --text-light: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

/* Notice Bar */
/*
.notice-bar {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
*/
/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
/*
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
*/

/* Hero Section */
.hero {
    padding: 40px 0 60px; /* Reduced top padding from 80px to 40px */
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 90vh; /* Ensures hero takes up most of viewport */
    display: flex;
    align-items: center; /* Vertically centers content */
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: -40px; /* Pulls content upward */
}/* Hero Section Text Enhancements */
.hero-content h1 {
    font-size: 48px;
    font-weight: 900; /* Changed from 700 to 900 (maximum boldness) */
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Adds depth to bold text */
    letter-spacing: -0.5px; /* Tightens spacing for bold fonts */
}

/* For even heavier appearance, add a subtle text stroke */
.hero-content h1.ultra-bold {
    -webkit-text-stroke: 0.5px var(--dark-color);
    text-stroke: 0.5px var(--dark-color);
    paint-order: stroke fill;
}

/* Subtitle boldness */
.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600; /* Increased from normal */
    line-height: 1.6;
}

.primary-button, .secondary-button {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
}

.primary-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

/* Add to your hero-buttons CSS */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Ensures buttons stack if needed */
    justify-content: flex-start; /* Firefox needs explicit alignment */
    width: fit-content; /* Prevents container overflow */
}

/* Firefox needs explicit button widths */
.primary-button, 
.secondary-button {
    min-width: 150px; /* Prevents width collapse */
    box-sizing: border-box; /* Fixes padding calculations */
}

.primary-button {
    background: linear-gradient(90deg, #2563eb, #1e40af);
    /* Firefox fallback */
    background: -moz-linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: var(--text-light);
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Styles */

@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .about-image {
        order: -1;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}

/* Responsive adjustments */
/*
@media (max-width: 992px) {
    .hero {
        padding: 30px 0 50px;
        min-height: auto;
    }
    
    .hero .container {
        margin-top: 0;
    }
}
*/

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-container {
        padding: 20px;
    }
}

/* Mobile Firefox Specific Adjustments */
@media (max-width: 768px) {
  .hero .container {
    -moz-box-orient: vertical;
    display: flex;
    flex-direction: column;
  }

  .hero-buttons {
    -moz-box-align: center;
    align-items: center;
    margin-top: 20px;
  }

  /* Fix button text wrapping */
  .primary-button, 
  .secondary-button {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -moz-appearance: none;
  }
}



/*
@media (max-width: 768px) {
    .hero {
        padding: 25px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
*/

/*Mobile menu style */
/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 80px 30px 30px;
        transition: right 0.3s ease-out;
        z-index: 998;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
/* Default state - hidden on desktop */
.mobile-menu-button {
    display: none; /* Hidden by default */
}

@media (max-width: 768px) {
    /* Hide navigation links by default */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #007bff;
        padding: 15px;
        gap: 15px;
        list-style: none;
        text-align: center;
    }

    .nav-links li a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }

    /* Mobile menu button */
    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .menu-bar {
        width: 30px;
        height: 4px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    /* Show navigation when active */
    .mobile-menu.mobile-active {
        display: flex;
    }
}



    

/* Shows only on mobile */
/*
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex; /* Makes button visible */
    /*
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1000;
    }
    
    /* Styles the hamburger bars */
    /*
    .menu-bar {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--dark-color);
    }
}
    */
    
    /* Transform to X when active */
    /*
    .mobile-menu-btn.active .menu-bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .menu-bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .menu-bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    */
    
    /* Mobile menu overlay */
    /*
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 997;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    */
    /* Adjust navbar padding */
    .navbar .container {
        padding: 15px 20px;
    }
    
    /* Stack buttons vertically */
    .hero-buttons {
        flex-direction: column;
    }
}


                                         

   /* Enhanced Visual Design Elements */
/* Add these to your existing CSS */

/* Subtle animations */

/*
@media (prefers-reduced-motion: no-preference) {
    .hero-content, 
    .about-content, 
    .service-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .service-card {
        transition-delay: calc(0.1s * var(--i));
    }
}

/* Gradient text for headings */
/*
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

*/

/* Enhanced buttons */

/*
.primary-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    transition: opacity 0.3s;
}

.primary-button:hover::before {
    opacity: 0.9;
}

*/

/* Card hover effects */

/*
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

*/

/* Modern form inputs */

/*
.contact-form input,
.contact-form textarea {
    background-color: #f8fafc;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
} 

*/

/* Add to your CSS */

/*
.ripple {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    animation: rippleEffect 1s linear;
}

@keyframes rippleEffect {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}    

*/


