/* General body styles */
body {
    background-color: white;
    margin: 0;
    padding: 0;
    color: white;
    
}

/* Temp Section */

.temp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #002754;
}

.textarea {
    flex: 1 1 100%;
    padding: 20px;
    color: white;
    text-align: center;
    max-width: 600px; /* Restrict max width */
}

.haddingarea h3 {
  color: white;
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.haddingarea p {
    font-size: 1rem;
    color: #ccc;
}

.buttonarea {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.buttonarea button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #d6a811;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonarea button:hover {
    background-color: #f0c53a;
}

.imgarea {
    flex: 1 1 100%;
    padding: 20px;
    text-align: center;
    max-width: 600px;
}

.imgarea img {
    width: 100%;
    max-width: 300px;
    height: 50%;
    border-radius: 10px;
}

/* Section Titles */

h2, h3 {
    font-weight: bold;
    color: black;
}

h2 {
    margin-bottom: 30px;
    color: black;
}


/* Section styling for cards */

 .wrapp{
    background-color: white;
 }
.section {
   padding: 60px 0;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: rgb(255, 255, 255); /* Title color in white */
}

/* Card Styles */

.card {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card i {
    font-size: 40px;
    color: #FFC107; /* Icon color in yellow */
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    color: rgb(0, 0, 0); /* Title color in white */
}

/* Cards in row with four per row */

.container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container .col-md-3 {
    width: 23%;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .container .col-md-3 {
        width: 48%;
    }
}

@media screen and (max-width: 767px) {
    .container .col-md-3 {
        width: 100%;
    }
}

/* Button Styling */

button {
    background-color: #002754;
    color: #FFC107;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #FFC107;
    color: #002754;
}

/* Slider Section */

.tech-slider {
    background-color: white;
    padding: 40px 0;
    text-align: center;
}

.tech-slider h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.slider-wrapper {
    position: relative;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden; /* Hide overflowing content */
}

.slider {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 150px;
    margin: 0 10px;
    text-align: center;
}

.slide img {
    width: 100px;
    height: auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.left-arrow {
    left: -50px;
}

.right-arrow {
    right: -50px;
}

.slider-arrow i {
    font-size: 18px;
    color: #000000;
}

.slider-arrow:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



/* Skill Development Section */

.bg-light {
    background-color: #002754;
}

.skill-development {
    background-color: white;
    color: #FFC107;
    padding: 60px 0;
    text-align: center;
}

.skill-development .section-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.skill-development .description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #FFC107; /* Text in yellow */
}

.skill-development .read-more-btn {
    background-color: #FFC107;
    color: #002855;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.skill-development .read-more-btn:hover {
    background-color: #e67e22;
}

/* Service Section */

.service-section {
    background-color: #002754;
    padding: 50px 0;
}

.service-section .service-title {
    text-align: center;
    color: white; /* Title color in white */
    font-size: 2rem;
    margin-bottom: 30px;
}

.service-section .service-card {
    background-color: #002754;
    color: #FFC107;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-section .service-card h3 {
    color: white; /* Title color in white */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-section .service-card p {
    font-size: 1rem;
    color: #FFC107;
}

/* Helping You Tech Teams Section */

.helping-you-tech-teams {
    background-color: #002754;
    padding: 5px 0;
}