*{
  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 */

/*======================================
        CIVIL HERO
======================================*/

.civil-hero{

    height:90vh;

    background:url("pics/cicil5reveresed.png") center/cover;

    position:relative;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,rgba(8,33,66,.72),rgba(8,33,66,0.2)) ;

}

.civil-container{

    position:relative;

    z-index:2;

    width:85%;

    max-width:1400px;

    margin:auto;

    color:#fff;

}

.hero-tag{

    color:#F4A51C;

    letter-spacing:3px;

    font-weight:700;

    text-transform:uppercase;

}

.civil-container h1{

    font-size:35px;

    max-width:850px;

    line-height:1.1;

    margin:25px 0;

}

.civil-container p{

    font-size:16px;

    max-width:720px;

    line-height:1.6;

    color:#ddd;

    margin-bottom:25px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#036E1E;

    color:#fff;

    text-decoration:none;

    padding:18px 40px;

    transition:.4s;

}

.btn-primary:hover{

    background:#F4A51C;

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    padding:18px 40px;

    transition:.4s;

}

.btn-secondary:hover{

    background:#fff;

    color:#0B2B52;

}

/* the next section begins here */

/*====================================
    ENGINEERING EXCELLENCE
====================================*/

.engineering-about{

    padding:50px 8%;
    background:#effbef;

}

.engineering-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

/* Images */

.engineering-images{

    position:relative;
    height:700px;

}

.eng-image-one{

    position:absolute;
    top:0;
    left:0;

    width:55%;
    height:420px;

}

.eng-image-two{

    position:absolute;
    bottom:0;
    right:0;

    width:72%;
    height:430px;

}

.eng-image-one img,
.eng-image-two img{

    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;

    transition:.5s;

}

.eng-image-one:hover img,
.eng-image-two:hover img{

    transform:scale(1.06);

}

.eng-highlight{

    position:absolute;

    right:20px;
    top:40px;

    background:#F4A51C;

    color:#fff;

    padding:35px;

    border-radius:8px;

}

.eng-highlight h2{

    font-size:42px;
    margin-bottom:10px;

}

.eng-highlight span{

    font-size:20px;
    line-height:1.5;

}

/* Content */

.section-tag{

    color:#036E1E;

    font-weight:700;

    letter-spacing:2px;

}

.engineering-content h2{

    font-size:52px;

    color:#0B2B52;

    line-height:1.2;

    margin:25px 0;

}

.quote-box{

    border-left:5px solid #005828;

    padding-left:20px;

    margin-bottom:35px;

}

.quote-box p{

    font-size:22px;

    color:#38527A;

    line-height:1.7;

}

.engineering-content>p{

    color:#666;

    line-height:2;

    margin-bottom:35px;

}

.eng-features{

    display:grid;

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

    gap:20px;

    margin-bottom:40px;

}

.eng-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.eng-features i{

    color:#036E1E;

}

.eng-btn{

    display:inline-block;

    background:#036E1E;

    color:#fff;

    text-decoration:none;

    padding:18px 36px;

    transition:.35s;

}

.eng-btn:hover{

    background:#F4A51C;

}

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

@media (max-width:1400px){

.engineering-container{
    gap:60px;
}

.engineering-images{
    height:650px;
}

.eng-image-one{
    height:380px;
}

.eng-image-two{
    height:390px;
}

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

.quote-box p{
    font-size:20px;
}

}


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

@media (max-width:1200px){

.engineering-about{
    padding:100px 6%;
}

.engineering-container{
    gap:50px;
}

.engineering-content h2{
    font-size:40px;
}

.engineering-content > p{
    font-size:16px;
}

.eng-highlight{
    width:220px;
    padding:28px;
}

.eng-highlight h2{
    font-size:36px;
}

.eng-highlight span{
    font-size:18px;
}

}


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

@media (max-width:992px){

.engineering-about{
    padding:90px 5%;
}

.engineering-container{

    grid-template-columns:1fr;
    gap:60px;

}

.engineering-images{

    max-width:700px;
    margin:auto;
    height:620px;

}

.engineering-content{

    text-align:center;

}

.engineering-content h2{

    font-size:38px;

}

.quote-box{

    border-left:none;
    border-top:5px solid #F4A51C;

    padding-left:0;
    padding-top:20px;

}

.eng-features{

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

    text-align:left;

}

.eng-btn{

    margin:auto;

}

}


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

