
/*________TOP Banner */
  .hr-top-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 100px 85px;
            max-width: 100%;
            margin: auto;
            background: white;
            background-image: url("https://corporatedekhoventure.com/web_image/banner_background.png");
            background-size: cover;
            
        }

        /* Left Content */
        .hr-top-banner-content {
            width: 60%;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease-in-out forwards, slideUp 1s ease-in-out forwards;
        }

        .hr-top-banner-content h1 {
            font-size: 50px;
            margin-bottom: 20px;
        }
         .hr-top-banner-content span {
            font-size: 50px;
                font-weight: bold;
            font-style: italic;
        }

        .hr-top-banner-content p {
            font-size: 18px;
            color: #555;
        }

        .hr-top-banner-buttons {
            margin-top: 20px;
        }

        .hr-top-banner-buttons img {
            width: 150px;
            margin-right: 10px;
            cursor: pointer;
        }

        /* Right Section - Lottie */
        .hr-top-banner-animation {
            width: 50%;
            display: flex;
            justify-content: center;
        }

        #lottie-container {
            width: 100%;
            /*height: 400px;*/
        }
        .lottie{
            width: 700px;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
            }
            to {
                transform: translateY(0);
            }
        }

        /* Responsive */
          @media (max-width: 1100px) {
               .lottie{
            width: 500px;
        }
            .hr-top-banner-content span {
            font-size: 50px;
             /*font-family: 'Font Awesome 6 Brands';*/
            letter-spacing: 6px;
        }
              
          }
        @media (max-width: 768px) {
            .hr-top-banner {
                flex-direction: column-reverse;
                text-align: center;
                padding: 20px 10px ;
            }
            .hr-top-banner-content h1{
                font-size: 1.5rem;
            }
            .hr-top-banner-content span {
            font-size: 25px;
            letter-spacing: 4px;
            }
            .hr-top-banner-content p{
                font-size: 0.9rem;
            }

            .hr-top-banner-content, .hr-top-banner-animation {
                width: 100%;
            }

            .hr-top-banner-buttons img {
                width: 130px;
            }
            .lottie{
            width: 100%;
            height: 100%;
        }

        }

/*_________our services______*/

        /* our-our-services Section */
.our-our-services {
    padding-top: 100px;
    background: #ffffff;
}

.our-our-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
}

.section-subtitle {
    display: block;
    text-align: center;
    color: #FF6B6B;
    /*font-size: 14px;*/
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.section-title {
    text-align: center;
    /*font-size: 42px;*/
    color: #2B2B2B;
    margin-bottom: 60px;
    font-weight: 700;
}

.our-our-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.our-service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    isolation: isolate;
}

/* Default gradient - will be overridden by specific colors */
.our-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
    transform: scale(0) translate(50px, 20px);
    transform-origin: 7% 15%;
}

