/* Global Variables */
:root {
    --primary-blue: #0056D2;
    --dark-blue: #1E40AF;
    --light-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --bg-hero: #1E3A8A;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --bg-light: #F3F4F6;
    --border-gray: #D1D5DB;
    --purple-gradient: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Bricolage Grotesque', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--white);
}

.font-display {
    font-family: var(--font-display);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}


.btn-start-now {
    background: var(--white);
    color: #1E40AF;
    font-size: 1.125rem;
    padding: 14px 40px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.btn-start-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-white-blue {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.25rem;
    padding: 16px 48px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-white-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-start {
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 8px;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-submit {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 110px;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(5px);
}

header.scrolled {
    background: rgba(30, 58, 138, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;

}

.nav-links a.active {
    border-bottom-color: var(--white);
}

.nav-links a:hover {
    border-bottom-color: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.3s;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    padding: 11px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('images/home-bg.png') no-repeat center center/cover;
    padding-top: 140px;
    padding-bottom: 80px;
    padding-left: 110px;
    padding-right: 110px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: all 0.5s ease;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    transition: all 0.5s ease;
}

.cta-container {
    margin-bottom: 64px;
    transition: all 0.5s ease;
}

.cta-container .btn-start-now {
    font-size: 1.5rem;
    padding: 7px 20px;
}


/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    top: 90px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card {
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    position: relative;
    text-align: left;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    z-index: 5;
    max-width: 85%;
    white-space: nowrap;
}

.card-light {
    background: url('images/7.png') no-repeat center bottom/cover;
    color: #1E40AF;
}

.card-dark-blue {
    background: url('images/reve.png') no-repeat center bottom/cover;
    color: var(--white);
}

.card-black {
    background: url('images/Mask group.png') no-repeat center bottom/cover;
    color: var(--white);
}

/* Hover Effects - Exact as requested */
.hero:hover .hero-subtitle {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero:hover .hero-cards {
    top: -20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero:hover .hero-card {
    transform: translateY(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero:hover h1 {
    margin-bottom: 40px;
    transition: all 0.5s ease;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title.dark {
    color: var(--text-dark);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-subtitle.gray {
    color: var(--text-gray);
}

/* Radial Section - Customer Experience */
.radial-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.radial-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

.radial-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Main container with background image */
.features-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background layer - customer-experience.png with all text/icons */
.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/customer-experience.png') no-repeat center center/contain;
    z-index: 1;
}

/* Eclipse layer - behind girl, in front of bg */
.center-eclipse {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    z-index: 2;
    pointer-events: none;
}

.center-eclipse img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Girl layer - on top */
.center-girl {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.center-girl img {
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.05) brightness(1.02);
}

/* Alternative: if mix-blend-mode doesn't work well, try this */
.center-girl img.no-bg {
    background: transparent !important;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Hide the old column structure */
.features-col {
    display: none;
}

/* Transform Section */
.transform-section {
    padding: 80px 0;
    background: var(--white);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.tag {
    padding: 5px 28px;
    border-radius: 50px;
    border: 1.5px solid #D1D5DB;
    color: #9CA3AF;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--white);
    white-space: nowrap;
}

.tag:hover {
    background-color: #6ca8f6;
    color: white;
}

.tag.active {
    background: #3B82F6;
    color: var(--white);
    border-color: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.foundation-box {
    background: radial-gradient(circle at center, #FFFFFF 0%, #236ADC 180%);
    color: #000000;
    padding: 56px 80px;
    border-radius: 24px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.foundation-box p {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

/* Trusted Section */
.trusted-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ind-card {
    border-radius: 20px;
    min-height: 260px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ind-card-1 {
    background: url('images/Group 427319077.png') no-repeat center center/cover;
}

.ind-card-2 {
    background: url('images/Group 427319078.png') no-repeat center center/cover;
}

.ind-card-3 {
    background: url('images/Group 427319079.png') no-repeat center center/cover;
}

.ind-card-4 {
    background: url('images/Group 427319079 (1).png') no-repeat center center/cover;
}

.ind-card-5 {
    background: url('images/Group 427319081.png') no-repeat center center/cover;
}

.ind-card-6 {
    background: url('images/Group 427319082.png') no-repeat center center/cover;
}

.ind-content {
    position: relative;
    z-index: 2;
}

.ind-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ind-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

/* Excellence Section */
.excellence-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cert-item {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 140px;
    max-height: 140px;
    mix-blend-mode: multiply;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.testimonials-section .container {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 0;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 14px;
    transition: all 0.3s;
    text-align: left;
    height: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.testimonial-category {
    color: #1E40AF;
    font-weight: 700;
    font-size: 0.75rem;
}

.stars {
    display: flex;
    gap: 1px;
    font-size: 0.65rem;
}

.star-filled {
    color: #FBBF24;
}

.star-empty {
    color: #E5E7EB;
}

.testimonial-text {
    color: #374151;
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 8px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    color: #1E40AF;
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: auto;
    padding-top: 6px;
    flex-shrink: 0;
}

/* Partner Section */
.partner-section {
    padding: 60px 0;
    background: linear-gradient(80deg, #f7f9fe 0%, #cadbf6 15%, #598ee5 35%, #598ee5 55%, #F0F8FF 110%);
    border-radius: 16px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.partner-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 0 50px;
}

.partner-left {
    flex: 0 0 380px;
    padding-top: 10px;
}

.partner-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.partner-left p {
    color: #4B5563;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
    max-width: 360px;
}

.success-link {
    color: #2563EB;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    transition: gap 0.3s;
}

.success-link::after {
    content: '→';
    font-size: 0.8rem;
    font-weight: 600;
}

.success-link:hover {
    gap: 8px;
}

.partner-right {
    flex: 1;
    padding-top: 5px;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
    margin: 0;
}

.form-control {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    /* Better standard size */
    background: rgba(255, 255, 255, 0.9);
    color: #1F2937;
    /* Darker text for input */
    transition: all 0.3s;
    font-family: var(--font-main);
    height: 44px;
}

.form-control::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

.form-control:focus {
    outline: none;
    background: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Form Icons */
.form-group.icon-user .form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px;
}

.form-group.icon-phone .form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px;
}

.form-group.icon-email .form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'%3E%3C/rect%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px;
}

.form-group.icon-briefcase .form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px;
}

.form-group.icon-globe .form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px;
}

.form-group.icon-select {
    position: relative;
}

.form-group.icon-select .form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%239CA3AF' stroke='none'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 14px center, right 12px center;
    background-size: 16px, 10px;
    padding-right: 90px;
}

.size-range {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 0.75rem;
    pointer-events: none;
}

/* Form Message Styles */
.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* Validation Styles */
.form-control.error {
    border: 1px solid #EF4444 !important;
    background-color: #FEF2F2;
}

.form-group.error::after {
    content: '!';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #EF4444;
    font-weight: bold;
    pointer-events: none;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-wrapper {
        min-height: 550px;
    }

    .center-eclipse {
        width: 450px;
        height: 450px;
    }

    .center-girl {
        width: 420px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .tag-cloud {
        max-width: 900px;
        gap: 10px;
    }

    .tag {
        padding: 10px 24px;
        font-size: 0.875rem;
    }

    .foundation-box {
        padding: 48px 60px;
        max-width: 800px;
    }

    .foundation-box p {
        font-size: 1.0625rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ind-card {
        min-height: 240px;
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .features-wrapper {
        min-height: 450px;
    }

    .center-eclipse {
        width: 350px;
        height: 350px;
    }

    .center-girl {
        width: 320px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .partner-flex {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }

    .partner-left {
        flex: 1;
        text-align: center;
    }

    .partner-left h2 {
        font-size: 2rem;
    }

    .partner-left p {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .radial-section .section-title {
        font-size: 1.75rem;
    }

    .features-wrapper {
        min-height: 350px;
    }

    .center-eclipse {
        width: 280px;
        height: 280px;
    }

    .center-girl {
        width: 260px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-card {
        height: 240px;
    }

    .hero-card h3 {
        font-size: 1.375rem;
    }

    .transform-section {
        padding: 60px 0;
    }

    .tag-cloud {
        gap: 8px;
        margin-bottom: 32px;
    }

    .tag {
        padding: 8px 20px;
        font-size: 0.8125rem;
    }

    .foundation-box {
        padding: 40px 32px;
        border-radius: 20px;
    }

    .foundation-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .trusted-section {
        padding: 60px 0 80px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .ind-card {
        min-height: 220px;
        padding: 24px;
    }

    .ind-card h3 {
        font-size: 1.375rem;
    }

    .ind-card p {
        font-size: 0.875rem;
    }

    .excellence-section {
        padding: 60px 0;
    }

    .cert-grid {
        gap: 20px;
        margin-top: 32px;
    }

    .cert-item {
        width: 140px;
        height: 140px;
        padding: 15px;
    }

    .cert-item img {
        max-width: 100px;
        max-height: 100px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partner-section {
        margin: 0 16px;
        max-width: calc(100% - 32px);
        padding: 40px 0;
    }

    .partner-flex {
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .partner-left h2 {
        font-size: 1.75rem;
    }

    /* Fix: Ensure input text is legible and usable on mobile */
    .form-control {
        font-size: 16px;
        /* Prevents iOS zoom */
        color: #111827;
        /* Dark text for visibility */
    }

    .form-group {
        position: relative;
        z-index: 20;
        /* Ensure inputs are clickable */
    }

    .btn-submit {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tag {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .foundation-box {
        padding: 32px 24px;
    }

    .foundation-box p {
        font-size: 0.9375rem;
    }

    .cert-grid {
        gap: 16px;
    }

    .cert-item {
        width: 120px;
        height: 120px;
        padding: 12px;
    }

    .cert-item img {
        max-width: 90px;
        max-height: 90px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
    }
}