* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica',  sans-serif;
    
}
.header{
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    background: url(pl.png);
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 15px solid #efcc00;
    background-color: #fff; 
}



nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}  
.nav-links ul li a{
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
}  

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #000;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

/*-------------------------------------------------------------------------------------------------STAYYY BLACK ------------------------- */
.nav-links ul li a.active::after,
.nav-links ul li:hover::after {
    width: 100%; /* Keeps the underline visible */
}

.nav-links ul li a.active {
    color: #000; /* Dark gold */
    font-weight: bold;
    
}

/*-------------------------------------------------------------------------------------------------STAYYY BLACK ------------------------- */


.text-box{
    width:90%;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #000;
    font-weight: normal;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 12px 14px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #efcc00;
    background: #efcc00;
    transition: 1s;

}

nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }  
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: linear-gradient(to bottom right, 
        #fff8e5,  #fbe9b3,    #f3d477,   #e9c25f,   #d8a944  );
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }
    nav .fa{
        display: block;
        color: #000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;

    }
    .nav-links ul{
        padding: 30px;
    }
}

/*course*/
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
         
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    
}
.course-col{
    flex-basis: 31%;
    background: #efcc00;
    border-radius: 100px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    height: 200px;
}


/*image if services*/
.pic img{
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 10px;
    
       
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;

}
p{
    
    font-weight: 600;
    margin: 10px 0;   
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}


@media(max-width:700px){
    .row{
        flex-direction: column;
    }
}

.projects{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.projects-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    
}
.projects-col img{
    width: 100%;
    display: block;
    border-radius: 10px;
    height: 770px;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0; 
     
}
.layer h3{
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 12px 14px;
    font-size: 15px;
    background: #FFFF;
    position: relative;
    cursor: pointer;

}
.layer h3:hover{
    border: 1px solid #efcc00;
    background: #efcc00;
    transition: 1s;
}


/*Our partners*/
.partners {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px; /* Add px unit */
}



.partners-col {
    flex-basis: 32%; /* Makes columns flexible */
    max-width: 30%; /* Ensures three fit in a row */
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partners-col img {
    width: 100%;
    display: block;
    border-radius: 10px;
    height: 250px;
    
}

.extra-img {
    width: 100%;
    margin-top: 10px; /* Space between images */
    border-radius: 10px;
}

/*------------------------------*/











/* --------------------- ABOUT US PAGE----------*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: url(plain.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #000;
    
    }
.sub-header h1{
    margin-top: 100px;
}
.sub-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: justify; /* Justifies the text */
    margin: 0 auto;
    max-width: 800px;
    padding-top: 30px;
}
/*-------- about us img*/


.about-us {
    width: 100%;
    padding: 50px 10%;
    background-image: url(plain.png); /* Light Background */
    text-align: center;
    
    
}

/* Flexbox for Row */
.about-us .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Text Column */
.about-col {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.about-col h1 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-col p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    
}

/* Explore Now Button */
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;

}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;

}
.about-col img{
    width: 100%;   
    border-radius: 10px;
    
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
    
}

/*----VISION MISSION */

/* Vision Section Styling */
/* Vision & Mission Section */
.vision {
    width: 80%;
    padding: 50px 10%;
    background-color: #f9f9f9;
    text-align: center;
    background: url('abt.jpg') no-repeat center center;
}

/* Flexbox for Side-by-Side Layout */
.vision .visions,
.vision .missions {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    
}
.vision .visions:hover,
.vision .missions:hover {
    background: #ffcc00;  
    transform: translateY(-5px);  
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2); 
    color: #000; 
    transition: 1s;
}


/* Headings Styling */
.vision h1 {
    font-size: 28px;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}



/* Paragraph Styling */
.vision p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    
}

