:root {
    /* Logo Gradients */
    --gold-grad: linear-gradient(180deg, #c88c34, #d19d43, #f5e99c, #c0802d);
    /* Background Gradients */
    --bg-grad: linear-gradient(180deg, #203939, #2d5959, #000000);
    --gold-light: #f5e99c;
    --gold-main: #d19d43;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-grad);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(200, 140, 52, 0.2);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.logo img {
    height: 35px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #fff;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 25px 50px 25px;
    gap: 40px;
    background: 
        linear-gradient(180deg, rgba(32, 57, 57, 0.75), rgba(45, 89, 89, 0.65), rgba(0, 0, 0, 0.80)),
        url('/assets/image/hero-bg.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
}

.hero > .hero-content {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    flex: 1.2;
    max-width: 750px;
}

/* Large White Regular Text */
.hero-content h1 {
    width: 70%;
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 400; 
    letter-spacing: -3px;
}

/* Gradient Sub-header Single Line */
.hero-content .gradient-sub {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 25px;
    white-space: nowrap;
}

/* Small White Description */
.hero-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
    opacity: 0.85;
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.4s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-grad);
    color: #000;
    border: none;
}

.btn-secondary {
    border: 1px solid var(--gold-main);
    color: var(--gold-light);
    background: rgba(200, 140, 52, 0.05);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* --- PRINTER IMAGE --- */
.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    /* Professional shadow to separate from background */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content .gradient-sub { white-space: normal; font-size: 1.1rem; }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-image img { max-width: 400px; }
    .btn-group { flex-direction: column; width: 100%; max-width: 300px; }
    nav { display: none; }
}






/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 25px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}


.about-text .gradient-sub {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 25px;
    white-space: nowrap;
}



.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 550px;
}

.about-stats {
    margin-top: 40px;
}

.about-stats h3 {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
}

/* --- ABOUT GALLERY --- */
.about-gallery {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Large left, small right */
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Specific layout for the vertical/horizontal items */
.item-large {
    grid-row: span 2; /* Takes full height on left */
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .about-text p { margin-left: auto; margin-right: auto; }
    .about-gallery { width: 100%; }
}





/* --- SERVICES SECTION (Full Width White Background) --- */
.services-section-wrapper {
    background: #ffffff; /* Full width white background */
    width: 100%;
    padding: 100px 0;
}

.services-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.services-section h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: #203939; /* Darker color for contrast on white */
    text-align: left;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Lighter shadow for white bg */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    color: #333; /* Dark text for readability */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
    line-height: 1.4;
    max-width: 180px;
}

/* Update Bottom CTA to blend with the white section */
.bottom-cta {
    background: #ffffff;
    padding: 0 25px 0px 25px;
    text-align: center;
}







/* --- COMMERCIAL EXCELLENCE SECTION --- */
.commercial-section {
    padding: 100px 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.commercial-section h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}

.commercial-section .gold-tagline {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    display: block;
}

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

.card-img {
    width: 100%;
    /* 1. Define a specific, fixed height for the container */
    height: 220px; 
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    /* Optional: Center the content if image width differs */
    display: flex; 
    justify-content: center;
    align-items: center; 
}

.card-img img {
    /* 2. Full width and height of the container */
    width: 100%;
    height: 100%;
    /* 3. Scale and crop from the center, focusing on the top */
    object-fit: cover;
    object-position: center top; /* Keeps top visible, crops bottom */
    display: block;
}

/* --- UPDATED CARD STYLE FOR ALIGNMENT --- */
.commercial-card {
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 40px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* 4. Ensures the cards are all the same height */
    min-height: 550px; 
}

.commercial-card h3 {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 8px;
    margin-bottom: 20px;

    /* ADD THIS — locks h3 to a 2-line height so h4 always aligns */
    min-height: calc(1.5rem * 1.3 * 2); /* font-size × line-height × 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.commercial-card h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.commercial-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    padding-left: 10px;
}

.commercial-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.commercial-card ul li::before {
    content: "•";
    color: var(--gold-main);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.no-min {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--gold-light);
    padding-top: 15px;
}






/* --- Corporate & Branding Materials --- */
.corporate-section-wrapper {
    background: #ffffff;
    width: 100%;
    padding: 100px 0;
}

.corporate-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.corporate-container h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #203939;
}

.corporate-container .dark-tagline {
    color: #c88c34; /* Brand Gold */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 60px;
    display: block;
}

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

