* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

.page-content {
    clip-path: circle(0 at 50% 50%);
    transition: none;
}


/* ================= PRELOADER ================= */
.preloader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.preloader-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader-logo img {
    width: 260px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
}


.preloader-copy {
    text-align: center;
}

.preloader-copy p {
    opacity: 0;
    color: #0A3A63;
    text-align: center;
    margin-top: 8px;
}

.preloader-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #0A3A63;
    font-size: 0.9rem;
}

.preloader-revealer {
    position: absolute;
    width: 140vmax;
    height: 140vmax;
    background: radial-gradient(circle at center, #00b4d8, #000);
    border-radius: 50%;
    transform: scale(0);
    z-index: 1;
}
/* ================= END PRELOADER ================= */
.page-reveal-mask {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 1000;
    background: transparent;
}
.page-content {
    opacity: 0;
    transform: translateY(20px);
}


/* header section */
.header {
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 120px;
    display: flex;
    justify-content: space-between;
    background: rgba(189, 189, 189, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    border: 1px solid rgba(189, 189, 189, 0.29);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-logo-img {
    cursor: pointer !important;
}

.logo {
    color: #0A3A63;
    font-size: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    transition: color 0.3s;
}

.logo:hover {
    color: #00b4d8;
}

.navbar a{
    color: #00264D;
    font-size: 18px;
    text-decoration: none;
    margin-left: 35px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.navbar a:hover {
    border-bottom: 2px solid #fff;
    color: #245d88;
}

/* hero section */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-logo-img {
    width: 350px;
    margin-bottom: 10px;
}


.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #cbd5d800 10%, #a4e8ff00 30%, #f8fafc 100%);
    z-index: 1;
}
.home-hero-content {
    position: relative;
    color: #00264D;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}
.home-hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 30px;
}
.home-hero-main-text {
    font-family: 'Inter', sans-serif;
    font-size: 27px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.explore-btn {
    padding: 1.2rem 3rem;
    background: #00264D;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    box-shadow: 0 10px 40px rgba(40, 113, 122, 0.3);
}

.explore-btn:hover {
    background: #245d88;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgb(36, 93, 136);
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Main Content Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00b4d8;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}
/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-link {
    color: #00264D;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.card-link {
    color: #00264D;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.card-link:hover {
    color: #00264D;
    text-decoration: underline;
}
/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item h2 {
    font-size: 3rem;
    color: #245d88;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.stat-item p {
    color: #666;
    font-size: 1.1rem;
}
/* Partners Section */
.partners-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5364 100%);
    color: white;
    overflow: hidden;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: #fff;
}

/* Carousel Wrapper */
.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
}
.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #1e3a5f 0%, transparent 100%);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #1e3a5f 0%, transparent 100%);
}
/* Carousel */
.partners-carousel {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}
.partners-carousel:hover {
    animation-play-state: paused;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Partner Slide */
.partner-slide {
    flex-shrink: 0;
    width: 250px;
    height: 180px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}
.partner-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: white;
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s;
}

.partner-slide:hover img {
    transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 1200px) {
    .partner-slide {
        width: 220px;
        height: 160px;
    }
}
@media (max-width: 968px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }


    .partner-slide {
        width: 200px;
        height: 150px;
    }
}
@media (max-width: 640px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .partners-section {
        padding: 60px 20px;
    }

    .partner-slide {
        width: 180px;
        height: 130px;
        padding: 20px;
    }

}


/* Scrolled header */
.header.scrolled {
    background: #00264D;
    backdrop-filter: blur(10px);
}

.header.scrolled .navbar a {
    color: #ffffff !important;
}

.header.scrolled .header-logo-img {
    filter: brightness(100%);
}

@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
    }
    .logo {
        font-size: 24px;
    }

    .navbar {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 2rem;
    }
    .home-hero-logo-text {
        font-size: 2rem;
    }
    .explore-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .stat-item h2 {
        font-size: 2rem;
    }
    .awards-grid {
        gap: 1.5rem;
    }
    .award {
        min-width: 150px;
        padding: 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .home-hero-subtitle {
        font-size: 1.5rem;
    }

    .home-hero-logo-text {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }
    .recognition h2 {
        font-size: 2rem;
    }
    .recognition p {
        font-size: 1rem;
    }
}

/* footer section */
.footer {
  background: #070f1a;
  padding: 60px 0;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  width: 150px;
  filter: brightness(100%);
}

.footer-contact-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 20px rgba(30,64,175,0.4);
  transition: 0.2s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-3px);
}

/* LINK COLUMNS */
.footer-links {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-col h4 {
    color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin: 6px 0;
  font-size: 0.95rem;
  color: #94a3b8;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #0f172a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}

.footer-social a:hover {
  background: #1e40af;
}

.footer-social img {
  width: 18px;
}

.footer-social img.invert {
  width: 18px;
  filter: invert(100%);
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 40px;
  }
}

/* Solutions Section */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #00264D;
    margin-bottom: 80px;
    font-weight: 700;
}

.section-title .highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Problems Section */
.problems-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.problem-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s;
}