/* Responsive Design */
@media (min-width: 768px) {
    .vision {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .vision .visions,
    .vision .missions {
        max-width: 45%;
        text-align: left;
    }
}


/*Good quality service*/

.vision {
    width: 80%;
    padding: 50px 10%;
    background-color: #f9f9f9;
    text-align: center;
    background: url('abt.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.vision .visions,
.vision .missions {
    max-width: 800px;
    width: 45%;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.vision .visions:hover,
.vision .missions:hover {
    background: #ffcc00;
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    color: #000;
}

.vision h1 {
    font-size: 28px;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.vision p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .vision {
        flex-direction: column;
        align-items: center;
    }

    .vision .visions,
    .vision .missions {
        max-width: 100%;
        width: 90%;
        text-align: center;
    }
}



/* projecttttttt html---------------------------------------------*/
.pro-header{
    height: 50vh;
    width: 100%;
    background-image: url(plain.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #000;
    }
.pro-header h1{
    margin-top: 100px;
}
.pro-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: justify; /* Justifies the text */
    margin: 0 auto;
    max-width: 800px;
    padding-top: 30px;
}
.proj{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-image:url(plain.png) ;
}

.card-wrapper{
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
    border-top: 2px solid black;
}
.card-list.card-item{
list-style: none;

}

.card-list  .card-item .card-link{
    user-select: none;
    display: block;
    padding: 18px;
    border-radius: 12px;
    background: #e6ecf4;
    text-decoration: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: 0.5s ease; 
       
}

/*border color of the box*/

.card-list .card-item .card-link:hover{
    border-color: #efcc00;

}
.card-list .card-link .card-image{ 
    width: 100%;
    aspect-ratio: 36 / 25;
    object-fit: cover;
    border-radius: 10px;  
}


/*part of developer---------------------*/
.card-list .card-link .badge{
    color: #5372F0;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #DDE4FF;
    width: fit-content;
    border-radius: 50px;
}
.card-list .card-link .badge.e{
    color: #b22485;
    background: #F7DFF5;
}
.card-list .card-link .badge.b{
    color: #B25A2B;
    background: #FFE3D2;
}
.card-list .card-link .badge.c{
    color: #205C20;
    background: #D6F8DC;
}
.card-list .card-link .badge.d{
    color: #856404;
    background: #fff3cd;
}

.card-list .card-link .card-title{
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}
/* arrow button */
.card-list .card-link .card-button{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin: 30px 0 5px;
    border: 2px solid #000;
    color: #000;
    background: none;
    cursor: pointer;
    transform: rotate(-45deg);
    transition: 0.7 ease;

}
.card-list .card-link:hover .card-button{
    color: #000;
    background: #efcc00;
}

.card-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #000;

}
.card-wrapper .swiper-pagination-bullet-active{
    opacity: 1;  
}

.card-wrapper .swiper-slide-button{
    color: #000;
    margin-top: -35px;
}

@media screen and (max-width:768px){
    .card-wrapper{
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button{
        display: none;
    }
}


/*-------------------CONTACT US-------------------*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
    text-align: center;
}

.location iframe{
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}


.location h1 {
    font-size: 24px;
    color: #333; /* Dark gray text */
    margin-bottom: 10px; /* Space below each heading */
}

.location iframe + h1 {
    margin-top: 40px; /* Adds space before Satellite Office heading */
}

/*-------------------------CONTACT INFORMATION-------------------------------------------*/
.contact-us{
    width: 80%;
    margin: auto;   
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-us i{
   font-size: 28px;
   color: #f44336;
   margin: 10px;
   margin-right: 30px;
   
}
.contact-us p {
    font-size: 16px; /* Make paragraph text readable */
    font-weight: normal; /* Ensure it's not bold */
    color: #555; /* Slightly lighter text color */
}

.contact-us h5 {
    font-size: 20px; /* Adjust subtitle size */
    font-weight: bold;
    color: #000; /* Accent color */
}

.contact-us h1 {
    font-size: 30px; /* Adjust subtitle size */
    font-weight: bold;
    color: #000; /* Accent color */
}


/* -----------------------CONTACT INFORMATION-------------------------------*/
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-col .hero-btn:hover{
    border: 1px solid  #000;
    background: #f44336;
    transition: 1s;
}


/*------------------------------------------SERVICESS----------------------------------------------*/
.serv-header{
    height: 55vh;
    width: 100%;
    background-image: url(pro.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #000;
    }
.serv-header h1{
    margin-top: 100px;
}
.serv-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: justify; /* Justifies the text */
    margin: 0 auto;
    max-width: 800px;
    padding-top: 30px;
} 

/*---------------------------------------------------------------Footer page ---------------------------------------------*/



footer{
    width: 100% ;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff ;
    padding: 50px 0 30px ;
    border-top-left-radius: 125px ;
    font-size: 14px ;
    line-height: 20px ;
    
    
}
.foot-row{
    width: 85% ;
    margin: auto ;
    display: flex ;
    flex-wrap: wrap  ;
    align-items: flex-start ;
    justify-content: space-between ;
    text-align: justify ;
    
}

.foot-col{
    flex-basis: 25% ;
    padding: 10px ; 
}
.foot-col:nth-child(2), .foot-col:nth-child(3){
    flex-basis: 15% ;   
}

.logo{
    width: 80px ;
    margin-bottom: 30px ;
}

.foot-col h3{
    width: fit-content ;
    margin-bottom: 40px ;
    position: relative ;
    font-size: 16px;
}

.foot-col ul li{
    list-style: none ;
    margin-bottom: 12px ;
    
}
.foot-col ul li a{
    text-decoration: none ;
    color: #fff ;    
}

.foot-col .fa{
    font-size: 20px ;
    margin-right: 10px ;
}
.foot-col .fa:hover{
    background: #666 ;
}
.foot-col .fab:hover{
    background: #666 ;
}

.foot-col p{
    padding: 10px;
    color: #fff ;
    font-size: 14px ;
}

.social-icons .fa{
    width: 40px ;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    background: #fff;
    margin-right: 50px;
    cursor: pointer;
    margin-top: 20px;
}
.social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    background: #fff;
    margin-right: 50px;
    cursor: pointer;
    margin-top: 20px;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
footer .copyright {
    color: #fff;
    font-size: 13px;
}


.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .foot-col{
        flex-basis: 100%;
    }
    .foot-col:nth-child(2), .foot-col:nth-child(3){
        flex-basis: 100%;
    }
    
        
    }



/*---------------------------------------------------------------Home page ---------------------------------------------*/

.home-section{
    width: 100%;
    min-height: 100vh;      
}

.home-container{
    width: 85%;
    display: block;
    margin: auto;
    padding-top: 100px;  
}

.content-section{
    float: left;
    width: 55%;
}

.image-section{
    float: right;
    width: 42%;
}
.image-section img{
    width: 105%;
    height: auto;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.4);
}

.content-section .title{
    font-size: 28px;
    color: #000;
    text-transform: uppercase;
    
}
.content-section h2{
    margin-top: 20px;
    color: #000;
    font-size: 23px;
    font-style: italic;
    
}

.content-section .content p{
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    text-align: justify;
}
.content-section .content .button{
    margin-top: 30px;
}
.content-section .content .button a{
    display: inline-block;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 12px 20px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
    letter-spacing: 1.5px;
}

.content-section .content .button a:hover{
    border: 1px solid #efcc00;
    background: #efcc00;
    transition: 1s;
}

@media screen and (max-width: 768px){
    .container{
        width: 85%;
        display: block;
        margin: auto;
        padding-top: 50px;
    }
    .content-section{
        float: none;
        width: 100%;
    }
    .image-section{
        float: none;
        width: 100%;
    }
    .content-section .title{
        font-size: 24px;
    }
    .content-section h2{
        font-size: 21px;
    }
    .content-section .content .button a{
        font-size: 12px;
    }

}

/*---------------------------------------------------------------Services Part ---------------------------------------------*/

.swiper-slide {
    width: 50%;  /* Adjust to make smaller */
    max-width: 400px;
}



.card{
    border-radius: 25px;
    background-color: #FFF;  
    max-width: 350px;  
    
     
}
.server-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
    box-sizing: border-box;
}
.server-image .server-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #000;
    box-sizing: border-box;
}

.slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
    
}

.server-content, .serv-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 40px;
}
.server-content{
    row-gap: 5px;
    position: relative;
    
}
.as-built{
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: center;
}
.description{
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.raven{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #efcc00;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s;
}


.raven:hover{
    background: #000;
}

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background:linear-gradient(to bottom right, 
    #fff8e5,  #fbe9b3,    #f3d477,   #e9c25f,   #d8a944  ); 
    border-radius: 25px 25px 0 25px;
}

.overlay::before,.overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color:  #d8a944 ;

}
.overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
    
   
}

.slide-content .swiper-navBtn:hover{
    color: yellow;
    
}

.slide-content .swiper-navBtn{
    color: #000;
    margin-top: -35px;
    transition: color 0.3s ease;
}
.slide-content .swiper-navBtn::before, .slide-content .swiper-navBtn::after{
    font-size: 40px;
}

.swiper-button-next{
    right: 0;
}
.swiper-button-prev{
    left: 0;
}

.slide-content .swiper-pagination-bullet{
    background-color: #555;
    opacity: 1;
}

.slide-content .swiper-pagination-bullet-active{
    background-color: #000;
}

@media screen and (max-width:768px){
    .slide-content{
        margin: 0 20px;
        margin-top: 200px;
    }
    .slide-content .swiper-navBtn{
        display: none;
    }
}

