/* ============================================
   MODERN WORDPRESS-STYLE REDESIGN
   Additional styles for the redesigned website
   ============================================ */

/* === HERO SECTION MODERN === */
.hero-section-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d2137 100%);
    overflow: hidden;
    margin: -2.5rem -2rem 0 -2rem;
    padding: 4rem 2rem;
    width: calc(100% + 4rem);
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,26,0.9) 0%, rgba(26,26,62,0.85) 50%, rgba(13,33,55,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(65,217,255,0.15);
    color: #41d9fffa;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(65,217,255,0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #41d9fffa 0%, #36db67 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #41d9fffa;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SECTION STYLING === */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(65,217,255,0.15) 0%, rgba(54,219,103,0.15) 100%);
    color: #41d9fffa;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-badge-light {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header {
    margin-bottom: 3rem;
}

/* === SERVICES SECTION MODERN === */
.services-section-modern {
    padding: 5rem 0;
}

.service-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: visible;
    border-radius: 20px 20px 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px 20px 0 0;
}

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

.service-card-overlay {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(65,217,255,0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.service-card-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

.service-card-content {
    padding: 2.5rem 1.5rem 1.5rem;
}

.service-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.service-card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: #41d9fffa;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #36db67;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* === ABOUT SECTION MODERN === */
.about-section-modern {
    padding: 5rem 0;
}

.about-image-container {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(65,217,255,0.4);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.badge-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(65,217,255,0.15) 0%, rgba(54,219,103,0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-modern i {
    color: #41d9fffa;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a2e;
}

.feature-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* === TECH SECTION === */
.tech-section-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tech-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-logo i {
    font-size: 2.5rem;
    color: #41d9fffa;
}

.tech-logo span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section-modern {
    padding: 5rem 0;
}

.testimonial-stats {
    margin-top: 2rem;
}

.testimonial-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.testimonial-stat i {
    font-size: 1.2rem;
}

.testimonial-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 3rem;
    color: rgba(65,217,255,0.2);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a2e;
}

.testimonial-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* === CTA SECTION MODERN === */
.cta-section-modern {
    position: relative;
    padding: 6rem 2rem;
    margin: 3rem -2rem -2.5rem -2rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,26,0.9) 0%, rgba(26,26,62,0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-contact-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* === PAGE HERO SECTION === */
.page-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -2.5rem -2rem 3rem -2rem;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,26,0.85) 0%, rgba(26,26,62,0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* === MISSION SECTION === */
.mission-section-modern {
    padding: 4rem 0;
}

.mission-image-container {
    position: relative;
}

.mission-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.mission-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 20px;
    z-index: -1;
}

.mission-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.mission-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(65,217,255,0.1) 0%, rgba(54,219,103,0.1) 100%);
    border-radius: 50px;
    font-weight: 600;
    color: #1a1a2e;
}

.mission-value i {
    color: #41d9fffa;
}

/* === EXPERTISE SECTION === */
.expertise-section-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.expertise-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

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

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.expertise-card h4 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.expertise-card h4 a:hover {
    color: #41d9fffa;
}

.expertise-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === TEAM SECTION === */
.team-section-modern {
    padding: 4rem 0;
}

.team-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 450px;
}

.team-grid-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-grid-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-grid-img-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-stat {
    text-align: center;
}

.team-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #41d9fffa;
}

.team-stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === ABOUT CTA SECTION === */
.about-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    margin: 3rem -2rem -2.5rem -2rem;
    border-radius: 0;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

/* === SERVICES GRID SECTION === */
.services-grid-section {
    padding: 4rem 0;
}

.service-card-full {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card-full .service-card-image {
    position: relative;
    height: 180px;
}

.service-card-full .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-full .service-card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-full .service-card-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.service-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card-body h3 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card-body h3 a:hover {
    color: #41d9fffa;
}

.service-card-body p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
}

.service-features li i {
    color: #36db67;
    font-size: 0.8rem;
}

/* === PROCESS SECTION === */
.process-section-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* === SERVICES CTA === */
.services-cta-section {
    position: relative;
    padding: 5rem 2rem;
    margin: 3rem -2rem -2.5rem -2rem;
    overflow: hidden;
}

.services-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.services-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,26,0.9) 0%, rgba(26,26,62,0.85) 100%);
}

.services-cta-content {
    position: relative;
    z-index: 2;
}

.services-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === PORTFOLIO STYLES === */
.portfolio-stats-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0 -2rem 3rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.portfolio-stat {
    text-align: center;
}

