/* --- General & Variables --- */
:root {
    --primary-color: #0A4D68;
    --secondary-color: #088395;
    --accent-color: #F5A623;
    --light-color: #F7F7F7;
    --dark-color: #032331;
    --text-color: #333;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
}

/* ADDED: Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark-color);
}

.btn {
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #e49712;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}


/* --- Header & Navigation --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: top 0.3s; /* For hiding header on scroll down */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--primary-color);
}
.main-nav ul li a:hover::after, .main-nav ul li a.active::after {
    width: 60%;
}


.lang-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 700;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: var(--secondary-color);
}
.mobile-menu-toggle { display: none; }


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden; /* ADDED: to contain the animated background */
}

/* ADDED: Ken Burns effect for background */
@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-2%, 2%);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    animation: kenburns 30s ease-in-out infinite alternate;
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 21, 27, 0.8), rgba(10, 77, 104, 0.6));
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ADDED: Hero text animation */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}
.hero-title.animate-hero { animation-delay: 0.2s; }
.hero-subtitle.animate-hero { animation-delay: 0.4s; }
.btn.animate-hero { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Features Section --- */
.features-section {
    background: var(--light-color);
    padding: 80px 0;
}
.features-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}
.feature-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}
.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* --- About & Services Overview --- */
.about-section, .services-overview, .clients-section, .detailed-services {
    padding: 100px 0;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.service-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-10px);
    border-left-color: var(--accent-color);
}
.service-card:hover h3 {
    color: var(--accent-color);
}
.service-card h3 {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

/* --- Clients Section --- */
.clients-section {
    background: var(--light-color);
}
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}
.clients-logo-grid img {
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}
.clients-logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

/* --- Footer --- */
.main-footer-section {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 80px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}
.footer-col p, .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
    transition: all 0.3s;
}
.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* --- Services Page Specific --- */
.page-header {
    padding: 150px 0 80px;
    background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}
.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    animation: fadeInUp 0.8s ease-out forwards;
}
.page-header p {
    font-size: 1.2rem;
    color: #eee;
    animation: fadeInUp 0.8s 0.2s ease-out forwards;
    opacity: 0; /* start hidden */
}

.service-detail-item {
    margin-bottom: 70px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}
.service-detail-item:last-child {
    border-bottom: none;
}
.service-detail-item h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-detail-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
}
.service-sub-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.service-sub-points h4 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: inline-block;
}
.service-sub-points.outlined {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.service-sub-points.outlined > div {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.service-sub-points.outlined > div:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.training-section {
    background: var(--light-color);
    padding: 50px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

/* --- Arabic Styles --- */
body.rtl {
    direction: rtl;
    font-family: var(--font-secondary);
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
    font-family: var(--font-secondary);
}
body.rtl .main-nav ul li a::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}
body.rtl .service-card {
    border-left: none;
    border-right: 5px solid var(--primary-color);
}
body.rtl .service-card:hover {
    border-right-color: var(--accent-color);
}
body.rtl .training-section {
    border-left: none;
    border-right: 5px solid var(--accent-color);
}
body.rtl .footer-col ul li a:hover {
    padding-left: 0;
    padding-right: 5px;
}


/* --- ADDED: Animation on Scroll --- */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger children animation */
.show .feature-item:nth-child(1) { transition-delay: 100ms; }
.show .feature-item:nth-child(2) { transition-delay: 200ms; }
.show .feature-item:nth-child(3) { transition-delay: 300ms; }

.show .service-card:nth-child(1) { transition-delay: 100ms; }
.show .service-card:nth-child(2) { transition-delay: 200ms; }
.show .service-card:nth-child(3) { transition-delay: 300ms; }
.show .service-card:nth-child(4) { transition-delay: 400ms; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 65px;
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .main-nav.active {
        display: flex;
    }
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    .main-nav ul li {
        text-align: center;
        width: 100%;
    }
    .main-nav ul li a {
        padding: 15px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary-color);
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-header h2 { font-size: 2.2rem; }
    .service-sub-points { grid-template-columns: 1fr; }
}




/* --- ADDED: Logo Image Styling --- */
.logo-img {
    height: 45px; /* يمكنك تعديل هذا الارتفاع ليناسب تصميم شعارك */
    width: auto;
    vertical-align: middle; /* تضمن محاذاة الشعار بشكل جيد مع عناصر القائمة */
}
























/* --- ADDED: Contact Page Styles --- */
.contact-page-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-details h3, .contact-form h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details p {
    color: #555;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 25px;
    position: relative;
    padding-left: 35px;
}

.info-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.8;
}

.info-block h4 {
    margin: 0 0 5px 0;
    color: var(--secondary-color);
}

.info-block p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(10, 77, 104, 0.2);
}

.contact-form button {
    width: auto;
    cursor: pointer;
    margin-top: 10px;
}

.map-section {
    padding: 0;
    margin: 0;
    line-height: 0; /* Removes any space under the iframe */
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}




/* --- ADDED: Two-Column Layout and New Section Styles --- */

