﻿/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
    gap: 2rem;
    background:beige;
}

.hero-text {
    flex: 1 1 480px;
    max-width: 600px;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

    .hero-text h1 .highlight {
        color: #1ab9d6;
    }

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted, #666);
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #1ab9d6;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

    .cta-btn:hover {
        background-color: #00e67e;
    }

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

/* Responsive: Mobile & Tablet */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        margin-top:115px;
    }

    .hero-text {
        align-items: center;
        text-align: center;
        animation: none; /* Optional: skip animation on small screens */
        opacity: 1;
    }

        .hero-text h1 {
            font-size: 2.4rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

    .cta-btn {
        justify-content: center;
    }

    .hero-image {
        margin-top: -195px;
        margin-bottom: 50px;
    }

        .hero-image img {
            max-width: 90%;
        }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

/*company*/
/* Section and Heading */
.rome {
    margin-top:-121px;
}

#romee {
    background-color: #1ab9d6;
    color: white;
}

.companies-section {
    padding: 20px;
    text-align: center;
    overflow:hidden;
}

.companies-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #3b5323;
    letter-spacing: 1px;
    
    text-transform: uppercase;
}

/* Carousel Container */
.logo-carousel {
    
    position: relative;
    width: 100%;

}


/* Logo Track for animation */
.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused; /* pause on hover */
}

/* Individual Logo Styling */
.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100px;
    padding: 10px;
}

    .logo-item h2 {
        height: 100px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

        .logo-item h4:hover {
            transform: scale(1.1);
        }

/* Animation Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        padding: 5px;
    }

        .logo-item h4 {
            height: 50px;
        }
    .columns {
        display: flex;
        gap: 3rem;
        flex-direction:column;
    }

}
/*experience section*/
.experience-section {
    background: #000000b5;
    padding: 4rem 2rem;
    font-family: 'Inter', sans-serif;
    color: white;
}

.columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.visual-column {
    flex: 1;
    position: relative;
}

.main-image-container {
    position: relative;
}

.bw-image {
    width: 100%;
    filter: grayscale(100%);
    display: block;
}

.inset-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    top: 5%;
    left: -4%;
    background: #1ab9d6;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .content-column h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .content-column p {
        font-size: 1rem;
        color:white;
        line-height: 1.6;
    }

.benefits-list ul {
    border-left: 3px solid #1ab9d6;
    padding-left: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.benefits-list i {
    color: #1a88c8;
    margin-right: 0.5rem;
}

.cta-button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #1ab9d6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.ceo-profile {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.ceo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.ceo-info {
    font-size: 0.9rem;
}

.icon-arrow-up {
    color: #1ab9d6;
    margin-left: auto;
    font-size: 1.2rem;
}
/* ===== Our Customers Section ===== */
.our-customers {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 60px;
}

/* ===== Grid Layout ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Service Card ===== */
.service-card {
    background-color: #000000ab;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .service-card.reveal {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== Image Area ===== */
.image-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

    .image-wrapper .iconos {
        width: 100%;
        height: 34px;
        display: block;
        transition: transform 0.5s ease;
    }

.imgservice {
    height: 253px;
}
.service-card:hover .image-wrapper img {
    transform: scale(1.05);
}

/* ===== Sliding Transparent Overlay ===== */
.image-slider-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover .image-slider-overlay {
    left: 0;
}

/* ===== Icon Overlay ===== */
.icon-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background-color: #4b4a4a;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease, background-color 0.3s ease;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

    .icon-overlay img {
        width: 24px;
        height: 24px;
    }

.service-card:hover .icon-overlay {
    transform: rotateY(180deg);
    background-color: #ff944d; /* lighter orange */
}

/* ===== Card Content ===== */
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color:white;
    margin-bottom: 12px;
}

.description {
    font-size: 0.95rem;
    color: white;
    line-height: 1.5;
    margin-bottom: auto;
}

