body{
    font-family: "Poppins", sans-serif;
}


.comp-banner {
    /* Set a height so the background is visible */
    height: 300px; 
    
    /* Center the background image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Center the title vertically */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* Optional: Add an overlay if the text is hard to read */
.comp-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens the image */
    z-index: 1;
}

.comp-banner-title {
    position: relative;
    z-index: 2; /* Put text above the overlay */
}

.comp-banner-title h1{
    margin-top: 100px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px); /* move up */
  }
  100% {
    transform: translateY(0px); /* back */
  }

}

/* about-section */
.company-about-section{
    margin-top: 50px;
    background-color: #2cace30a;
    padding: 40px;
    margin-top: 0;
    
    
}

.company-about-section .row{
    gap: 30px;
}

.comp-head{
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.sub-head{
    font-size: 18px;
    color: #2cade3;
}

.blue-text { color: #0056ff; }

.features-grid {
    display: flex;
    margin: 30px 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.comp-btn{
    width: 170px;
    height: 50px;
    background-color: #2cade3;
    color: white;
    border-radius: 50px;
    text-decoration: none;
}
.comp-btn:hover{
	
	background-color: #ffffff;
	color: #2cade3;
}


.comp-title{
    color: #2cade3;
}
.comp-title-sub{
    width: 500px;
}
.comp-title-sub{
    line-height: 40px;
    letter-spacing: .5px;
}


.about-img {
    width: 100%;
    object-fit: cover;    /* 👈 keeps image nice (no distortion) */
    border-radius: 10px;
   
}



@media (max-width: 1024px) {
   .about-img{
    display: none;
   }
}
@media (max-width: 600px) {
  .comp-title-sub{
    width: 300px;
}
.service-card{
    width: 300px;
}

}

.comp-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: 0.3s ease;
}

.comp-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.comp-icon {
    width: 60px;
    height: auto;
}

.comp-card h5 {
    font-weight: 600;
}

.comp-card p {
    font-size: 14px;
    color: #555;
}

.comp-card-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 18px;
    border: 1px solid #292929;
    border-radius: 20px;
    color: #292929;
    text-decoration: none;
    transition: 0.3s;
}

.comp-card-btn:hover {
    border-color: #2cade3;
    background: #00aaff;
    color: #fff;
}