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

body {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

.logo img {
    /* max-height: 50px; */
}

.logo-mobile {
    display: none;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #007acc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007acc;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle i {
    font-size: 20px;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/hero-bg.jpg') center/cover;
    color: white;
    text-align: center;
    margin-top: 90px;
    padding: 120px 0 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: -115px;
    z-index: 2;
}

/* Services Intro Section */
.services-intro {
    padding: 80px 0;
    background: #fff;
}

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

.services-intro h2 {
    color: #073C56;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.services-intro p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #073C56;
}

.services-intro h3 {
    color: #073C56;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.services-intro ul {
    list-style: disc;
    margin-left: 20px;
    color: #073C56;
}

.services-intro li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-detail {
    padding: 80px 0;
    background: #073C56;
    color: white;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.service-detail .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-bg {
    background: url('images/mission-bg.jpg') center/cover;
    height: 400px;
    border-radius: 50%;
    width: 400px;
    margin: 0 auto;
}

.service-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.service-content p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

.services-detailed {
    padding: 80px 0;
    background: #fff;
}

.services-detailed h2 {
    color: #073C56;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.service-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #073C56;
    color: white;
    min-height: 400px;
}

.service-section.reverse {
    grid-template-columns: 2fr 1fr;
    background: #005a99;
}

.service-bg-left,
.service-bg-right {
    background: url('images/mission-bg.jpg') center/cover;
    height: 400px;
    width: 100%;
}

.service-text {
    padding: 40px;
}

.service-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.service-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

.service-text ul {
    list-style: disc;
    margin-left: 20px;
    color: white;
}

.service-text li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0, 122, 204, 0.85) 0%, rgba(0, 90, 153, 0.85) 100%); */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: none;
    color: white;
    letter-spacing: normal;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0.95;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-btn {
    display: inline-block;
    padding: 20px 45px;
    background: #073C56;
    color: white;
    border: 2px solid #073C56;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    background: white;
    color: #007acc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #005a99;
    color: white;
    border-radius: 25px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'Roboto', sans-serif;
}

.btn:hover {
    /* background: ; */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 204, 0.3);
    color: white;
}

.services-btn {
    background: #007acc;
}

.services-btn:hover {
    background: #005a99;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.mission-bg {
    background: url('images/mission-bg.jpg') center/cover;
    height: 700px;
    border-radius: 50%;
    width: 500px;
    margin: 0 auto;
}

.mission-content h3 {
    color: #073C56;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.mission-content p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #073C56;
    font-family: 'Roboto', sans-serif;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #073C56;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
}

.why-card:nth-child(odd) {
    background: #007acc;
}

.why-card:nth-child(even) {
    background: #005a99;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: white;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    color: #ccc;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: #073C56;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: #073C56;
}

/* Quote Section */
.quote-section {
    background: #073C56;
    color: white;
    padding: 100px 0 115px 0;
    text-align: center;
    margin-bottom: -115px;
    z-index: 2;
}

.main-quote {
    margin-bottom: 40px;
}

.main-quote p {
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    margin-bottom: 20px;
    font-style: italic;
}

.main-quote cite {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    font-style: normal;
}

.quote-btn {
    background: #007acc;
    font-size: 16px;
    padding: 15px 30px;
    margin-bottom: 30px;
}

.quote-btn:hover {
    background: #005a99;
}

/* Section Dividers */
.section-divider {
    position: relative;
    width: 100%;
    height: 115px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}

.section-divider-white {
    background-image: url('images/btm-section-design-white.png');
}

.section-divider-blue {
    background-image: url('images/btm-section-design-blue.png');
}

.section-divider-top-blue {
    background-image: url('images/top-section-design-blue.png');
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.about-intro h2 {
    color: #073C56;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-align: center !important;
}

.about-intro p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #073C56;
    text-align: center;
}

.about-intro h3 {
    color: #073C56;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.about-intro ul {
    list-style: none;
    color: #073C56;
    text-align: center;
}

.about-intro li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 500px;
    margin-top: 90px;
}

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

.about-hero-bg {
    background: url('images/about-bg.jpg') center/cover;
    min-height: 600px;
    border-radius: 50%;
    width: 600px;
    margin: 0 auto;
}

.about-hero-content h1 {
    color: #073C56;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.about-hero-content p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #073C56;
}

/* Page Hero Section */
.page-hero {
    background: #073C56;
    color: white;
    text-align: center;
    padding: 120px 0 80px 0;
    margin-top: 90px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.about-bg {
    background: url('images/about-bg.jpg') center/cover;
    min-height: 600px;
    border-radius: 50%;
    width: 600px;
    margin: 0 auto;
}

.about-content h2 {
    color: #073C56;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #073C56;
}

/* Services Section */
.services {
    background: #073C56;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.services > p {
    font-size: 1.2rem;
    margin-bottom: 80px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 0 1 350px;
    overflow: hidden;
}

.service-card {
    background: #073C56;
    color: white;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 120%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-left: -10%;
    margin-right: -10%;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #007acc;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    background: #fff;
    color: #333;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info img {
    max-width: 250px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    color: white;
    font-size: 18px;
}

.social-links a:hover {
    background: #005a99;
}

.contact-text {
    text-align: center;
}

.contact-text p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

.certification {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.certification i {
    color: #007acc;
    font-size: 24px;
}

.certification span {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-details {
    text-align: center;
}

.contact-details h2 {
    color: #007acc;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.contact-details ul {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    font-size: 1rem;
}

.contact-details i {
    margin-right: 15px;
    color: #007acc;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.contact-details a {
    color: #333;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #007acc;
}

/* Contact Hero Section */
.contact-hero {
    background: #073C56;
    color: white;
    padding: 120px 0 80px 0;
    margin-top: 90px;
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
}

.contact-info-list {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
}

.contact-item i {
    margin-right: 15px;
    color: #007acc;
    width: 20px;
    font-size: 16px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    height: 400px;
    border-radius: 50%;
    width: 400px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #fff;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-element {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #007acc;
}

.form-field button {
    width: 100%;
    padding: 15px;
    background: #073C56;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-field button:hover {
    background: #005a99;
}

.contact-info-content h2 {
    color: #073C56;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #073C56;
}

/* Footer */
.footer {
    background: #073C56;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
}

.nav-menu.active li {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about .container,
    .about-hero .container,
    .contact-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-bg,
    .about-hero-bg,
    .contact-hero-bg {
        order: -1;
        min-height: 300px;
    }
    
    .service-detail .container,
    .service-section,
    .service-section.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-bg,
    .service-bg-left,
    .service-bg-right {
        order: -1;
        min-height: 300px;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-btn {
        padding: 18px 35px;
        font-size: 14px;
    }
    
    .services,
    .about,
    .contact {
        padding: 40px 0;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 16px 30px;
        font-size: 13px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .section-divider {
        height: 60px;
    }
}