*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  /* font-family: "Plus Jakarta Sans", sans-serif; */
}

.nav-container{
  border-bottom: 1px solid #b6dde7;
  background-color: white;

}

@media Screen and (max-width:992px) {
  .nav-container,.nav2container{
  display: none; 
  }
}

#bnav{
  display: none;
}

@media Screen and (max-width:992px) {
 #bnav{
  display: block;
 }
  
}

.topnav{
  display: flex;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.topchild{
  display: flex;
  align-items: center;
  font-size: 14px;
}

.topchild img{
  margin-right: 10px;
}

.topchild p{
  margin: 0;
  color: rgb(114, 114, 114);
}
.topchild span{
  color: rgb(196, 196, 196);
}

/* the styling of the second nav satrts here */

.nav2container{
  font-size: 14px;
  background-color: rgb(3, 110, 30);
  padding: 0px;
  margin: 0px;
  /* background-color: white; */
  /* position:sticky; */
 
}
.nav2{
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  align-items: center;
  padding: 5px 0px;

}

.nav2list{
  display: flex;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.nav2list li {
  position: relative;
}

.nav2list li a{
  color:rgb(78, 78, 78);
  text-decoration: none;
  color: white;
padding: 15px;
}

.drop-container{
  display: none;
  box-shadow: 0px 7px 30px -20px;
}

.dropdowne{
  position: absolute;
  background-color: rgb(3, 163, 88);
  z-index: 999;
  top: 30px;
  list-style-type: none;
  animation: drop .5s linear ;
  border-radius: 5px;
} 

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.dropdowne ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.dropdowne li{
  padding: 0px;
  width: 200px;
}

.dropdowne li a{
  color: rgb(255, 255, 255);
  padding: 10px 15px;
  display: block;
border-bottom: 1px solid #f1f1f1;

}

.dropdowne li a:hover{
  background-color: #d2e1f5;
}

.enroll{
  margin-left: auto;
}

.nav2list li:hover .drop-container{
  display: block;
}

.about{
  position: absolute;
  background-color: white;

  display: flex;
  border-top: 2px solid white;
  border-radius: 10px;
  top: 33px;
  animation: drop .5s linear ;
  display: none;
  box-shadow: 0px 7px 30px -20px;
  padding: 20px;
  z-index: 999;
}

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.about-con{
  display: flex;
}

.ab-left{
  width: 300px;
  height: 100%;
  padding: 20px;
}


.ab-left h1{
font-weight: lighter;
font-size: 24px;
}




.pee{
  color: #c0c0c0;
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.7;
}

#learn-more {
    display:block;
  color:rgb(0, 167, 75) ;
  border: 1px solid rgb(0, 167, 75);
  width: 70%;
  margin-top: 5px;
}

.ab-right{
width: 700px;
}

.ab-right img{
  width: 100%;
  border-radius: 10px;
}


.nav2list li:hover .about{
  display: block;
}

.enroll button{
  border: none;
  padding: 10px 15px;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
}

.enroll button a{
  text-decoration: none;
  color: rgb(255, 255, 255);
}


/* side navigation bar starts here */

/* MOBILE HEADER */

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.mobile-logo{
    width:180px;
}

.menu-btn{
    font-size:32px;
    cursor:pointer;
    color:#036e1e;
}

/* OVERLAY */

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    z-index:998;
}

/* SIDEBAR */

#sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:320px;
    height:100vh;
    background:white;
    z-index:999;
    transition:.4s;
    overflow-y:auto;
    box-shadow:5px 0 30px rgba(0,0,0,.15);
}

#sidebar.active{
    left:0;
}

.sidebar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.sidebar-top span{
    font-size:28px;
    cursor:pointer;
}

.sidebar-menu{
    list-style:none;
    padding:20px;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu a{
    display:block;
    text-decoration:none;
    color:#333;
    padding:12px 0;
    font-size:15px;
}

.sidebar-menu a:hover{
    color:#036e1e;
}

.sidebar-menu details{
    border-bottom:1px solid #f1f1f1;
    padding-bottom:10px;
}

.sidebar-menu summary{
    list-style:none;
    cursor:pointer;
    padding:12px 0;
    font-weight:600;
    color:#222;
}

.sidebar-menu summary::-webkit-details-marker{
    display:none;
}

.sidebar-menu details a{
    padding-left:15px;
    color:#666;
    font-size:14px;
}

.sidebar-btn{
    padding:20px;
}

.sidebar-btn a{
    display:block;
    background:#036e1e;
    color:white;
    text-align:center;
    text-decoration:none;
    padding:15px;
    border-radius:6px;
    font-weight:bold;
}

.sidebar-btn a:hover{
    background:#024d15;
}

/* SHOW ONLY MOBILE */

@media(min-width:993px){
    .mobile-header,
    #sidebar,
    #overlay{
        display:none;
    }
}


