:root {
    --primary: #2563eb;
    --accent: #fbbf24;
    --bg: #f8fafc;
    --text: #1e293b;
    --white: #fff;
    --shadow: 0 2px 8px rgba(30,41,59,0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

.hero {
    padding: 4rem 0 2rem 0;
    text-align: center;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.features {
    padding: 3rem 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer {
    background: var(--white);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1rem;
    color: #64748b;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}
/* Add this CSS for hover dropdowns */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 0.75em 1.2em;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav-menu {
        position: absolute;
        top: 64px;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 1.5rem;
        width: 180px;
        padding: 1.5rem 1rem;
        box-shadow: var(--shadow);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

.carousel { 
    position: relative; 
    overflow: hidden; 
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto 2rem; 
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #ffffff;
}
.carousel-track { 
    display: flex; 
    transition: transform 0.5s ease; 
}
.carousel-slide { 
    min-width: 100%; 
    box-sizing: border-box; 
    padding: 4rem 2rem;
    text-align: center; 
}
.carousel-slide h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.carousel-slide p {
    font-size: 1.25rem;
}
.carousel-nav { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%); 
}
.carousel-btn { 
    background: transparent; 
    border: none; 
    font-size: 2.5rem; 
    cursor: pointer; 
    padding: 0 1.5rem; 
    opacity: 0.7; 
    border-radius: 50%;
    transition: opacity 0.2s;
}
.carousel-btn:hover {
    opacity: 1;
}
.qa-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 2rem; 
    margin: 3rem 0; 
}
.feature-card, .qa-card { 
    background: #fff; 
    padding: 2rem; 
    border-radius: 1rem; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.05); 
    text-align: center; 
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover, .qa-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.feature-card i, .qa-card i {
    font-size: 2.5rem;
    color: #0078d7;
    margin-bottom: 1rem;
}
.qa-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: #222;
}
.qa-card p {
    color: #555;
    font-size: 1rem;
}
.footer-details { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 2rem; 
}
.footer-section { min-width: 180px; }
.footer-social a { margin-right: 0.5rem; font-size: 1.5rem; }
@media (max-width: 900px) {
    .carousel { max-width: 100%; }
    .carousel-slide { padding: 2.5rem 1rem; }
}
@media (max-width: 600px) {
    .footer-details { flex-direction: column; gap: 1rem; }
    .carousel-slide h2 { font-size: 1.5rem; }
    .carousel-slide p { font-size: 1rem; }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto 3rem;
    max-width: 1250px;
}
.contact-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 340px;
    max-width: 100%;
    z-index: 2;
    margin-top: 50px;
}
.contact-info {
    margin-bottom: 2rem;
}
.contact-info h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}
.contact-desc {
    color: #555;
    margin-bottom: 1.5rem;
}
.contact-details {
    margin-bottom: 1.5rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.contact-social {
    margin-top: 1rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 500px;
    padding: 0 2rem;
}
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.input-group i {
    position: absolute;
    left: 1rem;
    color: #0078d7;
    font-size: 1.2rem;
    z-index: 1;
}
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 0.6rem;
    border: 1px solid #e0e0e0;
    background: #f7f7f7;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    resize: none;
}
.input-group input:focus,
.input-group textarea:focus {
    border: 1.5px solid #0078d7;
    background: #fff;
}
.contact-btn {
    margin-top: 0.5rem;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    border-radius: 0.6rem;
    box-shadow: 0 2px 8px rgba(0,120,215,0.08);
}
.contact-btn-modern {
    background: linear-gradient(90deg, #0078d7 60%, #00c6fb 100%);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(0,120,215,0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    margin-top: 0.5rem;
}
.contact-btn-modern:hover, .contact-btn-modern:focus {
    background: linear-gradient(90deg, #005fa3 60%, #00a6d7 100%);
    box-shadow: 0 4px 16px rgba(0,120,215,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}
.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-card{
    display: flex;
    flex-direction: row;
}

@media (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .contact-card {
        display: flex;
        flex-direction: column;
    }
    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .contact-info {
        margin-bottom: 0;
    }
}
@media (max-width: 600px) {
    .contact-card {
        min-width: 0;
        max-width: 100%;
        padding: 1.2rem;
        border-radius: 0.7rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-section {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }
  .footer-section p {
    margin: 0.5rem 0;
  }
}

/* Ensure .footer-details uses flex layout */
.footer-details {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

/* Modern enhancements for service page */
.service-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
}
.service-section.reverse {
    flex-direction: row-reverse;
}
.service-info {
    flex: 1 1 320px;
}
.service-info h2 {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}
.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.service-info ul {
    margin-left: 1.2rem;
    margin-bottom: 1.2rem;
    color: #444;
}
.service-img {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-img img {
    max-width: 220px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.service-cta {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    margin-top: 1.2rem;
}
.service-cta:hover {
    background: var(--primary);
    color: var(--white);
}
@media (max-width: 900px) {
    .service-section, .service-section.reverse {
        flex-direction: column;
        text-align: center;
    }
    .service-img {
        margin-bottom: 1.5rem;
    }
}
.map-section{
    width: 100%;
}