/* Yellow Text & Background Utilities */
.text-yellow-color {
    color: #ffca02;
}

.bg-yellow-color {
    background-color: #ffca02;
}

/* Blue Text & Background Utilities */
.text-blue-color {
    color: #112F53
}

.bg-blue-color {
    background-color: #112F53
}

/* Logo section */
.logo-bar {
    z-index: 2;
}

/* Custom Navbar overlapping both logo and hero */
.custom-navbar {
    top: 40px; /* Adjust based on logo height */
    z-index: 3;
    border-radius: 6px;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-img.jpg') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 30px 20px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .custom-navbar {
        top: 50px;
    }
}


/* Our Services */
.custom-card {
    border: none;
    /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);/ */
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.custom-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.custom-card img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    padding: 5px;
}

.custom-card .card-body {
    padding: 0.6rem;
    font-size: 0.95rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.box{
     box-shadow: 5px 6px 7px 0px rgba(23, 21, 21, 0.74);
}

.box-1{
     box-shadow: 5px 6px 7px 0px rgba(23, 21, 21, 0.74);
     height: 120px;
     width: 120px;
}



/* Why Choose Us */

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    border-radius: 4px;
    border: 4px solid white;
}

.image-stack .image-top {
    position: absolute;
    bottom: -100px;
    left: 100px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

@media (max-width: 768px) {
    .image-stack .image-top {
        position: static;
        margin-top: 15px;
        left: 0;
        width: 100%;
    }
}

/* Successful Innovative Technology*/
.tech-box.yellow {
    background-color: #ffc107;
    color: #000;
    font-weight: 500;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #1a1a3c;
    margin: 0 auto;
}

.tech-list ol {
    padding-left: 20px;
}

.tech-list li {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .arrow-down {
        margin: 10px auto;
    }

    .tech-box {
        margin: 15px auto;
    }


}

/* Contact-form */
.certified-section {
    padding: 60px 15px;
    background-color: #ffffff;
    position: relative;
}


.gear-icon {
    position: absolute;
    z-index: 0;
    width: 100px;
    /* opacity: 0.15; */
    opacity: 0.3;
    pointer-events: none;
}

.gear-left {
    bottom: -10px;
    /* left: -10px; */
    transform: rotate(90deg);
}

.gear-right {
    top: -10px;
    right: -3px;
    transform: rotate(1deg);
}

@media (max-width: 768px) {
    .gear-icon {
        width: 40px;
        opacity: 0.1;
    }
}


.info-box {
    /* background-color: #f8f9fa; */
    background-color: #ececec;

    padding: 30px;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.form-box {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 8px;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #343a40;
}



@media (max-width: 768px) {

    .info-box,
    .form-box {
        padding: 20px;
    }
}

body{
    overflow-x: hidden;
}