/* the styling for the hero starts here */


.about-hero{
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 100px;
    background: linear-gradient(to right, rgba(5, 18, 32, 0.88), rgba(5, 18, 32, 0.1)),
                url('pics/general.jpg') center/cover no-repeat;
    overflow: hidden;
}

.about-hero-overlay{
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(249,115,22,0.18), transparent 28%),
      radial-gradient(circle at bottom left, rgba(34,197,94,0.12), transparent 24%);
    z-index: 1;
}

.about-hero-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: 70px;
    color: #fff;
}

.about-tag{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f97316;
    margin-bottom: 18px;
}

.about-hero-content h1{
    font-size: 45px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
    max-width: 500px;
}

.about-hero-content p{
    max-width: 680px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.86);
    margin-bottom: 32px;
}

.about-hero-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px){
    .about-hero-buttons{
        display: none;
    }
    }


.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

.primary-about-btn{
    background: #ffcc00;
    color: #fff;
    box-shadow: 0 15px 35px rgba(249,115,22,0.28);
}

.primary-about-btn:hover{
    background: #00a035;
    transform: translateY(-3px);
}

.secondary-about-btn{
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #fff;
    backdrop-filter: blur(6px);
}

.secondary-about-btn:hover{
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

/* responsive */
@media (max-width: 1100px){
    .about-hero-content{
        margin-left: 20px;
    }

    .about-hero-content h1{
        font-size: 46px;
    }
}

@media (max-width: 768px){
    .about-hero{
        min-height: 72vh;
        padding: 100px 16px 70px;
        background-position: center;
    }

    .about-hero-content{
        margin-left: 0;
        max-width: 100%;
    }

    .about-tag{
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-hero-content h1{
        font-size: 31px;
        line-height: 1.18;
    }

    .about-hero-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .about-btn{
        width: 100%;
        max-width: 280px;
    }
}

/* who we are section starts here */


/*=========================================
      GENERAL CONSTRUCTION SECTION
==========================================*/
/*=========================================
      GENERAL CONSTRUCTION SECTION
==========================================*/

.gc-about{
    padding:120px 8%;
    background:#fff;
    overflow:hidden;
}

.gcc-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*=========================================
            LEFT IMAGES
==========================================*/

.gc-images{
    position:relative;
    height:720px;
}

.img-one,
.img-two{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.img-one{
    position:absolute;
    top:0;
    left:0;
    width:55%;
    height:430px;
}

.img-two{
    position:absolute;
    right:0;
    bottom:0;
    width:72%;
    height:430px;
}

.img-one img,
.img-two img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.img-one:hover img,
.img-two:hover img{
    transform:scale(1.08);
}

/*=========================================
        EXPERIENCE BOX
==========================================*/

.experience-box{
    position:absolute;
    top:40px;
    right:20px;
    width:260px;
    background:#F4A51C;
    color:#fff;
    padding:40px;
    z-index:20;
    border-radius:8px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.experience-box h2{
    font-size:58px;
    margin-bottom:10px;
    font-weight:700;
}

.experience-box span{
    font-size:22px;
    font-weight:600;
    line-height:1.5;
}

/*=========================================
            CONTENT
==========================================*/

.gc-content .section-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    color:#036E1E;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.gc-content h2{
    font-size:56px;
    line-height:1.15;
    color:#0B2B52;
    margin-bottom:30px;
    font-weight:700;
}

.quote-line{
    border-left:5px solid #F4A51C;
    padding-left:20px;
    margin-bottom:35px;
}

.quote-line p{
    font-size:21px;
    line-height:1.8;
    color:#38527A;
}

.gc-content > p{
    font-size:17px;
    line-height:2;
    color:#666;
    margin-bottom:40px;
}

.gc-btn{
    display:inline-block;
    background:#036E1E;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:6px;
    transition:.35s;
    font-weight:600;
}

.gc-btn:hover{
    background:#F4A51C;
    transform:translateY(-4px);
}

/*=========================================
        LARGE TABLETS
==========================================*/

@media(max-width:1200px){

.gcc-container{
    gap:60px;
}

.gc-content h2{
    font-size:46px;
}

.gc-images{
    height:650px;
}

.img-one{
    height:380px;
}

.img-two{
    height:380px;
}

}

/*=========================================
            TABLETS
==========================================*/

@media(max-width:992px){

.gcc-container{
    grid-template-columns:1fr;
    gap:60px;
}

.gc-images{
    height:650px;
    max-width:700px;
    margin:auto;
}

.gc-content{
    text-align:center;
}

.gc-content h2{
    font-size:42px;
}

.quote-line{
    border-left:none;
    border-top:5px solid #F4A51C;
    padding-left:0;
    padding-top:20px;
}

.gc-btn{
    margin:auto;
}

}

/*=========================================
            MOBILE
==========================================*/

@media(max-width:768px){

.gc-about{
    padding:80px 20px;
}

.gc-images{
    display:flex;
    flex-direction:column;
    height:auto;
    gap:20px;
}

.img-one,
.img-two{
    position:relative;
    width:100%;
    height:260px;
}

.experience-box{
    position:relative;
    width:100%;
    top:0;
    right:0;
    order:2;
    text-align:center;
    padding:25px;
}

.img-one{
    order:1;
}

.img-two{
    order:3;
}

.gc-content{
    text-align:left;
}

.gc-content h2{
    font-size:32px;
}

.quote-line{
    border-top:none;
    border-left:4px solid #F4A51C;
    padding-top:0;
    padding-left:18px;
}

.quote-line p{
    font-size:18px;
}

.gc-content > p{
    font-size:16px;
    line-height:1.8;
}

.gc-btn{
    display:block;
    width:100%;
    text-align:center;
}

}

/*=========================================
        SMALL PHONES
==========================================*/

@media(max-width:480px){

.gc-about{
    padding:70px 18px;
}

.gc-content h2{
    font-size:27px;
    line-height:1.3;
}

.gc-content > p{
    font-size:15px;
}

.quote-line p{
    font-size:16px;
}

.experience-box{
    padding:20px;
}

.experience-box h2{
    font-size:38px;
}

.experience-box span{
    font-size:18px;
}

.img-one,
.img-two{
    height:220px;
}

}


/* 333333333333333333333333333333333 */

/* the next section begins here */

/*====================================
        SERVICES GRID
=====================================*/

/*======================================
      GENERAL CONSTRUCTION SERVICES
======================================*/
/*====================================
        SERVICES GRID
=====================================*/

/*=============================
    CAPABILITIES
==============================*/

.gc-capabilities{

    background:#f6f8fb;

    padding:110px 8%;

}

/* 4444444444444444444444444444 */

.gc-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:25px;

    margin-bottom:25px;

}

/* LEFT */

.gc-intro{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-right:40px;

}

.gc-tag{

    color:#036E1E;

    /* font-weight:700; */

    letter-spacing:2px;

    text-transform:uppercase;

}

#gcintoheader{

    font-size:35px;

    color:#232431;

    line-height:1.15;

    margin:20px 0;

}

.gc-intro p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.gc-btn{

    width:fit-content;

    padding:18px 38px;

    background:#F4A51C;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.gc-btn:hover{

    background:#036E1E;

}

/* CARD */

.gc-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.gc-card:hover{

    transform:translateY(-10px);

}

.icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#FFF4DD;

    transition:.4s;

}

