* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Main content transition */
main {
    transition: opacity 0.3s ease-in-out;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 2px 10px rgba(0,0,0,0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.top-bar {
    background: #000;
    padding: 8px 0;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #ddd;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo:hover {
    transform: translateY(-2px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.logo img {
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 8px 16px rgba(231, 76, 60, 0.5));
}

nav {
    display: flex;
    gap: 30px;
}

nav button {
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
      transition: all 0.3s ease;
    position: relative;
    animation: fadeIn 0.8s ease-out backwards;
}

nav button:nth-child(1) { animation-delay: 0.4s; }
nav button:nth-child(2) { animation-delay: 0.5s; }
nav button:nth-child(3) { animation-delay: 0.6s; }
nav button:nth-child(4) { animation-delay: 0.7s; }
nav button:nth-child(5) { animation-delay: 0.8s; }
nav button:nth-child(6) { animation-delay: 0.9s; }

nav button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

nav button:hover::after,
nav button.active::after {
    width: 100%;
}

nav button:hover,
nav button.active {
    color: #e74c3c;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
main {
    padding-top: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: url('vid1.gif') center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 -10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4), 0 3px 10px rgba(231, 76, 60, 0.2);
    position: relative;
    transform-style: preserve-3d;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5), 0 5px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5), 0 5px 15px rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6), 0 6px 18px rgba(231, 76, 60, 0.4);
    }
}

.btn:active {
    transform: translateY(-1px);
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.stats-grid > div {
    transition: transform 0.3s ease;
}

.stats-grid > div:hover {
    transform: scale(1.05);
}

.stats-grid > div:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 6px 12px rgba(231, 76, 60, 0.4);
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: #e74c3c;
    margin: 0 auto 50px;
    transition: width 0.5s ease;
}

.section-title:hover + .title-underline {
    width: 150px;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(231, 76, 60, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 10px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 220px;
    background:  url('Images/falcon.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 20px;
    text-align: center;
    box-shadow: inset 0 -4px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}


.card:hover .card-image {
    transform: scale(1.05);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: cardShine 4s infinite;
}

@keyframes cardShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50%, 100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: #e74c3c;
}

.card-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Industry Card */
.industry-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.industry-card:hover::before {
    width: 200%;
    height: 200%;
}

.industry-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.12);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotateY(360deg);
}

/* Partner Card */
.partner-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #666;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.partner-card:hover::after {
    animation: partnerShine 1s ease;
}

@keyframes partnerShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15), 0 6px 18px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #e74c3c;
}

/* News Card */
.news-card-image {
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.news-category {
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.contact-info-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 35px rgba(30, 60, 114, 0.3), 0 5px 18px rgba(30, 60, 114, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-info-box:hover::before {
    opacity: 1;
    animation: infoBoxPulse 2s infinite;
}

@keyframes infoBoxPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(30, 60, 114, 0.4), 0 8px 25px rgba(30, 60, 114, 0.25);
}

.contact-info-item {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.map-placeholder {
    background: #e9ecef;
    height: 250px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
}

.map-placeholder div:first-child {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Dark Section */
.dark-section {
    background: #2c3e50;
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.dark-section .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.dark-section .title-underline {
    background: white;
    position: relative;
    z-index: 1;
}

.dark-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dark-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.dark-card:hover::before {
    left: 100%;
}

.dark-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3), 0 6px 18px rgba(0,0,0,0.2);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 10px;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 15px 45px rgba(30, 60, 114, 0.3), 0 8px 25px rgba(30, 60, 114, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: ctaShine 3s infinite;
}

@keyframes ctaShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(30, 60, 114, 0.4), 0 10px 30px rgba(30, 60, 114, 0.25);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.btn-white {
    background: white;
    color: #1e3c72;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

footer p,
footer ul,
footer li {
    color: #bbb;
    line-height: 1.8;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

footer button {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    text-transform: capitalize;
    transition: color 0.3s;
}

footer button:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Utility Classes */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.link-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.link-btn:hover::after {
    width: 100%;
}

.link-btn:hover {
    transform: translateX(5px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
    }

    nav.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 0.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}