/* Import base styles from main CSS */
:root {
    --primary-color: #0052cc;
    --secondary-color: #007CDB;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --font-family: 'Arial', 'Helvetica', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background-color: var(--light-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-speed);
}

.headercontainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logocontainer {
    padding: 15px 0;
    transition: transform var(--transition-speed);
}

.logocontainer:hover {
    transform: scale(1.05);
}

.logocontainer img {
    display: block;
    height: 70px;
    width: auto;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform var(--transition-speed);
}

.navbar a:hover::after,
.navbar a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 82, 204, 0.05);
}

.navbar a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.navbar a.active::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all var(--transition-speed);
    border-radius: 3px;
}

.headerline {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

/* Hero Section */
.aboutus-hero {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.7), rgba(0, 124, 219, 0.7));
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-color);
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.company-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

/* Content Section */
.content-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.company-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.company-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    background-color: var(--light-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

/* Expertise Section */
.expertise-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.expertise-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.expertise-text {
    flex: 1;
}

.expertise-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.expertise-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.expertise-list li:last-child {
    border-bottom: none;
}

.expertise-image {
    flex: 1;
    max-width: 45%;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Locations Section */
.locations-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.locations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.location-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-speed);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--light-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-light {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--light-color);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
/* Footer Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Map Column */
.footer-map {
    grid-column: span 2;
}

.footer-map h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-map h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--light-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    margin-top: 0;
}

.footercontainer1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--light-color);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-speed);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Phone,
.location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.Phone img {
    height: 20px;
    width: auto;
    margin-top: 2px;
}

.Phone a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.Phone a:hover {
    color: var(--light-color);
}

.location img {
    height: 24px;
    width: auto;
    margin-top: 2px;
}

.location span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.9rem;
}

.socialsimgcontainer {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.socialsimgcontainer a {
    display: block;
    transition: transform var(--transition-speed);
}

.socialsimgcontainer a:hover {
    transform: translateY(-5px) scale(1.1);
}

.socialsimgcontainer img {
    height: 32px;
    width: auto;
}

.footercontainer2 {
    padding: 30px 40px 20px;
}

.hrline {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footercontainer2 h2 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.company {
    background-color: var(--dark-color);
    text-align: center;
    padding: 20px;
}

.companycontainer p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        display: none;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        flex-direction: column;
    }

    .expertise-image {
        max-width: 100%;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

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

    .footercontainer1 {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logocontainer img {
        height: 55px;
    }

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

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

    .btn {
        padding: 12px 25px;
    }
}


/* ========================================
   Footer - Optimized Layout
   ======================================== */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    margin-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-container {
    margin-bottom: 10px;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-color);
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-social a:hover img {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--light-color);
}

.footer-subheading {
    margin-top: 30px !important;
    font-size: 1.1rem !important;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.footer-contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-color);
}

.footer-map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 30px 30px;
    }
    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px 30px;
    }
    .footer-logo {
        width: 160px;
    }
    .footer-company-name {
        font-size: 1.2rem;
    }
    .footer-description {
        font-size: 0.9rem;
    }
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.2rem;
    }
    .footer-map iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 140px;
    }
    .footer-company-name {
        font-size: 1.1rem;
    }
    .footer-social {
        gap: 12px;
    }
    .footer-social a img {
        width: 28px;
        height: 28px;
    }
    .footer-map iframe {
        height: 160px;
    }
    .footer-bottom p {
        font-size: 0.85rem;
    }
}
