/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #007bff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section with Modern Slider */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    margin-top: 0;
    overflow: hidden;
}

/* Slider Container */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 2rem;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 1.5s ease;
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: #007bff;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0,123,255,0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    opacity: 0.9;
    line-height: 1.8;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.5);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #007bff;
    transform: scale(1.2);
    box-shadow: 0 0 20px #007bff;
}

.indicator:hover {
    background: white;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: #007bff;
    border-color: #007bff;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    text-align: center;
    padding: 2rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .slider-arrows {
        padding: 0 1rem;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Hide slider arrows on small screens */
@media (max-width: 500px) {
    .slider-arrows,
    .slider-arrows * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* === MISSION/VISION/VALUES BLOCK CSS === */
.mvv-block {
    font-family: 'Poppins', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #ffffff;
    color: #1e2b37;
}

.mvv-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mvv-header .section-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #007bff;
    background: rgba(0, 123, 255, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
}

.mvv-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1c2f;
    margin-bottom: 1rem;
}

.mvv-header h2 span {
    color: #007bff;
    position: relative;
    display: inline-block;
}

.mvv-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 123, 255, 0.15);
    z-index: -1;
}

.mvv-header .subhead {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #4a5b68;
    font-weight: 300;
}

/* grid for mission/vision cards */
.mvv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0 4rem;
}

.mvv-card {
    flex: 1 1 280px;
    min-width: 260px;
    background: #ffffff;
    border-radius: 32px;
    padding: 2.8rem 2rem;
    box-shadow: 0 20px 35px -8px rgba(0, 40, 80, 0.1), 0 5px 12px -4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.06);
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -12px rgba(0, 123, 255, 0.2), 0 10px 20px -8px rgba(0,0,0,0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #f0f7ff, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    border: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 10px 15px -8px rgba(0,123,255,0.2);
    transition: all 0.2s ease;
}

.mvv-card:hover .card-icon {
    background: #007bff;
    border-color: #007bff;
}

.card-icon i {
    font-size: 2.4rem;
    color: #007bff;
    transition: color 0.2s ease;
}

.mvv-card:hover .card-icon i {
    color: white;
}

.mvv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #0a1c2f;
    letter-spacing: -0.02em;
}

.mvv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2e4051;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.soft-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.2), transparent);
    width: 180px;
    margin: 1.5rem auto 1rem;
}

/* values container */
.values-container {
    margin-top: 5rem;
    background: #f5f9ff;
    border-radius: 64px 64px 32px 32px;
    padding: 3.5rem 2rem;
    box-shadow: inset 0 2px 12px rgba(0,123,255,0.04), 0 25px 40px -18px rgba(0,73,144,0.2);
}

.values-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.values-title h4 {
    font-size: 2rem;
    font-weight: 600;
    color: #0a1c2f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.values-title h4 i {
    color: #007bff;
    font-size: 2rem;
    background: rgba(0,123,255,0.1);
    padding: 10px;
    border-radius: 50%;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.8rem 2rem 0.8rem 1.5rem;
    border-radius: 60px;
    box-shadow: 0 6px 18px -8px rgba(0,73,144,0.12);
    border: 1px solid rgba(0,123,255,0.1);
    transition: all 0.2s;
}

.value-item:hover {
    background: #007bff;
    border-color: #007bff;
    transform: scale(1.02);
    box-shadow: 0 12px 24px -10px #007bff;
}

.value-item .value-icon {
    width: 44px;
    height: 44px;
    background: #eef4fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1.3rem;
    transition: all 0.2s;
}

.value-item:hover .value-icon {
    background: white;
    color: #007bff;
}

.value-item span {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1e2b37;
    letter-spacing: 0.3px;
}

.value-item:hover span {
    color: white;
}

@media (max-width: 850px) {
    .mvv-header h2 { font-size: 2.2rem; }
    .mvv-card h3 { font-size: 1.8rem; }
    .values-grid { gap: 1rem; }
    .value-item { padding: 0.6rem 1.5rem 0.6rem 1rem; }
    .value-item span { font-size: 1rem; }
}

@media (max-width: 550px) {
    .mvv-block { padding: 4rem 1.5rem; }
    .mvv-header h2 { font-size: 1.9rem; }
    .values-container { padding: 2.5rem 1rem; border-radius: 40px; }
    .value-item { width: 100%; justify-content: center; }
}

/* === COMPANIES BLOCK (4 cards in one row) - FIXED === */
.srez-companies-block {
    font-family: 'Poppins', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: #ffffff;
    color: #1e2b37;
}

