/* Base Styles */
:root {
    --primary-color: #1e5f74;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --footer-bg: #1a1a1a;
    --footer-text: #f5f5f5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    color: var(--light-text);
    font-size: 18px;
}

.highlight {
    color: var(--secondary-color);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    margin-bottom: 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-text {
    flex: 1.5;
    min-width: 300px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.about-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.about-card h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 20px;
}

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

/* About Columns Styles */
.about-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.about-column-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-column-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.about-column-card h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 22px;
}

.about-column-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-column-card p:last-child {
    margin-bottom: 0;
}

.mobile-friendly-text {
    font-size: 16px;
    letter-spacing: 0.2px;
    word-spacing: 1px;
}

/* Mission & Vision Section Styles */
.mission-vision-section {
    padding: 80px 0;
    background-color: #fff;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.mission-vision-content.full-width {
    grid-template-columns: 1fr;
}

.mission-vision-card.full-width {
    width: 100%;
}

.mission-vision-card {
    padding: 10px;
}

.mission-card, .vision-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mission-card h3, .vision-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.mission-card h3 i, .vision-card h3 i {
    margin-right: 12px;
    color: var(--secondary-color);
    font-size: 24px;
}

.mission-card p, .vision-card p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
}

.core-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-values-list li {
    color: var(--light-text);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.core-values-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 60px;
}



#navbar ul {
    display: flex;
}

#navbar ul li {
    margin-left: 30px;
    position: relative;
}

#navbar ul li a {
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
}

#navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

#navbar ul li a:hover::after,
#navbar ul li a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    column-count: 1;
}

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

.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
    break-inside: avoid;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px !important;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background-color: #1e3a6a; /* Dark blue background as fallback */
    background-image: url('https://images.unsplash.com/photo-1513563326940-e76e4641069e?w=1600&auto=format&fit=crop&q=80&ixlib=rb-4.1.0'); /* Night skyline image */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for more transparency effect */
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section .container {
    width: 100%;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 700;
    color: white;
}

.hero-content h2 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.hero-image {
    position: relative;
    z-index: 1;
}

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

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-footer {
    margin-top: 15px;
}

/* Floating buttons are styled in the main floating buttons section */

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(76, 175, 80, 0.05);
    z-index: -1;
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.service-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

/* Mission & Vision Section */
.mission-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.mission-content {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.mission-card {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.mission-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.core-values {
    text-align: center;
}

.core-values h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.value-icon {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1.5;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.form-note {
    background-color: rgba(255, 152, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-note p {
    color: var(--accent-color);
    font-weight: 500;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-submit {
    margin-top: 10px;
}

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

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    font-size: 24px;
    color: var(--secondary-color);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
}

/* Ensure phone icon is properly centered */
.info-icon .fa-phone-alt {
    display: inline-block;
    position: relative;
    top: -2px; /* Adjust vertical position */
    left: -2px; /* Adjust horizontal position */
}

.info-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-details p {
    color: var(--light-text);
}

.info-details a:hover {
    color: var(--secondary-color);
}

.location-link, .call-link {
    display: flex;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
}

.location-link:hover, .call-link:hover {
    color: var(--secondary-color);
}

.whatsapp-button {
    margin-top: 20px;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #128c7e;
}

/* Map Section */
.map-section {
    padding-bottom: 100px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    background-color: white;
}

.faq-question:hover {
    background-color: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    font-size: 18px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    z-index: 10;
    position: relative;
    background: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    padding: 0;
    outline: none;
}

.faq-toggle:hover {
    background-color: rgba(76, 175, 80, 0.1);
    transform: scale(1.1);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

/* Keywords Section */
.keywords-section {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.keywords-container {
    text-align: center;
}

.keywords-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.keyword-tag {
    background-color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--light-text);
    box-shadow: 0 2px 5px var(--shadow-color);
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--secondary-color);
}

.whatsapp-footer {
    margin-top: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #aaa;
    font-size: 14px;
}

.copyright a {
    color: var(--secondary-color);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Floating Buttons */
.floating-call,
.floating-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.floating-call.active,
.floating-whatsapp.active {
    opacity: 1;
    visibility: visible;
}

.floating-call {
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
}

.floating-whatsapp {
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
}

.floating-call a,
.floating-whatsapp a {
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.floating-call a:hover,
.floating-whatsapp a:hover {
    transform: scale(1.1);
}

.floating-call a i {
    transform: rotate(-20deg);
    display: inline-block;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.career-job-card {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.career-job-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.job-details {
    margin-bottom: 30px;
}

.job-detail-item {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.bullet {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 20px;
    line-height: 1;
}

.job-label {
    font-weight: 600;
    margin-right: 5px;
    color: #2c3e50;
}

.job-application-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.job-application-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

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

.email-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin-top: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Service Page Specific Styles */
.service-banner {
    background-color: var(--light-bg);
    padding: 120px 0 60px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.service-banner h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-banner p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--light-text);
}

.service-content {
    padding: 40px 0;
}

.service-section {
    margin-bottom: 40px;
}

.service-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 30px;
    color: var(--secondary-color);
    min-width: 40px;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-text p {
    color: var(--light-text);
    margin-bottom: 0;
}

.cta-section {
    background-color: var(--light-bg);
    padding: 40px 0;
    text-align: center;
    margin-top: 30px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--light-text);
}

/* Keywords Section for Service Pages */
.service-keywords {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.service-keywords h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.service-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-keyword-tag {
    background-color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--light-text);
    box-shadow: 0 2px 5px var(--shadow-color);
    transition: all 0.3s ease;
}

.service-keyword-tag:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Call Icon Rotation */
.fa-phone-alt,
.fa-phone {
    transform: rotate(135deg);
}

/* Google Maps Modal */
.map-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.map-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Form Styles */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Form Message Styles */
.form-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-message-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-message-box {
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    max-width: 90%;
    min-width: 300px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: white;
    z-index: 10000;
}

.form-message-overlay.active .form-message-box {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.form-message-box {
    opacity: 0;
}

.form-message-box i {
    font-size: 28px;
    margin-right: 15px;
}

.form-message-content {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.form-message-box.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.form-message-box.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.form-message-box.success i {
    color: #28a745;
}

.form-message-box.error i {
    color: #dc3545;
}

.form-message-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.2s ease;
}

.form-message-close:hover {
    color: #333;
}

.map-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.map-close:hover,
.map-close:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.map-iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}