/* NAVBAR STYLES */
.navbar {
    position: fixed;
    /* stays at the top */
    top: 0;
    left: 0;
    width: 100%;
    background: #f5f7fa;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    color: #111827;
}

/* Default nav links (desktop) */
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #111827;
}

.btn-nav {
    padding: 0.4rem 0.9rem;
    border: 1px solid #111827;
    border-radius: 5px;
    font-weight: 500;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        /* just below navbar */
        left: 0;
        width: 100%;
        background: #f5f7fa;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        display: none;
        /* hidden by default */
    }

    .nav-links.show {
        display: flex;
        /* shown when toggled */
    }

    .nav-toggle {
        display: block;
        color: #111827;
        background: #e5e7eb;
        /* show hamburger */
    }
}
/* END NAVBAR STYLES */

/* HERO SECTION */
.hero {
    padding: 5rem 0;
    background: #f9fafb;
    /* light gray background */
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0% 7%
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.hero-text h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 1.5rem 0;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #111827;
    color: #fff;
    padding: 0.75rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #000;
}

.btn-outline {
    border: 1px solid #0b76ff;
    color: #0b76ff;
    padding: 0.75rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #0b76ff;
    color: #fff;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 250px;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 15px;
}

/* END HERO SECTION */

/* About me section */
.about-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

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

.about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-section p {
    margin-bottom: 15px;
    color: #555;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #e9ecf3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #444;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.card i {
    font-size: 1.8rem;
    color: #4a6cf7;
    margin-bottom: 12px;
    display: block;
}

/* END About me section */

/* Services & expertise Section */

.services-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2rem;
    color: #4a6cf7;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-card ul li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #444;
}

.price {
    display: block;
    font-weight: 600;
    color: #0077ff;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.btn {
    display: flex;
    padding: 10px 16px;
    background: #f6f8fb;
    border: 1px solid #d6dbe8;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
}

.btn i {
    margin-left: 6px;
    font-size: 0.85rem;
}

.btn:hover {
    background: #4a6cf7;
    color: #fff;
    border-color: #4a6cf7;
}

/* END Services & expertise Section */

/* Contact section */
.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form h3,
.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-form form {
    margin-top: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input,
.form-row select,
textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
}

textarea {
    width: 100%;
    resize: none;
    margin-bottom: 15px;
}

button {
    background: #4a6cf7;
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
}

button i {
    margin-right: 6px;
}

button:hover {
    background: #3354d1;
    color: #fff;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* END Contact section */

/* Schedule Call */
.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4a6cf7;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.schedule-btn i {
    font-size: 1.2rem;
}

.schedule-btn:hover {
    background: #3354d1;
    transform: translateY(-2px);
}

/* END Schedule Call */

/* Let's connect section */
.lets-connect {
    max-width: 1100px;
    margin: 80px auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.connect-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.connect-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.connect-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.connect-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: #333;
}

.connect-card h3 i {
    margin-right: 10px;
    color: #4a6cf7;
}

.connect-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connect-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #444;
}

.connect-card ul li i {
    margin-right: 10px;
    color: #4a6cf7;
    width: 18px;
}

.connect-card a {
    color: #444;
    text-decoration: none;
}

.connect-card a:hover {
    color: #4a6cf7;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #555;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #4a6cf7;
}

/* Responsive */
@media (max-width: 900px) {
    .connect-cards {
        grid-template-columns: 1fr;
    }
}

/* END Let's connect section */

/* Scroll to Top */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background: #4a6cf7;
    color: white;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  #scrollTopBtn:hover {
    background: #3354d1;
    transform: translateY(-3px);
  }
/* END Scroll to Top */

/* Footer */
.site-footer {
    background: #e5e7eb;
    color: #111827;
    text-align: center;
    padding: 18px 10px;
    font-size: 0.95rem;
    margin-top: 60px;
}

.site-footer i {
    margin-right: 6px;
    color: #9ca3af;
}

/* END Footer */