/* SECTION */
.hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* CONTENT (MAIN FIX) */
.hero-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* CENTER */
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 90%;
}

/* HEADING */
.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media(max-width: 576px){
    .hero-content h1{
        font-size: 29px !important;
    }
}
/* PARAGRAPH */
.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}

/* BUTTONS */
.hero-btns {
    margin-top: 25px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 25px;
    margin-right: 10px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-white {
    background: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}

/* CURSOR EFFECT */
.cursor {
    border-right: 2px solid #fff;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.service-course-section {
    padding: 40px 0;
    background: #141416;
}

/* Heading */
.heading h2 {
    font-size: 34px;
    font-weight: 700;
}

.heading span {
    color: #eebd43;
}

.heading p {
    color: #666;
    margin-top: 10px;
}

/* GRID */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* CARD */
.course-card {
    background: #141416;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eebd43;
    transition: 0.3s;
}

/* Hover */
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.course-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.course-content {
    padding: 20px;
}

.category {
    font-size: 14px;
    color: #6b7280;
}

/* Title */
.course-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 15px;
    line-height: 1.4;
}

/* Bottom Row */
.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Duration */
.duration {
    font-size: 14px;
    color: #374151;
}

/* Button */
.enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* text & icon spacing */
    padding: 8px 14px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* Icon Fix */
.enroll-btn i {
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Hover Animation */
.enroll-btn:hover i {
    transform: translateX(5px);
}

.enroll-btn:hover {
    background: linear-gradient(135deg, var(--theme-primary-color), var(--theme-secondary-color));
    color: #fff;
}



/* Responsive */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}

.footer-title-style {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

/* full bottom line */
.footer-title-style::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 30px;
    width: 120px;
    /* fixed width like image */
    height: 2px;
    background: #fff;
    /* dark teal */
}

/* top small line */
.footer-title-style::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100px;
    height: 2px;
    background: #d9ab3e;
    /* light teal */
}

            .udx-form-box select.form-control {
                background: #141416;
                color: #fff;
                border-radius: 10px;
                padding: 12px;
            }

            .udx-form-box select.form-control option {
                color: #000;
                /* dropdown visible */
            }

            .udx-contact-pro {
                background: #141416;
            }

            /* LEFT SIDE */
            .udx-contact-left h2 {
                color: #fff;
                font-weight: 700;
            }

            /* Contact Card */
            .udx-contact-card {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 18px;
                border-radius: 16px;
                background: #141416;
                border: 1px solid rgba(255, 193, 7, 0.2);
                margin-bottom: 15px;
                transition: 0.3s;
                backdrop-filter: blur(10px);
            }

            .udx-contact-card:hover {
                transform: translateX(8px);
                border-color: #ffc107;
                box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
            }

            .udx-contact-card i {
                width: 50px;
                height: 50px;
                background: rgba(255, 193, 7, 0.1);
                color: #ffc107;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
            }

            .udx-contact-card h6 {
                color: #fff;
                margin: 0;
            }

            .udx-contact-card p {
                color: #cbd5e1;
                margin: 0;
                font-size: 14px;
            }

            /* FORM */
            .udx-form-box {
                background: #141416;
                padding: 30px;
                border-radius: 18px;
                border: 1px solid rgba(255, 193, 7, 0.2);
                backdrop-filter: blur(10px);
            }

            .udx-form-box h4 {
                color: #fff;
            }

            /* Input */
            .udx-form-box .form-control {
                background: rgba(255, 255, 255, 0.08);
                border: none;
                color: #fff;
                padding: 12px;
                border-radius: 10px;
            }

            .udx-form-box .form-control:focus {
                box-shadow: 0 0 0 1px #ffc107;
            }

            .udx-form-box .form-control::placeholder {
                color: #94a3b8;
            }

            /* BUTTON */
            .udx-btn-submit {
                padding: 15px 30px;
                border-radius: 5px;
                background: linear-gradient(135deg, #ffc107, #ff9800);
                border: none;
                color: #000;
                font-weight: 600;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: 0.3s;
            }

            .udx-btn-submit:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
            }

            /* Responsive */
            @media (max-width: 768px) {
                .udx-contact-card {
                    flex-direction: row;
                }
            }
            

