/*====================================
GENERAL
=====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:95%;
    max-width:1400px;
    margin:auto;

}

/*====================================
TOP BAR
=====================================*/

.top-bar{

    height:48px;
    background:#ffffff;
    border-bottom:1px solid #ececec;

}

.top-bar .container{

    height:48px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left{

    font-size:14px;
    color:#555;

}

.top-left i{

    color:#1c9b93;
    margin-right:8px;

}

.top-right{

    display:flex;
    gap:35px;

}

.top-right a{

    color:#444;
    font-size:14px;
    transition:.3s;

}

.top-right a:hover{

    color:#16958e;

}

.top-right i{

    color:#0A66C2;

}

/*====================================
HEADER
=====================================*/

header{

    position:absolute;

    top:48px;

    left:0;

    width:100%;

    z-index:1000;

}

.navbar{

    background:linear-gradient(90deg,#0e726f,#188f8a);

    height:82px;

}

.navbar .container{

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    color:#fff;

    font-size:38px;

    font-weight:800;

    letter-spacing:.5px;

}

/*====================================
MENU
=====================================*/

.nav-links{

    display:flex;
    gap:42px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:white;

    font-weight:300;

    font-size:18px;

    transition:.3s;

}

.nav-links a:hover{

    color:#ffc23c;

}

.nav-links li::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#ffb12c;

    transition:.35s;

}

.nav-links li:hover::after{

    width:100%;

}

/*====================================
SEARCH
=====================================*/

.search-btn{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    cursor:pointer;

    transition:.35s;

    font-size:22px;

}

.search-btn:hover{

    background:rgba(255,255,255,.18);

}

/*====================================
MENU BUTTON
=====================================*/

.menu-btn{

    display:none;

    width:52px;

    height:52px;

    border:none;

    background:rgba(255,255,255,.18);

    color:#fff;

    font-size:22px;

    border-radius:6px;

    cursor:pointer;

}

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

.hero-slider{

    position:relative;

    width:100%;

    height:calc(100vh - 48px);

    overflow:hidden;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:1.2s;

}

.slide.active{

    opacity:1;

    visibility:visible;

}

.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*====================================
BACKGROUND OVERLAY
=====================================*/

.slide::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.20),

    rgba(0,0,0,.20));

}

/*====================================
LEFT CONTENT BOX
=====================================*/

.overlay-box{

    position:absolute;

    left:6%;

    top:50%;

    transform:translateY(-50%);

    width:42%;

    background:rgba(9,87,92,.60);

    backdrop-filter:blur(6px);

    padding:60px;

    color:#fff;

    animation:fadeUp 1s;

}

.overlay-box h1{

    font-size:46px;
    line-height:1.15;
    font-weight:600;
    margin-bottom:20px;
	padding-top:150px;

}

.overlay-box p{

    font-size:24px;

    line-height:1.8;

    opacity:.95;

    margin-bottom:35px;

}

/*====================================
BUTTON
=====================================*/

.btn{

    display:inline-block;

    background:#f5a623;

    color:#fff;

    padding:18px 42px;

    font-size:22px;

    font-weight:600;

    border-radius:4px;

    transition:.35s;

}

.btn:hover{

    background:#ffbe43;

    transform:translateY(-4px);

}

/*====================================
SLIDER BUTTONS
=====================================*/

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border:none;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:26px;

    cursor:pointer;

    transition:.35s;

    z-index:50;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.prev:hover,
.next:hover{

    background:#f5a623;

}

/*====================================
DOTS
=====================================*/

.slider-dots{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:14px;

}

.dot{

    width:16px;

    height:16px;

    border-radius:50%;

    background:#fff;

    opacity:.45;

    cursor:pointer;

    transition:.35s;

}

.dot.active{

    opacity:1;

    background:#fff;

    transform:scale(1.2);

}

/*====================================
ANIMATION
=====================================*/

@keyframes fadeUp{

    from{

        transform:translate(-40px,-40%);
        opacity:0;

    }

    to{

        transform:translate(0,-50%);
        opacity:1;

    }

}


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

.mobile-menu{

    position:fixed;

    top:0;

    left:-100%;

    width:320px;

    height:100vh;

    background:#0f7773;

    z-index:99999;

    padding:90px 30px;

    transition:.45s ease;

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

}