.corporate-card {
    background: linear-gradient(180deg, #ffffff, #f9f9f9);
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 520px;
    border: 1px solid #eee;
}

.spec-card-img {
    width: 100%;
    height: 220px;
}

.spec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-card-body {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, #203939, #2d5959);
    flex-grow: 1;
    color: #fff;
}



/* --- Packaging Solutions --- */
.packaging-section {
    padding: 100px 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.packaging-section h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}

.packaging-section .gold-tagline {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    display: block;
}

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

.card-img {
    width: 100%;
    /* 1. Define a specific, fixed height for the container */
    height: 220px; 
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    /* Optional: Center the content if image width differs */
    display: flex; 
    justify-content: center;
    align-items: center; 
}

.card-img img {
    /* 2. Full width and height of the container */
    width: 100%;
    height: 100%;
    /* 3. Scale and crop from the center, focusing on the top */
    object-fit: cover;
    object-position: center top; /* Keeps top visible, crops bottom */
    display: block;
}

/* --- UPDATED CARD STYLE FOR ALIGNMENT --- */
.packaging-card {
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 40px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* 4. Ensures the cards are all the same height */
    min-height: 550px; 
}

.packaging-card h3 {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 8px;
    margin-bottom: 20px;

    /* Locks h3 to 2-line height so content below always aligns */
    min-height: calc(1.5rem * 1.3 * 2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.packaging-card h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.packaging-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    padding-left: 10px;
}

.packaging-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.packaging-card ul li::before {
    content: "•";
    color: var(--gold-main);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.no-min {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--gold-light);
    padding-top: 15px;
}

.packaging-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: left;
}



/* --- ACADEMIC & INSTITUTIONAL PRINT SOLUTIONS --- */
.academic-section-wrapper {
    background: #ffffff; /* White background to match surrounding white sections */
    width: 100%;
    padding: 100px 0;
}

.academic-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.academic-container h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #203939; /* Dark teal for heading */
}

.academic-container .dark-tagline {
    color: #c88c34; /* Brand Gold for tagline */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 60px;
    display: block;
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Slightly wider min-width for 3 cards */
    gap: 30px;
}

.academic-card {
    background: linear-gradient(180deg, #ffffff, #f9f9f9);
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 520px; /* Keep height consistent with Specialised section */
    border: 1px solid #eee;
}

.academic-card-img {
    width: 100%;
    height: 250px; /* Specific height for academic images */
}

.academic-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.academic-card-body {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, #203939, #2d5959); /* Dark teal card body */
    flex-grow: 1;
    color: #fff;
}

.academic-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.academic-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: -webkit-left;
}

.academic-card-body ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    display: inline-block; /* Center the list contents */
    text-align: left; /* Keep text left-aligned in list items */
    float: left;
}

.academic-card-body ul li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
}

/* Custom Gold Bullet */
.academic-card-body ul li::before {
    content: "•";
    color: #c88c34; /* Brand Gold */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}






/* --- MEDICAL PACKAGING SECTION (Green Background) --- */
.medical-section-wrapper {
    background: #203939; /* Deep Brand Green */
    width: 100%;
    padding: 100px 0;
}

.medical-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.medical-container h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}

.medical-container .gold-tagline {
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 60px;
    display: block;
}

.medical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns as per image */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Outer border */
}

.medical-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Inner grid lines */
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
}

.medical-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.med-img-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.med-img-box img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    /* Optional: shadow to make products pop on green */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.medical-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: auto;
}

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

@media (max-width: 600px) {
    .medical-grid { grid-template-columns: repeat(1, 1fr); }
    .medical-container h2 { font-size: 2.5rem; }
}









/* --- SPECIALISED PRINT SOLUTIONS --- */
.specialised-section-wrapper {
    background: #ffffff;
    width: 100%;
    padding: 100px 0;
}

.specialised-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.specialised-container h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #203939;
}

.specialised-container .dark-tagline {
    color: #c88c34; /* Brand Gold */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 60px;
    display: block;
}

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

