/* Variables for easy theme changes */
:root {
    --primary-color: #007bff; /* A vibrant blue, often used for buttons, links, headings */
    --secondary-color: #f8f9fa; /* Light grey, good for background sections */
    --accent-color: #28a745; /* A success-oriented green, for highlights or checkmarks */
    --dark-color: #343a40; /* Dark text and elements */
    --text-color: #495057; /* General body text color */
    --light-text-color: #6c757d; /* Lighter text for descriptions */
    --white-color: #ffffff;
    --border-color: #e9ecef; /* Light border color */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-tertiary { /* New button style for quick-links-cta */
    background-color: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

.btn-tertiary:hover {
    background-color: #218838;
    border-color: #218838;
}

.section-description {
    font-size: 1.1em;
    color: var(--light-text-color);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Header */
header {
    background-color: var(--white-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.logo img {
    max-height: 60px; /* Adjust as needed for your logo image */
    width: auto;
}


.main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav .nav-links li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.main-nav .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav .nav-links li a:hover::after,
.main-nav .nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001; /* Ensure it's above other elements when active */
}

.hamburger .bar {
    height: 3px;
    width: 25px;
    background-color: var(--dark-color);
    margin: 4px 0;
    transition: 0.3s;
}
.testimonial-photo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
/* Hero Section (General) */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/pattern-bg.svg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 150px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-ctas .btn {
    margin: 0 10px;
}

/* Inner Page Hero Specific */
.inner-page-hero {
    min-height: 400px; /* Shorter for inner pages */
    padding: 100px 0;
}
.inner-page-hero h1 {
    font-size: 3em;
}
.inner-page-hero p {
    font-size: 1.1em;
}


/* Services Section (Home Page) */
.services-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-item p {
    color: var(--light-text-color);
    margin-bottom: 25px;
}

.service-item .read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.service-item .read-more i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: margin-left 0.3s ease;
}

.service-item .read-more:hover i {
    margin-left: 12px;
}


/* About Preview Section (from Home Page) */


.image-half{
   float: left;
   margin: 10px 30px 10px 0;
}
.text-half{
  
}

.about-preview-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.about-preview-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row; /* Default desktop layout */
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.about-content {
    flex: 1.5;
    text-align: left;
}

.about-content h2 {
    text-align: left;
}

.about-content h2::after {
    margin: 10px 0 0; /* Align left */
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}


/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden; /* Hide overflowing testimonials */
}

.testimonial-item {
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: none; /* Hidden by default, JS controls visibility */
    animation: fadeIn 0.8s ease-out;
}

.testimonial-item.active {
    display: block; /* Show active testimonial */
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-item cite {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

.slider-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-nav button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.slider-nav button:hover {
    background-color: var(--dark-color);
}

/* Keyframe for fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* CTA Section (General) */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--white-color);
    margin-bottom: 25px;
}

.cta-section h2::after {
    background-color: var(--white-color); /* White line for contrast */
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Class for sections with alternating background color */
.alternate-bg {
    background-color: var(--secondary-color);
}


/* NEW: Quick Links CTA Section (Home Page) */
.quick-links-cta-section {
    padding: 80px 0;
    background-color: var(--white-color);
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cta-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cta-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6em;
}

.cta-item p {
    color: var(--light-text-color);
    margin-bottom: 25px;
}


/* NEW: Blog Preview Section (Home Page) */
.blog-preview-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.blog-post-card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden; /* Ensures image corners are rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-post-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.blog-post-card h3 {
    font-size: 1.4em;
    margin: 20px 20px 10px;
    color: var(--dark-color);
}

.blog-post-card h3 a {
    color: var(--dark-color);
}

.blog-post-card h3 a:hover {
    color: var(--primary-color);
}

.blog-post-card .post-meta {
    font-size: 0.85em;
    color: var(--light-text-color);
    margin: 0 20px 15px;
}

.blog-post-card p {
    font-size: 0.95em;
    color: var(--text-color);
    margin: 0 20px 20px;
}

.blog-post-card .read-more {
    display: block;
    margin: 0 20px 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

.blog-post-card .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.blog-post-card .read-more:hover i {
    margin-left: 10px;
}

.view-all-btn {
    margin-top: 20px;
}


/* --- Content Block Section (General reusable section for text + image) --- */
.content-block-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.content-block-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    flex-direction: row; /* Default desktop layout */
}

.content-block-section.alternate-bg .container { /* For alternating image/text side */
    flex-direction: row-reverse;
}


.content-block-section .content-text {
    flex: 2; /* Text takes more space */
}

.content-block-section .content-image {
    flex: 1; /* Image takes less space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-block-section .content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.content-block-section h2 {
    text-align: left;
    margin-bottom: 25px;
}

.content-block-section h2::after { /* Remove the center line for these titles */
    margin: 10px 0 0; /* Align left */
}

.content-block-section ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.content-block-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
}

