
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Page Container */
.page-container {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.9) 50%, rgba(31, 41, 55, 0.95) 100%);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
}

.particles-container {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.bg-element {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(72px);
    transition: transform 1s ease-out;
}

.bg-element-1 {
    top: 25%;
    left: 25%;
    background: rgba(255, 255, 255, 0.05);
}

.bg-element-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(209, 213, 219, 0.05);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.title-word {
    display: inline-block;
    transition: transform 0.3s ease;
}

.title-word:hover {
    transform: scale(1.1);
}

.title-subtitle {
    display: block;
    background: linear-gradient(135deg, #e5e7eb 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.5s ease;
}

.title-subtitle:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    color: #d1d5db;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.5s both;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-btn:hover {
    background: #f3f4f6;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.hero-btn:hover .arrow-icon {
    transform: translateX(4px) scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover .scroll-mouse {
    border-color: rgba(255, 255, 255, 0.6);
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin-top: 8px;
    animation: pulse 1s ease-in-out infinite;
}

/* Section Styles */
.section {
    padding: 96px 0;
    position: relative;
}

.section-why {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.section-solutions {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.section-infrastructure {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.section-monitoring {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.section-collaboration {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.section-commitment {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.network-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: linear-gradient(45deg, #f3f4f6 0%, transparent 50%, #f3f4f6 100%);
}

.commitment-bg {
    position: absolute;
    inset: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(55, 65, 81, 0.95) 100%);
}

/* Typography */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.section-commitment .section-title {
    color: white;
}

.section-title:hover {
    color: #374151;
}

.section-commitment .section-title:hover {
    color: #e5e7eb;
}

.title-accent {
    display: block;
    color: #6b7280;
    transition: color 0.3s ease;
}

.title-accent:hover {
    color: #374151;
}

.title-gradient {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.5s ease;
}

.title-gradient:hover {
    background: linear-gradient(135deg, #1f2937 0%, #6b7280 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-commitment .title-gradient {
    background: linear-gradient(135deg, #d1d5db 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-commitment .title-gradient:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.section-description:hover {
    color: #374151;
}

.section-commitment .section-description {
    color: #d1d5db;
}

.section-commitment .section-description:hover {
    color: #ffffff;
}

/* Content Blocks */
.content-block {
    position: relative;
}

.image-block {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-wrapper:hover {
    transform: scale(1.05);
}

.section-image {
    width: 100%;
    height: 384px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-wrapper:hover .section-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-icon {
    color: white;
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .overlay-icon {
    transform: scale(1.25) rotate(12deg);
}

/* Feature Lists */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #1f2937;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-dot {
    transform: scale(1.5);
    background: #374151;
}

.feature-item span {
    color: #374151;
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: #1f2937;
}

.feature-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-item-detailed:hover {
    transform: translateX(8px);
}

.feature-indicator {
    width: 24px;
    height: 24px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.feature-item-detailed:hover .feature-indicator {
    transform: scale(1.25);
    background: #374151;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.feature-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.feature-item-detailed:hover .feature-title {
    color: #374151;
}

.feature-desc {
    color: #6b7280;
    transition: color 0.3s ease;
}

.feature-item-detailed:hover .feature-desc {
    color: #374151;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    border: 1px solid #f3f4f6;
}

.solution-card:hover {
    transform: translateY(-16px) rotate(1deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #e5e7eb;
}

.card-image {
    position: relative;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    height: 128px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .card-image img {
    transform: scale(1.1);
}

.card-icon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-overlay svg {
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .card-icon-overlay svg {
    transform: scale(1.25) rotate(12deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.solution-card:hover .card-title {
    color: #374151;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.solution-card:hover .card-description {
    color: #374151;
}

/* Infrastructure Grid */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.infra-card {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.infra-card:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    transform: scale(1.05) rotate(1deg);
}

.infra-icon {
    color: #374151;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.infra-card:hover .infra-icon {
    transform: scale(1.25) rotate(12deg);
    color: #1f2937;
}

.infra-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.infra-card:hover .infra-title {
    color: #374151;
}

.infra-description {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.infra-card:hover .infra-description {
    color: #374151;
}

/* Dashboard */
.dashboard-block {
    position: relative;
}

.dashboard-wrapper {
    position: relative;
    transition: transform 0.5s ease;
}

.dashboard-wrapper:hover {
    transform: scale(1.05);
}

.dashboard {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 32px;
    color: white;
    height: 384px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.dashboard:hover .status-indicator {
    transform: scale(1.5);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.metric-row {
    transition: transform 0.3s ease;
}

.metric-row:hover {
    transform: translateX(8px);
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.metric-label {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.metric-row:hover .metric-label {
    color: white;
}

.metric-value {
    font-weight: 600;
    transition: transform 0.3s ease;
}

.metric-row:hover .metric-value {
    transform: scale(1.1);
}

.metric-value.positive {
    color: #10b981;
}

.metric-value.warning {
    color: #f59e0b;
}

.metric-value.info {
    color: #3b82f6;
}

.progress-bar {
    width: 100%;
    background: #374151;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.metric-row:hover .progress-bar {
    background: #4b5563;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.5s ease;
}

.metric-row:hover .progress-fill {
    filter: brightness(1.25);
}

.dashboard-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid #374151;
    transition: border-color 0.3s ease;
}

.dashboard:hover .dashboard-footer {
    border-color: #4b5563;
}

.trend-icon {
    color: #10b981;
    transition: all 0.3s ease;
}

.dashboard:hover .trend-icon {
    transform: scale(1.25) rotate(12deg);
}

.trend-text {
    color: #10b981;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dashboard:hover .trend-text {
    color: #34d399;
}

/* Collaboration */
.collaboration-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(249, 250, 251, 0.8) 100%);
    border-radius: 24px;
    padding: 64px 32px;
    backdrop-filter: blur(8px);
    margin-top: 64px;
}

.collaboration-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.collab-node {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.collab-node:hover {
    transform: scale(1.25) rotate(12deg);
}

.node-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.node-icon.supplier,
.node-icon.customer {
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.node-icon.central {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    width: 96px;
    height: 96px;
}

.node-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.collab-node:hover .node-icon svg {
    transform: scale(1.1);
}

.node-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.collab-node.central .node-title {
    font-size: 1.5rem;
}

.collab-node:hover .node-title {
    color: #374151;
}

.node-desc {
    color: #6b7280;
    transition: color 0.3s ease;
}

.collab-node:hover .node-desc {
    color: #374151;
}

.connection-status {
    text-align: center;
}

.status-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #1f2937;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.status-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.status-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.status-text {
    color: #6b7280;
    transition: color 0.3s ease;
}

.status-text:hover {
    color: #374151;
}

/* Commitment Section */
.quote-block {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 16px;
    padding: 48px 32px;
    margin: 48px 0;
    transition: background 0.5s ease;
}

.quote-block:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.commitment-quote {
    font-size: 1.875rem;
    font-weight: 300;
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.6;
    transition: color 0.5s ease;
}

.quote-block:hover .commitment-quote {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 64px 0;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-value {
    color: #e5e7eb;
}

.stat-label {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #d1d5db;
}

.cta-section {
    margin-top: 48px;
}

.commitment-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
}

.commitment-btn:hover {
    background: #f3f4f6;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2);
}

.commitment-btn:hover .arrow-icon {
    transform: translateX(4px) scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-15px);
    }
    70% {
        transform: translateX(-50%) translateY(-7px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .collaboration-visual {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .commitment-quote {
        font-size: 1.25rem;
    }
    
    .quote-block {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
    .collaboration-wrapper {
        padding: 32px 16px;
    }
}

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
   --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(240, 3%, 6%);
  --title-color: hsl(220, 13%, 95%);
  --text-color: hsl(240, 45%, 98%);
  --body-color: #2E3748;
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

.nav__data>a>img{
    width: 30%;
    padding: 0 30;

}

.container5{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    background-color: #001f7c38;
}

 .simple-footer {
    background-color: #2E3748;
    color: #e5f4f1;
    padding: 3rem 3rem 2rem; /* Increased top padding */
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* More vertical space between content blocks */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem; /* More padding above content */
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-logo {
    width: 150px;
    height: auto;
  }

  .footer-left p {
    max-width: 480px;
    font-size: 1rem;
    color: #d8e9e6;
    line-height: 1.8;
  }

  .social-icons {
    margin-top: 0.1rem;
  }

  .social-icons a {
    font-size: 1.9rem;
    margin-right: 3rem;
    color: #d8e9e6;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #ffffff;
  }

  .footer-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #94b8b2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15rem;
    padding-bottom: 30;
  }

  .footer-right a {
    color: #94b8b2;
    text-decoration: none;
  }

  .footer-right a:hover {
    text-decoration: underline;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-left {
      flex: 1;
    }

    .footer-right {
      flex: 1;
      justify-content: flex-end;
    }
  }