.srez-companies-block .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.srez-companies-block .section-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #007bff;
    background: rgba(0, 123, 255, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
}

.srez-companies-block .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1c2f;
    margin-bottom: 1rem;
}

.srez-companies-block .section-header h2 span {
    color: #007bff;
    position: relative;
    display: inline-block;
}

.srez-companies-block .section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 123, 255, 0.15);
    z-index: -1;
}

.srez-companies-block .section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #4a5b68;
    font-weight: 300;
}

/* grid — 4 cards in one row */
.srez-companies-block .companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.srez-companies-block .company-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 0 0 2rem 0;
    box-shadow: 0 20px 35px -8px rgba(0, 40, 80, 0.08), 0 5px 12px -4px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.srez-companies-block .company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -12px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.2);
}

.srez-companies-block .company-img {
    width: 100%;
    height: 180px;
    background-color: #eef2f7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 3px solid rgba(0,123,255,0.2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.srez-companies-block .company-img.demo-label::after {
   
    background: rgba(255,255,255,0.7);
    padding: 0.2rem 1rem;
    border-radius: 40px;
    color: #007bff;
    font-size: 0.75rem;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid white;
}

.srez-companies-block .company-content {
    padding: 1.8rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.srez-companies-block .company-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #0a1c2f;
    line-height: 1.2;
}

.srez-companies-block .company-content p {
    font-size: 0.95rem;
    color: #2e4051;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

.srez-companies-block .btn-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.srez-companies-block .btn-outline,
.srez-companies-block .btn-solid {
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1.5px solid transparent;
}

.srez-companies-block .btn-outline {
    border-color: #007bff;
    color: #007bff;
    background: transparent;
}

.srez-companies-block .btn-outline:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.srez-companies-block .btn-solid {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.srez-companies-block .btn-solid:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -8px #007bff;
}

/* === INDUSTRIES + GLOBAL PRESENCE + CTA (standalone) === */
.srez-industries-block {
    font-family: 'Poppins', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: #ffffff;
}

.srez-industries-block .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.srez-industries-block .industry-item {
    background: #f8fafd;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    border: 1px solid rgba(0,123,255,0.1);
    transition: all 0.2s;
}

.srez-industries-block .industry-item:hover {
    background: #ffffff;
    border-color: #007bff;
    box-shadow: 0 15px 25px -12px rgba(0,123,255,0.25);
    transform: scale(1.02);
}

.srez-industries-block .industry-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #e6f0ff, #ffffff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 2rem;
    border: 1px solid rgba(0,123,255,0.2);
    margin-bottom: 0.5rem;
}

.srez-industries-block .industry-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0a1c2f;
    margin: 0;
}

.srez-industries-block .industry-item p {
    font-size: 0.95rem;
    color: #4f6579;
    line-height: 1.5;
    margin: 0;
}

.srez-industries-block .presence-wrapper {
    background: #f5f9ff;
    border-radius: 56px;
    padding: 3rem 2rem;
    margin: 4rem 0 2rem;
    border: 1px solid rgba(0,123,255,0.1);
}

.srez-industries-block .presence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.srez-industries-block .presence-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.srez-industries-block .presence-item i {
    font-size: 2.2rem;
    color: #007bff;
    background: white;
    padding: 1rem;
    border-radius: 60px;
    box-shadow: 0 10px 18px -10px rgba(0,123,255,0.4);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srez-industries-block .presence-item .presence-text {
    font-weight: 600;
    font-size: 1rem;
    color: #0a1c2f;
    max-width: 200px;
}

.srez-industries-block .cta-card {
    background: linear-gradient(135deg, #0a1c2f 0%, #123456 100%);
    border-radius: 48px;
    padding: 3.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: white;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.4);
    margin-top: 3rem;
}

.srez-industries-block .cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.srez-industries-block .cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.srez-industries-block .cta-btn .btn-solid {
    background: white;
    color: #0a1c2f;
    border: none;
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
    border-radius: 60px;
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.3);
}

.srez-industries-block .cta-btn .btn-solid:hover {
    background: #007bff;
    color: white;
}

/* responsive: 4 cards → 2 on tablet, 1 on mobile */
@media (max-width: 1100px) {
    .srez-companies-block .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .srez-companies-block .companies-grid {
        grid-template-columns: 1fr;
    }
    .srez-industries-block .presence-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .srez-industries-block .presence-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== NEW SECTIONS CSS ========== */
