

:root{
    --bg-color:#062f2a;
    --text-color:#e6fff7;
    --header-bg:#041f1c;
    --card-bg:#041f1c;
    --accent:#7fffd4;
    --hover:#5decc3;
    --footer-bg:#021514;
}

body.light-mode{
    --bg-color:#ffffff;
    --text-color:#1a1a1a;
    --header-bg:#f2f2f2;
    --card-bg:#ffffff;
    --accent:#009688;
    --hover:#00796b;
    --footer-bg:#e0e0e0;
}
.theme-btn{
    background:var(--accent);
    border:none;
    padding:8px 14px;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:6px;
    font-weight:500;
    color:#000;
}
.login-btn{
    background:var(--accent);
    padding:8px 16px;
    border-radius:25px;
    text-decoration:none;
    font-weight:500;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
    color:#000;
}

.login-btn:hover{
    background:var(--hover);
}
.theme-btn:hover{
    background:var(--hover);
}

.theme-icon{
    font-size:16px;
}

.theme-text{
    font-size:14px;
}
/* =========================
   GLOBAL SETTINGS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--bg-color);
    color:var(--text-color);
    display:flex;
    flex-direction:column;
    padding-top:80px;
}

/* =========================
   HEADER
========================= */

header{
    background:var(--header-bg);
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
}

header h2{
    color:var(--accent);
}

/* =========================
   NAVIGATION
========================= */

nav{
    display:flex;
    align-items:center;
    gap:20px;
}

nav a{
    color:var(--text-color);
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:var(--accent);
}
nav a.active{
    color: var(--accent);
    position: relative;
    font-weight: 600;
}

nav a.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 5px;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#7fffd4;
}

/* =========================
   HERO
========================= */

.hero{
    padding:60px 8% 100px;
    text-align:center;
    background:linear-gradient(to right,var(--bg-color),var(--header-bg));
}

.hero h1{
    font-size:42px;
    margin-bottom:20px;
    color:var(--accent);
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}
/* SEARCH */
.hero-search{
    position:relative;
    max-width:650px;
    width:100%;
    margin:30px auto;
}