/* ===== View More Button ===== */
.view-more {
    margin-top: 24px;
    padding: 12px 16px;
    background-color: #eee;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

    .view-more:hover {
        background-color: darkgrey;
    }

.arrow-icon {
    display: inline-block;
    margin-left: 8px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-more:hover .arrow-icon {
    transform: translateX(5px) scale(1.1);
}

/* ===== Responsive Enhancements (Optional) ===== */
@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .card-content {
        padding: 20px;
    }

    .view-more {
        font-size: 0.95rem;
        padding: 10px 14px;
    }
}
                                   /** why choose**/
/* ========= Bootcamp Benefits Section ========= */
.bootcamp-benefits {
    background: linear-gradient(to bottom right, #0a0a0a, #0f0f0f);
    padding: 100px 20px;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
}

/* ========= Section Header ========= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    
}

    .section-header.reveal {
        opacity: 1;
        transform: translateY(0);
    }

.sub-heading {
    color: #66ff99;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}

/* ========= Grid Layout ========= */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========= Benefit Card ========= */
.benefit-card {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 30px 24px;
    overflow: hidden;
    z-index: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* Hover Elevation & Glow Pulse */
    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 20px rgba(102, 255, 153, 0.4), inset 0 0 8px rgba(102, 255, 153, 0.1);
    }

    /* Glowing Animated Gradient Border */
    .benefit-card::before {
       
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #66ff99, #00ffff, #66ff99, #00ffff);
        background-size: 300% 300%;
        border-radius: 18px;
        z-index: -1;
        animation: borderGlow 6s ease infinite;
        opacity: 0.3;
        filter: blur(6px);
    }

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Light Sweep on Hover */
.benefit-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
    z-index: 1;
}

.benefit-card:hover::after {
    left: 150%;
}

/* ========= Card Content ========= */
.benefit-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
}

.benefit-description {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

/* ========= Responsive Enhancements ========= */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .benefit-grid {
        gap: 20px;
    }

    .benefit-card {
        padding: 24px 20px;
    }
}
/*stats*/
.stats-section {
    background: #1e1e1e url("/images/9057765.jpg"); /* Subtle texture */
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #413939fc;
    background-blend-mode:hard-light;
}

.stat-column {
    text-align: center;
    width: 200px;
    margin: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: #1a88c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .stat-icon i {
        font-size: 28px;
        color: white;
    }

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
}

.scroll-top-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

    .scroll-top-btn:hover {
        background-color: #e69500;
    }

    .scroll-top-btn i {
        color: white;
        font-size: 20px;
    }

/*testimonial*/

.testimonials-section {
    background: #a09c9ce8;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.decorative-elements .curve-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle at top left, #3989c2c4 0%, #d5cdcd63 70%);
    z-index: 0;
}

.squiggle-right {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: lightgreen;
    opacity: 0.5;
}

.testimonial-carousel {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.testimonial-card {
    background:white;
    border-radius: 10px;
    padding: 30px 30px 50px;
    display: flex;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    gap: 20px;
    transition: transform 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

.card-border {
    border-left: 6px solid #1a88c8;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #1a88c8;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.stars {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.customer-name {
    font-weight: bold;
    color: #333;
}

.customer-role {
    font-size: 14px;
    color: #777;
}

.quote-icon {
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 40px;
    color: #1a88c8;
    opacity: 0.2;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #1a88c8;
}

.swiper-pagination-bullet-active {
    background: #1a88c8;
}



/*===================blog-section======================*/
.blog-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.blog-header .subtitle {
    font-family: 'Brush Script MT', cursive;
    font-size: 3.5rem;
    color: #e76f51;
    margin-bottom: 22px;
}

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    position: relative;
}

.image-wrapper-blog {
    position: relative;
}

    .image-wrapper-blog img {
        width: 100%;
        height: auto;
        display: block;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e76f51;
    color: white;
    padding: 8px 12px;
    text-align: center;
    border-radius: 4px;
    transform: rotate(-2deg);
}

    .date-badge .day {
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1;
    }

    .date-badge .month {
        font-size: 0.75rem;
    }

.blog-card h3 {
    font-size: 1.2rem;
    margin: 20px;
    color: #333;
}

.read-more-btn {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 10px 20px;
    background-color: #e76f51;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

    .read-more-btn:hover {
        background-color: #c75c3f;
    }

/*=================pricing-section==============================*/

.pricing-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
    margin: auto;
    padding: 2rem 1rem;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

.pricing-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Plan Card */
.plan-card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

    .plan-card:hover {
        transform: translateY(-5px);
    }

/* Header */
.plan-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffd1;
}

.month {
    font-size: 1rem;
    color: #ccc;
    margin-left: 5px;
}

/* Description */
.plan-description {
    margin: 1rem 0;
    color: #aaa;
}

/* CTA Button */
.cta-button1 {
    background-color: #00ffd1;
    color: #000;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1.5rem;
}
.pph2 {
    text-align: center;
    margin-bottom: 56px;
    margin-top: 10px;
    font-family: fangsong;
    font-size: xxx-large;
    color: #00ffd1;
}
    .cta-button1:hover {
        background-color: #00bfa6;
    }

/* Features List */
.features-list {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

    .features-list li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }
    /*_______________pricing plan section__________________*/
.check {
    color: #00ffd1;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
.cross-icon {
    color: #00ffd1;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
/* Responsive */
@media (max-width: 960px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 90%;
        max-width: 400px;
    }
}
