/* =========================================================
   CLAIMWORKS - CLEAN STYLE.CSS
   Duplicate / Override CSS Removed
   Mobile Stuck & Responsive Issues Fixed
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #111827;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */

header {
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.menu-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}
.nav {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Desktop: nav links + Book Consultation button sit side by side */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    color: #0f766e;
    font-size: 32px;
    font-weight: 700;
}

.logo i {
    margin-right: 10px;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    position: relative;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #0b5ed7;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #0b5ed7;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: #0f766e;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #115e59;
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #0f766e;
    color: #0f766e;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #0f766e;
    color: #fff;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f766e, #0f172a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.hero-left h1 {
    font-size: clamp(34px, 7vw, 60px);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #dbe4ef;
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stats h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.hero-stats span {
    color: #d1d5db;
}

/* =========================================================
   GLASS CARDS
========================================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.35s;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.glass-card i {
    font-size: 40px;
    color: #34d399;
    margin-bottom: 20px;
}

.glass-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.glass-card p {
    color: #e5e7eb;
    line-height: 1.7;
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0f172a;
}

.section-title p {
    color: #6b7280;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.section-text {
    text-align: center;
    color: #666;
    margin: 20px auto 50px;
}

/* =========================================================
   SERVICES
========================================================= */

.services {
    padding: 100px 0;
    background: #fafafa;
}

.services h2 {
    text-align: center;
    font-size: 40px;
}

.service-grid,
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box,
.card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.service-box:hover,
.card:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 42px;
    color: #0f766e;
    margin-bottom: 20px;
}

.service-box h3,
.card h3 {
    margin-bottom: 15px;
}

.service-box p,
.card p {
    color: #6b7280;
    line-height: 1.8;
}

/* =========================================================
   ABOUT
========================================================= */

.about-preview,
.company-story,
.mission,
.why-company,
.journey,
.team,
.leadership {
    padding: 100px 0;
}

.grid-2,
.story-grid,
.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview img,
.story-grid img,
.ceo-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-preview h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-preview p,
.story-grid p,
.ceo-grid p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================================
   STATS
========================================================= */