.hero-search input{
    width:100%;
    padding:15px 55px 15px 20px;
    border:none;
    outline:none;
    border-radius:50px;
    font-size:16px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.hero-search .search-btn{
    position:absolute;
    top:50%;
    right:8px;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:var(--accent);
    color:#062f2a;
    cursor:pointer;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.hero-search .search-btn:hover{
    background:var(--hover);
}
/* Search Link */
.search-links{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.search-links a{
    color: var(--text-color);
    border: 1px solid var(--text-color);
    font-size:12px;
    font-weight:100 !important;
    text-decoration:none;
    padding:4px 10px;
    border-radius:8px;
    transition:.3s;
    display:inline-block;
}

.search-links a:hover{
    color: var(--accent);
    border-color: var(--accent);
}
/* =========================
   PAGE BANNER
========================= */

.page-banner{
    width:100%;
    padding:90px 8% 60px;
    background:linear-gradient(to right,var(--bg-color),var(--header-bg));
    text-align:center;
}

.banner-content h1{
    font-size:40px;
    color:var(--accent);
    margin-bottom:15px;
}

.banner-content p{
    font-size:18px;
    color:var(--accent);
    max-width:700px;
    margin:auto;
}

/* =========================
   SECTION
========================= */

.section{
    padding:50px 8%;
    text-align:center;
}

.section h2{
    color:var(--accent);
    margin-bottom:35px;
    font-size:32px;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form{
    max-width:600px;
    margin:40px auto 0;
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px 15px;
    border-radius:8px;
    border:1px solid var(--accent);
    outline:none;
    font-size:14px;
}

.contact-form textarea{
    resize:none;
}

.btn {
    padding: 12px 25px;
    background: var(--accent);
    color: #062f2a;
    border-radius: 30px;
    margin: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
/* =========================
   CONTACT INFO GRID
========================= */

.contact-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
}

.contact-details{
    background:var(--card-bg);
    padding:30px;
    border-radius:15px;
	border:1px solid var(--accent);
}

.contact-details h3{
    color:#7fffd4;
    margin-bottom:20px;
}

.contact-details p{
    margin-bottom:12px;
    line-height:1.6;
}

.contact-map iframe{
    border-radius:15px;
}

/*DOWNLOAD APP BUTTONS*/
.download-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.store-btn{
    display:flex;
    align-items:center;
    gap:15px;
    background:var(--card-bg);
    color:var(--text-color);
    text-decoration:none;
    padding:12px 20px;
    border-radius:12px;
    border:1px solid var(--accent);
    transition:.3s;
}

.store-btn:hover{
    background:var(--accent);
    color:var(--bg-color);
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.20);
}

.store-btn i{
    font-size:34px;
    color:var(--accent);
    transition:.3s;
}

.store-btn:hover i{
    color:var(--bg-color);
}

.store-btn span{
    display:block;
    font-size:11px;
    opacity:.8;
}

.store-btn strong{
    display:block;
    font-size:20px;
    font-weight:600;
}
/* ==========================
   HOME INTRO SECTION
========================== */

.intro-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:50px 8%;
}

.intro-content{
    flex:1;
}

.intro-content .tag{
    display:inline-block;
    /*color:var(--accent);*/
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:2px;
}

.intro-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
    color:var(--accent);
}

.intro-content p{
    line-height:1.8;
    margin-bottom:25px;
}
.intro-image{
    flex:1.2;
    text-align:right;
}

.intro-image img{
    width:100%;
    max-width:800px;
}
.hbtn {
    padding: 5px 20px;
    background: var(--accent);
    color: #062f2a;
    border-radius: 8px;
    margin: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
/*=========================
 HOME SERVICES
=========================*/

.section-subtitle{
    max-width:600px;
    margin:10px auto 40px;
    font-size:16px;
    color:var(--text-color);
    opacity:.8;
}

.Hservices-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    margin-top:40px;
}

.Hservice-card{
    background:var(--card-bg);
    border:1px solid rgba(127,255,212,.15);
    border-radius:15px;
    padding:22px 15px;
    text-align:center;
    transition:.35s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:280px;
}

.Hservice-card:hover{
    transform:translateY(-8px);
    border-color:var(--accent);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

.service-icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.Hservice-card h3{
    color:var(--accent);
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.3;
}

.Hservice-card p{
    font-size:13px;
    line-height:1.6;
    margin-bottom:20px;
    color:var(--text-color);
}

.Hservice-card a{
    text-decoration:none;
    color:var(--accent);
    font-weight:600;
    font-size:14px;
    margin-top:auto;
    transition:.3s;
}

.Hservice-card a span{
    transition:.3s;
}

.Hservice-card:hover a span{
    margin-left:8px;
}
/*=========================
  COUNTER STRIP
=========================*/

.counter-strip{
    padding:35px 8%;
    background:var(--header-bg);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(127,255,212,.15);
    border-bottom:1px solid rgba(127,255,212,.15);
}

.counter-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    padding:10px 20px;
    position:relative;
}

.counter-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:15%;
    width:1px;
    height:70%;
    background:rgba(127,255,212,.20);
}

.counter-item i{
    font-size:40px;
    color:var(--accent);
    flex-shrink:0;
}

.counter-text{
    text-align:left;
}

.counter-text h2{
    font-size:34px;
    color:var(--accent);
    line-height:1;
    margin-bottom:6px;
    font-weight:700;
}

.counter-text p{
    font-size:15px;
    color:var(--text-color);
    margin:0;
}
/* ===========================
   HOME ABOUT SECTION
=========================== */

.HAbout-section{
    width:90%;
    margin:70px auto;
    display:grid;
    grid-template-columns:1.1fr 1fr .9fr;
    gap:40px;
    align-items:center;
    position:relative;
}
.HAbout-image{
    position:relative;
}

