        /* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #2d5b7f;
    color: white;
    padding: 10px 0;
    font-size: 13px;
}
.social-icons a { color: white; margin-right: 15px; text-decoration: none; }
.contact-info span { margin-left: 20px; }
.contact-info i { margin-right: 5px; color: #add8e6; }

/* Main Header */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo h1 { color: #003366; font-size: 22px; margin-bottom: 2px; }
.logo p { font-size: 11px; color: #666; font-style: italic; }

.nav-menu ul { list-style: none; display: flex; }
.nav-menu ul li { margin: 0 15px; }
.nav-menu ul li a { text-decoration: none; color: #333; font-weight: 600; font-size: 15px; }
.nav-menu ul li a:hover { color: #0056b3; }

.header-phone { display: flex; align-items: center; }
.phone-icon {
    background: #0056b3;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.phone-text small { display: block; font-size: 10px; color: #666; }

/* Hero Section */
.hero {
    height: 500px;
    background: url('img/slider.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens image to make text readable */
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-content h5 { letter-spacing: 2px; margin-bottom: 10px; font-weight: 400; }
.hero-content h1 { font-size: 48px; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }

.btn-explore {
    background-color: #0056b3;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-explore:hover { background-color: #003366; }

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Layout */
.about-images {
    flex: 1;
    position: relative;
    padding-bottom: 50px;
}

.main-img-box {
    position: relative;
    width: 85%;
}

.img-main {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.sub-img-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 8px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.img-sub {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0056b3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 3;
    min-width: 100px;
}

.experience-badge h2 { font-size: 36px; line-height: 1; }
.experience-badge p { font-size: 12px; margin: 0; }

/* Text Content */
.about-content { flex: 1; }

.subtitle {
    color: #0056b3;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.title {
    font-size: 34px;
    color: #002e5b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #002e5b;
}

.services-list i {
    color: #0056b3;
    margin-right: 10px;
    font-size: 18px;
}


.why-choose-us {
    padding: 100px 0;
    background-color: #fff;
}

.why-choose-us .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Image Styling */
.choose-image {
    flex: 1;
}

.choose-image img {
    width: 100%;
    border-radius: 30px; /* Matching the rounded look in the image */
    display: block;
}

/* Content Styling */
.choose-content {
    flex: 1.2;
}

.subtitle {
    color: #0056b3;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.title {
    font-size: 42px;
    color: #002e5b;
    margin-bottom: 20px;
}

.intro-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Features Grid (2 columns) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #0056b3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0056b3;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #002e5b;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-text p {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustment for mobile */
@media (max-width: 992px) {
    .why-choose-us .container { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
}

.site-footer {
    background-color: #2d5b7f; /* Main brand blue */
    color: white;
    padding-top: 60px;
}

/* CTA Banner Area */
.footer-cta {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h5 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cta-text h2 {
    font-size: 32px;
    line-height: 1.3;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white; /* Matching the button in image */
    color: #0056b3;
}

/* Main Footer Columns */
.footer-main {
    padding: 60px 0;
}

.footer-main .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    opacity: 0.8;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-col ul li a:hover { opacity: 1; padding-left: 5px; }

/* Contact Items */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    align-items: flex-start;
}

.contact-item i {
    background: white;
    color: #0056b3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Social Icons */
.footer-socials a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: white;
    color: #0056b3;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
}

/* Copyright Bar */
.footer-bottom {
    background-color: #f8f9fa; /* Light grey bar at very bottom */
    color: #333;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}
.page-title-section {
    position: relative;
    height: 350px; /* Adjust height as needed */
    background: url('your-office-image.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
}

/* Dark overlay to make the white text "pop" */
.page-title-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
    z-index: 1;
}

.page-title-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title-content h1 {
    font-size: 56px; /* Bold, prominent title */
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    font-size: 20px;
    line-height: 1;
}

.breadcrumb .current-page {
    opacity: 0.8;
}
.vision-section {
    padding: 80px 0;
    background-color: #fff;
}

.vision-section .container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Column Styling */
.vision-image-container {
    flex: 1;
    position: relative;
    padding-bottom: 120px; /* Space for the overlapping box to hang down */
}

.main-vision-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    z-index: 1;
}

/* The Light Blue Overlapping Box */
.vision-box {
    position: absolute;
    bottom: 0;
    right: -20px; /* Pulls it slightly into the center gap */
    width: 90%;
    background-color: #e9f2ff; /* Light blue background */
    padding: 40px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vision-box h4 {
    color: #0056b3;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.vision-box p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Right Column Styling */
.vision-content {
    flex: 1.2;
}

.subtitle {
    color: #0056b3;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.title {
    font-size: 38px;
    color: #002e5b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.description p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive for Tablets/Phones */
@media (max-width: 992px) {
    .vision-section .container { flex-direction: column; }
    .vision-box { 
        position: static; 
        width: 100%; 
        margin-top: -50px; 
        box-sizing: border-box;
    }
}
.services-grid-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 40px;
}

.service-card {
    position: relative;
    height: 380px; /* Adjust based on your preference */
    display: flex;
    align-items: center;
}

.service-image {
    width: 80%; /* Leaves room for the box to overlap */
    height: 100%;
    margin-left: auto; /* Pushes image to the right */
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Overlapping White Box */
.service-info-box {
    position: absolute;
    left: 0;
    width: 55%; /* Half width to create the overlap effect */
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.service-icon {
    font-size: 30px;
    color: #0056b3;
    margin-bottom: 15px;
}

.service-info-box h3 {
    color: #002e5b;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-info-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-info-box { width: 70%; }
}

@media (max-width: 600px) {
    .service-card { height: auto; flex-direction: column; }
    .service-image { width: 100%; height: 200px; }
    .service-info-box { position: static; width: 90%; margin: -40px auto 0; }
}

/* Responsive Header */
@media (max-width: 992px) {
    .main-header .container {
        flex-direction: column; /* Stacks Logo, Nav, and Phone vertically */
        text-align: center;
        gap: 20px;
    }

    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
    }

    .header-phone {
        display: none; /* Usually hidden on mobile to save space, or kept simple */
    }
}


/* Responsive Footer */
@media (max-width: 768px) {
    /* Footer CTA Banner */
    .footer-cta .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-text h2 {
        font-size: 24px; /* Smaller text for mobile */
    }

    /* Main Footer Columns */
    .footer-main .container {
        grid-template-columns: 1fr; /* Force 1 column instead of 4 */
        text-align: center;
    }

    .brand-col, .footer-col {
        margin-bottom: 30px;
    }

    .contact-item {
        justify-content: center; /* Center icons and text */
    }

    /* Bottom Copyright Bar */
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.contact-page-section { padding: 100px 0; background: #f9f9f9; }

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-column, .contact-form-column { flex: 1; }

/* Info Block Styling */
.info-blocks { margin-top: 40px; }
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.info-item .icon-box {
    font-size: 25px;
    color: #0056b3;
}
.info-item h4 { margin-bottom: 5px; color: #002e5b; }

/* Form Styling */
.contact-form-column {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.btn-submit {
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
}
.btn-submit:hover { background: #002e5b; }

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper { flex-direction: column; }
    .contact-info-column, .contact-form-column { width: 100%; }
}