/* Custom Styles for Platinum Software Templates */

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 150px 0 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffdee9 0, #c8fff4 100%);
    opacity: 0.85;
}

.page-header__inner {
    position: relative;
    z-index: 5;
}

.page-header__inner h2 {
    color: #050748;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.thm-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.thm-breadcrumb li {
    list-style: none;
    color: #666;
    font-size: 16px;
}

.thm-breadcrumb li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thm-breadcrumb li a:hover {
    color: #0056b3;
}

.thm-breadcrumb li span {
    color: #666;
}

/* Service Hero Section */
.service-hero {
    padding: 100px 0;
    background: #fff;
}

.service-hero__content {
    padding-right: 30px;
}

.service-hero__text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-hero__features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #007bff;
    font-size: 20px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.service-hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero__image {
    text-align: center;
}

.service-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Gradient background for service cards */
.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.service-card .service-icon {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2rem;
}
.service-card h4, .service-card p, .service-card a {
    color: #fff;
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
}

.service-card__icon i {
    color: #fff;
    font-size: 30px;
}

.service-card h3 {
    color: #050748;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Stats Sections */
.security-stats,
.support-stats,
.design-stats,
.python-stats,
.ai-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.stat-card__icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.stat-card__content {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

.why-choose-content {
    padding-right: 30px;
}

.why-choose-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-choose-point:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.why-choose-point .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-point .icon i {
    color: #fff;
    font-size: 20px;
}

.why-choose-point .content h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-choose-point .content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    text-align: center;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffdee9 0, #c8fff4 100%);
    text-align: center;
}

.cta-content h2 {
    color: #050748;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.thm-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.thm-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}

.thm-btn--outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.thm-btn--outline:hover {
    background: #007bff;
    color: #fff;
}

/* Section Title Styles */
.section-title {
    margin-bottom: 50px;
}

.section-title__tagline {
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title__title {
    color: #050748;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-hero__content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .service-hero__buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title__title {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .page-header__inner h2 {
        font-size: 32px;
    }
    
    .section-title__title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card__icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .why-choose-point {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-point .icon {
        margin: 0 auto 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Animation for Stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: countUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover .service-card__icon {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Additional Utility Classes */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pad-tb {
    padding: 100px 0;
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.slideInLeft {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Styles */
.icon-startup::before { content: "🚀"; }
.icon-team::before { content: "👥"; }
.icon-deal::before { content: "🤝"; }
.icon-computers::before { content: "💻"; }
.icon-software-development::before { content: "⚙️"; }
.icon-mobile-app::before { content: "📱"; }
.icon-web-design::before { content: "🎨"; }
.icon-ai-ml::before { content: "🤖"; }
.icon-robotics::before { content: "🔧"; }
.icon-cybersecurity::before { content: "🔒"; }
.icon-testing::before { content: "🧪"; }
.icon-right-arrow::before { content: "→"; }

/* About One Section */
.about-one {
    padding: 100px 0;
    background: #fff;
}

.about-one__left {
    position: relative;
}

.about-one__img-box {
    position: relative;
    margin-bottom: 30px;
}

.about-one__img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-one__img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-one__img:hover img {
    transform: scale(1.05);
}

.about-one__small-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-one__small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-one__shape-1,
.about-one__shape-2 {
    position: absolute;
    z-index: -1;
}

.about-one__shape-1 {
    top: -20px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.about-one__shape-2 {
    bottom: -20px;
    right: -20px;
    animation: float 3s ease-in-out infinite reverse;
}

.float-bob-x {
    animation: floatX 3s ease-in-out infinite;
}

.float-bob-y {
    animation: floatY 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatX {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-10px); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-one__right {
    padding-left: 50px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title__tagline {
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title__title {
    color: #050748;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-one__text-1 {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-one__points-box {
    margin-bottom: 40px;
}

.about-one__points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-one__points li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-one__points li:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.about-one__points .icon {
    margin-right: 15px;
    color: #007bff;
    font-size: 20px;
}

.about-one__points .text p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.about-one__bottom {
    display: flex;
    align-items: center;
    gap: 30px;
}

.thm-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.thm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    color: white;
    text-decoration: none;
}

.about-one__video-link {
    position: relative;
}

.about-one__video-link .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.about-one__video-link:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

/* Counter Section */
.counter-one {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.counter-one__single {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.counter-one__single:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.counter-one__icon {
    margin-bottom: 20px;
    font-size: 50px;
    color: #ffd700;
}

.counter-one__count-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.counter-one__count-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.counter-one__plus {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin-left: 5px;
}

.counter-one__text {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* About Two Section */
.about-two {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-two__left {
    padding-right: 50px;
}

.about-two__text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-two__points-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-two__points-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-two__points-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-two__points-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.about-two__points-item .text h4 {
    color: #050748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-two__points-item .text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-one {
    padding: 100px 0;
    background: white;
}

.team-one__single {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-one__single:hover {
    transform: translateY(-10px);
}

.team-one__img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-one__img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.1);
}

.team-one__social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.9), rgba(0,86,179,0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-one__single:hover .team-one__social {
    transform: translateY(0);
}

.team-one__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-one__social a:hover {
    background: white;
    color: #007bff;
    transform: scale(1.1);
}

.team-one__content {
    padding: 20px 0;
}

.team-one__name {
    color: #050748;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-one__sub-title {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-one__text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-one {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-one__inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-one__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-one__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-one__btn-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-one__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-one__btn--white {
    background: white;
    color: #007bff;
}

.cta-one__btn--white:hover {
    background: #f8f9fa;
    color: #0056b3;
    text-decoration: none;
}

.cta-one__btn--transparent {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-one__btn--transparent:hover {
    background: white;
    color: #007bff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-one__right {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-two__left {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .section-title__title {
        font-size: 28px;
    }
    
    .cta-one__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .page-header__inner h2 {
        font-size: 32px;
    }
    
    .section-title__title {
        font-size: 24px;
    }
    
    .about-one__small-img {
        width: 150px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
    
    .cta-one__title {
        font-size: 28px;
    }
    
    .cta-one__btn-box {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Utility Classes */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pad-tb {
    padding: 100px 0;
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.slideInLeft {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Fonts */
.icon-startup::before {
    content: "🚀";
    font-size: 40px;
}

.icon-team::before {
    content: "👥";
    font-size: 40px;
}

.icon-deal::before {
    content: "🤝";
    font-size: 40px;
}

.icon-computers::before {
    content: "💻";
    font-size: 40px;
}

/* Services Section Styles */
.services-one {
    padding: 100px 0;
    background: #fff;
}

.services-one__single {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3.4px 2.7px -30px rgba(0,0,0,.059), 0 8.2px 8.9px -30px rgba(0,0,0,.071), 0 25px 40px -30px rgba(0,0,0,.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-one__single:hover {
    transform: translateY(-10px);
}

.services-one__single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff1f8e 0, #ffbd84 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-one__single:hover::before {
    transform: scaleX(1);
}

.services-one__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff1f8e 0, #ffbd84 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.services-one__icon span {
    color: #fff;
    font-size: 35px;
}

.services-one__title {
    margin-bottom: 20px;
}

.services-one__title a {
    color: #050748;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-one__title a:hover {
    color: #ff1f8e;
}

.services-one__text {
    color: #6a6a8e;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
}

.services-one__arrow {
    text-align: right;
}

.services-one__arrow a {
    color: #ff1f8e;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.services-one__arrow a:hover {
    transform: translateX(5px);
}

/* Services Two Section */
.services-two {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3fbff 0, #fffdf6 100%);
}

.services-two__left {
    padding-right: 50px;
}

.services-two__text {
    color: #6a6a8e;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 40px;
}

.services-two__points {
    margin-bottom: 40px;
}

.services-two__points li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.services-two__points .icon {
    width: 40px;
    height: 40px;
    background: #ff1f8e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.services-two__points .icon i {
    color: #fff;
    font-size: 16px;
}

.services-two__points .text p {
    color: #050748;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.services-two__right {
    position: relative;
}

.services-two__img-box {
    position: relative;
}

.services-two__img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3.4px 2.7px -30px rgba(0,0,0,.059), 0 8.2px 8.9px -30px rgba(0,0,0,.071), 0 25px 40px -30px rgba(0,0,0,.2);
}

.services-two__img img {
    width: 100%;
    height: auto;
    display: block;
}

.services-two__shape-1,
.services-two__shape-2 {
    position: absolute;
    z-index: -1;
}

.services-two__shape-1 {
    top: -20px;
    left: -20px;
}

.services-two__shape-2 {
    bottom: -20px;
    right: -20px;
}

/* Services Three Section */
.services-three {
    padding: 100px 0;
    background: #fff;
}

.services-three__single {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3.4px 2.7px -30px rgba(0,0,0,.059), 0 8.2px 8.9px -30px rgba(0,0,0,.071), 0 25px 40px -30px rgba(0,0,0,.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.services-three__single:hover {
    transform: translateY(-10px);
}

.services-three__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff1f8e 0, #ffbd84 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.services-three__icon span {
    color: #fff;
    font-size: 35px;
}

.services-three__title {
    margin-bottom: 20px;
}

.services-three__title a {
    color: #050748;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-three__title a:hover {
    color: #ff1f8e;
}

.services-three__text {
    color: #6a6a8e;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
}

.services-three__points {
    text-align: left;
}

.services-three__points li {
    color: #6a6a8e;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.services-three__points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff1f8e;
    font-weight: bold;
}

/* Animation Classes */
.float-bob-x {
    animation: float-bob-x 6s ease-in-out infinite;
}

.float-bob-y {
    animation: float-bob-y 6s ease-in-out infinite;
}

@keyframes float-bob-x {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

@keyframes float-bob-y {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* Utility Classes */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Video Popup Styles */
.video-popup {
    text-decoration: none;
}

/* Wow Animation Support */
.wow {
    visibility: hidden;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Icon Font Support */
.icon-startup::before { content: "🚀"; }
.icon-team::before { content: "👥"; }
.icon-deal::before { content: "🤝"; }
.icon-computers::before { content: "💻"; }
.icon-software-development::before { content: "⚙️"; }
.icon-mobile-app::before { content: "📱"; }
.icon-web-design::before { content: "🎨"; }
.icon-ai-ml::before { content: "🤖"; }
.icon-robotics::before { content: "🔧"; }
.icon-cybersecurity::before { content: "🔒"; }
.icon-testing::before { content: "🧪"; }
.icon-right-arrow::before { content: "→"; }

/* Approach Page Styles */
.approach-one {
    padding: 100px 0;
    background: #fff;
}

.approach-one__left {
    padding-right: 50px;
}

.approach-one__text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.approach-one__points-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-one__points-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.approach-one__points-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.approach-one__points-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.approach-one__points-item .text h4 {
    color: #050748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-one__points-item .text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.approach-one__right {
    position: relative;
}

.approach-one__img-box {
    position: relative;
    margin-bottom: 30px;
}

.approach-one__img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.approach-one__img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.approach-one__img:hover img {
    transform: scale(1.05);
}

.approach-one__shape-1,
.approach-one__shape-2 {
    position: absolute;
    z-index: -1;
}

.approach-one__shape-1 {
    top: -20px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.approach-one__shape-2 {
    bottom: -20px;
    right: -20px;
    animation: float 3s ease-in-out infinite reverse;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.process-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process-item:hover::before {
    transform: scaleX(1);
}

.process-item__icon {
    position: relative;
    margin-bottom: 25px;
}

.process-item__icon .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 32px;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
}

.process-item__content h4 {
    color: #050748;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-item__content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.process-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-item__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.value-item:hover .value-item__icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.value-item h4 {
    color: #050748;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Approach Page */
@media (max-width: 991px) {
    .approach-one__left {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .process-item {
        padding: 30px 20px;
    }
    
    .value-item {
        padding: 30px 15px;
    }
}

@media (max-width: 767px) {
    .process-item__icon .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .value-item__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-item__content h4 {
        font-size: 18px;
    }
    
    .value-item h4 {
        font-size: 18px;
    }
}

/* Quote Form Page Styles */
.quote-form-section {
    padding: 100px 0;
    background: #fff;
}

.quote-form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-form__text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.quote-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #050748;
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.checkbox-wrapper label {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Quote Sidebar */
.quote-sidebar {
    position: sticky;
    top: 100px;
}

.quote-info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.quote-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quote-info-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.quote-info-card h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote-info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
}

.contact-info-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-item__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item__icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.feature-item h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #28a745;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #c3e6cb;
}

.success-message h4 {
    color: #155724;
    margin-bottom: 10px;
}

/* Loading State */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-loading .thm-btn {
    position: relative;
}

.form-loading .thm-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Quote Form */
@media (max-width: 991px) {
    .quote-form-wrapper {
        padding: 30px;
    }
    
    .quote-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .contact-info-box {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .quote-form-wrapper {
        padding: 20px;
    }
    
    .quote-info-card {
        padding: 20px 15px;
    }
    
    .contact-info-box {
        padding: 20px 15px;
    }
    
    .feature-item {
        padding: 30px 15px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    position: relative;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-dismissible {
    padding-right: 50px;
}

.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 15px;
    background: transparent;
    border: 0;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
}

.btn-close:hover {
    opacity: 0.75;
}

.alert ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.alert li {
    margin-bottom: 5px;
}

/* Form Validation Feedback */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #28a745;
}

/* ===== BECOME PARTNER PAGE STYLES ===== */

/* Partner Intro Section */
.partner-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-intro__left {
    padding-right: 40px;
}

.partner-intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.partner-intro__points {
    margin-top: 30px;
}

.partner-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.partner-point .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.partner-point .icon i {
    font-size: 24px;
    color: white;
}

.partner-point .content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.partner-point .content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.partner-intro__right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-intro__img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.partner-intro__img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-intro__img:hover img {
    transform: scale(1.05);
}

/* Partnership Types Section */
.partnership-types {
    padding: 80px 0;
    background: white;
}

.partnership-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.partnership-card.featured {
    border-color: #007bff;
    transform: scale(1.05);
}

.partnership-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.partnership-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.partnership-card__icon i {
    font-size: 32px;
    color: white;
}

.partnership-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.partnership-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.partnership-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.partnership-benefits li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 16px;
}

.partnership-card__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.commission {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-item__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-item__icon i {
    font-size: 28px;
    color: white;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Partner Form Section */
.partner-form-section {
    padding: 80px 0;
    background: white;
}

.partner-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.partner-form__text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.partner-form .form-group {
    margin-bottom: 25px;
}

.partner-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.partner-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.partner-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.checkbox-wrapper label {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.partner-form .thm-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-form .thm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,123,255,0.3);
}

/* Partner Sidebar */
.partner-sidebar {
    position: sticky;
    top: 100px;
}

.partner-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-info-card:hover {
    transform: translateY(-5px);
}

.partner-info-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partner-info-card__icon i {
    font-size: 24px;
    color: white;
}

.partner-info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.partner-info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-info-box {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,123,255,0.2);
}

.contact-info-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding-left: 10px;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item span:first-child {
    display: block;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span:last-child {
    color: #050748;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partner-intro__left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .partner-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .partnership-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .partner-form-wrapper {
        padding: 30px 20px;
    }
    
    .partner-point {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-point .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .partnership-card {
        padding: 30px 20px;
    }
    
    .benefit-item {
        padding: 30px 15px;
    }
}

/* ===== RECOGNITION PAGE STYLES ===== */

/* Recognition Intro Section */
.recognition-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.recognition-intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: white;
}

.award-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.award-card.featured {
    border-color: #007bff;
    transform: scale(1.05);
}

.award-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.award-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.award-card__icon i {
    font-size: 32px;
    color: white;
}

.award-card__year {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.award-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.award-card__organization {
    font-size: 16px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-card__description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.award-card__category .badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certification-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.certification-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.certification-card__icon i {
    font-size: 28px;
    color: white;
}

.certification-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.certification-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.certification-card__status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.validity {
    font-size: 12px;
    color: #666;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 0;
    background: white;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(0,123,255,0.2);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-year {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Client Recognition Section */
.client-recognition {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: #007bff;
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card__rating {
    margin-bottom: 20px;
}

.testimonial-card__rating i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card__text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* Recognition CTA Section */
.recognition-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thm-btn--outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.thm-btn--outline:hover {
    background: white;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .award-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .award-card,
    .certification-card {
        padding: 30px 20px;
    }
}

/* Join Us Page Styles */
.join-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.join-intro__text {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
}

.culture-section {
    padding: 100px 0;
    background: #fff;
}

.culture-content {
    padding-right: 30px;
}

.culture-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.culture-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.culture-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.culture-point:hover {
    background: #e3f2fd;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.culture-point .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.culture-point .icon i {
    color: #fff;
    font-size: 20px;
}

.culture-point .content h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.culture-point .content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.culture-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.culture-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.culture-image:hover img {
    transform: scale(1.05);
}

.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.benefit-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.1);
}

.benefit-card__icon i {
    color: #fff;
    font-size: 30px;
}

.benefit-card h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.positions-section {
    padding: 100px 0;
    background: #fff;
}

.position-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.position-card:hover {
    border-color: #007bff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.position-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.position-card__header h3 {
    color: #050748;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.position-type {
    background: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.position-card__details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    color: #007bff;
    width: 16px;
}

.position-card__description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.position-card__footer {
    text-align: center;
}

.application-form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.application-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.application-form__text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.application-form .form-group {
    margin-bottom: 25px;
}

.application-form label {
    color: #050748;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.application-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.application-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.application-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.application-form .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.application-form .checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
}

.application-form .checkbox-wrapper label {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.application-form .thm-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-card__icon i {
    color: #fff;
    font-size: 24px;
}

.info-card h4 {
    color: #050748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-box h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding-left: 10px;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item span:first-child {
    display: block;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span:last-child {
    color: #050748;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #007bff;
}

.join-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thm-btn--outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.thm-btn--outline:hover {
    background: #fff;
    color: #007bff;
}

/* Responsive Design for Join Us Page */
@media (max-width: 991px) {
    .culture-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .application-form-wrapper {
        margin-bottom: 40px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .join-intro__text {
        font-size: 16px;
    }
    
    .culture-point {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-point .icon {
        margin: 0 auto 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .position-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .application-form-wrapper {
        padding: 25px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Press Room Page Styles */
.press-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.press-intro__text {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
}

.press-releases-section {
    padding: 100px 0;
    background: #fff;
}

.press-release-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.press-release-card:hover {
    border-color: #007bff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.press-release-card.featured {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.press-release-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-release-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.press-release-card__date .day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.press-release-card__date .month {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-release-card__date .year {
    font-size: 12px;
    opacity: 0.8;
}

.press-release-card__content h3 {
    color: #050748;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.press-release-card__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.press-release-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.category {
    background: #e3f2fd;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.read-time {
    color: #666;
    font-size: 12px;
}

.press-release-card__footer {
    text-align: center;
}

.media-coverage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.media-coverage-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.media-coverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.media-coverage-card__logo {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.media-coverage-card__logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.media-coverage-card__content h4 {
    color: #050748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.media-coverage-card__source {
    color: #007bff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.media-coverage-card__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-coverage-card__link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.media-coverage-card__link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.company-news-section {
    padding: 100px 0;
    background: #fff;
}

.news-timeline {
    position: relative;
}

.news-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 15px;
    width: 12px;
    height: 12px;
    background: #007bff;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #e9ecef;
}

.news-item__date {
    width: 80px;
    text-align: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.news-item__date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.news-item__date .month {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-item__content {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.news-item__content h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-item__content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-item__tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: #e3f2fd;
    color: #007bff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.stats-card h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.stat-item {
    margin-bottom: 20px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.download-resources {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.download-resources h4 {
    color: #050748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.resource-item:last-child {
    margin-bottom: 0;
}

.resource-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.resource-content h5 {
    color: #050748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.resource-content p {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.download-link {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.press-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.press-contact-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.press-contact-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.contact-method__icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method__icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.contact-method__icon i {
    color: #fff;
    font-size: 30px;
}

.contact-method__content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-method__content a,
.contact-method__content span {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-method__content a:hover {
    color: #fff;
    text-decoration: underline;
}

.press-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Press Release Modal Styles */
.press-release-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.press-release-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.modal-header h3 {
    color: #050748;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.modal-date {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #007bff;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-body h4 {
    color: #050748;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.modal-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-body li {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.press-release-footer {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.press-release-footer p {
    margin-bottom: 15px;
}

.press-release-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Press Room Page */
@media (max-width: 991px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .press-contact-content h2 {
        font-size: 28px;
    }
    
    .news-timeline::before {
        left: 30px;
    }
    
    .news-item::before {
        left: 25px;
    }
    
    .news-item__date {
        width: 60px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .press-intro__text {
        font-size: 16px;
    }
    
    .press-release-card {
        padding: 25px;
    }
    
    .press-release-card__content h3 {
        font-size: 18px;
    }
    
    .media-coverage-card {
        padding: 25px;
    }
    
    .media-coverage-card__content h4 {
        font-size: 15px;
    }
    
    .news-item__content {
        padding: 20px;
    }
    
    .news-item__content h4 {
        font-size: 16px;
    }
    
    .press-contact-content h2 {
        font-size: 24px;
    }
    
    .press-contact-content p {
        font-size: 16px;
    }
    
    .contact-method__icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-method__icon i {
        font-size: 24px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
        padding-right: 30px;
    }
}

/* Team Page Styles */
.team-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
}

.leadership-section,
.development-team-section {
    padding: 80px 0;
}

.leadership-section {
    background: #fff;
}

.development-team-section {
    background: #f8f9fa;
}

.team-member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member-card.featured {
    border: 3px solid #007bff;
}

.team-member-card__image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-member-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-card__image img {
    transform: scale(1.1);
}

.team-member-card__social {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-card__social {
    opacity: 1;
    transform: translateX(0);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.team-member-card__content {
    padding: 25px;
}

.team-member-card__content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.team-member-card__content .position {
    color: #007bff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.team-member-card__content .bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: #e3f2fd;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Team Culture Section */
.team-culture-section {
    padding: 80px 0;
    background: #fff;
}

.culture-content {
    padding-right: 40px;
}

.culture-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.culture-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.culture-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.culture-point .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.culture-point .content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.culture-point .content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.culture-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.culture-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Team Stats Section */
.team-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.join-team-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.join-team-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.join-team-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Member Modal */
.team-member-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.modal-header h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-header span {
    font-size: 16px;
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.modal-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-social .social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-social .social-link:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.modal-bio h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.modal-bio h4:first-child {
    margin-top: 0;
}

.modal-bio p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-bio .expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member-card__image {
        height: 220px;
    }
    
    .culture-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .culture-point {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-point .icon {
        align-self: center;
    }
    
    .join-team-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .team-member-card__content {
        padding: 20px;
    }
    
    .team-member-card__content h3 {
        font-size: 20px;
    }
    
    .culture-point .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .culture-point .content h4 {
        font-size: 18px;
    }
}

/* Software Development Services Page Styles */
.service-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero__content {
    padding-right: 40px;
}

.service-hero__text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-hero__features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.feature-item i {
    color: #007bff;
    margin-right: 15px;
    font-size: 18px;
}

.service-hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-hero__image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-hero__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-overview {
    padding: 80px 0;
    background: #fff;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Technology Stack Section */
.technology-stack {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-category {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.tech-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.tech-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.tech-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Development Process Section */
.development-process {
    padding: 80px 0;
    background: #fff;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step__number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.process-step__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin: 20px auto 25px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-study-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-card__image {
    height: 200px;
    overflow: hidden;
}

.case-study-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-card__image img {
    transform: scale(1.1);
}

.case-study-card__content {
    padding: 25px;
}

.case-study-card__content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.case-study-card__content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study-card__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: #e3f2fd;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.case-study-card__results {
    display: flex;
    justify-content: space-between;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
}

.result-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.why-choose-content {
    padding-right: 40px;
}

.why-choose-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-point .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.why-choose-point .content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.why-choose-point .content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero__content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .service-hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .why-choose-point {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-point .icon {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .case-study-card__results {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 20px;
    }
    
    .service-card__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .process-step__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Dark Mode Switch Positioning - Left Side Center */
.switch-wrapper {
    position: fixed !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 10px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    align-items: center !important;
    margin: 0 !important;
}

.switch-wrapper:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.switch-wrapper .switch {
    display: inline-block !important;
    height: 34px !important;
    position: relative !important;
    width: 34px !important;
}

.switch-wrapper .slider {
    background-color: #fff !important;
    bottom: 0 !important;
    cursor: pointer !important;
    left: 0 !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    transition: 0.4s !important;
    border: 1px solid #e2e2e2 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 50px !important;
}

.switch-wrapper .slider:before {
    bottom: 4px !important;
    content: "" !important;
    background: url(../images/icons/sun.svg) center center no-repeat #ffc400 !important;
    height: 24px !important;
    left: 4px !important;
    position: absolute !important;
    transition: 0.4s !important;
    width: 24px !important;
    border-radius: 50% !important;
}

.switch-wrapper input:checked + .slider {
    background-color: #242424 !important;
    border: 1px solid #333 !important;
}

.switch-wrapper input:checked + .slider:before {
    content: "" !important;
    background: url(../images/icons/moon.svg) center center no-repeat #2196f3 !important;
    transform: translateX(0) !important;
}

/* Dark mode styles for the switch */
.active-dark .switch-wrapper {
    background: rgba(16, 16, 16, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.active-dark .switch-wrapper:hover {
    background: rgba(16, 16, 16, 1) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .switch-wrapper {
        left: 15px !important;
        padding: 8px !important;
    }
    
    .switch-wrapper .switch {
        height: 30px !important;
        width: 30px !important;
    }
    
    .switch-wrapper .slider:before {
        height: 20px !important;
        width: 20px !important;
    }
}

/* Force override any conflicting transform styles */
.switch-wrapper {
    transform: translateY(-50%) !important;
}

.switch-wrapper:hover {
    transform: translateY(-50%) scale(1.05) !important;
} 