.HAbout-image::before{
    content:"";
    position:absolute;
    left:-30px;
    bottom:-30px;
    width:120px;
    height:120px;
    background-image:radial-gradient(var(--accent) 2px, transparent 2px);
    background-size:16px 16px;
    opacity:.18;
    z-index:-1;
}
.HAbout-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

.HAbout-tag{
    color:var(--accent);
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    position:relative;
}

.HAbout-tag::after{
    content:"";
    display:inline-block;
    width:60px;
    height:2px;
    background:var(--accent);
    margin-left:12px;
    margin-bottom:4px;
}

.HAbout-content h2{
    font-size:30px;
    color:var(--accent);
    line-height:1.3;
    margin:5px 0 15px;
}

.HAbout-content p{
    color:var(--text-color);
    opacity:.85;
    line-height:1.8;
    margin-bottom:25px;
}

.HAbout-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.HAbout-content ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin:6px 0;
    color:var(--text-color);
    font-size:17px;
}

.HAbout-content ul li i{
    color:var(--accent);
    font-size:18px;
}

.HAbout-card{
    background:var(--card-bg);
    border:1px solid rgba(127,255,212,.15);
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.HAbout-card:hover{
    border-color:var(--accent);
    box-shadow:0 12px 25px rgba(0,0,0,.20);
}

.HAbout-card h3{
    color:var(--accent);
    font-size:25px;
    margin-bottom:15px;
}

.HAbout-item{
    display:flex;
    gap:16px;
    margin-bottom:25px;
}

.HAbout-item i{
    width:40px;
    height:40px;
    border:2px solid var(--accent);
    color:var(--accent);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:18px;
}

.HAbout-item h4{
    color:var(--text-color);
    font-size:16px;
    margin-bottom:5px;
}

.HAbout-item p{
    color:var(--text-color);
    opacity:.75;
    font-size:12px;
    line-height:1.6;
    margin:0;
}

/* =========================
   CHATBOT
========================= */
.chat-wrapper{
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 120px;
    height: 120px;
    z-index: 2000;
}
.chatbot-icon{
    position: absolute;      
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

.circle-text{
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
    transform: rotate(-90deg);
}

.chat-icon-img{
    width:32px;
    height:32px;
    position:relative;
    z-index:2;
}
.chatbot-box{
    position:fixed;
    bottom:15px;
    right:25px;
    width:320px;
    background:#ffffff;      /* White Background */
    border-radius:15px;
    display:none;
    flex-direction:column;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    border:1px solid #dcdcdc;
    z-index:2000;
}

.chatbot-header{
    background:#009688;
    color:#fff;
    padding:12px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}
.chat-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

.menu-btn,
.close-btn{
    width:32px;
    height:32px;
    border:none;
    background:transparent;
    color:#fff;
    cursor:pointer;
    font-size:20px;
    border-radius:50%;
}

.menu-btn:hover,
.close-btn:hover{
    background:rgba(255,255,255,.2);
}

.chat-menu{
    position:absolute;
    top:48px;
    right:45px;
    background:#fff;
    color:#222;
    border-radius:8px;
    display:none;
    box-shadow:0 5px 15px rgb(122 229 127 / 77%);
    overflow:hidden;
}

.chat-menu div{
    padding:8px;
    cursor:pointer;
	font-size: x-small;
}

.chat-menu div:hover{
    background:#f2f2f2;
}
.chatbot-messages{
    height:260px;
    padding:15px;
    overflow-y:auto;
    background:#f8f9fa;
    color:#222;
    font-size:14px;
}

.user-message,
.bot-message{
    padding:10px 14px;
    margin:8px 0;
    border-radius:16px;
    display:block;
    width:fit-content;
    max-width:100%;
    word-wrap:break-word;
    overflow-wrap:anywhere;
    line-height:1.5;
    font-size:14px;
}

.user-message{
    background:#009688;
    color:#fff;
    margin-left:auto;
    border-bottom-right-radius:4px;
}

.bot-message{
    background:#e9ecef;
    color:#222;
    margin-right:auto;
    border-bottom-left-radius:4px;
}
.chatbot-input{
    display:flex;
    background:#ffffff;
    border-top:1px solid #ddd;
}

.chatbot-input input{
    flex:1;
    padding:12px;
    border:none;
    outline:none;
    background:#ffffff;   /* Transparent hata diya */
    color:#222;           /* Black Text */
    font-size:14px;
}

.chatbot-input input::placeholder{
    color:#888;
}

.chatbot-input button{
    background:#009688;
    color:#fff;
    border:none;
    padding:12px 18px;
    cursor:pointer;
    transition:.3s;
}

.chatbot-input button:hover{
    background:#00796b;
}
/* =========================
   FOOTER
========================= */

.footer{
    background:var(--header-bg);
    color:var(--text-color);
    margin-top:60px;
    border-top:1px solid rgba(127,255,212,.15);
}

.footer-container{
    width:90%;
    margin:auto;
    padding:60px 0 30px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:40px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-logo img{
    width:100px;
    height:100px;
    object-fit:contain;
    flex-shrink:0;
}
.footer-logo h3{
    color:var(--accent);
    font-size:26px;
}

.footer-box h4{
    color:var(--accent);
    margin-bottom:20px;
    position:relative;
}

.footer-box h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:2px;
    background:var(--accent);
}

.footer-box p{
    color:var(--text-color);
    opacity:.8;
    line-height:1.8;
    font-size:14px;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:var(--text-color);
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:var(--accent);
    padding-left:6px;
}

.footer-box p i{
    color:var(--accent);
    margin-right:10px;
}

.footer-social{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    border:1px solid rgba(127,255,212,.3);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--text-color);
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--accent);
    color:var(--bg-color);
    border-color:var(--accent);
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(127,255,212,.15);
    margin-top:30px;
    padding:20px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:var(--text-color);
    opacity:.8;
}

