/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 180px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: #3498db;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Top Header Styles */
.top-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.top-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    width: 40px;
    height: 40px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details .label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

.contact-details .value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-button {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 150px;
}

.hero-content {
    color: #ffffff;
    max-width: 1000px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.services p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}



.service-title {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

/* About Section */
.about {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}
.about p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}
.footer-section p{
    font-size: 1rem;
    text-align: left;
    color: #ffffff;
    line-height: 2.3;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-item .label {
        display: none;
    }
    
    .contact-info {
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-item {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .contact-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .services {
        padding: 3rem 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .social-links {
        justify-content: left;
    }
}

@media screen and (max-width: 480px) {
    .top-header-content {
        padding: 0 3%;
    }
    
    .contact-button {
        display: none;
    }
}

/* Main Navigation Styles */
.main-nav {
    background-color: #2c3e50;
    position: fixed;
    width: 100%;
    top: 90px;
    z-index: 999;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background-color: #3498db;
}

.nav-menu > li > a i {
    font-size: 0.8rem;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #2c3e50;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    padding-left: 1.8rem;
}

/* Responsive Navigation Styles */
@media screen and (max-width: 768px) {
    .main-nav {
        top: 75px;
    }

    .nav-container {
        padding: 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #2c3e50;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        background-color: #243342;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li a {
        color: #ffffff;
        padding-left: 3rem;
    }

    .dropdown-menu li a:hover {
        background-color: #2c3e50;
        color: #3498db;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    /* Update hero margin for mobile */
    .hero {
        margin-top: 80px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9));
    opacity: 0.85;
}

.cta-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: #ffffff;
    color: #3498db;
    border: 2px solid #ffffff;
}

.primary-button:hover {
    background-color: transparent;
    color: #ffffff;
}

.secondary-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-button:hover {
    background-color: #ffffff;
    color: #3498db;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .primary-button, .secondary-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
} 