* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #223964;
    --secondary-color: #ff5f00;
    --accent-color: #f19a64;
    --light-blue: #b0c6ed;
    --light-gray: #d7d7d7;
    --peach: #eeb590;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #223964;
    --text-light: #666666;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Partners Section */
.partners {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.partners-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: #ff8c00;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: #1e3a8a;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #ff8c00;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.partners-left {
    flex: 1;
    text-align: center;
}

.partners-slider {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.slide.active img {
    filter: grayscale(0%);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff8c00;
    transform: scale(1.2);
}

.partners-right {
    flex: 1;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(34, 57, 100, 0.1);
}

.nav-link.active,
.nav-link:hover {
    color: var(--secondary-color);
}

.nav-btn.signup {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.nav-btn.signup:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-2px);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.partners-features {
    list-style: none;
    margin-bottom: 40px;
}

.partners-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.partners-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.partners-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partners-btn:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
    transform: translateY(-2px);
}

/* Success Stories Section */
.success-stories {
    padding: 120px 0;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.success-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.animated-lines {
    position: relative;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    opacity: 0.3;
}

.line-1 {
    width: 2px;
    height: 100%;
    left: 20%;
    animation: slideUpDown 8s ease-in-out infinite;
}

.line-2 {
    width: 100%;
    height: 2px;
    top: 30%;
    animation: slideLeftRight 10s ease-in-out infinite;
}

.line-3 {
    width: 2px;
    height: 100%;
    right: 25%;
    animation: slideUpDown 6s ease-in-out infinite reverse;
}

@keyframes slideUpDown {
    0%, 100% { transform: translateY(-100px); }
    50% { transform: translateY(100px); }
}

@keyframes slideLeftRight {
    0%, 100% { transform: translateX(-100px); }
    50% { transform: translateX(100px); }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.success-stories .section-subtitle {
    color: #ff8c00;
}

.success-stories .section-title {
    color: white;
    margin-bottom: 20px;
}

.success-stories .section-description {
    color: #ccc;
    font-size: 1.2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.story-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
    animation-play-state: paused;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,140,0,0.2);
    border-color: rgba(255,140,0,0.3);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 95, 0, 0.9), rgba(241, 154, 100, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.9;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.story-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--peach));
    transform: translateY(-2px);
}

.stories-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(45deg, rgba(255,140,0,0.1), rgba(30,58,138,0.1));
    border-radius: 20px;
    border: 1px solid rgba(255,140,0,0.2);
}

.stories-cta h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stories-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 57, 100, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,140,0,0.4);
}

/* About Intro Section */
.about-intro {
    padding: 100px 0 !important;
    position: relative !important;
    background: linear-gradient(45deg, #0f0c29 0%, #24243e 50%, #302b63 100%);
    overflow: hidden;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.about-intro-left {
    padding-right: 40px;
}

.about-intro .section-subtitle {
    color: var(--accent-color);
}

.about-intro .section-title {
    color: var(--white);
}

.about-intro .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.about-intro-right {
    position: relative;
}

.intro-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 95, 0, 0.3);
    max-width: 100%;
}

.intro-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.intro-video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.intro-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.intro-video-overlay:hover {
    opacity: 0.7;
}

.intro-play-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 95, 0, 0.3);
}

.intro-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 95, 0, 0.5);
}

.about-intro-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(255, 95, 0, 0.3);
}

.about-intro-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 95, 0, 0.4);
}

.about-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-intro-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 95, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(176, 198, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(238, 181, 144, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.triangle,
.circle,
.square {
    position: absolute;
    opacity: 0.1;
}

.triangle {
    width: 0;
    height: 0;
}

.triangle-1 {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--secondary-color);
    top: 10%;
    right: 20%;
    animation: floatRotate 12s ease-in-out infinite;
}

.triangle-2 {
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid var(--light-blue);
    bottom: 15%;
    left: 15%;
    animation: floatRotate 15s ease-in-out infinite reverse;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--accent-color), var(--peach));
    border-radius: 50%;
    top: 50%;
    right: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.square-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--light-blue), var(--primary-color));
    top: 20%;
    left: 10%;
    animation: morphSquare 10s ease-in-out infinite;
    border-radius: 15px;
}

.about-intro-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        transparent 100%);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes floatRotate {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.15;
    }
}

@keyframes morphSquare {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        border-radius: 15px;
        opacity: 0.1;
    }
    33% { 
        transform: rotate(120deg) scale(1.1);
        border-radius: 50%;
        opacity: 0.15;
    }
    66% { 
        transform: rotate(240deg) scale(0.9);
        border-radius: 25px;
        opacity: 0.12;
    }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* References Section */
