/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core cloud computing color palette */
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(237, 84%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(237, 84%, 15%);
    --primary: hsl(218, 88%, 38%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-deep: hsl(237, 66%, 25%);
    --accent-red: hsl(359, 59%, 49%);
    --accent-red-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 14%, 96%);
    --secondary-foreground: hsl(237, 84%, 15%);
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(220, 14%, 96%);
    --accent-foreground: hsl(237, 84%, 15%);
    --border: hsl(220, 13%, 91%);
    --hero-bg: hsl(237, 66%, 25%);
    --hero-accent: hsl(218, 88%, 38%);
    --text-hero: hsl(0, 0%, 100%);
    --text-muted-light: hsl(220, 14%, 70%);
    --circle-glow: hsl(218, 88%, 70%);
    --radius: 0.75rem;
}

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

.min-h-screen {
    min-height: 100vh;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--logo-T-color);
    margin-bottom: 1.4rem;
    text-align: center;
}

.section-description {
    font-size: 1.25rem;
    color: var(--logo-T-color);
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-primary:hover {
    background-color: hsl(218, 88%, 35%);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-red);
    color: var(--accent-red-foreground);
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-accent:hover {
    background-color: hsl(359, 59%, 45%);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--logo-T-color), #1e3a8a, #0f172a);
    position: relative;
    overflow: hidden;
}

.floating-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.2), transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 8rem;
    height: 8rem;
    top: 5rem;
    left: 2.5rem;
    background: rgba(147, 197, 253, 0.2);
    animation: pulse 2s infinite;
}

.circle-2 {
    width: 6rem;
    height: 6rem;
    top: 10rem;
    right: 5rem;
    background: rgba(255, 255, 255, 0.1);
    animation: bounce 3s infinite;
    animation-delay: 1s;
}

.circle-3 {
    width: 10rem;
    height: 10rem;
    bottom: 8rem;
    left: 25%;
    background: rgba(165, 243, 252, 0.15);
    animation: pulse 2s infinite;
    animation-delay: 2s;
}

.circle-4 {
    width: 5rem;
    height: 5rem;
    top: 33%;
    right: 33%;
    background: rgba(191, 219, 254, 0.25);
    animation: bounce 3s infinite;
    animation-delay: 0.5s;
}

.circle-5 {
    width: 7rem;
    height: 7rem;
    bottom: 5rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    animation: pulse 2s infinite;
    animation-delay: 1.5s;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: left;
    margin-left: 2vw;
}

.hero-title {
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 700;
    color: white;
 margin-top: 5vw;
 
    line-height: 1.1;
}

.hero-accent {
    color: #6d9ef1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image img {
    margin-top: 5vw;
    width: 100%;
    height: 30vw;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: rgba(14, 165, 233, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}
     :root {
    --logo-E-color: #0B4BB7;
    --logo-I-color: #C43235;
    --logo-T-color: #14176C;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--logo-T-color);
}

.service-description {
    color: var(--logo-T-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Platforms Section */
.platforms-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.12));
}

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

.platform-card {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.platform-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--logo-T-color);
    margin-bottom: 1rem;
}

.platform-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary);
    color: var(--logo-T-color);
    font-size: 0.875rem;
    border-radius: calc(var(--radius) - 2px);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05), var(--background));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--logo-T-color);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--logo-T-color);
}

.industries-section {
    margin-top: 5rem;
}

.industries-header {
    text-align: center;
    margin-bottom: 3rem;
}

.industries-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--logo-T-color);
    margin-bottom: 1.5rem;
}

.industries-description {
    font-size: 1.25rem;
    color: var(--logo-T-color);
    margin-bottom: 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.industries-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.industry-tag {
    padding: 1rem;
    border-radius: var(--radius);
    border: 2px solid;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    transform: scale(1.05);
}

.healthcare {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.financial {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.2);
}

.manufacturing {
    background-color: rgba(249, 115, 22, 0.1);
    color: #ea580c;
    border-color: rgba(249, 115, 22, 0.2);
}

.retail {
    background-color: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    border-color: rgba(168, 85, 247, 0.2);
}

.education {
    background-color: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-color: rgba(59, 130, 246, 0.2);
}

.government {
    background-color: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    border-color: rgba(99, 102, 241, 0.2);
}

.industries-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-section {
    padding: 5rem 0;
    color: white;
    background: var(--logo-T-color);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.process-steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .process-step {
        text-align: left;
    }
}

@media (max-width: 1023px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

.step-icon-container {
    position: relative;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .step-icon-container {
        margin-bottom: 0;
    }
}

.step-icon {
    width: 5rem;
    height: 5rem;
    background: hsl(var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

@media (min-width: 1024px) {
    .step-icon {
        margin: 0;
    }
}

.step-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary-foreground));
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--logo-I-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--accent-red-foreground));
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--text-hero));
    margin-bottom: 1rem;
}

.step-description {
    color:white;
    font-size: 1.125rem;
}

.process-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.step-icon {
    width: 5rem;
    height: 5rem;
    background: var(--logo-E-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
/* Process Section */
/* .process-section {
   
    padding: 5rem 0;
    background-color: var(--primary-deep);
    color: var(--text-hero);
}

.process-section .section-title {
    color: var(--logo-T-color);
}

.process-section .section-description {
    color: white;
}

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

.process-step {
    text-align: center;
}

.step-icon-container {
    position: relative;
    margin-bottom: 2rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}



.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--accent-red);
    color: var(--accent-red-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-hero);
    margin-bottom: 1rem;
}

.step-description {
    color: white;
    font-size: 1.125rem;
} */

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(to right, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.06), rgba(14, 165, 233, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--logo-T-color);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--logo-T-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--logo-T-color);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--logo-T-color);
}

.cta-image img {
    width: 90%;
    height: 30vw;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

@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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    margin-left: 1vw;
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .cta-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .industries-list {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .services-grid,
    .platforms-grid,
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
       
    }
    .btn-hero{
        margin-left: 15vw;
    }
}