@media (max-width:768px){

.engineering-about{

    padding:80px 20px;

}

.engineering-images{

    display:flex;
    flex-direction:column;
    height:auto;
    gap:20px;

}

.eng-image-one,
.eng-image-two{

    position:relative;

    width:100%;
    height:260px;

}

.eng-highlight{

    position:relative;

    width:100%;

    right:0;
    top:0;

    padding:25px;

    text-align:center;

    order:2;

}

.eng-image-one{

    order:1;

}

.eng-image-two{

    order:3;

}

.engineering-content{

    text-align:left;

}

.engineering-content h2{

    font-size:32px;

    line-height:1.3;

}

.quote-box{

    border-top:none;
    border-left:4px solid #F4A51C;

    padding-top:0;
    padding-left:18px;

}

.quote-box p{

    font-size:18px;

}

.engineering-content > p{

    font-size:16px;
    line-height:1.8;

}

.eng-features{

    grid-template-columns:1fr;

    gap:18px;

}

.eng-btn{

    display:block;
    width:100%;
    text-align:center;

}

}


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

@media (max-width:576px){

.engineering-about{

    padding:70px 18px;

}

.engineering-content h2{

    font-size:28px;

}

.quote-box p{

    font-size:17px;

}

.engineering-content > p{

    font-size:15px;

}

.eng-features div{

    font-size:15px;

}

.eng-highlight{

    padding:20px;

}

.eng-highlight h2{

    font-size:32px;

}

.eng-highlight span{

    font-size:17px;

}

.eng-image-one,
.eng-image-two{

    height:220px;

}

}


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

@media (max-width:480px){

.section-tag{

    font-size:13px;
    letter-spacing:1px;

}

.engineering-content h2{

    font-size:26px;

}

.quote-box p{

    font-size:16px;

    line-height:1.6;

}

.engineering-content > p{

    font-size:14px;

    line-height:1.7;

}

.eng-features div{

    font-size:14px;

}

.eng-btn{

    padding:16px;

    font-size:15px;

}

}

/* the next section begins here */

/*==========================================
    CIVIL ENGINEERING CAPABILITIES
==========================================*/

.civil-capabilities{

    padding:120px 8%;
    background:#f8f9fc;

}

.civil-header{

    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;

}

.civil-header h2{

    font-size:52px;
    color:#0B2B52;
    margin:20px 0;

}

.civil-header p{

    color:#666;
    line-height:1.9;

}

.civil-grid{

    max-width:1400px;
    margin:auto;

    display:grid;

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

    gap:30px;

}

.civil-card{

    position:relative;

    height:420px;

    overflow:hidden;

    /* border-radius:12px; */

    cursor:pointer;

}

.civil-card img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.8s;

}

.civil-card:hover img{

    transform:scale(1.12);

}

.civil-card .overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    to top,
    rgba(4,18,40,.92),
    rgba(4,18,40,.2));

}

.civil-info{

    position:absolute;

    left:35px;
    right:35px;
    bottom:35px;

    color:#fff;

    z-index:2;

}

.civil-info h3{

    font-size:28px;
    margin-bottom:15px;

}

.civil-info p{

    line-height:1.8;
    opacity:.9;

}

.civil-card::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:0;

    height:5px;

    background:#F4A51C;

    transition:.5s;

}

.civil-card:hover::after{

    width:100%;

}

.civil-card:hover{

    transform:translateY(-10px);

    transition:.4s;

}


/*====================================
1400px
====================================*/

@media (max-width:1400px){

    .civil-capabilities{

        padding:110px 6%;

    }

    .civil-header h2{

        font-size:48px;

    }

    .civil-grid{

        gap:25px;

    }

}


/*====================================
1200px
====================================*/

@media (max-width:1200px){

    .civil-capabilities{

        padding:100px 5%;

    }

    .civil-grid{

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

        gap:25px;

    }

    .civil-card{

        height:400px;

    }

    .civil-header{

        margin-bottom:60px;

    }

    .civil-header h2{

        font-size:42px;

    }

}


/*====================================
992px
====================================*/

@media (max-width:992px){

    .civil-capabilities{

        padding:90px 5%;

    }

    .civil-header h2{

        font-size:38px;

    }

    .civil-card{

        height:360px;

    }

    .civil-info{

        left:25px;
        right:25px;
        bottom:25px;

    }

    .civil-info h3{

        font-size:24px;

    }

}


/*====================================
768px
====================================*/

@media (max-width:768px){

    .civil-capabilities{

        padding:80px 20px;

    }

    .civil-header{

        margin-bottom:50px;

    }

    .civil-header h2{

        font-size:34px;

        line-height:1.3;

    }

    .civil-header p{

        font-size:16px;

        line-height:1.8;

    }

    .civil-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .civil-card{

        height:350px;

    }

    .civil-info{

        left:25px;
        right:25px;
        bottom:25px;

    }

    .civil-info h3{

        font-size:24px;

    }

    .civil-info p{

        font-size:15px;

    }

}


/*====================================
576px
====================================*/

@media (max-width:576px){

    .civil-capabilities{

        padding:70px 18px;

    }

    .civil-header h2{

        font-size:30px;

    }

    .civil-header p{

        font-size:15px;

    }

    .civil-card{

        height:320px;

    }

}


