* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== BACKGROUND ========== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    z-index: -1;
    background-image: url('../images/About Qualytix.png');
    background-size: cover;
    background-position: center;
}

.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* ========== CONTENT CONTAINER - PROPER ALIGNMENT ========== */
.content-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
}

/* ========== WEBINAR BANNER ========== */
.webinar-banner {
    position: fixed;
    height: 7%;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.webinar-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.webinar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.webinar-text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.watch-btn {
    padding: 10px 28px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.watch-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.watch-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.watch-btn:hover::before {
    height: 100%;
}

.close-banner {
    position: absolute;
    right: 50px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* ========== STICKY NAVBAR ========== */
.sticky-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 100px 8px 7.2%;
    transition: top 0.4s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sticky-navbar.visible {
    top: 0;
    animation: slideDownNav 0.4s ease-out;
}

@keyframes slideDownNav {
    from {
        top: -90px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.sticky-navbar img {
    height: 64px;
    width: auto;
}

.sticky-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sticky-navbar .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.sticky-navbar .menu-toggle svg {
    width: 30px;
    height: 30px;
    stroke: #333;
    stroke-width: 2;
}

.sticky-navbar .consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.sticky-navbar .consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.sticky-navbar .consultation-btn:hover {
    color: white;
}

.sticky-navbar .consultation-btn:hover::before {
    height: 100%;
}

/* ========== LOGO CONTAINER ========== */
.logo-container {
    position: fixed;
    top: 65px;
    left: 7.05%;
    z-index: 900;
    transition: all 0.3s ease;
}

.logo-container.banner-hidden {
    top: 40px;
}

.logo-container.hide {
    opacity: 0;
    pointer-events: none;
}

.logo-container img {
    height: 69px;
    width: auto;
}

/* ========== MENU TOGGLE CONTAINER ========== */
.menu-toggle-container {
    position: fixed;
    top: 70px;
    right: 100px;
    z-index: 900;
    transition: all 0.3s ease;
}

.menu-toggle-container.banner-hidden {
    top: 60px;
}

.menu-toggle-container.hide {
    opacity: 0;
    pointer-events: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* ========== DROPDOWN MENU ========== */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 10;
    padding: 8px 100px 8px 7.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-logo img {
    height: 66px;
    width: auto;
}

.dropdown-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown-consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dropdown-consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.dropdown-consultation-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.dropdown-consultation-btn:hover::before {
    height: 100%;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.close-menu svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 80px;
    padding: 60px 40px 80px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
}

.dropdown-section-wrapper {
    display: block;
    margin-bottom: 0;
}

.dropdown-section-title {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dropdown-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 30px;
    grid-auto-flow: row;
}

.dropdown-item {
    display: block;
}

.dropdown-item a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.3s;
    font-size: 18px;
    line-height: 1.5;
}

.dropdown-item a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    color: white;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 150px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
}

.hero-content {
    animation: slideUpContent 0.8s ease-out;
}
.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 14px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

@keyframes slideUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* ========== CONTENT SECTION ========== */
.content-section {
    background: white;
    position: relative;
    z-index: 2;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.intro-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
    text-align: center;
}

.intro-title {
    font-size: 42px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-description {
    font-size: 18px;
    color: #495057;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}
.vision-badge {
    margin-top:15px;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}


.mission-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Overview Section */
.overview-section {
    padding: 70px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
    align-items: center;
}

.overview-image {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    position: relative;
}

.overview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,7,20,0.3) 100%);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.overview-content {
    padding-right: 20px;
}

.overview-title {
    font-size: 42px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.overview-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 100%);
}

.overview-text p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 18px;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    padding: 70px 0;
}

.values-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
}

.values-title {
    font-size: 42px;
    font-weight: 700;
    color: #050714;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-card {
    background: white;
    padding: 38px 35px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #050714;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(15deg) scale(1.1);
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 15px;
    line-height: 1.3;
}

.value-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Our Story Section */
.story-section {
    background: white;
    padding: 70px 0;
}

.story-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
}

.story-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 60px;
    align-items: center;
}

.story-content {
    padding-right: 20px;
}

.story-title {
    font-size: 48px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 100%);
}