.stats,
.company-stats,
.industry-stats {
    padding: 90px 0;
    background: #0f766e;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stats h2,
.stat-box h2,
.stat h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.stat-box h2 {
    color: #34d399;
}

.stats p,
.stat-box p {
    font-size: 18px;
}

/* =========================================================
   WHY US
========================================================= */

.why-us,
.why-services,
.why-industries {
    padding: 100px 0;
    background: #f8fafc;
}

.why-grid,
.why-services-grid,
.why-industries-grid,
.why-company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card,
.why-service-card,
.why-industries-card,
.why-company-card {
    padding: 35px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.why-card:hover,
.why-service-card:hover,
.why-industries-card:hover,
.why-company-card:hover {
    transform: translateY(-10px);
}

.why-card i,
.why-service-card i,
.why-industries-card i,
.why-company-card i {
    font-size: 45px;
    color: #0f766e;
    margin-bottom: 20px;
}

.why-card p,
.why-service-card p,
.why-industries-card p,
.why-company-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* =========================================================
   INDUSTRIES
========================================================= */

.industries {
    padding: 100px 0;
    background: #fff;
}

.industry-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.industry-card i {
    display: none;
}

.industry-card h3 {
    margin-bottom: 15px;
}

.industry-card p {
    line-height: 1.8;
    color: #6b7280;
}

/* =========================================================
   PROCESS
========================================================= */

.process,
.service-process {
    padding: 100px 0;
}

.process-grid,
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.number {
    width: 70px;
    height: 70px;
    background: #0f766e;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.process-card p {
    color: #6b7280;
    line-height: 1.8;
}

.timeline-item {
    background: #0f766e;
    color: #fff;
    padding: 35px;
    border-radius: 18px;
    transition: 0.3s;
}

.timeline-item:hover {
    background: #115e59;
    transform: translateY(-8px);
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #374151;
}

.testimonial-card h4 {
    color: #0f766e;
}

/* =========================================================
   TEAM / LEADERSHIP
========================================================= */

.team-grid,
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card,
.leader-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.team-card:hover,
.leader-card:hover {
    transform: translateY(-10px);
}

.team-card img,
.leader-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3,
.leader-card h3 {
    margin-top: 25px;
}

.team-card span,
.leader-card span {
    display: block;
    margin: 10px 0;
    color: #0f766e;
    font-weight: 600;
}

.team-card p,
.leader-card p {
    padding: 0 25px 30px;
    color: #6b7280;
    line-height: 1.8;
}

.team-social {
    margin: 20px 0 25px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #0b5ed7;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
}

/* =========================================================
   FAQ
========================================================= */

.faq {
    padding: 90px 0;
    background: #f8fbff;
}

.faq-item {
    background: #fff;
    margin: 20px 0;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b5ed7;
    margin-bottom: 15px;
    font-size: 22px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* =========================================================
   NEWS / INSIGHTS
========================================================= */

.news,
.insights {
    padding: 100px 0;
}

.news-grid,
.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card,
.insight-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.news-card:hover,
.insight-card:hover {
    transform: translateY(-10px);
}

.news-card img,
.insight-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content span {
    color: #0f766e;
    font-weight: 600;
}

.news-content h3 {
    margin: 15px 0;
}

.news-content p,
.insight-card p {
    line-height: 1.8;
    color: #6b7280;
}

.news-content a,
.insight-card a {
    display: inline-block;
    margin-top: 20px;
    padding: 0 20px 20px;
    color: #0f766e;
    font-weight: 600;
    text-decoration: none;
}

.insight-card h3 {
    padding: 20px 20px 10px;
}

/* =========================================================
   TRUSTED
========================================================= */

.trusted {
    padding: 90px 0;
    background: #f8fbff;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.trusted-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.trusted-card:hover {
    transform: translateY(-8px);
}

.trusted-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trusted-card h3 {
    margin: 20px 0 10px;
    color: #0b5ed7;
}

.trusted-card p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.7;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-page,
.contact-preview,
.map-section {
    padding: 100px 0;
}

.contact-preview {
    background: #f8fafc;
}

.contact-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-box,
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-box input,
.contact-box textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.contact-box textarea,
.contact-form textarea {
    height: 180px;
    resize: none;
}

.contact-preview li {
    margin-bottom: 15px;
    list-style: none;
}

.contact-preview i,
.info-box i {
    color: #0f766e;
    margin-right: 10px;
}

.info-box {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.contact-image {
    margin-bottom: 25px;
}

.contact-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

/* =========================================================
   JOBS / CAREERS
========================================================= */

.jobs,
.why-join,
.benefits,
.internship,
.career-form {
    padding: 100px 0;
}

.why-join,
.internship {
    background: #f8fafc;
}

.jobs-grid,
.join-grid,
.benefit-grid,
.internship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.job-card,
.join-card,
.intern-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.job-card:hover,
.join-card:hover,
.intern-card:hover {
    transform: translateY(-10px);
}

.job-card img,
.intern-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.job-card img {
    height: 200px;
}

.intern-card img {
    height: 180px;
}

.job-card h3 {
    color: #0f766e;
    margin-bottom: 20px;
}

.job-card p,
.join-card p {
    color: #6b7280;
    line-height: 1.8;
}

.join-card {
    text-align: center;
}

.join-card i,
.intern-card i {
    font-size: 45px;
    color: #0f766e;
    margin-bottom: 20px;
}

.benefit-card {
    background: #0f766e;
    color: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
}

.benefit-card i {
    font-size: 42px;
    margin-bottom: 20px;
}

.career-form form {
    max-width: 700px;
    margin: auto;
}

.career-form input,
.career-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.career-form textarea {
    height: 180px;
    resize: none;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    background: linear-gradient(135deg, #0f766e, #115e59);
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.newsletter-content {
    max-width: 750px;
    margin: auto;
}

.newsletter h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 400px;
    max-width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    background: #14b8a6;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* =========================================================
   CTA
========================================================= */

.cta,
.service-cta,
.about-cta {
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.cta {
    background: #0f172a;
}

.service-cta,
.about-cta {
    background: linear-gradient(135deg, #0f766e, #0f172a);
}

.cta h2,
.service-cta h2,
.about-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta p,
.service-cta p,
.about-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
    color: #d1d5db;
}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;
    left: 25px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* =========================================================
   BACK TO TOP
========================================================= */

#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* =========================================================
   RIPPLE
========================================================= */

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(20);
        opacity: 0;
    }
}

/* =========================================================
   INTERNSHIP BANNER
========================================================= */

.internship-banner {
    margin: 40px 0;
}

.internship-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}

/* =========================================================
   FOOTER
========================================================= */

.reference-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.reference-footer-bg {
    position: relative;
    min-height: 350px;
    background: #1d293d;
    overflow: hidden;
}

.reference-footer-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 35px 40px 40px;
}

.reference-footer-line {
    width: 2px;
    height: 295px;
    background: rgba(255, 255, 255, 0.3);
    margin-right: 40px;
    flex-shrink: 0;
}

.reference-footer-main {
    flex: 1;
    padding-right: 35px;
}

.reference-footer-main h2 {
    margin: 0 0 22px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
}

.reference-footer-main p {
    margin: 0 0 25px;
    color: #cbd3df;
    font-size: 16px;
    line-height: 1.7;
}

.reference-footer-services,
.reference-footer-button {
    display: inline-block;
    background: #ff7417;
    color: #fff;
    padding: 11px 14px;
    border-radius: 8px;
    text-decoration: none;
}

.reference-footer-side {
    width: 270px;
    flex-shrink: 0;
}

.reference-footer-small-line {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.5);
    margin-left: 20px;
    margin-bottom: 12px;
}

.reference-footer-side h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 10px;
}

.reference-footer-side span {
    color: #98a4b7;
    font-size: 12px;
}

.footer-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-circle-left {
    width: 430px;
    height: 430px;
    background: rgba(9, 119, 116, 0.55);
    left: -220px;
    top: -130px;
}

.footer-circle-left-bottom {
    width: 270px;
    height: 270px;
    background: rgba(8, 126, 123, 0.45);
    left: 140px;
    bottom: -190px;
}

.footer-circle-right {
    width: 410px;
    height: 410px;
    background: rgba(83, 67, 68, 0.55);
    right: -160px;
    top: -140px;
}

.footer-circle-right-bottom {
    width: 260px;
    height: 260px;
    background: rgba(9, 119, 116, 0.45);
    right: 80px;
    bottom: -190px;
}

.reference-footer-bottom {
    min-height: 46px;
    background: #087f78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
}

/* =========================================================
   MOBILE RESPONSIVE - IMPORTANT FIX
========================================================= */

@media (max-width: 992px) {

    .hero-grid,
    .grid-2,
    .story-grid,
    .ceo-grid,
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    nav ul {
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body {
        min-height: 100vh;
    }

    /* HEADER — desktop sticky header becomes normal on phone */
    header {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        min-height: 0;
        z-index: 1000;
    }

    .nav {
        position: relative;
        width: 100%;
        min-height: auto;
        height: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 12px 0;
        gap: 10px;
    }

    .logo {
        width: auto;
        justify-content: center;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

/* Mobile hamburger button */
.menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #0f766e;
    color: #fff;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* Mobile dropdown panel — holds the nav links + the Book Consultation button.
   Positioned absolutely so it overlays the page content instead of pushing
   it down, and is hidden via max-height so the toggle can animate. */
.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Open mobile menu after tapping hamburger */
.nav-menu.menu-open {
    max-height: 80vh;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
}

.nav-menu nav {
    width: 100%;
}

.nav-menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 0 10px;
    list-style: none;
}

/* Consultation button inside the dropdown */
.nav-menu .btn {
    width: auto;
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
    margin: 6px 0 24px;
}

    /* HERO */
    .hero {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 60px 0;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 90%;
        max-width: 320px;
        text-align: center;
        margin: 0;
    }

    .hero-stats {
        justify-content: center;
        gap: 25px;
    }

    .hero-right {
        width: 100%;
    }

    .glass-card {
        padding: 25px;
    }

    /* GENERAL */
    .container {
        width: 92%;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .btn,
    .btn-outline {
        max-width: 100%;
    }

    /* GRIDS */
    .service-grid,
    .cards,
    .industry-grid,
    .industries-grid,
    .team-grid,
    .testimonial-grid,
    .trusted-grid,
    .process-grid,
    .stats-grid,
    .news-grid,
    .insight-grid,
    .jobs-grid,
    .join-grid,
    .benefit-grid,
    .internship-grid,
    .why-grid,
    .why-services-grid,
    .why-industries-grid,
    .why-company-grid,
    .leadership-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    /* IMAGES */
    .team-card img,
    .leader-card img {
        height: 250px;
    }

    .insight-card img,
    .trusted-card img {
        height: 180px;
    }

    /* CONTACT */
    .contact-page-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* NEWSLETTER */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    /* CTA */
    .cta h2,
    .service-cta h2,
    .about-cta h2 {
        font-size: 34px;
    }

    /* WHATSAPP */
    .whatsapp {
        width: 52px;
        height: 52px;
        left: 18px;
        bottom: 20px;
        font-size: 27px;
    }

    #topBtn {
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 20px;
    }

    /* FOOTER */
    .reference-footer-content {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 25px;
    }

    .reference-footer-line {
        display: none;
    }

    .reference-footer-main {
        width: 100%;
        padding-right: 0;
        margin-bottom: 35px;
    }

    .reference-footer-main h2 {
        font-size: 30px;
    }

    .reference-footer-side {
        width: 100%;
    }

    .reference-footer-bottom {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stats h2 {
        font-size: 30px;
    }

    .btn,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .newsletter h2 {
        font-size: 30px;
    }

    .reference-footer-main h2 {
        font-size: 27px;
    }
}
