


    /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 2vw ;
    padding: 0 24px;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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



.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.animated-bg {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 80px;
    left: 80px;
    width: 256px;
    height: 256px;
    background: rgba(139, 92, 246, 0.1);
}

.float-2 {
    bottom: 160px;
    left: 128px;
    width: 192px;
    height: 192px;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 1s;
}

.float-3 {
    top: 33.33%;
    left: 33.33%;
    width: 128px;
    height: 128px;
    background: rgba(139, 92, 246, 0.05);
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    
    z-index: 20;
}

.hero-text {
    max-width: 768px;
    margin-top: 3vw;
    animation: fadeInUp 0.8s ease-out forwards;
}
html{
    overflow-x: hidden;
}

.hero-title {
     /* margin-left: 3.7vw; */
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    opacity: 1 !important;
    margin-bottom: 24px;
    line-height: 1.1;
}


.gradient-text {
   background: linear-gradient(to right, #1b36c0, white);
    --tw-gradient-to: #fff var(--tw-gradient-to-position);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    /* margin-left: -4vw; */
     opacity: 1 !important;
    color: white;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    width: 25vw;
    color: white;
    background: var(--logo-E-color);
   
    
}

.btn-primary:hover {
  
    transform: scale(1.05);
}

.btn-cta {
        background-color: hsl(var(--accent));
    color: white;
    padding: 17px 48px;
    font-size: 1.125rem;
    
    animation: pulse 2s infinite;
}
:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 220 100% 20%;
    --primary-foreground: 0 0% 100%;

    --secondary: 220 14% 96%;
    --secondary-foreground: 220 100% 20%;

    --muted: 220 14% 96%;
    --muted-foreground: 220 8.9% 46.1%;

    --accent: 220 60% 50%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 220 100% 20%;

    --hero-bg: 220 100% 15%;
    --hero-gradient: linear-gradient(135deg, hsl(220 100% 15%), hsl(220 100% 25%));
    --glow-primary: 0 0 40px hsl(220 100% 50% / 0.3);
    --shadow-elegant: 0 10px 30px -10px hsl(220 100% 20% / 0.2);

    --radius: 0.5rem;

    --sidebar-background: 0 0% 98%;

    --sidebar-foreground: 240 5.3% 26.1%;

    --sidebar-primary: 240 5.9% 10%;

    --sidebar-primary-foreground: 0 0% 98%;

    --sidebar-accent: 240 4.8% 95.9%;

    --sidebar-accent-foreground: 240 5.9% 10%;

    --sidebar-border: 220 13% 91%;

    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;

    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;

    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;

    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;

    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;

    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;

    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;

    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }





  
 



.btn-cta:hover {
   
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--logo-T-color);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1152px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
}

.service-content {
    padding: 32px;
}

.service-icon {
    color: var(--logo-E-color);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--logo-T-color);
}

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

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

/* CNN Section */
.cnn-section {
    background: var(--logo-T-color);
    padding: 50px 0;
}

.cnn-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cnn-text {
    animation: slideInLeft 0.8s ease-out forwards;
}

.cnn-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #f1f5f9;
}

.cnn-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.6;
    color: #f1f5f9;
}

.cnn-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 32px;
    color: #f1f5f9;
}

.cnn-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* .feature-dot {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: pulse 2s infinite;
} */
.tick{
    padding-right: 10px;
}
.feature-text {
    font-weight: 500;
    color: #f1f5f9;
}

.cnn-image {
    position: relative;
    animation: slideInRight 0.8s ease-out forwards;
}

.image-container {
    position: relative;
}

.vision-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
}

.floating-1 {
    top: 2vw;
    right: 16px;
    width: 64px;
    height: 64px;
   background: rgba(24, 69, 143, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 38vw;
    right: 38vw;
    width: 48px;
    height: 48px;
    background: rgba(24, 69, 143, 0.3);
    animation: pulse 2s infinite;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
}

.why-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 24px;
    text-align: center;
    height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
}

.why-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px -10px rgba(10, 5, 111, 0.42);
}

.why-icon {
   color: var(--logo-T-color);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    transition: color 0.3s ease;
}

.why-card:hover .why-icon {
    color: #1e293b;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--logo-T-color);
    transition: color 0.3s ease;
}

.why-card:hover .why-title {
    color: var(--logo-T-color);
}
:root {
    --logo-E-color: #133AA5;
    --logo-I-color: #C43235;
    --logo-T-color: #14176C;
}
.why-image {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.tech-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #021e48, #0f2d74);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-float {
    position: absolute;
    border-radius: 50%;
}

.cta-float-1 {
    top: 80px;
    right: 80px;
    width: 192px;
    height: 192px;
    background: rgba(139, 92, 246, 0.1);
    animation: float 6s ease-in-out infinite;
}

.cta-float-2 {
    bottom: 80px;
    left: 80px;
    width: 150px;
    height: 150px;
    background: rgba(59, 130, 246, 0.1);
    animation: pulse 2s infinite;
}

.cta-float-3 {
    top: 33.33%;
    left: 33.33%;
    width: 128px;
    height: 128px;
    background: rgba(139, 92, 246, 0.05);
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out forwards;
}

.cta-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.cta-gradient-text {
    background: linear-gradient(to right, #1b36c0, white);
    --tw-gradient-to: #fff var(--tw-gradient-to-position);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .btn{
        width: 100%;
    }
    .hero-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .cnn-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cnn-title {
        font-size: 2rem;
        line-height: 0.7;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-column {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
    
    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        /* margin-left: 19vw; */
        text-align: center;
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        /* margin-left: -15%; */
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cnn-title {
        font-size: 2rem;
    }
    
    .why-column {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .float-1, .float-2 {
        display: none;
    }
    .btn{
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn{
        width: 100%;
    }
    .hero-title {
        margin-right: 25vw;
        text-align: center;
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cnn-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 24px;
    }
}