.story-text p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    width: 100%;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,7,20,0.4) 0%, rgba(8,26,47,0.3) 100%);
    z-index: 1;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Core Values Section */
.core-values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 0;
}

.core-values-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
}

.core-values-title {
    font-size: 48px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 50px;
    line-height: 1.2;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.core-value-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.core-value-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-left-color: #050714;
}

.core-value-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9ecef;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.core-value-item:hover .core-value-number {
    color: #050714;
    transform: scale(1.1);
}

.core-value-heading {
    font-size: 24px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 15px;
    line-height: 1.3;
}

.core-value-description {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Our People Section */
.our-people-section {
    background: white;
    padding: 80px 0;
    position: relative;
}

.our-people-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #050714 50%, transparent 100%);
}

.our-people-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 7.5%;
}

.our-people-content {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.our-people-title {
    font-size: 52px;
    font-weight: 700;
    color: #050714;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.our-people-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left:50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 100%);
}

.our-people-description {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    max-width: 1250px;
    margin: 0 auto;
    text-align: justify;
}

/* Team Grid */
 .team-member {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 40px;
      align-items: flex-start;
      padding: 40px 0;
      border-bottom: 1px solid #e0e0e0;
    }
    .team-member:first-child { padding-top: 0; }
    .team-member:last-child  { border-bottom: none; }

    /* Photo */
    .team-member-image {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: 2px;
    }
    .team-member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    /* Text */
    .team-member-info {
      padding-top: 6px;
    }
    .team-member-name {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: #1a1a1a;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .team-member-title {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #050714;
      margin-bottom: 18px;
    }
    .team-member-bio {
      font-size: 0.95rem;
      color: #444444;
      line-height: 1.8;
    }
#our-people{
   scroll-margin-top: 65px;
}
/* ========== WHAT WE OFFER SECTION - PROPER ALIGNMENT ========== */
.what-we-offer-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.what-we-offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-offer-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.what-we-offer-header .subtitle {
    font-size: 19px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(5, 7, 20, 0.6) 0%, rgba(8, 26, 47, 0.7) 100%);
}

.service-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg) scale(1.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.service-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-title {
    transform: translateY(-5px);
}

.service-description {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.service-card:hover .service-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.services-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.services-cta-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.services-cta-btn:hover::before {
    height: 100%;
}

/* ========== CLIENT RATINGS SECTION - PROPER ALIGNMENT ========== */
.client-ratings-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.client-ratings-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.3;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.star-rating svg {
    width: 32px;
    height: 32px;
}

.star-filled {
    fill: #050714;
}

.star-cyan {
    fill: #0B2A3D;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
}

.rating-circle svg {
    transform: rotate(-90deg);
}

.rating-circle-bg {
    fill: none;
    stroke: #E8E8E8;
    stroke-width: 20;
}

.rating-circle-fill {
    fill: none;
    stroke: #0B2A3D;
    stroke-width: 20;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.rating-circle-dark {
    fill: none;
    stroke: #050714;
    stroke-width: 20;
    stroke-linecap: round;
}

.rating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
    color: #050714;
    line-height: 1;
}

.rating-total {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.rating-label {
    font-size: 18px;
    color: #050714;
    font-weight: 600;
}
#mission {
  scroll-margin-top: 65px; /* adjust to your sticky header height */
}

/* ========== INDUSTRIES SECTION - PROPER ALIGNMENT ========== */
/* ========== INDUSTRIES SECTION - PROPER ALIGNMENT ========== */
.industries-section {
    background: #F0F2F5;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.industries-header {
    margin-bottom: 60px;
}

.industries-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    line-height: 1.3;
}

.industries-header .subtitle {
    font-size: 19px;
    color: #050714;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.industries-header .description {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    max-width: 1200px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.industry-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.industry-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-image {
    transform: scale(1.1);
}

.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.industry-card-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 20px;
}

.industry-card-underline {
    width: 60px;
    height: 3px;
    background: #0B2A3D;
    margin-top: 12px;
}

.industry-card-cta {
    background: #050714;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.3s;
}

.industry-card-cta:hover {
    background: #0B2A3D;
}

.industry-card-cta .cta-icon {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    transform: rotate(-45deg);
}