.footer-links{
    display:flex;
    gap:15px;
}

.footer-links a{
    color:var(--text-color);
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
}


/* ==========================================
   RESPONSIVE CSS
========================================== */

/* Tablet */
@media (max-width:992px){

    .Hservices-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-strip{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .counter-item::after{
        display:none;
    }

    .intro-section{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .intro-image{
        text-align:center;
    }

    .intro-image img{
        max-width:500px;
    }

    .intro-content h2{
        font-size:34px;
    }

}

/* Mobile */
@media (max-width:768px){

    body{
        padding-top:70px;
    }

    header{
        height:70px;
        padding:10px 15px;
    }

    .logo img{
        width:50px;
        height:50px;
    }

    .logo h2{
        font-size:18px;
    }

    .menu-toggle{
        display:block;
    }

nav{
    position:fixed;
    top:70px;
    left:-100%;

    width:280px;

    /* Ye 2 line bahut important hai */
    bottom:0;
    height:calc(100vh - 70px);

    background:var(--header-bg);

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:25px 20px 40px;

    gap:15px;

    overflow-y:auto;
    overflow-x:hidden;

    -webkit-overflow-scrolling:touch;

    transition:left .35s ease;

    z-index:1001;
}
     
     nav.active{
         left:0;
     }
nav::-webkit-scrollbar{
    width:5px;
}

nav::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:20px;
}

nav::-webkit-scrollbar-track{
    background:transparent;
}
     nav a,
     .login-btn,
     .theme-btn{
         justify-content:flex-start;
     }

    /* Hero */

    .hero{
        padding:40px 20px 60px;
    }

    .hero h1{
        font-size:28px;
        line-height:1.4;
    }

    .hero p{
        font-size:15px;
    }

    .hero-search{
        width:100%;
        max-width:100%;
    }

    .hero-search input{
        padding:14px 50px 14px 18px;
    }

    .search-links{
        gap:8px;
    }

    .search-links a{
        font-size:11px;
    }

    /* Intro */

    .intro-section{
        flex-direction:column-reverse;
        text-align:center;
        padding:40px 20px;
    }

    .intro-content,
    .intro-image{
        width:100%;
    }

    .intro-content h2{
        font-size:28px;
    }

    .intro-content p{
        font-size:15px;
    }

    .intro-image img{
        width:100%;
        max-width:350px;
    }

    .hbtn{
        display:block;
        width:220px;
        margin:12px auto;
    }

    /* Services */

    .section{
        padding:40px 20px;
    }

    .section h2{
        font-size:28px;
    }

     .Hservices-grid{
         display:grid;
         grid-template-columns:repeat(2,1fr);
         gap:12px;
     }
     
     .Hservice-card{
         min-height:auto;
         padding:15px 10px;
     }
     
     .Hservice-card h3{
         font-size:15px;
     }
     
     .Hservice-card p{
         font-size:12px;
     }
     
     .service-icon img{
         width:55px;
         height:55px;
     }

    /* Counter */

    .counter-strip{
        grid-template-columns:1fr;
        padding:30px 20px;
    }

    .counter-item{
        justify-content:center;
        text-align:center;
    }

    .counter-text{
        text-align:center;
    }

    .counter-item i{
        font-size:30px;
    }

    .counter-text h2{
        font-size:26px;
    }

    /* Contact */

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    /* Banner */

    .page-banner{
        padding:80px 20px 50px;
    }

    .banner-content h1{
        font-size:28px;
    }

    .banner-content p{
        font-size:15px;
    }

    /* Download */

    .download-buttons{
        flex-direction:column;
        align-items:center;
    }

    .store-btn{
        width:100%;
        max-width:320px;
        justify-content:center;
    }

    /* Buttons */

    .btn{
        display:block;
        width:100%;
        margin:10px 0;
    }

    /* Chat */

    .chat-wrapper{
        width:90px;
        height:90px;
    }

    .circle-text{
        width:90px;
        height:90px;
    }

    .chatbot-icon{
        width:55px;
        height:55px;
    }

    .chat-icon-img{
        width:28px;
        height:28px;
    }

    .chatbot-box{
        width:95%;
        height:70vh;
        right:2.5%;
        bottom:10px;
    }

    .chatbot-messages{
        flex:1;
        overflow-y:auto;
    }
	
    .footer-container{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
        text-align:center;
    }
    .footer-box:first-child{
        grid-column:1 / -1;
    }
        .footer-box:last-child{
        grid-column:1 / -1;
    }
    .footer-logo{
        justify-content:center;
    }
    
    .footer-box h4::after{
        left:50%;
        transform:translateX(-50%);
    }
    
    .footer-social{
        justify-content:center;
    }
    
    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
    
    .footer-links{
        justify-content:center;
    }

}
@media (max-width:768px) and (orientation:landscape){

    nav{
        width:260px;
        padding:15px 20px 30px;
    }

    nav a,
    .login-btn,
    .theme-btn{
        font-size:15px;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .logo h2{
        display:none;
    }

    .hero h1{
        font-size:22px;
    }

    .hero p{
        font-size:14px;
    }

    .intro-content h2{
        font-size:22px;
    }

    .section h2{
        font-size:24px;
    }

    .counter-text h2{
        font-size:22px;
    }

    .store-btn strong{
        font-size:16px;
    }

    .store-btn span{
        font-size:10px;
    }

}

@media(max-width:991px){

    .HAbout-section{
        grid-template-columns:1fr;
        text-align:center;
    }

    .HAbout-content h2{
        font-size:30px;
    }

    .HAbout-content ul li{
        justify-content:center;
    }

    .HAbout-item{
        text-align:left;
    }
}