/* ===== Global Styles ===== */
:root {
    --primary-color: #3B82F6;
    --secondary-color: #10B981;
    --dark-color: #1F2937;
    --light-color: #F3F4F6;
    --text-color: #111827;
    --border-color: #E5E7EB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: white;
}

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

/* ===== Header/Navbar ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    min-width: 150px;
    margin-top: 10px;
}

.lang-dropdown.active {
    display: flex;
}

.lang-option {
    background: none;
    border: none;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--text-color);
    font-weight: 500;
}

.lang-option:hover {
    background: var(--light-color);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #3B82F6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(40px, 15vw, 140px);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-button:hover {
    background: #2563EB;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: #6B7280;
    stroke-width: 2;
}

/* ===== Industries Section ===== */
.industries-section {
    padding: 100px 0;
    background: white;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.industries-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    margin: 0;
}

.industries-subtitle {
    position: absolute;
    top: calc(50% + 80px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    margin: 0;
}

.industries-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.industry-floating-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}

.industry-floating-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-floating-item:hover .industry-floating-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.industry-floating-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-floating-item:hover .industry-floating-label {
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(5px);
    }
    50% {
        transform: translateY(-25px) translateX(-5px);
    }
    75% {
        transform: translateY(-10px) translateX(8px);
    }
}

/* ===== Solutions Carousel ===== */
.solutions-section {
    padding: 80px 0;
    background: white;
}

.carousel-container {
    position: relative;
    margin-bottom: 40px;
}

.carousel {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    padding: 40px;
    background: white;
    display: flex;
    align-items: center;
    gap: 40px;
}

.carousel-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

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

.carousel-content {
    flex: 1;
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 30px;
}

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

.solution-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.solution-description {
    color: #6B7280;
    margin-bottom: 20px;
    font-size: 14px;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-link:hover {
    color: var(--secondary-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

/* ===== Security Section ===== */
.security-section {
    padding: 80px 0;
    background: white;
}

.security-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 60px;
    font-size: 16px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.security-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.security-card:hover .security-icon {
    color: white;
    animation: spin 0.6s ease;
}

.security-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.security-text {
    font-size: 14px;
    color: #6B7280;
}

.security-card:hover .security-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: #6B7280;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 600px;
    margin-bottom: 80px;
}

.contact-subtitle {
    color: #6B7280;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-input-group {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.ddi-select {
    max-width: 100px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #2563EB;
    transform: scale(1.02);
}

/* ===== Offices Section ===== */
.offices-section {
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.offices-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.office-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

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

.office-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-info {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-info a:hover {
    color: var(--secondary-color);
}

/* ===== Footer ===== */
.footer {
    background: #111827;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-link {
    color: #9CA3AF;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9CA3AF;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }

    .hero-title {
        font-size: clamp(30px, 10vw, 60px);
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .carousel-item {
        flex-direction: column;
        padding: 20px;
    }

    .carousel-image {
        flex: 1;
        width: 100%;
    }

    .carousel-content {
        flex: 1;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .security-grid,
    .features-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(24px, 8vw, 40px);
    }

    .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .phone-input-group {
        grid-template-columns: 80px 1fr;
    }

    .ddi-select {
        max-width: 80px;
    }
}
/* ===== Industries Section ===== */
.industries-section {
    padding: 100px 0;
    background: white;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.industries-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    margin: 0;
}

.industries-subtitle {
    position: absolute;
    top: calc(50% + 80px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    margin: 0;
}

.industries-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.industry-floating-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}

.industry-floating-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-floating-item:hover .industry-floating-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.industry-floating-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-floating-item:hover .industry-floating-label {
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(5px);
    }
    50% {
        transform: translateY(-25px) translateX(-5px);
    }
    75% {
        transform: translateY(-10px) translateX(8px);
    }
}