/* Purple gradient card */
.our-service-card:has(.our-service-icon.purple)::before {
    background: linear-gradient(135deg, #4d41ff, #004cff);
}

/* Orange gradient card */
.our-service-card:has(.our-service-icon.orange)::before {
    background: linear-gradient(135deg, #FF8A00, #FF6B00);
}

/* Blue gradient card */
.our-service-card:has(.our-service-icon.blue)::before {
    background: linear-gradient(135deg, #0084FF, #0055FF);
}

/* Pink gradient card */
.our-service-card:has(.our-service-icon.pink)::before {
    background: linear-gradient(135deg, #FF6B6B, #FF4545);
}

.our-service-card:hover::before {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}
.our-service-title{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.our-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 25px;*/
    position: relative;
    transition: all 0.5s ease;
}

.our-service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22%;
    background: white;
    opacity: 0;
    color: black;
    transition: opacity 0.5s ease;
}

.our-service-card:hover .our-service-icon::before {
    opacity: 1;
    box-shadow: 0px 4px 10px rgba(255, 0, 150, 0.6),
    0px 8px 30px rgba(0, 204, 255, 0.6);
}

.our-service-card h3 {
    font-size: 30px;
    color: #2B2B2B;
    /*margin-bottom: 20px;*/
    font-weight: 600;
    transition: color 0.5s ease;
}

.our-service-card p {
    color: #666666;
    line-height: 1.7;
    font-size: 15px;
    margin: 0px;
    transition: color 0.5s ease;
}
.our-service-icon i {
    color: white;
    font-size: 30px;
}
.our-service-card:hover i {
    color: black;
}
.our-service-card:hover h3,
.our-service-card:hover p {
    color: white;
}

/* Featured card specific styles - keeping its original gradient */
.our-service-card.featured {
    background: linear-gradient(135deg, #0084FF, #00F0FF);
    color: white;
}

.our-service-card.featured::before {
    display: none;
}

.our-service-card.featured h3,
.our-service-card.featured p {
    color: white;
}

.our-service-card.featured .our-service-icon {
    background: white;
}

.our-service-card.featured .our-service-icon i {
    color: white;
}


/* Icon background colors */
.our-service-icon.purple {
    background: #9747FF;
}

.our-service-icon.orange {
    background: #FF8A00;
}

.our-service-icon.blue {
    background: #0084FF;
}

.our-service-icon.pink {
    background: #FF6B6B;
}

.our-service-card:hover .our-service-icon.purple i {
    color: #9747FF;
}

.our-service-card:hover .our-service-icon.orange i {
    color: #FF8A00;
}

.our-service-card:hover .our-service-icon.blue i {
    color: #0084FF;
}

.our-service-card:hover .our-service-icon.pink i {
    color: #FF6B6B;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

.read-more:hover i {
    transform: translateX(5px);
}

.our-our-services-footer {
    text-align: center;
    margin-top: 50px;
    color: #666666;
}

.our-our-services-footer a {
    color: #9747FF;
    text-decoration: none;
    font-weight: 500;
}

.our-our-services-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .our-our-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .our-our-services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 19px;
        margin-bottom: 40px;
    }
    .our-service-card h3 {
        font-size: 25px;
    }
    .our-our-services-grid {
        grid-template-columns: 1fr;
    }

    .our-service-card {
        padding: 30px 20px;
    }
    .our-service-icon {
    width: 50px;
    height: 50px;
    color: white;
    
}
.our-service-icon i{
    font-size:25px;
}


}

.our-service-card:hover .our-service-icon.purple i {
    color: #9747FF !important;
}

.our-service-card:hover .our-service-icon.orange i {
    color: #FF8A00;
}

.our-service-card:hover .our-service-icon.blue i {
    color: #0084FF;
}

.our-service-card:hover .our-service-icon.pink i {
    color: #FF6B6B;
}
/*__________staff section _____________*/

.Stiffer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 50px;*/
    /*max-width: 1200px;*/
    margin: auto;
}

.Stiffer-content {
    width: 50%;
}

.Stiffer-highlight {
    color: green;
    font-weight: bold;
}

.Stiffer-title {
    font-size: 38px;
    font-weight: bold;
    color: #121212;
    margin-bottom: 15px;
}

.Stiffer-list {
    list-style: none;
    margin-bottom: 20px;
    padding: 0px;;
}

.Stiffer-list li {
    font-size: 16px;
    margin-bottom: 8px;
    color: grey;
}

.Stiffer-button {
    padding: 10px 20px;
    border: 2px solid green;
    background: white;
    color: green;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
}

.Stiffer-button:hover {
    background: green;
    color: white;
}

.Stiffer-image {
    width: 50%;
    height: auto;
}
.Stiffer-image img {
    max-width: 100%;
    height: auto;
}
.Stiffer2-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    /*padding: 50px;*/
    /*max-width: 1200px;*/
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Stiffer-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 10px;
    }
    .Stiffer-image {
    width: 100%;
    height: auto;
    }
    .Stiffer2-container {
    flex-direction: column-reverse;
    }
    .Stiffer-content {
        margin-bottom: 20px;
        width: 90%;
        text-align: start;
    }
    .Stiffer-title {
    font-size: 22px;
}

.Stiffer-list li {
    font-size: 14px;
    margin-bottom: 8px;
}
}



/*_____why choose us_____*/
.wcu-container {
    text-align: center;
    padding: 50px 20px;
    background: #f4f3fb;
}

/* Heading */
.wcu-heading h2 {
    font-size: 2rem;
    color: #000;
    font-weight: bold;
}

.wcu-highlight {
    color: #7368ff;
    font-style: italic;
}

.wcu-heading p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #333;
}

/* Cards */
.wcu-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.wcu-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease-in-out;
}
.wcu-card h3{
font-size: 1.5rem;
}

.wcu-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.wcu-icon {
    font-size: 42px;
    background: #7368ff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    margin-bottom: 20px;
    margin-top: 20px;
     outline: 2px solid #7368ff;
      outline-offset: 15px;
}

/* Button */
.wcu-btn {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.wcu-btn:hover {
    background: #c2185b;
}

/* Responsive */
@media (max-width: 900px) {
    .wcu-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .wcu-card {
        width: 100%;
    }
}

.Industries_opportunities{
    background-image: url("https://corporatedekhoventure.com/web_image/WELCOME_TO_Corporate_Dekho_EMPLOYMENT_CORNER.png");
    background-attachment: fixed;
    padding: 39px 15px !important;
}