.industry-card-cta .cta-text {
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Industries CTA Wrapper */
.industries-cta-wrapper {
    margin-top: 24px;
    text-align: left;
}

/* ========== CAREERS SECTION - UPDATED STYLING ========== */
.careers-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 50%, #DEE2E6 100%);
}

/* Animated Background Elements */
.careers-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    opacity: 0.08;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(5, 7, 20, 0.15);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(8, 26, 47, 0.12);
    bottom: -80px;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.bg-square {
    width: 200px;
    height: 200px;
    background: rgba(11, 42, 61, 0.1);
    transform: rotate(45deg);
    top: 50%;
    left: 10%;
    animation: rotate 30s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-50px) translateX(0px);
    }
    75% {
        transform: translateY(-30px) translateX(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

/* Content Container */
.careers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7.5%;
    position: relative;
    z-index: 3;
}

.careers-content {
    color: #050714;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}

.careers-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #050714;
}

.careers-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #495057;
}

.careers-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: #050714;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(5, 7, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.careers-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.careers-cta:hover::before {
    width: 400px;
    height: 400px;
}

.careers-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5, 7, 20, 0.3);
}

.careers-cta span {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.careers-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* ========== CTA BANNER SECTION - PROPER ALIGNMENT ========== */
.cta-banner-section {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-banner-text {
    flex: 1;
}

.cta-banner-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-text p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-banner-button {
    flex-shrink: 0;
}

.cta-banner-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.cta-banner-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.cta-banner-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.cta-banner-btn:hover::before {
    height: 100%;
}

/* ========== FOOTER SECTION - PROPER ALIGNMENT ========== */
.footer-section {
    background: white;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0.7fr;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
    width: 90% !important;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    width: 100% !important;
}

.footer-column ul li a:hover {
    color: #050714;
}

.footer-column sup {
    font-size: 11px;
    top: -0.3em;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.social-icon:hover {
    background: #050714;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gptw-badge {
    width: 100px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-copyright {
    flex: 1;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.footer-search {
    display: flex;
    gap: 0;
    max-width: 400px;
    width: 100%;
}

.footer-search input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 0;
}

.footer-search input:focus {
    border-color: #050714;
}

.footer-search input::placeholder {
    color: #999;
}

.footer-search button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
}

.footer-search button:hover {
    background: linear-gradient(135deg, #081A2F 0%, #0B2A3D 60%, #050714 100%);
}

.footer-links {
    background: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.footer-links-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #050714;
}

.footer-links-separator {
    color: #ccc;
}

/* ========== MOBILE RESPONSIVENESS ========== */

/* 1200px */
@media (max-width: 1200px) {
    .services-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 240px;
        padding-bottom: 130px;
    }

    .hero-content h1 {
        font-size: 40px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .logo-container {
        top: 75px;
    }

    .logo-container.banner-hidden {
        top: 45px;
    }

    .menu-toggle-container {
        top: 80px;
    }

    .menu-toggle-container.banner-hidden {
        top: 50px;
    }

    .dropdown-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }
    
    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-image-wrapper {
        height: 350px;
    }
     .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .ratings-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px;
        max-width: 100%;
    }

    .rating-circle {
        width: 180px;
        height: 180px;
    }

    .rating-score {
        font-size: 44px;
    }

    .rating-total {
        font-size: 22px;
    }

    .rating-label {
        font-size: 16px;
    }

         .industries-section {
        padding: 80px 0;
    }

    .industries-header h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .industries-header .subtitle,
    .industries-header .description {
        font-size: 17px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .industry-card {
        height: 280px;
    }

    .industry-card-title {
        font-size: 24px;
    }

    .industry-card-cta .cta-icon {
        font-size: 42px;
    }

    .industry-card-cta .cta-text {
        font-size: 20px;
    }
    .careers-title {
        font-size: 44px;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* 768px */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    * {
        box-sizing: border-box;
    }

    .content-container,
    .hero-container {
        margin-left: 20px !important;
        margin-right: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
    }
    
    .webinar-banner {
        height: auto;
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .webinar-content {
        flex-direction: column;
        gap: 10px;
        padding-right: 35px;
        width: 100%;
        max-width: 100%;
    }

    .webinar-text {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .watch-btn {
        padding: 8px 20px;
        font-size: 12px;
        width: auto;
        text-align: center;
    }

    .close-banner {
        right: 12px;
        top: 10px;
    }

    .close-banner svg {
        width: 16px;
        height: 16px;
    }

    .logo-container {
        position: fixed !important;
        left: 20px !important;
        top: 100px !important;
        z-index: 900 !important;
    }

    .logo-container.banner-hidden {
        top: 20px !important;
    }

    .logo-container img {
        height: 50px !important;
        width: auto !important;
    }

    .menu-toggle-container {
        position: fixed !important;
        right: 20px !important;
        top: 100px !important;
        z-index: 900 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-toggle-container.banner-hidden {
        top: 20px !important;
    }

    .menu-toggle {
        display: flex !important;
        padding: 10px !important;
        border-radius: 4px !important;
    }

    .menu-toggle svg {
        width: 28px !important;
        height: 28px !important;
        stroke: white !important;
        stroke-width: 2.5 !important;
    }

    .sticky-navbar {
        padding: 10px 15px;
    }

    .sticky-navbar img {
        height: 45px;
    }

    .sticky-navbar .nav-right {
        gap: 12px;
    }

    .sticky-navbar .consultation-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 220px;
    }

    .hero-container {
        margin-left: 20px;
        margin-right: 20px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 16px;
        margin-top: 25px;
    }

    .dropdown-header {
        padding: 12px 15px;
    }

    .dropdown-logo img {
        height: 45px;
    }

    .dropdown-right {
        gap: 12px;
    }

    .dropdown-consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .close-menu svg {
        width: 24px;
        height: 24px;
    }

    .dropdown-container {
        margin: 0 15px;
        padding: 30px 15px;
    }

    .dropdown-content {
        gap: 0;
    }

    .dropdown-section-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-section-wrapper:last-child {
        border-bottom: none;
    }

    .dropdown-section-title {
        font-size: 18px;
        margin-bottom: 0;
        padding: 10px 0;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        transition: all 0.3s ease;
    }

    .dropdown-section-title:hover {
        opacity: 0.8;
    }

    .dropdown-section-title::after {
        content: '›';
        font-size: 28px;
        font-weight: 300;
        transform: rotate(90deg);
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown-section-wrapper.active .dropdown-section-title::after {
        transform: rotate(-90deg);
    }

    .dropdown-items-grid {
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 12px;
        animation: slideDownMobile 0.3s ease-out;
    }

    .dropdown-section-wrapper.active .dropdown-items-grid {
        display: grid;
    }

    @keyframes slideDownMobile {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item:first-child {
        border-top: none;
    }

    .dropdown-item a {
        font-size: 15px;
        padding: 14px 0;
        padding-left: 16px;
        display: block;
        transition: all 0.2s ease;
    }

    .dropdown-item a:hover {
        opacity: 1;
        padding-left: 24px;
        background: rgba(255, 255, 255, 0.05);
    }

    .social-links {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .content-section {
        padding: 40px 0;
    }
     .hero-tagline {
        font-size: 1rem;
        margin-top: 10px;
    }

    .intro-section {
        padding: 40px 0;
    }

    .intro-container {
        padding: 0 20px;
    }

    .intro-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .intro-description {
        font-size: 15px;
    }

    .mission-section {
        padding: 40px 0;
    }

    .mission-container {
        padding: 0 20px;
    }

    .mission-badge {
        font-size: 12px;
        padding: 6px 18px;
        margin-bottom: 16px;
    }

    .mission-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .mission-description {
        font-size: 15px;
    }

    .overview-section {
        padding: 40px 0;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .overview-image {
        height: 280px;
        border-radius: 6px;
    }

    .overview-content {
        padding-right: 0;
    }

    .overview-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .overview-title::after {
        width: 55px;
        height: 3px;
    }

    .overview-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .values-section {
        padding: 40px 0;
    }

    .values-container {
        padding: 0 20px;
    }

    .values-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-card {
        padding: 35px 25px;
    }

    .value-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .value-icon svg {
        width: 32px;
        height: 32px;
    }

    .value-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .value-card p {
        font-size: 14px;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-container {
        padding: 0 20px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-content {
        padding-right: 0;
        order: 2;
    }

    .story-visual {
        order: 1;
    }

    .story-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .story-title::after {
        width: 60px;
        height: 3px;
    }

    .story-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .story-image-wrapper {
        height: 320px;
    }

    .core-values-section {
        padding: 40px 0;
    }

    .core-values-container {
        padding: 0 20px;
    }

    .core-values-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .core-value-item {
        padding: 30px 25px;
    }

    .core-value-number {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .core-value-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .core-value-description {
        font-size: 14px;
    }

    .our-people-section {
        padding: 50px 0;
    }

    .our-people-container {
        padding: 0 20px;
    }

    .our-people-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .our-people-title::after {
        width: 70px;
        height: 3px;
        bottom: -10px;
    }

    .our-people-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

     .team-member {
        grid-template-columns: 160px 1fr;
        gap: 24px;
        padding: 32px 0;
      }
      .team-member-name { font-size: 1.5rem; }
    

    .what-we-offer-section {
        padding: 60px 0;
    }

    .what-we-offer-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .what-we-offer-header .subtitle {
        font-size: 16px;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image-wrapper {
        height: 300px;
    }

    .service-overlay {
        padding: 25px;
    }

    .service-icon {
        top: 25px;
        right: 25px;
        width: 44px;
        height: 44px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
        max-height: none;
        opacity: 1;
        margin-top: 8px;
    }

    .client-ratings-section {
        padding: 60px 0 !important;
        overflow: hidden !important;
    }

    .client-ratings-section .content-container {
        margin-left: 15px !important;
        margin-right: 15px !important;
        padding: 0 10px !important;
    }

    .client-ratings-section h2 {
        font-size: 26px !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }

    .star-rating {
        margin-bottom: 40px !important;
    }

    .ratings-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 8px !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .rating-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 4px !important;
    }

    .rating-circle {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 16px !important;
    }

    .rating-circle svg {
        width: 100px !important;
        height: 100px !important;
    }

    .rating-circle-bg,
    .rating-circle-fill,
    .rating-circle-dark {
        stroke-width: 16 !important;
    }

    .rating-text {
        transform: translate(-50%, -50%) scale(0.65) !important;
    }

    .rating-score {
        font-size: 32px !important;
    }

    .rating-total {
        font-size: 18px !important;
    }

    .rating-label {
        font-size: 11px !important;
        text-align: center !important;
        line-height: 1.3 !important;
        padding: 0 2px !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
     /* Industries Section */
    .industries-section {
        padding: 60px 0;
    }

    .industries-header {
        margin-bottom: 40px;
    }

    .industries-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .industries-header .subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .industries-header .description {
        font-size: 15px;
        line-height: 1.6;
    }

    /* SINGLE COLUMN LAYOUT */
    .industries-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-bottom: 16px;
    }

    .industry-card {
        height: 280px;
        width: 100%;
    }

    .industry-card-title {
        font-size: 26px;
        padding: 0 20px;
        letter-spacing: 0.8px;
        line-height: 1.2;
    }

    .industry-card-underline {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }

    .industry-card-cta .cta-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .industry-card-cta .cta-text {
        font-size: 18px;
        padding: 0 16px;
    }

    .industries-cta-wrapper {
        margin-top: 16px;
        text-align: center;
    }

    .industries-cta-wrapper .expert-cta-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .careers-section {
        padding: 50px 0;
    }

    .careers-container {
        padding: 0 20px;
    }

    .careers-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .careers-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .careers-cta {
        padding: 14px 32px;
        font-size: 15px;
    }

    .bg-circle-1 {
        width: 250px;
        height: 250px;
    }

    .bg-circle-2 {
        width: 200px;
        height: 200px;
    }

    .bg-square {
        width: 150px;
        height: 150px;
    }

    .cta-banner-section {
        padding: 40px 0;
    }

    .cta-banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-banner-text h2 {
        font-size: 24px;
    }

    .cta-banner-text p {
        font-size: 16px;
    }

    .cta-banner-btn {
        width: 100%;
    }

    .footer-section {
        padding: 60px 0 0 0;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 15px;
    }

    .footer-logo {
        order: 1;
        text-align: center;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-copyright {
        order: 2;
        font-size: 14px;
        text-align: center;
    }

    .footer-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 60px;
    }

    .footer-links-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links-separator {
        display: none;
    }
}

 @media (max-width: 520px) {
      .team-section { padding: 24px 16px 40px; }
      .team-member {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
      }
      .team-member-image {
        width: 140px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
      }
      .team-member-name { font-size: 1.4rem; }
      .team-member-bio { font-size: 0.9rem; }
    }
/* 480px */
@media (max-width: 480px) {
    .webinar-banner {
        padding: 8px 10px;
    }

    .webinar-text {
        font-size: 11px;
    }

    .watch-btn {
        padding: 7px 16px;
        font-size: 11px;
    }

    .logo-container {
        left: 15px !important;
        top: 55px;
    }

    .logo-container.banner-hidden {
        top: 35px;
    }

    .logo-container img {
        height: 38px;
    }

    .menu-toggle-container {
        right: 15px !important;
        top: 20px;
    }

    .menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    .sticky-navbar {
        padding: 8px 12px;
    }

    .sticky-navbar img {
        height: 38px;
    }

    .sticky-navbar .consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-section {
        padding-top: 140px;
    }

    .hero-container {
        margin-left: 15px;
        margin-right: 15px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .dropdown-header {
        padding: 10px 12px;
    }

    .dropdown-logo img {
        height: 38px;
    }

    .dropdown-right {
        gap: 10px;
    }

    .dropdown-consultation-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .close-menu svg {
        width: 22px;
        height: 22px;
    }

    .dropdown-container {
        margin: 0 12px;
        padding: 25px 12px;
    }

    .dropdown-section-title {
        font-size: 16px;
        padding: 3px 0;
    }

    .dropdown-section-title::after {
        font-size: 24px;
    }

    .dropdown-item a {
        font-size: 14px;
        padding: 12px 0;
        padding-left: 12px;
    }

    .dropdown-item a:hover {
        padding-left: 20px;
    }
      .hero-tagline {
        font-size: 0.9rem;
        margin-top: 8px;
        letter-spacing: 0.01em;
    }

    .intro-container {
        padding: 0 15px;
    }

    .intro-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .intro-description {
        font-size: 14px;
    }

    .mission-container {
        padding: 0 15px;
    }

    .mission-badge {
        font-size: 11px;
        padding: 5px 15px;
    }

    .mission-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .mission-description {
        font-size: 14px;
    }

    .overview-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .overview-image {
        height: 240px;
    }

    .overview-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .overview-title::after {
        width: 45px;
    }

    .overview-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .values-container {
        padding: 0 15px;
    }

    .values-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .values-grid {
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .value-icon svg {
        width: 28px;
        height: 28px;
    }

    .value-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 13px;
    }

    .story-container {
        padding: 0 15px;
    }

    .story-grid {
        gap: 28px;
    }

    .story-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .story-title::after {
        width: 50px;
    }

    .story-text p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .story-image-wrapper {
        height: 280px;
    }

    .core-values-container {
        padding: 0 15px;
    }

    .core-values-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .core-values-grid {
        gap: 20px;
    }

    .core-value-item {
        padding: 25px 20px;
    }

    .core-value-number {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .core-value-heading {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .core-value-description {
        font-size: 13px;
    }

     .our-people-section {
        padding: 40px 0;
    }

    .our-people-container {
        padding: 0 15px;
    }

    .our-people-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .our-people-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }

    .our-people-description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
    }

    .team-member-image {
        margin-bottom: 16px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-member-name {
        font-size: 18px;
    }

    .team-member-title {
        font-size: 13px;
    }

    .service-image-wrapper {
        height: 280px;
    }

    .what-we-offer-header h2 {
        font-size: 24px;
    }

    .service-overlay {
        padding: 20px;
    }

    .service-icon {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    .client-ratings-section {
        padding: 50px 0 !important;
    }

    .client-ratings-section .content-container {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .client-ratings-section h2 {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }

    .star-rating {
        margin-bottom: 30px !important;
        gap: 4px;
    }

    .star-rating svg {
        width: 24px;
        height: 24px;
    }

    .ratings-grid {
        gap: 12px 4px !important;
        padding: 0 3px !important;
    }

    .rating-circle {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 10px !important;
    }

    .rating-circle svg {
        width: 80px !important;
        height: 80px !important;
    }

    .rating-circle-bg,
    .rating-circle-fill,
    .rating-circle-dark {
        stroke-width: 12 !important;
    }

    .rating-text {
        transform: translate(-50%, -50%) scale(0.55) !important;
    }

    .rating-score {
        font-size: 28px !important;
    }

    .rating-total {
        font-size: 14px !important;
    }

    .rating-label {
        font-size: 9px !important;
        line-height: 1.15 !important;
        padding: 0 1px !important;
    }
    .industries-section {
        padding: 50px 0;
    }

    .industries-header h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .industries-header .subtitle {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .industries-header .description {
        font-size: 14px;
    }

    .industries-grid {
        gap: 14px;
    }

    .industry-card {
        height: 260px;
    }

    .industry-card-title {
        font-size: 22px;
        padding: 0 16px;
        letter-spacing: 0.6px;
    }

    .industry-card-underline {
        width: 45px;
        height: 3px;
        margin-top: 8px;
    }

    .industry-card-cta .cta-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .industry-card-cta .cta-text {
        font-size: 16px;
        letter-spacing: 0.4px;
    }

    .industries-cta-wrapper .expert-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }



    .careers-container {
        padding: 0 15px;
    }

    .careers-title {
        font-size: 28px;
    }

    .careers-description {
        font-size: 15px;
    }

    .careers-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        gap: 16px;
        padding: 0 10px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-copyright {
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .footer-search {
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 12px;
        font-size: 13px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 10px 18px;
        font-size: 16px;
        min-width: 52px;
    }
}

/* 375px */
@media (max-width: 375px) {
    .logo-container img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .client-ratings-section .content-container {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .client-ratings-section h2 {
        font-size: 22px !important;
    }

    .ratings-grid {
        gap: 10px 3px !important;
        padding: 0 2px !important;
    }

    .rating-circle {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 8px !important;
    }

    .rating-circle svg {
        width: 75px !important;
        height: 75px !important;
    }

    .rating-text {
        transform: translate(-50%, -50%) scale(0.5) !important;
    }

    .rating-score {
        font-size: 26px !important;
    }

    .rating-label {
        font-size: 8.5px !important;
        line-height: 1.1 !important;
    }
    .industries-section {
        padding: 45px 0;
    }

    .industries-header h2 {
        font-size: 22px;
    }

    .industries-header .subtitle {
        font-size: 14px;
    }

    .industries-header .description {
        font-size: 13px;
    }

    .industries-grid {
        gap: 12px;
    }

    .industry-card {
        height: 240px;
    }

    .industry-card-title {
        font-size: 20px;
        padding: 0 14px;
        letter-spacing: 0.5px;
    }

    .industry-card-underline {
        width: 40px;
        height: 2px;
        margin-top: 8px;
    }

    .industry-card-cta .cta-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .industry-card-cta .cta-text {
        font-size: 15px;
    }

    .industries-cta-wrapper .expert-cta-btn {
        padding: 11px 20px;
        font-size: 12px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 14px;
        padding: 0 8px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .footer-search {
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 10px;
        font-size: 12px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 10px 16px;
        font-size: 15px;
        min-width: 48px;
    }
}

/* 360px and below */
@media (max-width: 360px) {

    .industry-card {
        height: 220px;
    }

    .industry-card-title {
        font-size: 18px;
        padding: 0 12px;
        letter-spacing: 0.4px;
    }

    .industry-card-underline {
        width: 35px;
    }

    .industry-card-cta .cta-icon {
        font-size: 30px;
    }

    .industry-card-cta .cta-text {
        font-size: 14px;
    }
    .footer-bottom-content {
        padding: 0 5px;
    }

    .footer-search input {
        padding: 9px 8px;
        font-size: 11px;
    }

    .footer-search button {
        padding: 9px 14px;
        font-size: 14px;
        min-width: 46px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-logo img {
        height: 42px;
    }
}