.mobile-menu.active{

    left:0;

}

.mobile-menu a{

    display:block;

    color:#fff;

    font-size:18px;

    font-weight:600;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.12);

    transition:.3s;

}

.mobile-menu a:hover{

    padding-left:18px;

    color:#ffc44d;

}

/*====================================
OVERLAY IMPROVEMENT
=====================================*/

.overlay-box{

    border-left:6px solid #f5a623;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.overlay-box h1{

    text-shadow:0 3px 12px rgba(0,0,0,.35);

}

.overlay-box p{

    color:#f5f5f5;

}

/*====================================
SLIDE ANIMATION
=====================================*/

.slide.active img{

    animation:zoomImage 8s linear forwards;

}

@keyframes zoomImage{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

/*====================================
BUTTON EFFECT
=====================================*/

.btn{

    position:relative;

    overflow:hidden;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:.6s;

}

.btn:hover::before{

    left:130%;

}

/*====================================
NAVBAR SCROLL
=====================================*/

header.sticky{

    position:fixed;

    top:0;

    animation:slideDown .4s;

}

header.sticky .navbar{

    height:72px;

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

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}



/*====================================
LARGE SCREEN
=====================================*/

@media(min-width:1700px){

.overlay-box{

    width:38%;

    padding:80px;

}

.overlay-box h1{

    font-size:76px;

}

.overlay-box p{

    font-size:27px;

}

.logo{

    font-size:44px;
	float:left;

}

}
/*=========================
SITE LOGO
=========================*/

.site-logo{

    height:60px;
    width:auto;
    display:block;
    object-fit:contain;

}
/*====================================
LAPTOP
=====================================*/

@media(max-width:1300px){

.overlay-box{

    width:50%;

}

.overlay-box h1{

    font-size:52px;

}

.nav-links{

    gap:25px;

}

}

/*====================================
TABLET
=====================================*/

@media(max-width:992px){

.top-right{

    display:none;

}

header{

    top:48px;

}

.menu-btn{

    display:flex;

    justify-content:center;

    align-items:center;

}

.nav-links{

    display:none;

}

.search-btn{

    display:none;

}

.logo{

    font-size:28px;

    margin:auto;

}

@media(max-width:768px){

.site-logo{

    height:45px;

}

}

.hero-slider{

    height:85vh;

}

.overlay-box{

    width:75%;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    padding:45px;

}

.overlay-box h1{

    font-size:42px;

}

.overlay-box p{

    font-size:20px;

}

.prev,
.next{

    display:none;

}

}

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

@media(max-width:768px){

.top-bar{

    display:none;

}

header{

    top:0;

}

.navbar{

    height:70px;

}

.navbar .container{

    height:70px;

}

.logo{

    font-size:22px;

}

.menu-btn{

    width:46px;

    height:46px;

}

.hero-slider{

    height:100vh;

}

.slide img{

    object-position:center;

}

.overlay-box{

    width:90%;

    left:50%;

    top:55%;

    transform:translate(-50%,-50%);

    padding:35px 28px;

    border-left:4px solid #f5a623;

}

.overlay-box h1{

    font-size:34px;

    line-height:1.25;

}

.overlay-box p{

    font-size:17px;

    line-height:1.7;

    margin-top:15px;

    margin-bottom:25px;

}

.btn{

    width:100%;

    text-align:center;

    padding:16px;

    font-size:18px;

}

.slider-dots{

    bottom:22px;

}

.dot{

    width:13px;

    height:13px;

}

}

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

@media(max-width:480px){

.logo{

    font-size:18px;

}

.overlay-box{

    width:92%;

    padding:25px;

}

.overlay-box h1{

    font-size:28px;

}

.overlay-box p{

    font-size:15px;

}

.btn{

    font-size:16px;

}

.mobile-menu{

    width:100%;

}

}

/*====================================
EXTRA SMALL DEVICES
=====================================*/

@media(max-width:360px){

.overlay-box{

    padding:20px;

}

.overlay-box h1{

    font-size:24px;

}

.overlay-box p{

    font-size:14px;

}

}


/*=========================
CLOSE MENU BUTTON
==========================*/

.close-menu{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.close-menu:hover{

    background:#f5a623;

    transform:rotate(90deg);

}


/*====================================
LATEST NEWS
=====================================*/

.latest-news{

    padding:10px 0;

    background:#fff;

}

.news-tabs{

    display:flex;

    justify-content:center;

    gap:60px;

    margin-bottom:60px;

}

.news-tabs button{

    background:none;

    border:none;

    font-size:24px;

    font-weight:400;

    color:#999;

    cursor:pointer;

    padding-bottom:10px;

    transition:.3s;

}

.news-tabs button.active{

    color:#157f82;

    border-bottom:3px solid #157f82;

}

.news-grid{

    display:grid;

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

    gap:30px;

}

.news-card{

    border:2px solid #e8e8e8;

    padding:35px;

    min-height:300px;

    transition:.35s;

    cursor:pointer;

    background:#fff;

}

.news-card:hover{

    border-color:#f5a623;

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.08);

}

.news-date{

    color:#f5a623;

    font-size:20px;

    font-weight:600;

    display:block;

    margin-bottom:25px;

}

.news-card h3{

    font-size:14px;

    line-height:1.7;

    color:#444;

    font-weight:200;

}

.view-all{

    text-align:center;

    margin-top:45px;

}

.view-all a{

    color:#f5a623;

    font-size:24px;

    font-weight:500;

}

.view-all i{

    margin-left:10px;

}

/*====================================
TABLET
=====================================*/

@media (max-width:991px){

.news-grid{

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

}

.news-card{

    min-height:240px;
    padding:25px;

}

.news-card h3{

    font-size:18px;
    line-height:1.6;

}

.news-date{

    font-size:18px;

}

}

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

@media (max-width:767px){

.latest-news{

    padding:50px 15px;

}

.latest-news .container{

    width:100%;
    max-width:100%;

}

.news-tabs{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    margin-bottom:30px;

}

.news-tabs button{

    font-size:20px;

}

.news-grid{

    display:grid;
    grid-template-columns:1fr;
    gap:18px;

}

.news-card{

    width:100%;
    min-height:auto;
    padding:22px;

}

.news-date{

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

}

.news-card h3{

    font-size:17px;
    line-height:1.6;

}

.view-all{

    margin-top:25px;

}

.view-all a{

    font-size:18px;

}

}






/*====================================
FOOTER
=====================================*/

.footer{

    background:#9d9d9d;

    padding:2px 0 1px;

    position:relative;

}

.footer-grid{

    display:grid;

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

    gap:40px;

}

.footer h3{

    color:#fff;

    font-size:24px;

    margin-bottom:25px;

    font-weight:600;

}

.footer-logo{

    width:230px;

    background:#fff;

    padding:15px;

    border-radius:4px;

    margin-bottom:25px;

}

.footer-address p{

    color:#fff;

    font-size:17px;

    line-height:2;

}

.footer-links ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer-links li{

    margin-bottom:18px;

}

.footer-links a{

    color:#fff;

    text-decoration:none;

    font-size:17px;

    transition:.3s;

}

.footer-links a::before{

    content:"?";

    color:#f5a623;

    margin-right:10px;

    font-size:12px;

}

.footer-links a:hover{

    color:#f5a623;

    padding-left:8px;

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.25);

    color:#fff;

    text-align:center;

    font-size:15px;

}