.icon i{

    font-size:38px;

    color:#F4A51C;

    transition:.4s;

}

.gc-card:hover .icon{

    background:#036E1E;

    transform:rotate(8deg) scale(1.05);

}

.gc-card:hover .icon i{

    color:#fff;

}
.gc-card h3{

    color:#0B2B52;

    margin-bottom:18px;

    font-size:24px;

}

.gc-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.gc-card a{

    color:#036E1E;

    text-decoration:none;

    font-weight:600;

}

/* SECOND ROW */

.gc-bottom{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/*==========================================
        LARGE DESKTOPS
==========================================*/

@media (max-width:1400px){

.gc-capabilities{
    padding:100px 6%;
}

.gc-container,
.gc-bottom{
    max-width:1200px;
}

.gc-intro h2{
    font-size:48px;
}

.gc-card{
    padding:35px 25px;
}

.gc-card h3{
    font-size:22px;
}

}


/*==========================================
            LAPTOPS
==========================================*/

@media (max-width:1200px){

.gc-container{

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.gc-intro{

    grid-column:1 / -1;

    text-align:center;

    padding-right:0;

    margin-bottom:15px;

}

.gc-intro h2{

    font-size:44px;

}

.gc-btn{

    margin:auto;

}

.gc-bottom{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

}


/*==========================================
            TABLETS
==========================================*/

@media (max-width:992px){

.gc-capabilities{

    padding:90px 5%;

}

.gc-intro h2{

    font-size:38px;

}

.gc-intro p{

    font-size:16px;

}

.gc-card{

    padding:30px 22px;

}

.gc-card h3{

    font-size:21px;

}

.gc-card p{

    font-size:15px;

}

.icon{

    width:70px;

    height:70px;

    font-size:30px;

}

}


/*==========================================
            MOBILE
==========================================*/

@media (max-width:768px){

.gc-container{

    grid-template-columns:1fr;

}

.gc-bottom{

    grid-template-columns:1fr;

}

.gc-intro{

    text-align:left;

}

.gc-intro h2{

    font-size:32px;

}

.gc-intro p{

    font-size:15px;

    line-height:1.8;

}

.gc-btn{

    width:100%;

    text-align:center;

}

.gc-card{

    padding:30px 20px;

}

.gc-card h3{

    font-size:20px;

}

}


/*==========================================
        SMALL PHONES
==========================================*/

@media (max-width:480px){

.gc-capabilities{

    padding:70px 20px;

}

.gc-tag{

    font-size:13px;

}

.gc-intro h2{

    font-size:28px;

    line-height:1.25;

}

.gc-intro p{

    font-size:14px;

}

.gc-card{

    padding:25px 18px;

}

.gc-card h3{

    font-size:19px;

}

.gc-card p{

    font-size:14px;

    line-height:1.7;

}

.icon{

    width:65px;

    height:65px;

    font-size:26px;

}

.gc-btn{

    padding:16px;

}

}


/* why choose our company section begins here */

/*==========================================
        WHY GLOBALCONS
==========================================*/

.why-globalcons{

    display:grid;

    grid-template-columns:1fr 1fr;

    min-height:750px;

}

@media screen and (max-width:992px) {
    .why-globalcons{
        grid-template-columns: auto;
    }
}

/* LEFT */

.why-image{

    overflow:hidden;

}

.why-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.why-image:hover img{

    transform:scale(1.08);

}

/* RIGHT */

.why-content{

    background:#0B2B52;

    color:#fff;

    padding:90px 70px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    position:relative;

}

/* Blueprint Background */

.why-content::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("pics/whypic.jpg");

    background-size:cover;

    opacity:.06;

    pointer-events:none;

}

.why-content>*{

    position:relative;

    z-index:2;

}

.why-tag{

    color:#F4A51C;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.why-content h2{

    font-size:24px;

    line-height:1.2;

    margin:25px 0;

}

.why-content p{

    line-height:1.6;

    color:#d6dce6;

    margin-bottom:20px;

    font-size:14px;

}

/* LIST */

.why-list{

    display:grid;

    gap:15px;

    margin-bottom:45px;

}

.why-item{

    display:flex;

    align-items:center;

    gap:18px;

    font-size:14px;

}

.why-item i{

    color:#F4A51C;

    font-size:14px;

}

/* BUTTON */

.why-btn{

    display:inline-block;

    width:fit-content;

    padding:18px 38px;

    background:#F4A51C;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.why-btn:hover{

    background:#036E1E;

}


/* .gc-capabilities{

    background:#f6f8fb;

    padding:110px 8%;

} */







/* #################################################################### */

/* =========================
   GLOBALCONS FOOTER
========================= */
.global-footer{
    background: #0b1620;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}



.footer-top{
    padding: 90px 20px 55px;
    position: relative;
    z-index: 2;
}

.footer-container{
    max-width: 1320px;
    margin: auto;
    Padding: 30px 50px 30px 50px;
}

.footer-top .footer-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 45px;
}

.footer-col h3{
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: #00a331;
    border-radius: 20px;
}

.footer-brand .footer-logo{
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img{
    max-width: 210px;
    height: auto;
    display: block;
}

.footer-brand p{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 24px;
}

@media screen and(max-width:992){
    .footer-brand p{
    display: none;
}
}

.footer-socials{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-socials a:hover{
    background: #009338;
    transform: translateY(-4px);
}

.footer-links,
.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links a{
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-links a:hover{
    color: #009f25;
    transform: translateX(4px);
}

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.74);
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact a{
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact a:hover{
    color: #008c28;
}

.footer-icon{
    font-size: 16px;
    margin-top: 2px;
    min-width: 18px;
}

/* Bottom bar */
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 20px;
    background: #081018;
}

.footer-bottom-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p{
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.footer-credit{
    color: #f97316;
    font-weight: 500;
}

/* subtle background accent */
.global-footer::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.global-footer::after{
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
    .footer-container{
        width: 100%;
    }
}
@media (max-width: 1100px){
    .footer-top .footer-container{
        grid-template-columns: auto auto;
        gap: 40px 30px;
    }
}

@media (max-width: 768px){
    .footer-top{
        padding: 70px 16px 40px;
    }

    .footer-top .footer-container{
        grid-template-columns: auto auto;
        gap: 35px;
        padding-bottom: 0px 30px ;
    }

    .footer-col h3{
        font-size: 18px;
    }

   
    .footer-links a,
    .footer-contact li,
    .footer-contact a{
        font-size: 14px;
    }

    .footer-bottom{
        padding: 18px 16px;
    }

    .footer-bottom-wrap{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom p{
        font-size: 13px;
    }
}