.aeo-section-dark {
    background-color: #080b12; /* Very deep navy */
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.text-neon {
    color: #fff;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.text-light-muted {
    color: #fff;
}

.aeo-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Dark Formula Card */
.formula-dark-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.formula-icon-glow {
    width: 45px;
    height: 45px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

/* Feature List */
.aeo-features-grid {
    display: grid;

    gap: 15px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Visuals & Floating Effects */
.visual-container {
    position: relative;
    z-index: 1;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.floating-img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floating 4s ease-in-out infinite;
    border-radius: 5px;
}

.glass-stats {
    position: absolute;
    top: 20%;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dot-live {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

/* Neon Button */
.btn-neon-glow {
    margin-top: 20px;
border: 1px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;

}

.btn-neon-glow:hover {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    transform: translateY(-3px);

}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
    
 
            .udx-content ul li {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .udx-content ul li i {
                color: #ffc107;
                font-size: 14px;
            }

            .swiper-pagination-bullet {
                background: #fff;
                opacity: 0.5;
                margin-top: 40px;
            }

            .swiper-pagination-bullet-active {
                background: #ffc107;
                opacity: 1;
                width: 25px;
                border-radius: 10px;
            }

            .udx-case-study {
                background: #141416;
            }

            .udx-title {
                color: #fff;
                font-size: 35px;
                font-weight: 700;
            }

            .udx-title span {
                color: #ffc107;
            }

            .udx-sub {
                color: #94a3b8;
            }

            /* Card */
            .udx-case-card {
                display: flex;
                gap: 20px;
                background: #202022;
                border-radius: 18px;
                padding: 20px;
                border: 1px solid rgba(255, 193, 7, 0.2);
                backdrop-filter: blur(10px);
                align-items: center;
            }

            /* Image Scroll Container */
            .udx-img-scroll {
                width: 50%;
                height: 350px;
                overflow: hidden;
                border-radius: 12px;
                position: relative;
            }

            .udx-img-scroll img {
                width: 100%;
                position: absolute;
                top: 0;
                animation: scrollImage 10s linear infinite;
            }

            /* Auto Scroll Animation */
            @keyframes scrollImage {
                0% {
                    top: 0;
                }

                100% {
                    top: -50%;
                }
            }

            /* Content */
            .udx-content {
                width: 50%;
            }

            .udx-content h4 {
                color: #fff;
                margin-bottom: 15px;
            }

            .udx-content ul {
                list-style: none;
                padding: 0;
            }

            .udx-content li {
                background: rgba(255, 255, 255, 0.05);
                padding: 10px 15px;
                margin-bottom: 10px;
                border-radius: 50px;
                color: #fff;
            }

            /* Responsive */
            @media(max-width: 768px) {
                .udx-case-card {
                    flex-direction: column;
                }

                .udx-img-scroll,
                .udx-content {
                    width: 100%;
                }
            }
               
               
:root {
    --up-blue: #f7c948;
    --up-gold: #f7c948;
    --up-dark: #08080a;
    --up-card: #111114;
}

.case-study-hero {
    background-color: var(--up-dark);
    padding: 40px 0;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cs-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--up-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cs-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cs-title span {
    color: var(--up-gold);
}

.cs-intro {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Meta Grid */
.cs-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.meta-label {
    display: block;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: 600;
    color: #f1f5f9;
}

/* Result Card */
.cs-result-card {
    background: var(--up-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.result-header {
    font-size: 20px;
    font-weight: 800;
    color: var(--up-gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.res-stat {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.res-stat i {
    font-size: 24px;
    color: var(--up-blue);
    margin-top: 5px;
}

.res-stat strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.res-stat p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Content Section */
.cs-content-section {
    padding: 40px 0;
    background-color: #050505;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.block-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cs-text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.takeaway-box {
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.1) 0%, transparent 100%);
    padding: 40px;
    border-radius: 24px;
    border-left: 4px solid var(--up-gold);
}

.takeaway-box h4 {
    color: var(--up-gold);
    font-weight: 800;
    margin-bottom: 15px;
}

.takeaway-box p {
    font-style: italic;
    font-size: 1.2rem;
    color: #e2e8f0;
}

/* Solution List */
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sol-item {
    display: flex;
    gap: 25px;
}

.sol-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--up-blue);
    background: rgba(59, 130, 246, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sol-info h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.sol-info p {
    color: #94a3b8;
    line-height: 1.6;
}

/* CTA Section */
.cs-cta {
    padding: 40px 0;
    background: var(--up-dark);
}

.btn-upgrix {
    display: inline-block;
    background: var(--up-gold);
    color: #000;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 30px;
    transition: 0.3s;
}


@media (max-width: 991px) {
    .cs-meta-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
    .cs-title { font-size: 25px; }
    .cs-result-card { margin-top: 50px; }
}


.ugx-growth-img-section {
    background: #0f0f11;
    color: #fff;
}

/* Heading */
.ugx-growth-title {
    font-size: 36px;
    font-weight: 800;
}
@media(max-width: 576px){
    .ugx-growth-title{
        font-size: 25px;
    }
    .upgrix-ai-header h2
{
    font-size: 25px;
}
.aeo-header h2
{
    font-size: 25px;
}
  h2{
      font-size: 25px !important;
  }  
}
.ugx-growth-title span {
    background: linear-gradient(90deg, #f7c948, #ffb400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ugx-growth-subtitle {
    color: #9ca3af;
    max-width: 650px;
    margin: auto;
}

/* Card */
.ugx-growth-img-card {
    display: flex;
    gap: 20px;
    background: #1a1a1d;
    border-radius: 20px;
    padding: 20px;
    align-items: center;
    border: 1px solid rgba(255, 193, 7, 0.15);
    transition: 0.4s;
}

.ugx-growth-img-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Image */
.ugx-img-box img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 9px;
}

/* Content */
.ugx-content-box {
    position: relative;
}

.ugx-step {
    font-size: 14px;
    font-weight: 700;
    color: #f7c948;
}

.ugx-content-box h4 {
    margin: 5px 0;
    font-weight: 700;
}

.ugx-content-box p {
    color: #d1d5db;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:768px){
    .ugx-growth-img-card {
        flex-direction: column;
        text-align: center;
    }

    .ugx-img-box img {
        width: 100%;
        height: auto;
    }
}

   .aeo-process-section {
   background: #0b0f19;
   color: #fff;
   }
   .process-title {
   font-size: 35px;
   font-weight: 700;
   }
   .process-title span {
   color: #ffb505; /* changed */
   }
   .process-subtitle {
   color: #aaa;
   }
   .badge-process {
   background: rgba(255, 181, 5, 0.15); /* changed */
   color: #ffb505; /* changed */
   padding: 6px 14px;
   border-radius: 20px;
   font-size: 13px;
   display: inline-block;
   margin-bottom: 10px;
   }
   /* Timeline */
   .aeo-timeline {
   position: relative;
   margin-top: 50px;
   }
   .aeo-timeline p{
   color: #ffff;
   }
   .aeo-timeline::before {
   content: '';
   position: absolute;
   width: 2px;
   background: #ffb505; /* changed */
   top: 0;
   bottom: 0;
   left: 50%;
   }
   /* Items */
   .timeline-item {
   width: 50%;
   padding: 20px;
   position: relative;
   }
   .timeline-item.left {
   left: 0;
   }
   .timeline-item.right {
   left: 50%;
   }
   .timeline-content {
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(12px);
   padding: 25px;
   border-radius: 15px;
   transition: 0.3s;
   border: 1px solid rgba(255,255,255,0.1);
   }
   .timeline-content:hover {
   transform: translateY(-5px);
   border-color: #ffb505; /* changed */
   }
   /* Step number */
   .step {
   font-size: 32px;
   color: #ffb505; /* changed */
   font-weight: bold;
   }
   /* MOBILE FIX */
   @media (max-width: 768px) {
   .aeo-timeline::before {
   left: 20px;
   width: 2px;
   }
   .timeline-item {
   width: 100%;
   padding-left: 60px;
   padding-right: 15px;
   margin-bottom: 30px;
   }
   .timeline-item.left,
   .timeline-item.right {
   left: 0;
   }
   .timeline-content {
   padding: 20px;
   border-radius: 12px;
   }
   .step {
   font-size: 24px;
   margin-bottom: 8px;
   display: block;
   }
   /* Optional: small dot indicator */
   .timeline-item::before {
   content: '';
   position: absolute;
   left: 12px;
   top: 25px;
   width: 12px;
   height: 12px;
   background: #ffb505;
   border-radius: 50%;
   }
   .process-title {
   font-size: 24px;
   }
   .process-subtitle {
   font-size: 14px;
   }
   }

   /* SECTION */
   .upgrix-ai-platform-section {
   background: #0e0e0e;
   padding: 40px 20px;
   font-family: 'Montserrat', sans-serif;
   color: #fff;
   }
   /* HEADER */
   .upgrix-ai-header h2 {
   font-size: 35px;
   font-weight: 800;
   background: linear-gradient(to right, #fff, #ffb905);
   -webkit-background-clip: text;
   color: transparent;
   }
   .upgrix-ai-header p {
   color: #fff;
   max-width: 600px;
   margin: auto;
   }
   /* CARD */
   .upgrix-ai-card {
   background: rgb(32 32 34);
   border-radius: 18px;
   padding: 30px;
   border: 1px solid rgba(255,255,255,0.05);
   backdrop-filter: blur(12px);
   transition: all 0.3s ease;
   height: 100%;
   position: relative;
   }
   /* HOVER EFFECT */
   .upgrix-ai-card:hover {
   transform: translateY(-10px) scale(1.02);
   border-color: #ffb805;
   box-shadow: 0 10px 30px rgba(255, 184, 5, 0.2);
   }
   /* ICON */
   .upgrix-ai-icon {
   width: 60px;
   height: 60px;
   border-radius: 14px;
   background: #1a1a1f;
   color: #ffb805;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   margin-bottom: 20px;
   transition: 0.3s;
   }
   /* ICON HOVER */
   .upgrix-ai-card:hover .upgrix-ai-icon {
   transform: scale(1.15) rotate(6deg);
   }
   /* TEXT */
   .upgrix-ai-card h5 {
   font-size: 20px;
   margin-bottom: 10px;
   font-weight: 600;
   }
   .upgrix-ai-card p {
   font-size: 16px;
   color: #fff;
   }

   .aeo-section {
   background: #020617;
   padding: 40px 20px;
   font-family: 'Montserrat', sans-serif;
   color: #fff;
   }
   /* Header */
   .aeo-header {
   text-align: center;
   margin-bottom: 70px;
   }
   .aeo-header h2 {
   font-size: 35px;
   margin: 15px 0;
   font-weight: 800;
   background: linear-gradient(to right, #fff, #ffb905);
   -webkit-background-clip: text;
   color: transparent;
   }
   .aeo-header p {
   color: #fff;
   }
   .aeo-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap: 20px;
   }
   /* Card */
   .aeo-card {
   background: rgba(15, 23, 42, 0.7);
   padding: 30px;
   border-radius: 18px;
   border: 1px solid rgba(255,255,255,0.05);
   backdrop-filter: blur(12px);
   transition: 0.3s;
   }
   .aeo-card:hover {
   transform: translateY(-8px);
   border-color: #ffb805;
   }
   /* ICON DESIGN 🔥 */
   .icon {
   width: 55px;
   height: 55px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 15px;
   font-size: 22px;
   }
   /* Color Variants */
   .blue .icon {
   background-color: #1a1a1f;
   color: #ffb805;
   }
   .purple .icon {
   background-color: #1a1a1f;
   color: #ffb805;
   }
   .green .icon {
   background-color: #1a1a1f;
   color: #ffb805;
   }
   .orange .icon {
   background-color: #1a1a1f;
   color: #ffb805;
   }
   .indigo .icon {
   background-color: #1a1a1f;
   color: #ffb805;
   }
   .icon.big {
   width: 70px;
   height: 70px;
   font-size: 28px;
   }
   /* Text */
   .aeo-card h3 {
   font-size: 30px;
   margin-bottom: 10px;
   }
   .aeo-card p {
   color: #fff;
   font-size: 16px;
   }
   /* Wide */
   .wide {
   grid-column: span 2;
   display: flex;
   align-items: center;
   gap: 20px;
   }
   /* Responsive */
   @media(max-width: 992px){
   .aeo-grid { grid-template-columns: repeat(2, 1fr); }
   }
   @media(max-width: 600px){
   .aeo-grid { grid-template-columns: 1fr; }
   .wide { flex-direction: column; text-align: center; }
   }

   .aeo-table-section {
   background: #020617;
   color: #ffffff;
   }
   .table-title {
   font-size: 35px;
   font-weight: 700;
   background: linear-gradient(to right, #fff, #ffb905);
   -webkit-background-clip: text;
   }
   /* TABLE BASE */
   .aeo-table {
   width: 100%;
   background: #202022;
   border-radius: 12px;
   overflow: hidden;
   border-collapse: collapse;
   }
   .aeo-table thead {
   background-color: #ffb805;
   }
   .aeo-table th {
   padding: 15px;
   color: #fff;
   font-size: 16px;
   text-align: left;
   }
   .aeo-table td {
   padding: 14px;
   font-size: 15px;
   color: #e2e8f0;
   }
   .aeo-table td:first-child {
   color: #ffb805;
   font-weight: 600;
   }
   .aeo-table tbody tr {
   border-bottom: 1px solid rgba(255,255,255,0.05);
   }
   .aeo-table tbody tr:hover {
   background: rgba(255,255,255,0.05);
   }
   /* ✅ MOBILE OPTIMIZATION */
   @media (max-width: 768px) {
   .table-responsive {
   overflow-x: auto;
   }
   .aeo-table {
   min-width: 600px; /* prevent breaking */
   }
   .aeo-table th {
   font-size: 14px;
   padding: 10px;
   }
   .aeo-table td {
   font-size: 13px;
   padding: 10px;
   }
   .table-title {
   font-size: 1.5rem;
   }
   }

    .aeo-cta-pro-section {
    background: #0e0e0e;
    color: #fff;
}

.aeo-cta-pro-wrapper {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.aeo-cta-pro-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
}

.aeo-cta-pro-title span {
    color: #b3a27a;
}

.aeo-cta-pro-subtext {
    color: #bbb;
    margin: 20px 0;
    font-size: 16px;
}

/* LIST */
.aeo-cta-pro-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.aeo-cta-pro-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #ddd;
}

.aeo-cta-pro-list li i {
    color: #ffb505;
    margin-top: 3px;
    font-size: 16px;
}

/* CONTACT */
.aeo-cta-pro-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.aeo-cta-pro-contact a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.aeo-cta-pro-contact a i {
    margin-right: 8px;
    color: #ffb505;
}

.aeo-cta-pro-contact a:hover {
    color: #ffb505;
}

/* BUTTON */
.aeo-btn-main {
    display: inline-block;
    padding: 12px 23px;
    background: #ffb505;
    color: #000;
    font-weight: 600;
    border-radius: 7px;
    text-decoration: none;
    transition: 0.3s;
}


/* RIGHT CARD */
.aeo-cta-pro-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.aeo-cta-pro-card h4 {
    margin-bottom: 20px;
}

.aeo-cta-pro-card-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ddd;
}

.aeo-cta-pro-card-list i {
    color: #ffb505;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .aeo-cta-pro-wrapper {
        padding: 30px;
    }

    .aeo-cta-pro-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .aeo-cta-pro-contact {
        flex-direction: column;
        gap: 10px;
    }
}


.why-closing {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b3a27a;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

            .why-choose-section {
                background: #141416;
                color: #fff;
                padding: 80px 0;
            }

            /* Heading Design */
            .why-title {
                font-size: 35px;
                font-weight: 700;
                letter-spacing: -1px;
            }

            .why-title span {
                background: #b3a27a;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .why-subtitle {
                color: #fff;
                font-size: 1.1rem;
                max-width: 600px;
                margin: 15px auto 0;
            }

            /* Updated Why Card - Horizontal Layout */
            .why-card {
                background: #202022;
                border-radius: 20px;
                padding: 40px 20px;
                display: flex;
                /* Aligns Icon and Content side-by-side */
                align-items: flex-start;
                gap: 20px;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border: 1px solid rgba(255, 193, 7, 0.2);
                backdrop-filter: blur(12px);
                height: 100%;
            }

            .why-card:hover {
                transform: translateY(-8px);
                background: rgba(255, 255, 255, 0.07);
                border-color: rgba(247, 201, 72, 0.5);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            }

            /* Icon Box Design */
            .icon-box {
                min-width: 60px;
                height: 60px;
                background: rgba(255, 193, 7, 0.1);
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                color: #ffc107;
                flex-shrink: 0;
                /* Prevents icon from squeezing */
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(247, 201, 72, 0.2);
            }

            .why-card:hover .icon-box {
                transform: rotate(-10deg) scale(1.1);
                box-shadow: 0 0 25px rgba(247, 201, 72, 0.4);
            }

            /* Content Box Styling */
            .content-box {
                text-align: left;
            }

            .content-box h5 {
                font-size: 1.25rem;
                font-weight: 700;
                margin-bottom: 8px;
                color: #fff;
            }

            .content-box p {
                font-size: 16px;
                color: #dadee5;
                line-height: 1.5;
                margin: 0;
            }

            /* Responsive Fix */
            @media (max-width: 768px) {
                .why-card {
                    padding: 20px;
                }

                .why-title {
                    font-size: 28px;
                }
            }
            

.upgrix-process-section{
    background: #141416;
    position: relative;
    overflow: hidden;
}

.upgrix-process-section::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 181, 5, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    filter: blur(80px);
}

.upgrix-process-badge{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 181, 5, 0.12);
    color: #ffb505;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.upgrix-process-title{
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
}

.upgrix-process-title span{
    color: #b3a27a;
}

.upgrix-process-subtitle{
    color: #fff;
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
}

/* Wrapper */

.upgrix-process-wrapper{
    position: relative;
    margin-top: 70px;
}

.upgrix-process-wrapper::before{
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,#ffb505,transparent);
}

/* Card */

.upgrix-process-card{
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 22px;
    background: #202022;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.upgrix-process-card:hover{
    transform: translateY(-6px);
    border-color: rgba(255,181,5,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Number */

.upgrix-process-number{
    position: absolute;
    left: -2px;
    top: 28px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #ffb505;
    color: #000;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #0b1120;
    z-index: 2;
}

/* Icon */

.upgrix-process-icon{
    min-width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255,181,5,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 70px;
}

.upgrix-process-icon i{
    font-size: 30px;
    color: #ffb505;
}

/* Content */

.upgrix-process-content h3{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.upgrix-process-content p{
    color: #ffff;
    line-height: 17px;
    margin-bottom: 0;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px){

    .upgrix-process-title{
        font-size: 34px;
    }

    .upgrix-process-card{
        flex-direction: column;
        padding: 25px;
    }

    .upgrix-process-icon{
        margin-left: 70px;
    }
}

@media(max-width:767px){

    .upgrix-process-wrapper::before{
        left: 28px;
    }

    .upgrix-process-title{
        font-size: 28px;
    }

    .upgrix-process-card{
        padding: 22px;
    }

    .upgrix-process-number{
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .upgrix-process-icon{
        width: 65px;
        height: 65px;
        min-width: 65px;
        margin-left: 55px;
    }

    .upgrix-process-icon i{
        font-size: 24px;
    }

    .upgrix-process-content h3{
        font-size: 20px;
    }

    .upgrix-process-content p{
        font-size: 14px;
        line-height: 1.8;
    }
}



    .why-dark {
    background: #181818;
    color: #fff;
}

/* Heading */
.why-tag {
    display: inline-block;
    background: #3e3a3a;
    color: #ff9800;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 10px;
}

.why-title {
    font-size: 35px;

}

.why-desc {
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Card */
.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #ffb400;

}

/* Icon */
.why-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f7c948, #ffb400);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    color: #fff;
    transition: 0.3s;
}

.why-card:hover .why-icon {
    transform: rotate(8deg) scale(1.1);
}

/* Content */
.why-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    color: #fff;
}

/* Glow Effect */
.why-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.why-card:hover::before {
    opacity: 1;
}

/* Responsive */
@media(max-width: 768px){
    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }
}

    .mission-dark {
    background: #181818;
    color: #fff;
}

/* Heading */
.mission-tag {
    display: inline-block;
    background: #3e3a3a;
    color: #ff9800;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 10px;
}

.mission-title {
    font-size: 36px;
    font-weight: 700;
}

.mission-desc {
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Card */
.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Hover Glow */
.mission-card:hover {
    transform: translateY(-12px);
    border-color: #ffb400;
   
}

/* Icon */
.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f7c948, #ffb400);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Title */
.mission-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.mission-card p {
    color: #fff;
    font-size: 15px;
}

/* Light Glow Background Effect */
.mission-card::before {
    content: "";
    position: absolute;
    width: 250%;
    height: 250%;
    top: -80%;
    left: -80%;
    opacity: 0;
    transition: 0.5s;
}

.mission-card:hover::before {
    opacity: 1;
}
@media(max-width: 576px){
    .mission-title{
        font-size: 25px;
    }
}

    .vision-dark {
    background: #181818;
    color: #fff;
}

/* Tag */
.vision-tag {
    display: inline-block;
    background: #3e3a3a;
    color: #ff9800;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Heading */
.vision-heading {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Text */
.vision-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Points */
.vision-points {
    margin-top: 20px;
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.vision-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Button */
.vision-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.vision-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99,102,241,0.3);
}

/* Image */
.vision-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Responsive */
@media(max-width: 991px){
    .vision-heading {
        font-size: 30px;
    }
}