.references {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.references .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.references .section-subtitle {
    color: var(--secondary-color);
}

.references .section-title {
    color: var(--primary-color);
}

.references .section-description {
    color: var(--text-light);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.reference-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(34, 57, 100, 0.05);
    position: relative;
    overflow: hidden;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reference-card:hover::before {
    transform: scaleX(1);
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
    border-color: rgba(255, 95, 0, 0.2);
}

.reference-logo {
    text-align: center;
    margin-bottom: 25px;
}

.reference-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.reference-card:hover .reference-logo img {
    filter: grayscale(0%);
}

.reference-content {
    text-align: center;
}

.reference-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.reference-text::before {
    content: '"';
    font-size: 60px;
    color: var(--accent-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: serif;
}

.reference-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.reference-author span {
    color: var(--text-light);
    font-size: 14px;
}

.references-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 57, 100, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 57, 100, 0.15);
    border-color: var(--accent-color);
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .stat-text {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.references-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0.1;
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.icon-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Company Values Section */
.company-values {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
    border-color: var(--secondary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Tech Stack Section */
.tech-stack {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #302b63 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.tech-left .section-subtitle {
    color: var(--accent-color);
}

.tech-left .section-title {
    color: white;
}

.tech-left .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.tech-feature i {
    color: var(--secondary-color);
    font-size: 20px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.tech-item span {
    color: white;
    font-weight: 500;
}

/* Team Expertise Section */
.team-expertise {
    padding: 120px 0;
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.expertise-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.1);
}

.expertise-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.expertise-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.expertise-desc {
    color: var(--text-light);
    font-size: 14px;
}

.certifications {
    text-align: center;
    margin-top: 80px;
}

.certifications h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cert-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact CTA Section */
.contact-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.contact-left h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.method-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.method-info span {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%;
}

.contact-form h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 95, 0, 0.2);
}

.form-group select:hover {
    border-color: rgba(255, 95, 0, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border: none;
    font-size: 16px;
}

.form-group select option:hover {
    background: var(--secondary-color);
}

.form-group select option:checked {
    background: var(--secondary-color);
    color: white;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 95, 0, 0.3);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 25%, 
        var(--light-blue) 50%, 
        var(--accent-color) 75%, 
        var(--secondary-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.footer-section h4.footer-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 95, 0, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.contact-detail span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .partners-slider {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-description {
        text-align: center;
    }
    
    .partners-features {
        text-align: center;
    }
    
    .partners-btn {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .partners-slider {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .success-stories {
        padding: 80px 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .story-card {
        animation-delay: 0.2s;
    }
    
    .story-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stories-cta {
        padding: 40px 20px;
    }
    
    .stories-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .story-image {
        height: 200px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .stories-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .line-1, .line-2, .line-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .references {
        padding: 80px 0;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .reference-card {
        padding: 30px 25px;
    }
    
    .references-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 15px;
    }
    
    .stat-box .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .references-stats {
        grid-template-columns: 1fr;
    }
    
    .reference-card {
        padding: 25px 20px;
    }
    
    .reference-text {
        font-size: 15px;
    }
    
    .floating-icons .icon-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .company-values,
    .team-expertise,
    .contact-cta {
        padding: 80px 0;
    }
    
    .tech-stack {
        padding: 80px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cert-logos {
        gap: 20px;
    }
    
    .cert-logos img {
        height: 50px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-left h2 {
        font-size: 28px;
    }
    
    .contact-left p {
        font-size: 16px;
    }
}

/* Social sidebar colors */
.social-link {
    background: rgba(255, 95, 0, 0.1);
    border: 1px solid rgba(255, 95, 0, 0.3);
    color: var(--white);
}

.social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Floating shapes colors */
.shape {
    background: linear-gradient(135deg, var(--peach), var(--accent-color));
    opacity: 0.1;
}

.shape:nth-child(2) {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-intro {
        padding: 80px 0;
    }
    
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
        /* Change the order: video first, then text */
        grid-template-areas: 
            "video"
            "text";
    }
    
    .about-intro-left {
        padding-right: 0;
        text-align: center;
        /* Place text in the second position */
        grid-area: text;
        order: 2;
    }
    
    .about-intro-right {
        /* Place video in the first position */
        grid-area: video;
        order: 1;
    }
    
    .intro-video {
        height: 280px;
    }
    
    .intro-play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-content {
        gap: 40px;
    }
    
    .intro-video {
        height: 220px;
    }
    
    .intro-play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .about-intro-left {
        padding-right: 0;
    }
    
    .about-intro-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .geometric-shapes > * {
        display: none;
    }
}
@media (max-width: 768px) {
    .partners-left {
        width: 100% !important;
    }

    .partners-content {
        flex-direction: column;
    }

    .partners-right {
        width: 100% !important;
        margin-top: 2rem;
    }
}