.problem-card.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.problem-card.left {
    justify-self: end;
    text-align: right;
}

.problem-card.right {
    justify-self: start;
    text-align: left;
}

.problem-bubble {
    display: inline-block;
    padding: 25px 35px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.problem-bubble:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-bubble h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.problem-bubble.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.problem-bubble.purple {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: white;
}

.problem-bubble.gray {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #1f2937;
}

.problem-bubble.light-blue {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    color: #1e3a8a;
}

.revenue {
    color: #fbbf24;
    font-weight: 800;
}

/* Center Image */
.center-image {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.phone-mockup {
    width: 300px;
    height: 550px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 40px;
    border: 12px solid #374151;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #111827;
    border-radius: 15px;
    z-index: 2;
}

.help-badge {
    position: absolute;
    top: 80px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    animation: pulse 2s infinite;
    z-index: 2;
}

.stressed-person {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

.stressed-person img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.solutions-section .container {
    position: relative;
    z-index: 2;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 400px repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.solution-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s;
}

.solution-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.solution-bubble {
    display: inline-block;
    padding: 20px 35px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.solution-bubble:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-bubble h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    color: #1e3a8a;
}

.solution-bubble.yellow {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
}

.solution-bubble.yellow-large {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
    padding: 25px 45px;
}

.solution-bubble.yellow-medium {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
    padding: 22px 40px;
}

/* Center Solution Image */
.center-solution-image {
    grid-column: 3;
    grid-row: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.robot-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: robotFloat 4s ease-in-out infinite;
}

.lightbulb-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    animation: lightPulse 2s infinite;
}

/* CTA Transform Section */
.cta-transform {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000b18 0%, #245d88 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-button {
    background: white;
    color: #00264D;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes robotFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .problems-grid {
        grid-template-columns: 1fr 350px 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr 350px 1fr;
    }
}

@media (max-width: 968px) {
    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card.left,
    .problem-card.right {
        justify-self: center;
        text-align: center;
    }

    .center-image,
    .center-solution-image {
        grid-column: 1;
        grid-row: auto;
        margin: 40px 0;
    }

    .phone-mockup {
        width: 250px;
        height: 450px;
    }

    .robot-container {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .problem-bubble,
    .solution-bubble {
        padding: 15px 25px;
    }

    .problem-bubble h3,
    .solution-bubble h3 {
        font-size: 1rem;
    }
}

/* FIXED PROBLEMS SECTION */

.problems-grid-fixed {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.left-col, 
.right-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.problem-bubble,
.problem-bubble-small {
    padding: 20px 30px;
    border-radius: 25px;
    text-align: center;
    max-width: 320px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.top-support {
    margin-bottom: 10px;
}

.problem-bubble.blue { background: linear-gradient(135deg,#3b82f6,#2563eb); color:white; }
.problem-bubble.purple { background: linear-gradient(135deg,#4f46e5,#4338ca); color:white; }
.problem-bubble.gray { background: linear-gradient(135deg,#e5e7eb,#d1d5db); color:#1f2937; }
.problem-bubble.light-blue { background: linear-gradient(135deg,#bfdbfe,#93c5fd); color:#1e3a8a; }

.revenue { color:#fbbf24; font-weight:800; }

/* center phone */
.phone-mockup {
    width: 300px;
    height: 550px;
    background: linear-gradient(135deg,#1f2937,#111827);
    border-radius: 40px;
    border: 12px solid #374151;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup img {
    max-width: 80%;
}

.help-badge {
    position: absolute;
    top: 80px;
    background: linear-gradient(135deg,#f97316,#ea580c);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}

/* RESPONSIVE ONLY FOR PROBLEMS SECTION */
@media (max-width: 968px) {

    .problems-grid-fixed {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .left-col,
    .right-col {
        align-items: center;
    }

    .center-col { order: -1; }

    .problem-bubble,
    .problem-bubble-small {
        max-width: 300px;
    }
}


/*FIXED SOLUTIONS SECTION – CLEAN GRID*/

.solutions-grid-fixed {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.solutions-left,
.solutions-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.solutions-center {
    display: flex;
    justify-content: center;
}

.solution-bubble {
    padding: 20px 35px;
    border-radius: 25px;
    background: linear-gradient(135deg,#fde047,#facc15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
    max-width: 320px;
    text-align: center;
    font-weight: 700;
}

.robot-container img {
    width: 300px;
    animation: float 3s ease-in-out infinite;
}

/* MOBILE VERSION */
@media (max-width: 968px) {

    .solutions-grid-fixed {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solutions-left,
    .solutions-right {
        align-items: center;
    }

    .solutions-center {
        order: -1; /* robot comes first */
    }

    .solution-bubble {
        max-width: 300px;
    }

    .robot-container img {
        width: 220px;
    }
}

/* MATCH SOLUTIONS SECTION BACKGROUND TO PROBLEMS EXACTLY */
.solutions-section {
    padding: 120px 20px; /* increased to add space under phone */
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}


.solutions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.solutions-section .container {
    position: relative;
    z-index: 2;
}

.section:last-of-type,
.partners-section:last-of-type,
.stats:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