/* Base for new sections with images */
.about-section-new,
.why-choose-us-section,
.project-gallery-section {
    padding: 100px 0;
    background-color: #fff;
}

.why-choose-us-section {
    background-color: var(--light-color);
}

.section-header-left {
    text-align: left;
    margin-bottom: 30px;
}
body.rtl .section-header-left {
    text-align: right;
}

.section-header-left h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header-left .subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Two-column layout styling */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column-layout.reverse-layout {
    grid-template-columns: 1fr 1fr; /* This ensures the image is on the left if it comes first in HTML */
}
/* This will place the image on the right if it's the second child */
.two-column-layout .column-image {
    order: 2;
}
.two-column-layout .column-text {
    order: 1;
}

/* For the reversed layout, we swap the order */
.two-column-layout.reverse-layout .column-image {
    order: 1;
}
.two-column-layout.reverse-layout .column-text {
    order: 2;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 450px;
}

.why-choose-us-section ul {
    list-style: none;
    padding: 0;
}
.why-choose-us-section ul li {
    font-size: 1.1rem;
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
}
.why-choose-us-section ul li::before {
    content: '✔';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
body.rtl .why-choose-us-section ul li {
    padding-left: 0;
    padding-right: 35px;
}
body.rtl .why-choose-us-section ul li::before {
    left: auto;
    right: 0;
}

/* Project Gallery Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for two-column layouts */
@media (max-width: 992px) {
    .two-column-layout, .two-column-layout.reverse-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* Reset order for mobile */
    .two-column-layout .column-image,
    .two-column-layout .column-text,
    .two-column-layout.reverse-layout .column-image,
    .two-column-layout.reverse-layout .column-text {
        order: initial;
    }
     .section-header-left {
        text-align: center;
    }
    body.rtl .section-header-left {
        text-align: center;
    }
}














/* --- ADDED: New Services Page Design Styles --- */



.service-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Make text column slightly larger */
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.service-block.layout-reversed {
    grid-template-columns: 1.2fr 1fr;
}

.service-image {
    order: 1; /* Default: image on the left */
    border-radius: 10px;
    overflow: hidden;
}

.service-content {
    order: 2; /* Default: content on the right */
}

.service-block.layout-reversed .service-image {
    order: 2; /* Reversed: image on the right */
}

.service-block.layout-reversed .service-content {
    order: 1; /* Reversed: content on the left */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.05);
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
}

/* RTL support for the reversed layout */
body.rtl .service-image {
    order: 2; /* Default: image on the right */
}
body.rtl .service-content {
    order: 1; /* Default: content on the left */
}
body.rtl .service-block.layout-reversed .service-image {
    order: 1; /* Reversed: image on the left */
}
body.rtl .service-block.layout-reversed .service-content {
    order: 2; /* Reversed: content on the right */
}

/* Highlighted Training Section */
.training-highlight-section {
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.training-highlight-section h2 {
    color: #fff;
    font-size: 2.5rem;
}
.training-highlight-section p {
    max-width: 800px;
    margin: 20px auto 0;
    opacity: 0.9;
    line-height: 1.8;
}

/* Remove old detailed-services styles to avoid conflict */
.detailed-services {
    padding: 0; /* Reset padding */
}
.service-detail-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.training-section {
    background: transparent;
    padding: 0;
    border-left: none;
}


/* Responsive adjustments for services page */
@media (max-width: 992px) {
    .service-block,
    .service-block.layout-reversed {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .service-block .service-image,
    .service-block .service-content,
    .service-block.layout-reversed .service-image,
    .service-block.layout-reversed .service-content {
        order: initial !important; /* Reset order for mobile */
    }
}

.services-page-section {
    padding: 100px 0;
    background-color: var(--light-color); /* This line was added */
}









/* --- ADDED: New Professional Services Page Design --- */

.services-intro-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.services-intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.services-grid-page {
    padding: 20px 0 100px 0;
    background-color: var(--light-color);
}

.services-card-grid {
    display: grid;
    /* On mobile, it will be a single column */
    grid-template-columns: 1fr;
    gap: 30px;
}

/* For tablets and desktops, create a 2x2 grid */
@media (min-width: 768px) {
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card-item {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 400px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-item:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}

.card-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    line-height: 1.3;
    transition: transform 0.3s ease;
}

.view-details-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.service-card-item:hover .card-overlay h3 {
    transform: translateY(-15px);
}

.service-card-item:hover .view-details-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Cleanup old service page styles if they exist */
.services-page-section, .detailed-services, .service-detail-item, .training-highlight-section {
    display: none;
}








/* --- ADDED: Service Detail Page Design --- */

.service-detail-page .service-intro-layout {
    padding: 100px 0;
    background-color: #fff;
}

.service-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.sub-services-grid {
    padding: 80px 0;
    background-color: var(--light-color);
}

.sub-services-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.sub-service-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-left-color: var(--accent-color);
}

.sub-service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.sub-service-card p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 30px;
}








/* --- ADDED: Service Detail Page - 2 Columns Grid --- */

.sub-services-grid .grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .sub-services-grid .grid-2-cols {
         grid-template-columns: repeat(2, 1fr);
    }
}