.specialised-card {
    background: linear-gradient(180deg, #ffffff, #f9f9f9);
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 520px;
    border: 1px solid #eee;
}

.spec-card-img {
    width: 100%;
    height: 220px;
}

.spec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-card-body {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, #203939, #2d5959);
    flex-grow: 1;
    color: #fff;
}

.spec-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 8px;

    /* Locks h3 to 2-line height so paragraphs below always align */
    min-height: calc(1.5rem * 1.3 * 2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: left;
}














/* --- WHY CHOOSE US SECTION --- */
.why-section-header {
    background: linear-gradient(180deg, #203939, #2d5959, #000000);
    padding: 100px 25px 100px 25px; /* Extra bottom padding for card overlap */
    text-align: left;
}

.why-section-header .container {
    max-width: 1300px;
    margin: 0 auto;
}

.why-section-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.why-section-header p {
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.why-cards-container {
    background: #fff;
    width: 100%;
    padding-bottom: 100px;
    padding-top: 150px;
    
}

.why-grid {
    max-width: 1300px;
    margin: -80px auto 0 auto; /* Pulls cards up into the dark section */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0 20px;
}

.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* The Circle Icon */
.why-icon-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 4px solid var(--gold-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-bottom: -50px; /* Overlaps the body */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-icon-circle img {
    width: 50px;
    height: 50px;
}

/* The Card Body with Arrow Shape */
.why-card-body {
    padding: 70px 15px 40px 15px;
    min-height: 380px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%); /* Creates the arrow tip */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Alternating Colors for the card bodies */
.why-card:nth-child(odd) .why-card-body {
    background: var(--gold-grad);
    color: #000;
}

.why-card:nth-child(even) .why-card-body {
    background: #203939;
    color: #fff;
}

.why-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.why-card-body p {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
    .why-section-header { padding-bottom: 50px; }
}

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










/* --- CLIENTS SECTION --- */
.clients-section-wrapper {
    background: #ffffff;
    width: 100%;
    padding: 80px 0;
}

.clients-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.clients-info {
    flex: 1;
    max-width: 500px;
}

.clients-info .mini-logo {
    height: 30px;
    margin-bottom: 20px;
}

.clients-info h2 {
    font-size: 4rem;
    color: #203939; /* Dark teal */
    line-height: 1;
    font-weight: 800;
    margin-bottom: 25px;
}

.clients-info p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* --- LOGO GRID --- */
.clients-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.clients-grid img {
    max-width: 120px;
    max-height: 100px;
    width: auto;
    height: auto;
    transition: 0.3s;
}

.clients-grid img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .clients-container { flex-direction: column; text-align: center; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .clients-info h2 { font-size: 3rem; }
}

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














/* --- CONTACT SECTION --- */
.contact-section-wrapper {
    background: #ffffff; /* White background to match the services section */
    width: 100%;
    padding: 100px 0;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    flex: 1;
    max-width: 600px;
}

.contact-info h2 {
    font-size: 3.5rem;
    color: #203939; /* Dark teal from your brand */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
}

.contact-info p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info .cta-text {
    font-weight: 800;
    color: #203939;
    font-size: 1.2rem;
    margin-top: 30px;
    display: block;
}

/* --- THE FORM BOX --- */
.contact-form-box {
    flex: 1;
    max-width: 550px;
    background: linear-gradient(145deg, #203939, #000000);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form-box h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--gold-main);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #fff; /* White button as per your image */
    color: #203939;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--gold-grad);
    transform: translateY(-2px);
}

.form-note {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 15px;
}

@media (max-width: 900px) {
    .contact-container { flex-direction: column; text-align: center; }
    .contact-info h2 { font-size: 2.5rem; }
    .contact-form-box { width: 100%; padding: 30px; }
}













/* --- FOOTER SECTION --- */
.site-footer {
    width: 100%;
    position: relative;
    /* Uses the deep background gradient */
    background: linear-gradient(180deg, #203939, #2d5959, #000000); 
    padding: 80px 0 0 0; /* Padding top, 0 bottom */
    color: rgba(255, 255, 255, 0.8); /* Muted white for text */
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px 60px 20px; /* Space above the black bottom bar */
    flex-wrap: wrap;
    gap: 40px;
}

/* Col 1: Contact/Buying Info */
.footer-contact {
    flex: 1.5; /* Takes more space */
    min-width: 300px;
}

.footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact a {
    color: #fff;
    text-decoration: underline;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    font-weight: 400;
}

.contact-label {
    font-weight: 700;
    color: #fff;
}

/* Cols 2 & 3: Links */
.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--gold-light); /* Hover uses brand gold */
}

/* --- FOOTER BOTTOM BAR --- */
.footer-bottom {
    width: 100%;
    background: #000000; /* Solid Black Background */
    padding: 30px 20px;
}

.bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Social Icons (Placeholder text used) */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.2rem;
}

/* Gold Logo on Bottom Right */
.footer-logo img {
    height: 40px; /* Adjust height as needed */
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; text-align: center; }
    .footer-contact, .footer-links { width: 100%; flex: none; }
    .contact-details { text-align: center; }
    .bottom-container { flex-direction: column; gap: 20px; }
}


.social-icons a {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f5e99c; /* your gold */
    transform: translateY(-3px);
}

/* --- MOBILE NAVIGATION LOGIC --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    color: var(--gold-light);
    cursor: pointer;
    z-index: 1001;
}

.mobile-only {
    display: none;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none; /* Hide the main button to save space */
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        display: flex !important; /* Override your previous display:none */
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        border-left: 1px solid rgba(200, 140, 52, 0.3);
    }

    nav.active {
        right: 0; /* Slide in */
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }
    
    .about-text .gradient-sub{
        white-space: normal;
    }
    
    .logo img{
        height: 25px;
    }
    
    .footer-logo img{
        height: 25px;
    }
}


@media (max-width: 768px) {
    .academic-grid {
        /* Forces the cards to stack in a single column */
        grid-template-columns: 1fr !important; 
        gap: 20px;
    }

    .academic-card {
        /* Removes any fixed height so content doesn't bleed out */
        min-height: auto !important; 
        width: 100%;
    }

    .academic-container h2 {
        /* Makes the heading fit mobile screens better */
        font-size: 2.5rem;
    }
}
.form-response { margin-top: 15px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-align: center; }
.form-response.success { background: rgba(50,200,100,0.15); color: #2ecc71; border: 1px solid #2ecc71; }
.form-response.error   { background: rgba(220,50,50,0.15);  color: #e74c3c; border: 1px solid #e74c3c; }
.form-response.hidden  { display: none; }
 
 
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}   