:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(245, 158, 11, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInDown 1s ease-out;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #fff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;

}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

/* Companies Section */
.companies-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Company Cards */
.company-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    height: 100%;
    animation: fadeInUp 0.8s ease-out backwards;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.company-card:nth-child(1) {
    animation-delay: 0.1s;
}

.company-card:nth-child(2) {
    animation-delay: 0.2s;
}

.company-card:nth-child(3) {
    animation-delay: 0.3s;
}

.company-card:nth-child(4) {
    animation-delay: 0.4s;
}

.company-card:nth-child(5) {
    animation-delay: 0.5s;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.company-card:hover::before {
    opacity: 1;
}

.company-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
    z-index: 2;
}

.company-card:hover::after {
    left: 100%;
}

.company-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.card-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.company-card:hover .card-top-border {
    transform: scaleX(1);
}

.card-logo-container {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-logo-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.company-card:hover .card-logo-container::before {
    transform: translate(-50%, -50%) scale(1);
}

.card-logo-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(37, 99, 235, 0.1) 60deg, transparent 120deg);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.company-card:hover .card-logo-container::after {
    opacity: 1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.card-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) brightness(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.company-card:hover .card-logo-container img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.card-body {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.card-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.company-card:hover .card-body h3 {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.card-body p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.98rem;
    transition: color 0.3s ease;
}

.company-card:hover .card-body p {
    color: #475569;
}

.card-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.company-card:hover .card-category {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 2px;
}

.card-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.company-card:hover .card-link::before {
    width: calc(100% - 30px);
}

.card-link i {
    margin-left: 10px;
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.company-card:hover .card-link {
    color: var(--accent-color);
}

.company-card:hover .card-link i {
    transform: translateX(8px) scale(1.1);
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.company-card:hover .card-shine {
    transform: translateX(100%);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

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

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

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .companies-section {
        padding: 60px 0;
    }

    .card-logo-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* CEO Section */
.ceo-section {
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/office-background.jpg') center/cover no-repeat;
    z-index: 1;
}

.ceo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 2;
}

.ceo-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

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

.ceo-image-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 1s ease-out;
}

.ceo-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.ceo-quote-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
    border: 5px solid #0f172a;
}

.ceo-quote-badge i {
    font-size: 2.5rem;
    color: #0f172a;
}

.ceo-content {
    color: white;
    animation: slideInRight 1s ease-out;
}

.ceo-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-color);
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.ceo-name {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ceo-designation {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ceo-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    margin-bottom: 30px;
}

.ceo-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 35px;
}

.ceo-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.signature-line {
    width: 180px;
    height: 60px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.4);
    position: relative;
}

.signature-line::after {
    content: 'Signature';
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.ceo-stats {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .ceo-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 80px 0;
    }

    .ceo-image-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .ceo-image {
        height: 420px;
    }

    .ceo-quote-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .ceo-intro {
        margin: 0 auto 35px;
    }

    .ceo-signature {
        justify-content: center;
    }

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

    .ceo-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        min-height: auto;
    }

    .ceo-wrapper {
        padding: 60px 0;
        gap: 40px;
    }

    .ceo-image-frame {
        padding: 15px;
        max-width: 320px;
    }

    .ceo-image {
        height: 380px;
    }

    .ceo-quote-badge {
        width: 70px;
        height: 70px;
        bottom: -20px;
    }

    .ceo-quote-badge i {
        font-size: 2rem;
    }

    .ceo-name {
        font-size: 2.2rem;
    }

    .ceo-designation {
        font-size: 1.1rem;
    }

    .ceo-intro {
        font-size: 1.05rem;
    }

    .ceo-stats {
        flex-direction: column;
        gap: 25px;
    }

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

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

/* Featured Business Section */
.featured-business {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.featured-business::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-badge {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    animation: fadeInDown 1s ease-out;
}

.featured-badge i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.featured-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    position: relative;
    z-index: 2;
}

.featured-image {
    position: relative;
    min-height: 500px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, transparent 100%);
}

.featured-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-tagline {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-description {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.featured-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.featured-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 30px;
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.featured-stat i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.featured-stat span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.featured-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-featured-primary,
.btn-featured-secondary {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-featured-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-featured-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-featured-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-featured-secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 350px;
    }

    .featured-content {
        padding: 40px 30px;
    }

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

@media (max-width: 768px) {
    .featured-business {
        padding: 60px 0;
    }

    .featured-content h2 {
        font-size: 1.8rem;
    }

    .featured-tagline {
        font-size: 1.1rem;
    }

    .featured-stats {
        flex-direction: column;
    }

    .featured-actions {
        flex-direction: column;
    }

    .btn-featured-primary,
    .btn-featured-secondary {
        width: 100%;
        justify-content: center;
    }
}