.back-top{

    position:absolute;

    right:40px;

    bottom:40px;

    width:55px;

    height:55px;

    background:#fff;

    color:#19888a;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.2);

    transition:.3s;

}

.back-top:hover{

    background:#19888a;

    color:#fff;

}

@media(max-width:991px){

.footer-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.footer-logo{

    width:180px;

}

.footer h3{

    font-size:22px;

}

.footer-address p,
.footer-links a{

    font-size:16px;

}

.back-top{

    right:20px;
    bottom:20px;

}

}

@media(max-width:768px){

.footer{

    padding:50px 20px;

}

.footer-logo{

    width:150px;

}

.footer-bottom{

    font-size:14px;

}

}

/*====================================
ABOUT US
=====================================*/

.about-section{

    padding:90px 0;
    background:#fff;

}

.about-grid{

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

}

.about-image img{

    width:100%;
    border-radius:8px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.about-subtitle{

    color:#19888a;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;

}

.about-content h2{

    font-size:42px;
    color:#222;
    margin:18px 0 25px;
    line-height:1.25;

}

.about-content p{

    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;

}

.feature{

    display:flex;
    align-items:center;
    gap:15px;

    font-size:17px;
    font-weight:500;

}

.feature i{

    width:55px;
    height:55px;

    background:#19888a;
    color:#fff;

    border-radius:50%;

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

    font-size:22px;

}

.about-btn{

    display:inline-block;

    padding:15px 35px;

    background:#f5a623;

    color:#fff;

    border-radius:4px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    background:#19888a;

}

@media(max-width:991px){

.about-grid{

    grid-template-columns:1fr;

}

.about-content{

    text-align:center;

}

.about-content h2{

    font-size:34px;

}

.about-features{

    grid-template-columns:1fr 1fr;

}

.feature{

    justify-content:center;

}

}

@media(max-width:768px){

.about-section{

    padding:10px 20px;

}

.about-content h2{

    font-size:28px;

}

.about-content p{

    font-size:15px;

}

.about-features{

    grid-template-columns:1fr;

}

.feature{

    justify-content:flex-start;

}

.about-btn{

    width:100%;
    text-align:center;

}

}


/*====================================
CONTACT
=====================================*/

.contact-section{

    padding:100px 0;

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:430px 1fr;

    gap:60px;

    align-items:center;

}

.section-title{

    color:#19888a;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

}

.contact-info h2{

    font-size:42px;

    margin:15px 0 30px;

    color:#222;

}

.contact-info p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}

