* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Base Styles */
.min-h-screen {
    min-height: 100vh;
}

.bg-gradient {
    background: linear-gradient(to bottom, #0A1326, #0F1B3F, #1A237E);
}

.text-white {
    color: white;
}

.overflow-hidden {
    overflow: hidden;
}

.text-light {
    color: #e0f0f0;
}

.text-muted {
    color: #94b8b2;
}

.bg-gradient-text {
    background: linear-gradient(to right, #60a5fa, #a855f7, #4ade80, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-button {
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #14b8a6);
}

.bg-gradient-button:hover {
    background: linear-gradient(to right, #2563eb, #7c3aed, #0f766e);
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    border-radius: 50%;
}

.particle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: linear-gradient(to right, #60a5fa, #22d3ee);
}

.particle-2 {
    top: 10rem;
    right: 5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.particle-3 {
    bottom: 10rem;
    left: 25%;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(to right, #22c55e, #14b8a6);
}

.particle-4 {
    bottom: 5rem;
    right: 33.333333%;
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(to right, #fbbf24, #f97316);
}

.particle-5 {
    top: 50%;
    left: 50%;
    width: 0.25rem;
    height: 0.25rem;
    background: linear-gradient(to right, #6366f1, #a855f7);
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(10, 19, 38, 0.8), rgba(15, 27, 63, 0.8)), url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb');
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-size: 1.125rem;
    font-weight: 500;
}

.hero-button:hover {
    transform: scale(1.05);
}

/* Earth Section */
.earth-section {
    background-image:  url('images/pexels-umkreisel-app-956999.jpg');
    background-size: cover;
    background-position: center;
}

.earth-container {
    position: relative;
    width: 700px;
    height: 800px;
    max-width: 100vw;
    max-height: 100vh;
}

.earth-wrapper {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: 12rem;
    height: 12rem;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 5;
}

.earth-wrapper:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.earth-container-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.earth-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 30%, #4FC3F7, #2196F3),
        radial-gradient(circle at 70% 70%, #66BB6A, #4CAF50),
        linear-gradient(45deg, #1976D2, #388E3C);
    box-shadow: 
        inset -10px -10px 20px rgba(0,0,0,0.3),
        inset 10px 10px 20px rgba(255,255,255,0.1),
        0 0 50px rgba(33, 150, 243, 0.3);
    animation: earthRotation 30s linear infinite;
}

@keyframes earthRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Continents */
.continent {
    position: absolute;
    background: grey;
    border-radius: 50%;
    opacity: 0.8;
}

.continent-1 {
    top: 1rem;
    left: 2rem;
    width: 4rem;
    height: 3rem;
    background: #388e3c;
}

.continent-2 {
    top: 3rem;
    right: 1.5rem;
    width: 3rem;
    height: 2rem;
    background: #2e7d32;
}

.continent-3 {
    bottom: 2rem;
    left: 3rem;
    width: 5rem;
    height: 2.5rem;
    background: #388e3c;
}

.continent-4 {
    bottom: 1.5rem;
    right: 2rem;
    width: 2rem;
    height: 1.5rem;
    background: #2e7d32;
}

.continent-5 {
    top: 5rem;
    left: 1rem;
    width: 1.5rem;
    height: 2rem;
    background: #388e3c;
}

.cloud-layer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255,255,255,0.15), transparent 35%),
        radial-gradient(circle at 60% 20%, rgba(255,255,255,0.1), transparent 30%);
}

.atmosphere-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 85%, rgba(100, 181, 246, 0.3) 100%);
}

/* Scope Panels */
/* CSS FILE */
.scope-panel {
    position: absolute;
    width: 20rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    scale: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.scope-panel.active {
    opacity: 1;
    scale: 1;
}

.scope-1.active {
    transform: translate(-50%, -50%) translate(-450px, 0px);
}

.scope-2.active {
    transform: translate(-50%, -50%) translate(450px, 0px);
}

.scope-3.active {
    transform: translate(-50%, -50%) translate(0px, 300px);
}

.card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.card:hover {
    border-color: rgba(156, 163, 175, 1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 10;
}

.scope-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.scope-icon {
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
}

.scope-icon-1 {
    background: linear-gradient(to right, #f97316, #dc2626);
}

.scope-icon-2 {
    background: linear-gradient(to right, #eab308, #f97316);
}

.scope-icon-3 {
    background: linear-gradient(to right, #22c55e, #14b8a6);
}

.scope-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: #111827;
}

.scope-description {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.scope-details {
    margin-top: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    animation: fadeIn 0.3s ease-out;
}

.scope-details.active {
    display: flex;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #1f2937;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.detail-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-right: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.scope-dot-1 {
    background: linear-gradient(to right, #f97316, #dc2626);
}

.scope-dot-2 {
    background: linear-gradient(to right, #eab308, #f97316);
}

.scope-dot-3 {
    background: linear-gradient(to right, #22c55e, #14b8a6);
}

.scope-toggle {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.chevron {
    color: #6b7280;
    transition: color 0.3s ease, transform 0.3s ease;
}

.card:hover .chevron {
    color: #111827;
}

.chevron.expanded {
    transform: rotate(180deg);
}

.earth-instruction {
    animation: pulse 2s infinite;
    text-align: center;
    margin-top: 2rem;
}

.earth-image {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s ease;
}


/* Process Section */
.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.process-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
}

.process-step:nth-child(1) .process-bg {
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb');
}

.process-step:nth-child(2) .process-bg {
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb');
}

.process-step:nth-child(3) .process-bg {
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb');
}

.process-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 10;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(3deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.process-icon-1 {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.process-icon-2 {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.process-icon-3 {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e0f0f0;
    position: relative;
    z-index: 10;
}

.process-description {
    color: #94b8b2;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.process-arrow {
    position: absolute;
    top: 33.333333%;
    right: -1.5rem;
    width: 3rem;
    height: 0.25rem;
    border-radius: 9999px;
    opacity: 0.6;
    z-index: 20;
    display: none;
}

.process-step:nth-child(1) .process-arrow {
    background: linear-gradient(to right, #3b82f6, #22d3ee);
}

.process-step:nth-child(2) .process-arrow {
    background: linear-gradient(to right, #3b82f6, #22d3ee);
}

.process-arrow::after {
    content: '';
    position: absolute;
    right: -0.25rem;
    top: -0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

/* Features Section */
.features-section {
    background-image: linear-gradient(rgba(10, 19, 38, 0.8), rgba(26, 35, 126, 0.8)), url('https://images.unsplash.com/photo-1518495973542-4542c06a5843');
    background-size: cover;
    background-position: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.25) rotate(12deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #e0f0f0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: white;
}

.feature-description {
    color: #94b8b2;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #e0f0f0;
}

.feature-line {
    margin-top: 1rem;
    height: 0.25rem;
    background: linear-gradient(to right, transparent, #60a5fa, transparent);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-line {
    opacity: 1;
}

/* Dashboard Section */
.dashboard-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94b8b2;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
}

.chart-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e0f0f0;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-label {
    color: #94b8b2;
    min-width: 4rem;
}

.chart-bar-container {
    flex: 1;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin: 0 0.75rem;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    border-radius: 9999px;
    transition: width 1s ease;
}

.chart-bar-1 {
    background: #60a5fa;
}

.chart-bar-2 {
    background: #14b8a6;
}

.chart-bar-3 {
    background: #22c55e;
}

.chart-value {
    color: #e0f0f0;
    min-width: 2rem;
}

.trend-chart {
    height: 8rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}


.trend-bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #14b8a6);
    border-radius: 0.25rem 0.25rem 0 0;
    transition: all 1s ease;
}

.trend-bar:hover {
    background: linear-gradient(to top, #2563eb, #0f766e);
}

/* Calculator Section */
.calculator-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    color: #e0f0f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #e0f0f0;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.form-select option {
    background: #1f2937;
    color: #e0f0f0;
}

.calculate-button {
    width: 100%;
    background: linear-gradient(to right, #3b82f6, #14b8a6);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-button:hover {
    background: linear-gradient(to right, #2563eb, #0f766e);
}

.result-container {
    margin-top: 2rem;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.result-container.active {
    display: block;
}

.result-value {
    font-size: 2.25rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #94b8b2;
    margin-bottom: 1rem;
}

.result-bar-container {
    margin-top: 1rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.result-bar {
    height: 100%;
    background: linear-gradient(to right, #3b82f6, #14b8a6);
    border-radius: 9999px;
    width: 0%;
    transition: width 1s ease;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/pexels-veeterzy-303383.jpg') no-repeat center center;
  background-size: cover; /* use 'contain' if you don't want it cropped */
  opacity: 0.5; /* adjust opacity as needed */
  z-index: -1;
}

.cta-container {
    position: relative;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 1.5rem;
    filter: blur(3rem);
}

.cta-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    color: #22c55e;
    margin: 0 auto 1.5rem;
}

.cta-quote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: #e0f0f0;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #14b8a6);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    background: linear-gradient(to right, #2563eb, #7c3aed, #0f766e);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .earth-container {
        width: 100%;
        height: 600px;
    }
    
    .scope-panel {
        width: 16rem;
    }
    
    .scope-1.active {
        transform: translate(-50%, -50%) translate(0px, -280px);
    }
    
    .scope-2.active {
        transform: translate(-50%, -50%) translate(0px, -80px);
    }
    
    .scope-3.active {
        transform: translate(-50%, -50%) translate(0px, 120px);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-charts {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-8 {
    margin-top: 2rem;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.rounded-full {
    border-radius: 9999px;
}

.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 0.3s;
}

.transform {
    transform: translate(0, 0);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.inline {
    display: inline;
}

.mr-2 {
    margin-right: 0.5rem;
}

.text-emerald-400 {
    color: #34d399;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-purple-400 {
    color: #c084fc;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-pink-400 {
    color: #f472b6;
}

.text-yellow-400 {
    color: #facc15;
}

.text-teal-400 {
    color: #2dd4bf;
}

.text-green-400 {
    color: #4ade80;
}

/*=============== 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: #0A102D;
  
  /*========== 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: #0A102D;
    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;
    }
  }