/* Global Styles */
:root {
    /* professional teal set */
    --primary-color:   #0a9396;   /* soft teal */
    --secondary-color: #005f73;   /* darker teal */
    --light-teal:      #e9f5f8;   /* very light blue-green */
    --grey:            #e6f4f1;   /* light blue-green */
    --dark-color:      #0b1c3b;   /* deep navy */
    --light-color:     #ffffff;
    --accent-color:    #ff9900;
    --text-color:      #444;
    --border-radius:   5px;
    --box-shadow:      0 5px 15px rgba(0,0,0,.1);
    --transition:      all .3s ease;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 30px;
    position: relative;
}

.main-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 200px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #f1f1f1;
}

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

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('images/australia-banner.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
    padding:180px 0 100px;
    margin-top:0;
}

.hero-content {
    position:relative;
    top: 60px;          /* 6 cm down */
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

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

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

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.destination-card {
    position:relative;
    height:380px;
    border-radius:var(--border-radius);
    overflow:hidden;
    box-shadow:var(--box-shadow);
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:40px 20px;
}

/* Destination cards now use SVG images directly in the HTML */
.destination-card {
    position: relative;
}

.destination-card .overlay {
    position: absolute;
    inset:0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.destination-card:hover .overlay {
    background: linear-gradient(to top, rgba(30, 87, 153, 0.8), rgba(30, 87, 153, 0.4));
}

.destination-card .content {
    position: relative;
    text-align:center;
    z-index:2;
    color: white;
    transition: var(--transition);
}

.destination-card:hover .content {
    bottom: 40px;
}

.destination-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.destination-card p {
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 0 15px;
}

.testimonial .quote {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial .client .name {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial .client .destination {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-controls button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    color: var(--primary-color);
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: white;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Team Section - Removed as requested */

/* Team member social links styling removed */

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-menu.active {
        left: 0;
    }
    
    .main-menu li {
        margin: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-card {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
/* ---- Bigger “Book a Consultation” button ---- */
.btn-book{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.05rem;        /* slightly larger font */
    font-weight:600;
    color:#fff;               /* pure white text */
    background:var(--primary-color, #0055ff);
    padding:12px 28px;        /* bigger box */
    border-radius:6px;
    text-decoration:none;
    margin-right:25px;
    transition:.3s ease;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}
.btn-book:hover{
    background:var(--secondary-color, #0039cb);
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}
/* ---- tiny mobile tweak ---- */
@media(max-width:768px){
    .btn-book{
        padding:8px 18px;
        font-size:.9rem;
        margin-right:0;          /* no gap when menu collapses */
    }
}
/* ===== LOCK LOGO SIZE ===== */
.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .testimonial {
        padding: 20px;
    }
}

<style>

    /* Extra About-page styles only if needed */
    .about-hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/about-banner.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        padding: 150px 0 80px;
        margin-top: 80px;
    }
    .about-hero h1 { font-size: 3rem; margin-bottom: 20px; }
    .about-hero p  { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; }

    .our-story, .mission, .values, .team {
        padding: 80px 0;
    }

    /* === PUSH CONTENT BELOW FIXED HEADER === */
    .about-intro {
        padding-top: 150px;   /* same as header height */
    }

    /* -------------------------------------------------
       NEW RULES – ADD THEM HERE
    ------------------------------------------------- */
    header{
        height:80px;                 /* reduce overall height */
    }
    header .container{
        align-items:center;          /* vertically center logo & nav */
    }
    header .logo img{
        height:80px;                 /* shrink logo slightly */
    }
/* --- header layout --- */
header .container{
    display:flex;
    align-items:center;
    gap:20px;
}


/* button styling in nav */
.header-cta{
    padding:8px 20px;
    font-size:.9rem;
    margin:0;
}

/* mobile: hide text logo & keep hamburger on the right */
@media(max-width:992px){
    .logo-text{ display:none; }
}
/* lift the entire header row up by ~1 cm */
header .container{
    transform: translateY(-10px);   /* ≈ 1 cm */
}
.logo-text img{
    height:50px;
    margin-left:-10px;  /* pull 1 cm (≈10 px) to the left */
}
.logo-text {
    margin-left: -40px;   /* fine-tune this value until they touch */
}

/* new hero CTA style (gradient + shadow) */
.hero .btn-primary{
    background:linear-gradient(135deg,#0066ff,#0044cc);
    border:none;
    padding:14px 32px;
    font-size:1.05rem;
    font-weight:600;
    letter-spacing:.4px;
    border-radius:50px;
    box-shadow:0 4px 15px rgba(0,85,255,.35);
    transition:all .3s ease;
}
.hero .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 22px rgba(0,85,255,.5);
}

/* watermark: fixed, centred, low opacity */
body::before{
    content:"";
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:300px;       /* adjust size */
    height:auto;
    background:url('images/logo_2.png') no-repeat center/contain;
    opacity:.04;       /* very faint */
    pointer-events:none;
    z-index:-1;
}

/* universal override — light teal instead of grey */
body,
section.services,
section.destinations,
section.testimonials,
section.achievements-horizontal,
section.mission-values,
section.values,
section.cta {
    background: var(--light-teal) !important;
}
/* 1. bigger, evenly-padded button */
.header-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;      /* force white text */
    background:var(--primary-color);
    font-size:1rem;
    font-weight:600;
    padding:12px 28px;          /* add space around text */
    border-radius:6px;
    transition:.3s ease;
}
.header-cta:hover{
    background:var(--secondary-color);
    transform:translateY(-2px);
}
/* lighter hero button */
.hero .btn-primary{
    background:#4dabf7;      /* soft sky-blue */
    border:none;
    padding:14px 32px;
    border-radius:50px;
    transition:.3s ease;
}
.hero .btn-primary:hover{
    background:#339af0;      /* slightly darker on hover */
}
/* --- new look for the .cta box --- */
.cta{
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); /* warm peach gradient */
    color: #0b1c3b;            /* deep navy text */
}
.cta h2{ color:#0b1c3b; }
.cta p{  color:#333; }
.cta .btn-light{
    background:#0b1c3b;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:50px;
    transition:.3s ease;
}
.cta .btn-light:hover{
    background:#005f73;
}
/* logo layout (same as index) */
header .container{
    display:flex;
    align-items:center;
    gap:0;
}
.logo img,
.logo-text img{ height:50px; margin:0; }
.logo-text{ margin-left:-6px; }   /* pulls Logo_1 flush with Logo */
/* --- Header Flex & Spacing Reset --- */
header .container {
    display: flex;
    align-items: center;
    gap: 0;                       /* remove any default gaps */
}

/* --- Logo & Button Spacing --- */
.logo img,
.logo-text img {
    height: 50px;
    margin: 0;
}
.logo + .logo-text { margin-left: -6px; }   /* pulls Logo_1 flush */
.header-cta { margin-left: auto; }           /* pushes it to the right */

/* Hero Australia — Australia.webp background */
.country-header{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
               url('images/stock/Australia.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
    padding:150px 0 80px;
    margin-top:80px;
}
/* index hero CTA – same style as australia */
.hero .btn-primary{
    background:var(--primary-color);   /* teal from australia page */
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    letter-spacing:.4px;
    box-shadow:0 4px 15px rgba(0,0,0,.35);
    transition:.3s ease;
}
.hero .btn-primary:hover{
    background:var(--secondary-color);
    transform:translateY(-2px);
    box-shadow:0 6px 22px rgba(0,0,0,.5);
}
/* 1. tighten space between Logo and Logo_1 */
header .logo + .logo-text {
    margin-left: -15px;   /* pull Logo_1 closer to Logo */
}

/* 2. enlarge "Book a Consultation" to match australia */
header .header-cta {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
}
.header-cta{
    position:relative;
    top:-5px;      /* shift 0.5 cm up */
}
/* identical hero / country-header height */
.hero,
.country-header{
    padding:160px 0 90px;
    min-height:400px;           /* keeps aspect on all pages */
    display:flex;
    align-items:center;
    justify-content:center;
}
/* lock identical hero height */
.hero,
.country-header{
    height:500px;            /* exact pixel height */
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
}
/* index hero = same size & colour as country hero */
.hero{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('images/australia-banner.jpg');
    background-size:cover;
    background-position:center;
    height:580px;      /* same height */
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;        /* remove any conflicting padding */
}
<style>
/* ===== Flow-chart styles ===== */
.flow-steps-wrapper { padding: 80px 0; background: var(--light-color); }
.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.step {
    flex: 1 1 200px;
    max-width: 200px;
    text-align: center;
}
.step .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.step h4 { margin-bottom: 10px; color: var(--dark-color); }
.step p { font-size: 0.9rem; color: var(--text-color); }
.arrow {
    font-size: 1.6rem;
    color: var(--primary-color);
    align-self: center;
}
@media (max-width: 768px) {
    .flow-steps { flex-direction: column; align-items: center; }
    .arrow { transform: rotate(90deg); margin: 20px 0; }
}
</style>
/* ----------  VERTICAL FLOW-CHART  ---------- */
.process-steps .steps{
    counter-reset:step-counter;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:40px;
}

.process-steps .step{
    max-width:700px;
    text-align:center;
    position:static;          /* remove absolute */
    margin:0;
    padding:0;
}

.process-steps .step::before{
    counter-increment:step-counter;
    content:counter(step-counter);
    width:50px;
    height:50px;
    line-height:50px;
    background:var(--primary-color);
    color:#fff;
    border-radius:50%;
    font-weight:600;
    display:inline-block;
    margin-bottom:10px;
}

.process-steps .step h5{
    margin:5px 0 5px 0;
    font-size:1.2rem;
}

.process-steps .step p{
    margin:0 auto;
    max-width:600px;
}
/* ===== about.html specific styles ===== */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/about-banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 1rem;
  margin-top: 80px; /* fixed header offset */
}
.about-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.about-hero p  { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; }

.our-story, .mission, .values, .team { padding: 80px 0; }

.about-intro { padding-top: 150px; } /* same as header height */

/* achievements block */
.achievements-horizontal { padding: 80px 0; background: var(--surface); }
.achievements-bar {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.achievement-card {
  background: #fff; padding: 30px 50px; border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08); text-align: center;
  min-width: 200px; transition: .25s ease;
}
.achievement-card:hover { transform: translateY(-10px); }
.achievement-card .stat {
  display: block; font-size: 2.8rem; font-weight: 700; color: var(--primary);
}
.achievement-card .label { font-size: 1rem; color: var(--dark); margin-top: 5px; }

@media(max-width: 768px) {
  .achievements-bar { flex-direction: column; align-items: center; }
}
.quiz-options{display:grid;gap:1rem;margin-top:1.5rem;}
.quiz-btn{padding:1rem;border:2px solid var(--primary);background:#fff;border-radius:var(--radius);cursor:pointer;transition:.3s;}
.quiz-btn:hover{background:var(--primary);color:#fff;}

.testimonial-slider{overflow:hidden;}
.testimonial-slide{position:absolute;top:0;left:0;width:100%;opacity:0;transition:opacity .6s ease;}
.testimonial-slide.active{opacity:1;}

</style>