/*====================================
480px
====================================*/

@media (max-width:480px){

    .civil-capabilities{

        padding:60px 16px;

    }

    .civil-header{

        margin-bottom:40px;

    }

    .civil-header h2{

        font-size:26px;

        line-height:1.3;

    }

    .civil-header p{

        font-size:14px;

        line-height:1.7;

    }

    .civil-card{

        height:280px;

    }

    .civil-info{

        left:20px;
        right:20px;
        bottom:20px;

    }

    .civil-info h3{

        font-size:20px;

        margin-bottom:10px;

    }

    .civil-info p{

        font-size:14px;

        line-height:1.6;

    }

}
/* thenext section begins here */


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

.why-civil{

    padding:50px 8%;
    background:#f8f9fc;

}

.why-civil-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

/* Image */

.why-civil-image{

    overflow:hidden;
    border-radius:15px;

}

.why-civil-image img{

    width:100%;
    display:block;
    height:700px;
    object-fit:cover;

    transition:.7s;

}

.why-civil-image:hover img{

    transform:scale(1.08);

}

/* Content */

.why-civil-content h2{

    font-size:50px;
    color:#0B2B52;
    margin:20px 0;

}

.why-civil-content>p{

    color:#666;
    line-height:1.9;
    margin-bottom:40px;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    margin-bottom:45px;

}

.why-item{

    display:flex;
    gap:18px;
    align-items:flex-start;

}

.why-item i{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#FFF4DD;

    color:#F4A51C;

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

    font-size:24px;

    flex-shrink:0;

    transition:.4s;

}

.why-item:hover i{

    background:#036E1E;
    color:white;

}

.why-item h4{

    color:#0B2B52;
    margin-bottom:8px;

}

.why-item p{

    color:#666;
    line-height:1.7;
    font-size:15px;

}

.why-btn{

    display:inline-block;

    background:#036E1E;
    color:white;

    padding:18px 40px;

    text-decoration:none;

    transition:.35s;

}

.why-btn:hover{

    background:#F4A51C;

}

/*====================================
1400px
====================================*/

@media(max-width:1400px){

.why-civil-content h2{

font-size:44px;

}

}

/*====================================
1200px
====================================*/

@media(max-width:1200px){

.why-civil{

padding:100px 6%;

}

.why-civil-container{

gap:50px;

}

.why-civil-image img{

height:620px;

}

}

/*====================================
992px
====================================*/

@media(max-width:992px){

.why-civil-container{

grid-template-columns:1fr;

}

.why-civil-image{

max-width:700px;
margin:auto;

}

.why-civil-image img{

height:500px;

}

.why-civil-content{

text-align:center;

}

.why-grid{

text-align:left;

}

.why-btn{

margin:auto;

display:block;
width:250px;

text-align:center;

}

}

/*====================================
768px
====================================*/

@media(max-width:768px){

.why-civil{

padding:80px 20px;

}

.why-civil-content{

text-align:left;

}

.why-civil-content h2{

font-size:34px;

}

.why-grid{

grid-template-columns:1fr;

}

.why-civil-image img{

height:350px;

}

.why-btn{

width:100%;

}

}

/*====================================
576px
====================================*/

@media(max-width:576px){

.why-civil-content h2{

font-size:30px;

}

.why-item{

flex-direction:column;

}

.why-item i{

margin-bottom:10px;

}

}

/*====================================
480px
====================================*/

@media(max-width:480px){

.why-civil-content h2{

font-size:26px;

}

.why-civil-content p{

font-size:14px;

}

.why-item p{

font-size:14px;

}

}

/* the next section begins here */

/*==========================================
        CIVIL CTA
==========================================*/

.civil-cta{

    position:relative;

    padding:140px 8%;

    background:url("pics/civil-cta.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    /* background:rgba(8,30,60,.78);/ */

}

.civil-cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#535353;

}

.civil-cta-content .section-tag{

    color:#F4A51C;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.civil-cta-content h2{

    font-size:58px;

    margin:25px 0;

    line-height:1.2;

}

.civil-cta-content p{

    font-size:18px;

    line-height:2;

    color:#585858;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.cta-btn-primary{

    background:#F4A51C;

    color:#fff;

    padding:18px 40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    border-radius:4px;

}

.cta-btn-primary:hover{

    background:#036E1E;

}

.cta-btn-secondary{

    border:2px solid #fff;

    color:#4f4f4f;

    padding:18px 40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    border-radius:4px;

}

.cta-btn-secondary:hover{

    background:#fff;

    color:#0B2B52;

}



/* the footer styling begins gere */

/* =========================
   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;
}

.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-brand p,
    .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;
    }
}