.contact-info strong{

    color:#222;

}

.contact-image img{

    width:100%;

    border-radius:8px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.map-btn{

    margin-top:30px;

    padding:18px 35px;

    border:2px solid #f5a623;

    background:#fff;

    color:#f5a623;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.map-btn i{

    margin-right:10px;

}

.map-btn:hover{

    background:#19888a;

    border-color:#19888a;

    color:#fff;

}

@media(max-width:991px){

.contact-grid{

    grid-template-columns:1fr;

}

.contact-image{

    order:1;

}

.contact-info{

    order:2;

}

.contact-info{

    text-align:center;

}

.contact-info h2{

    font-size:32px;

}

.contact-info p{

    font-size:16px;

}

.map-btn{

    width:100%;

}

}

@media(max-width:768px){

.contact-section{

    padding:60px 20px;

}

.contact-info h2{

    font-size:28px;

}

.contact-info p{

    font-size:15px;

}

}

/*=====================================
OUR LEADERSHIP
======================================*/

.leadership{

    width:100%;

    background:#fff;

    padding:80px 0;

}

.leadership-grid{

    display:grid;

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

    gap:0;

}

.leader{

    overflow:hidden;

}

.leader img{

    width:100%;

    height:520px;

    object-fit:cover;

    display:block;

}

.leader-content{

    background:#318f93;

    color:#fff;

    text-align:center;

    height:200px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:25px;

}

.leader-content h3{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

}

.leader-content p{

    font-size:17px;

    line-height:1.6;

    font-weight:300;

}

@media(max-width:992px){

.leadership-grid{

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

}

.leader img{

    height:420px;

}

}

@media(max-width:768px){

.leadership{

    padding:60px 20px;

}

.leadership-grid{

    grid-template-columns:1fr;

}

.leader{

    margin-bottom:25px;

}

.leader img{

    height:380px;

}

.leader-content{

    height:170px;

}

.leader-content h3{

    font-size:22px;

}

.leader-content p{

    font-size:16px;

}

}





/*====================================
SERVICE HEADINGS
=====================================*/

.service-headings{

    padding:80px 0;

    background:#f8f8f8;

}

.service-grid{

    display:grid;

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

    gap:30px;

}

.service-box{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-top:5px solid #19888a;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.service-box:hover{

    transform:translateY(-8px);

    border-top-color:#f5a623;

}

.service-box i{

    font-size:50px;

    color:#19888a;

    margin-bottom:20px;

}

.service-box h3{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

    font-weight:700;

}

.service-box p{

    font-size:15px;

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.service-grid{

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

}

}

@media(max-width:768px){

.service-headings{

    padding:60px 20px;

}

.service-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.service-box{

    padding:30px 25px;

}

.service-box i{

    font-size:40px;

}

.service-box h3{

    font-size:20px;

}

.service-box p{

    font-size:14px;

}

}



.news-details{

padding:140px 0 120px;

}

.breadcrumb{

margin-bottom:30px;

font-size:15px;

color:#777;

}

.breadcrumb a{

color:#19888a;

}

.news-banner img{

width:100%;

height:600px;

object-fit:cover;

border-radius:6px;

}

.news-header{

margin-top:40px;

display:flex;

gap:30px;

color:#999;

font-size:15px;

}

.news-details h1{

font-size:46px;

margin:20px 0 35px;

line-height:1.3;

color:#222;

}

.news-body{

font-size:18px;

line-height:2;

color:#555;

}

.news-body img{

max-width:100%;

margin:35px 0;

}

.download-btn{

display:inline-block;

margin-top:35px;

padding:14px 28px;

background:#19888a;

color:#fff;

}

.share{

margin-top:60px;

padding-top:35px;

border-top:1px solid #eee;

}

.share h4{

margin-bottom:20px;

}

.share a{

width:45px;

height:45px;

background:#19888a;

color:#fff;

display:inline-flex;

justify-content:center;

align-items:center;

margin-right:10px;

border-radius:50%;

transition:.3s;

}

.share a:hover{

background:#f5a623;

}

@media(max-width:768px){

.news-details{

padding:50px 20px;

}

.news-banner img{

height:250px;

}

.news-details h1{

font-size:28px;

}

.news-header{

display:block;

}

.news-header span{

display:block;

margin-bottom:10px;

}

.news-body{

font-size:16px;

line-height:1.8;

}

}

/*====================================
OUR SERVICES
====================================*/

.services-section{

    padding:120px 0;

    background:#f7f9fb;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:#0b8d8f;

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

}

.section-heading h2{

    font-size:42px;

    color:#222;

    margin:15px 0;

    font-weight:700;

}

.section-heading p{

    width:760px;

    max-width:100%;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:17px;

}

.services-grid{

    display:grid;

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

    gap:35px;

}

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:8px;

    transition:.35s;

    border:1px solid #ececec;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.service-icon{

    width:80px;

    height:80px;

    background:#0b8d8f;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.service-icon i{

    color:#fff;

    font-size:34px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:#222;

}