.portfolio-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-projects-section {
    padding: 3rem 0;
}

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.portfolio-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.portfolio-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.portfolio-card-content > p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.portfolio-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-card-tags .tag {
    background: rgba(65,217,255,0.1);
    color: #41d9fffa;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-card-results {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.portfolio-card-results .result {
    text-align: center;
}

.portfolio-card-results .result strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #36db67;
}

.portfolio-card-results .result span {
    font-size: 0.8rem;
    color: #6c757d;
}

/* === INDUSTRIES SECTION === */
.industries-section {
    padding: 4rem 0;
}

.industries-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.industry-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    min-width: 150px;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(65,217,255,0.15) 0%, rgba(54,219,103,0.15) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: #41d9fffa;
}

.industry-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0;
}

/* === PORTFOLIO CTA === */
.portfolio-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    margin: 3rem -2rem -2.5rem -2rem;
    border-radius: 0;
}

.portfolio-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.portfolio-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === RESPONSIVE STYLES FOR MODERN SECTIONS === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

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

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .team-image-grid {
        height: 350px;
    }

    .about-image-badge {
        bottom: -10px;
        right: -10px;
        padding: 1rem 1.5rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section-modern {
        min-height: 100vh;
        padding: 3rem 1rem;
        margin: -2.5rem -1rem 0 -1rem;
        width: calc(100% + 2rem);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

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

    .page-hero-section {
        min-height: 300px;
        margin: -2.5rem -1rem 2rem -1rem;
    }

    .page-hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    .tech-section-modern,
    .expertise-section-modern,
    .process-section-modern,
    .portfolio-stats-section {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cta-section-modern,
    .about-cta-section,
    .services-cta-section,
    .portfolio-cta-section {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .team-image-grid {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .team-grid-img-1,
    .team-grid-img-2,
    .team-grid-img-3 {
        grid-column: auto;
        grid-row: auto;
        height: 200px;
    }

    .about-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        min-width: auto;
    }

    .portfolio-card-results {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .industries-grid {
        gap: 1rem;
    }

    .industry-item {
        min-width: calc(50% - 0.5rem);
        padding: 1.5rem 1rem;
    }

    .mission-values {
        flex-direction: column;
    }

    .team-stats {
        justify-content: center;
    }
}

/* ============================================
   FOUNDER PAGE STYLES
   ============================================ */

/* Founder Profile Section */
.founder-profile-section {
    padding: 4rem 0;
}

.founder-image-container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.founder-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.founder-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 20px;
    z-index: -1;
}

.founder-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.founder-social-links .social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(65,217,255,0.3);
}

.founder-social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65,217,255,0.4);
}

.founder-bio {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(65,217,255,0.05) 0%, rgba(54,219,103,0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid #41d9fffa;
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.highlight-text strong {
    display: block;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.highlight-text span {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Vision Section */
.founder-vision-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-quote {
    font-size: 3rem;
    color: rgba(65,217,255,0.3);
    margin-bottom: 1rem;
}

.vision-text {
    font-size: 1.35rem;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vision-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Experience Timeline */
.founder-experience-section {
    padding: 4rem 0;
}

.experience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #41d9fffa;
    border-radius: 50%;
    z-index: 1;
}

.timeline-marker.current {
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-color: #36db67;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: #41d9fffa;
}

.timeline-duration {
    font-size: 0.8rem;
    color: #6c757d;
}

.timeline-badge {
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    color: #fff;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #41d9fffa;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.timeline-list {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.timeline-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.timeline-skills span {
    background: rgba(65,217,255,0.1);
    color: #41d9fffa;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Founder Expertise Section */
.founder-expertise-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.expertise-card-founder {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card-founder:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.expertise-icon-founder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon-founder i {
    font-size: 1.75rem;
    color: #fff;
}

.expertise-card-founder h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.expertise-card-founder p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Founder Industries Section */
.founder-industries-section {
    padding: 4rem 0;
}

.industry-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-stat {
    text-align: center;
}

.industry-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #41d9fffa 0%, #36db67 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-stat .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.industry-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Founder CTA Section */
.founder-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    margin: 3rem -2rem -2.5rem -2rem;
}

.founder-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.founder-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founder-cta-content .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Styles for Founder Page */
@media (max-width: 991px) {
    .founder-image-container {
        max-width: 350px;
        margin-bottom: 2rem;
    }

    .vision-text {
        font-size: 1.15rem;
    }

    .industry-stats {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .founder-vision-section,
    .founder-expertise-section {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .founder-cta-section {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .experience-timeline {
        padding-left: 30px;
    }

    .experience-timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -26px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 1rem;
    }

    .vision-text {
        font-size: 1.05rem;
    }

    .founder-cta-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .founder-cta-content .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