.content-block-section ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2em;
    padding-top: 2px; /* Adjust icon alignment */
}

.content-block-section .highlight-text {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
}


/* --- Featured Destinations Section (Study Abroad) --- */
.featured-destinations-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-color);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-item {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.destination-item img {
    width: 80px; /* Adjust size of flags/icons */
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.destination-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4em;
}

.destination-item p {
    font-size: 0.9em;
    color: var(--light-text-color);
}


/* --- Values Section (About Us) --- */
.values-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-item p {
    color: var(--light-text-color);
}


/* --- Team Section (About Us) --- */
.team-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.team-member h3 {
    font-size: 1.6em;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member .title {
    font-size: 0.95em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--light-text-color);
    font-size: 0.9em;
    margin-bottom: 20px;
}

.team-member .social-links a {
    color: var(--dark-color);
    font-size: 1.2em;
    margin: 0 8px;
}

.team-member .social-links a:hover {
    color: var(--primary-color);
}


/* --- Partner Section (About Us) --- */
.partner-section {
    padding: 80px 0;
    text-align: center;
}

.partner-section .highlight-text {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-color); /* Darker for emphasis */
    margin: 30px 0 15px;
}

.partner-section .tagline {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.partner-cta-block {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-block; /* To contain its width */
}

.partner-cta-block p {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 25px;
}


/* --- Process Section (Career Counseling) --- */
.process-section {
    padding: 80px 0;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
    padding-top: 60px; /* Space for step number */
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.process-step .step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.process-step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-step p {
    color: var(--light-text-color);
    font-size: 0.95em;
}


/* --- Areas Covered Section (Life Coach) --- */
.areas-covered-section {
    padding: 80px 0;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.area-icon {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.area-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.area-item p {
    color: var(--light-text-color);
    font-size: 0.95em;
}


/* --- Contact Details Section --- */
.contact-details-section {
    padding: 80px 0;
    background-color: var(--white-color);
    text-align: center;
}

.contact-details-section .contact-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 40px;
}

.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.contact-info h3, .contact-form-container h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
}

.contact-info p i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2em;
    padding-top: 3px;
}

.contact-info .map-link {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-info .map-link i {
    margin-left: 8px;
    font-size: 0.9em;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--text-color);
    background-color: var(--white-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .btn {
    width: auto; /* Override general btn width if needed */
    padding: 12px 30px;
    font-size: 1.1em;
}

.contact-form-container .form-note {
    margin-top: 20px;
    font-size: 0.85em;
    color: var(--light-text-color);
    font-style: italic;
}


/* --- Map Section (Contact Page) --- */
.map-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.map-embed {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden; /* Ensures iframe corners are rounded */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-embed iframe {
    width: 100%;
    height: 450px;
    border: 0;
}


/* --- Legal Content Pages --- */
.legal-content {
    background-color: var(--white-color);
    padding: 60px 0;
}

.legal-content .container {
    max-width: 900px; /* Slightly narrower for readability */
}

.legal-content h2, .legal-content h3 {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.legal-content h2::after {
    left: 0;
    transform: translateX(0);
    width: 50px;
}

.legal-content h3 {
    font-size: 1.6em;
    color: var(--dark-color);
    margin-top: 40px;
}

.legal-content h3::after { /* Sub-heading line, if desired */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.legal-content p {
    margin-bottom: 1em;
    color: var(--text-color);
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-content ul li {
    margin-bottom: 8px;
}


/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
    font-size: 0.95em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-weight: 400;
}

.contact-col p i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1em;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    color: var(--white-color);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Animations for scroll */
.animate-on-scroll {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .main-nav .nav-links {
        display: none; /* Hide navigation links by default on smaller screens */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: var(--white-color);
        position: absolute;
        top: 70px; /* Below header */
        left: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .main-nav .nav-links.active {
        display: flex;
    }

    .main-nav .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex; /* Show hamburger icon */
    }

    /* Hamburger animation */
    .hamburger.is-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-section {
        padding: 100px 0;
        min-height: 450px;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .hero-section p {
        font-size: 1.1em;
    }

    /* General responsive for content blocks with image and text */
    .content-block-section .container,
    .content-block-section.alternate-bg .container {
        flex-direction: column;
        text-align: center;
    }
    .content-block-section .content-text h2 {
        text-align: center;
    }
    .content-block-section .content-text h2::after {
        margin: 10px auto 0;
    }
    .content-block-section ul {
        text-align: left; /* Keep bullet points aligned */
    }


    .about-preview-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-content h2::after {
        margin: 10px auto 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: unset;
        width: 100%;
    }

    .footer-col h3 {
        text-align: center;
    }
    .contact-details-section .contact-grid {
        flex-direction: column;
    }
    .contact-info, .contact-form-container {
        min-width: unset;
        width: 100%;
    }
    .contact-info h3, .contact-form-container h3 {
        text-align: center;
    }
    .contact-info p {
        justify-content: center; /* Center icons and text */
        text-align: center; /* Center the text itself */
    }
    .contact-info p i {
        margin-right: 10px; /* Keep some margin */
    }
    .legal-content h2, .legal-content h3 {
        text-align: center;
    }
    .legal-content h2::after, .legal-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .legal-content ul {
        margin-left: 0; /* Remove left margin for better mobile display */
        padding-left: 20px; /* Add padding for bullet points */
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2em;
    }
    .section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1em;
    }
    .hero-ctas .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    .service-grid, .cta-grid, .blog-grid, .destination-grid, .values-grid, .team-grid, .process-grid, .areas-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
    }
    .service-item, .cta-item, .blog-post-card, .destination-item, .value-item, .team-member, .process-step, .area-item {
        padding: 30px 20px;
    }
    .testimonial-item {
        padding: 20px;
        font-size: 1em;
    }
    .process-step .step-number {
        left: 50%;
        transform: translateX(-50%);
        top: -22px; /* Adjust position */
    }
    .process-step {
        padding-top: 40px; /* Reduce top padding for step content */
        text-align: center;
    }
    .process-step h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .logo a {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero-section, .inner-page-hero {
        padding: 80px 0;
        min-height: 350px;
    }
    .hero-section h1, .inner-page-hero h1 {
        font-size: 2em;
    }
    .hero-section p, .inner-page-hero p {
        font-size: 0.9em;
    }
    .service-icon, .value-icon, .area-icon {
        font-size: 3em;
    }
    .service-item h3, .destination-item h3, .value-item h3, .team-member h3, .process-step h3, .area-item h3 {
        font-size: 1.5em;
    }
    .testimonial-item p {
        font-size: 0.9em;
    }
    .slider-nav button {
        padding: 10px 15px;
        font-size: 1em;
    }
    .destination-item img {
        width: 60px;
        height: 45px;
    }
    .team-member img {
        width: 120px;
        height: 120px;
    }
    .contact-info p i {
        margin-right: 8px; /* Further reduce margin */
        padding-top: 0; /* Remove top padding for smaller screens */
    }
    .legal-content p, .legal-content ul li {
        font-size: 0.95em;
    }
}