.service-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.service-card a{

    color:#0b8d8f;

    font-weight:600;

    text-decoration:none;

}

.service-card a i{

    margin-left:8px;

    transition:.3s;

}

.service-card:hover a i{

    margin-left:14px;

}

@media(max-width:992px){

.services-grid{

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

}

}

@media(max-width:768px){

.services-section{

    padding:70px 20px;

}

.section-heading{

    margin-bottom:40px;

}

.section-heading h2{

    font-size:32px;

}

.section-heading p{

    font-size:16px;

}

.services-grid{

    grid-template-columns:1fr;

    gap:25px;

}

.service-card{

    padding:35px 25px;

}

.service-icon{

    width:70px;

    height:70px;

}

.service-icon i{

    font-size:30px;

}

.service-card h3{

    font-size:22px;

}

}


/*======================================
PRODUCTS
======================================*/

.products-section{

padding:120px 0;

background:#f8f9fa;

}

.product-grid{

display:grid;

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

gap:35px;

}

.product-card{

background:#fff;

overflow:hidden;

border-radius:10px;

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

transition:.35s;

}

.product-card:hover{

transform:translateY(-8px);

}

.product-image{

position:relative;

overflow:hidden;

}

.product-image img{

width:100%;

height:260px;

object-fit:cover;

transition:.5s;

}

.product-card:hover img{

transform:scale(1.08);

}

.category{

position:absolute;

left:20px;

top:20px;

background:#0b8d8f;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.product-info{

padding:30px;

}

.product-info h3{

font-size:24px;

margin-bottom:15px;

color:#222;

}

.product-info p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.product-info a{

display:inline-block;

background:#0b8d8f;

color:#fff;

padding:12px 28px;

border-radius:5px;

text-decoration:none;

transition:.3s;

}

.product-info a:hover{

background:#086c6d;

}


@media(max-width:992px){

.product-grid{

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

}

}

@media(max-width:768px){

.products-section{

padding:70px 20px;

}

.product-grid{

grid-template-columns:1fr;

}

.product-image img{

height:220px;

}

.product-info{

padding:25px;

}

}