.projects {
    text-align: center;
    padding: 20px;
    background:url(plain.png);
    width: 100%;
    
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.section-description {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.slide .swiper-slide-button{
    color: #000;
    margin-top: -35px;
}

.slide-content .swiper-button-next{
    right: 0;
}

.slide-content .swiper-button-prev{
    left: 0;
}


/*---------------------------------------------------------------Services html ---------------------------------------------*/
#services {
    padding-top: 100px; /* Adjust if navbar height is different */
    text-align: center;
    background-color: #fff;
    
}


.section-intro{
    margin-bottom: 40px;
}
.section-intro .divider{
    height: 4px;
    width: 70px;
    background: linear-gradient(to bottom right, 
    #fff8e5,  #fbe9b3,    #f3d477,   #e9c25f,   #d8a944  );   
    margin: 16px auto;
    
}

.service-img img{
    width: 100%;
    display: block;
    padding-bottom: 20px;
    

}
.service .service-img{
    position: relative;
}

.service .service-img .service-icon{
    width: 90px;
    height: 90px;
    background: linear-gradient(to bottom right, 
    #fff8e5,  #fbe9b3,    #f3d477,   #e9c25f,   #d8a944  );   
    color: #000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.service .service-img .service-icon i{
    font-size: 36px;
}

.custom-paragraph {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    text-align: center;
}
.bold-text{
    font-weight: bold;
}

/* Ensure the row is a flex container */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Distributes items evenly */
    gap: 20px;
}

/* Define the column layout for 3 images */
.col-md-3 {
    flex: 0 0 calc(33.33% - 20px); /* Adjust width to fit 3 columns with gaps */
    max-width: calc(33.33% - 20px);
    text-align: center;
    padding-bottom: 40px;
}




/* Responsive Adjustments for Smaller Screens */
@media (max-width: 992px) {
    .col-md-4 {
        flex: 0 0 48%; /* Two columns for tablets */
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 100%; /* One column for mobile */
        max-width: 100%;
    }
    #services{
        padding-top: 20px;
    }
}


.col-12 h1{
    font-family: Arial, sans-serif; /* Match with CONTACT US */
    font-weight: bold; /* Ensure the thickness is the same */
    font-size: 36px; /* Adjust if needed */
    color: black; /* Ensure the color is the same */
    text-transform: uppercase; /* Make sure it's all caps */
}


