/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    font-family: 'Poppins', sans-serif !important;
}
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f9fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

button, input, textarea, select {
    font-family: 'Poppins', sans-serif;
}


/* ================= HEADER ================= */
header{
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    transition:0.3s ease;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#2563eb;
}

/* ================= HERO SECTION ================= */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#f0fdfa,#ecfeff,#f8fafc);
    overflow:hidden;
}

.hero-wrapper{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* TEXT SIDE */
.hero-text{
    flex:1;
    animation:fadeInLeft 1s ease forwards;
}

.hero-text h1{
    font-size:36px;
    background:linear-gradient(45deg,#0ea5a4,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:15px;
}

.hero-text p{
    font-size:15px;
    color:#475569;
    margin-bottom:30px;
    line-height:1.6;
    max-width:500px;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 28px;
    background:linear-gradient(45deg,#0ea5a4,#06b6d4);
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

/* IMAGE SIDE */
.hero-image{
    flex:1;
    text-align:center;
    animation:fadeInRight 1s ease forwards;
}

.hero-image img{
max-width:260px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
}

.hero-image img:hover{
    transform:translateY(-8px);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInLeft{
    from{ opacity:0; transform:translateX(-40px); }
    to{ opacity:1; transform:translateX(0); }
}

@keyframes fadeInRight{
    from{ opacity:0; transform:translateX(40px); }
    to{ opacity:1; transform:translateX(0); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .hero-wrapper{
        flex-direction:column-reverse;
        text-align:center;
    }

    .hero-text h1{
        font-size:34px;
    }
}



.showcase-section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
}

.item-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.item-card{
    background:#fff;
    padding:15px;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:auto;              /* Important */
    overflow:hidden;          /* Prevent overflow outside */
}

.item-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.pagination{
    text-align:center;
    margin-top:40px;
}

.pagination button{
    padding:12px 25px;
    border:none;
    background:linear-gradient(45deg,#0ea5a4,#06b6d4);
    color:#fff;
    border-radius:30px;
    cursor:pointer;
}
.showcase-section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:60px;
}

.category-block{
    margin-bottom:70px;
}

.category-title{
    font-size:24px;
    margin-bottom:25px;
    color:#0ea5a4;
}

.item-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}



.item-card:hover{
    transform:translateY(-6px);
}
/* ================= PREMIUM FEEDBACK SECTION ================= */

.feedback-section{
    padding:110px 0;
    background:linear-gradient(135deg,#f8fafc,#e0f2fe);
}

.feedback-wrapper{
    display:flex;
    gap:60px;
    align-items:flex-start;
    flex-wrap:wrap;
}

/* ===== FORM SIDE ===== */

.feedback-form{
    flex:1;
    background:#ffffff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.feedback-form h3{
    margin-bottom:30px;
    font-size:24px;
    font-weight:600;
    color:#111827;
}

.feedback-form input,
.feedback-form textarea{
    width:100%;
    padding:15px 18px;
    margin-bottom:20px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-size:14px;
    transition:0.3s;
    background:#f9fafb;
}

.feedback-form input:focus,
.feedback-form textarea:focus{
    border-color:#06b6d4;
    background:#ffffff;
    outline:none;
    box-shadow:0 0 0 4px rgba(6,182,212,0.15);
}

.feedback-form textarea{
    resize:none;
    min-height:120px;
}

.feedback-form button{
    padding:14px 30px;
    background:linear-gradient(45deg,#0ea5a4,#06b6d4);
    color:#fff;
    border:none;
    border-radius:35px;
    font-weight:600;
    letter-spacing:0.5px;
    cursor:pointer;
    transition:0.3s ease;
}

.feedback-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(6,182,212,0.35);
}

/* ===== STAR RATING ===== */

.star-rating{
    display:flex;
    gap:10px;
    font-size:26px;
    margin-bottom:25px;
    direction:rtl; /* reverse order for hover effect */
}

.star-rating input{
    display:none;
}

.star-rating{
    color:#d1d5db;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label{
    color:#fbbf24;
}

.star-rating label{
    cursor:pointer;
    transition:0.2s ease;
}

/* ===== FEEDBACK LIST ===== */

.feedback-list{
    flex:1;
}

.feedback-list h3{
    margin-bottom:30px;
    font-size:24px;
    font-weight:600;
    color:#111827;
}

.feedback-card{
    background:#ffffff;
    padding:30px;
    border-radius:22px;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.3s ease;
    position:relative;
}

.feedback-card:hover{
    transform:translateY(-6px);
}

.feedback-card strong{
    font-size:16px;
    font-weight:600;
    color:#111827;
}

.stars{
    color:#fbbf24;
    margin:10px 0 15px;
    font-size:18px;
}

.feedback-card p{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){
    .feedback-wrapper{
        flex-direction:column;
        gap:40px;
    }
}
.star-rating-wrapper{
    margin-bottom:25px;
}

.star-rating{
    display:flex;
    flex-direction:row-reverse;
    justify-content:flex-start;
    gap:8px;
}

.star-rating input{
    display:none;
}

.star-rating label{
    font-size:30px;
    color:#d1d5db;
    cursor:pointer;
    transition:0.2s ease;
}

/* Hover effect */
.star-rating label:hover,
.star-rating label:hover ~ label{
    color:#fbbf24;
}

/* Selected stars */
.star-rating input:checked ~ label{
    color:#fbbf24;
}

.rating-output{
    margin-top:10px;
    font-size:14px;
    color:#6b7280;
}
.success-message{
    background:#dcfce7;
    color:#166534;
    padding:10px 15px;
    border-radius:8px;
    margin-bottom:15px;
    font-size:14px;
}

.no-feedback{
    color:#6b7280;
    font-size:14px;
}
.feedback-form input,
.feedback-form textarea,
.feedback-form select{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#f9fafb;
}

.star-rating{
    display:flex;
    flex-direction:row-reverse;
    gap:8px;
}

.star-rating input{
    display:none;
}

.star-rating label{
    font-size:28px;
    color:#d1d5db;
    cursor:pointer;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label{
    color:#fbbf24;
}

.success-message{
    background:#dcfce7;
    padding:10px;
    border-radius:8px;
    margin-bottom:15px;
    color:#166534;
}
.overall-rating {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.pagination {
    margin-top: 15px;
}

.pagination a {
    padding: 6px 10px;
    margin: 3px;
    text-decoration: none;
    background: #eee;
    border-radius: 5px;
}

.pagination a.active {
    background: #333;
    color: #fff;
}
.social-section {
    padding: 50px 0;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 28px;
    margin-bottom: 10px;
}
.social-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f9fafc, #eef2f7);
    text-align: center;
}

.social-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e293b;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.social-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.social-info p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #64748b;
}

/* Brand Hover Colors */
.social-card:hover .fa-instagram { color: #e1306c; }
.social-card:hover .fa-facebook { color: #1877f2; }
.social-card:hover .fa-x-twitter { color: #000; }
.social-card:hover .fa-linkedin { color: #0a66c2; }
.social-card:hover .fa-youtube { color: #ff0000; }
.social-card:hover .fa-whatsapp { color: #25d366; }
.social-card:hover .fa-telegram { color: #0088cc; }

.social-card:hover .social-icon {
    background: #fff;
}
.contact-section{
padding:60px 0;
background:#f9fafc;
text-align:center;
}

.contact-box{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
display:inline-block;
min-width:300px;
}

.contact-item{
margin-bottom:20px;
}

.contact-item h4{
margin-bottom:10px;
font-size:18px;
}

.contact-item a{
color:#2563eb;
text-decoration:none;
margin:0 5px;
}

.contact-item a:hover{
text-decoration:underline;
}
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fafc, #eef2f7);
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 600;
  color: #333;
}

.contact-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-width: 280px;
  flex: 1;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 35px;
  background: #f0f4ff;
  padding: 15px;
  border-radius: 50%;
}

.details h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #555;
}

.details p {
  margin: 0;
}

.details a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  transition: 0.3s;
}

.details a:hover {
  color: #0056b3;
}
.social-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fb, #eef2f7);
  font-family: 'Segoe UI', sans-serif;
}

.social-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  font-weight: 600;
  color: #222;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.social-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.social-icon {
  width: 60px;
  height: 60px;
  background: #f1f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: #007bff;
  transition: 0.3s;
}

.social-card:hover .social-icon {
  background: #007bff;
  color: #fff;
}

.social-info h4 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.social-info p {
  margin: 5px 0 0;
  color: #777;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .social-title {
    font-size: 24px;
  }
}
.icon-wrapper i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
}

.icon-wrapper .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}
/* ================= FIXED 4 COLUMN SQUARE GRID ================= */

.item-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* Always 4 columns */
    gap: 25px;
}

/* Square Card */
.item-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.item-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(45deg, #2563eb, #06b6d4);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s ease;
}

.item-card:hover::before {
    opacity: 1;
}

.item-card:hover {
    transform: translateY(-6px);
}

.item-card h4 {
  
   
    font-weight: 600;
    color: #111827;
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
}

.item-card p {
    font-size: 13px;
    color: #6b7280;
}
@media (max-width: 1024px) {
    .item-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .item-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
html {
    scroll-behavior: smooth;
}
/* ================= HERO RESPONSIVE ================= */

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.hero-text{
    flex:1;
}

.hero-image{
    flex:1;
    text-align:right;
}

.hero-image img{
    max-width:100%;
    height:auto;
}

@media(max-width:992px){
    .hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .hero-image{
        text-align:center;
    }
}
/* ================= SHOWCASE RESPONSIVE ================= */

.item-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

@media(max-width:1200px){
    .item-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:992px){
    .item-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .item-grid{
        grid-template-columns:1fr;
    }
}
/* ================= FEEDBACK RESPONSIVE ================= */

.feedback-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.feedback-form,
.feedback-list{
    flex:1;
}

@media(max-width:992px){
    .feedback-wrapper{
        flex-direction:column;
    }
}
/* ================= SOCIAL RESPONSIVE ================= */

.social-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

@media(max-width:1200px){
    .social-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .social-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .social-grid{
        grid-template-columns:1fr;
    }
}
/* ================= CONTACT RESPONSIVE ================= */

.contact-box{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.contact-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

@media(max-width:576px){
    .contact-item{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
}
@media(max-width:576px){

    .container{
        width:95%;
    }

    h1{
        font-size:24px;
    }

    h2{
        font-size:20px;
    }

    .section-title{
        font-size:22px;
        text-align:center;
    }

    button{
        width:100%;
    }

    input, textarea, select{
        width:100%;
    }
}
.more-btn{
    display:inline-block;
    margin-top:10px;
    padding:6px 12px;
    background:#2563eb;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    font-size:14px;
}

.more-btn:hover{
    background:#1e40af;
}

.more-text{
    margin-top:10px;
    font-size:14px;
    color:#555;
}
.desc-wrapper {
    position: relative;
}

.desc-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;   /* SHOW ONLY 4 LINES */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.desc-text.expanded {
    -webkit-line-clamp: unset;
}

.show-more-btn {
    margin-top: 6px;
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.show-more-btn:hover {
    text-decoration: underline;
}
.item-card h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
}

.desc-text{
    font-size:14px;
    color:#555;
    line-height:1.6;
    max-height:96px;   /* 4 lines */
    overflow:hidden;
    transition:max-height 0.4s ease;
    word-wrap:break-word;
}

.desc-text.expanded{
    max-height:1000px;
}

.show-more-btn{
    display:inline-block;
    margin-top:5px;
    font-size:13px;
    color:#2563eb;
    cursor:pointer;
}

.show-more-btn:hover{
    text-decoration:underline;
}
.social-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    align-items:stretch;
}
.social-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    text-decoration:none;
    color:#333;
    overflow:hidden;              /* Important */
    word-break:break-word;        /* Important */
}
.social-info{
    flex:1;
    min-width:0;   /* VERY IMPORTANT */
}

.social-info h4{
    font-size:16px;
    margin-bottom:4px;
}

.social-info p{
    font-size:14px;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;   /* show ... if long */
}
.social-info p{
    font-size:14px;
    color:#555;
    word-break:break-word;
}

/* ================= MOBILE FIX ================= */

@media (max-width:768px){

/* Container */
.container{
width:94%;
margin:auto;
}

/* Header */
header{
padding:10px 0;
}

nav a{
margin-left:10px;
font-size:14px;
}

/* HERO */

.hero{
min-height:auto;
padding:80px 0 40px;
}

.hero-text h1{
font-size:26px;
line-height:1.3;
}

.hero-text p{
font-size:15px;
}

.btn{
padding:10px 20px;
font-size:14px;
}

/* SHOWCASE */

.category-title{
font-size:18px;
}

.item-grid{
grid-template-columns:1fr;
gap:15px;
}

.item-card{
padding:15px;
aspect-ratio:auto;
}

.item-card h4{
font-size:16px;
}

.desc-text{
font-size:13px;
}

/* FEEDBACK */

.feedback-section{
padding:60px 0;
}

.feedback-form{
padding:25px;
}

.feedback-card{
padding:20px;
}

.feedback-card p{
font-size:13px;
}

/* SOCIAL */

.social-title{
font-size:22px;
}

.social-grid{
grid-template-columns:1fr;
}

.social-card{
padding:15px;
}

/* CONTACT */

.contact-section{
padding:50px 0;
}

.contact-box{
padding:20px;
}

.contact-item{
padding:15px;
}

/* FORM */

input,
textarea,
select{
font-size:14px;
padding:12px;
}

button{
font-size:14px;
padding:12px;
}

}
/* ===== HERO MOBILE FORCE FIX ===== */

@media (max-width:768px){

.hero{
min-height:auto !important;
padding:60px 0 20px !important;
}

.hero-wrapper{
flex-direction:column-reverse !important;
gap:15px !important;
text-align:center !important;
}

.hero-text h1{
font-size:22px !important;
line-height:1.3 !important;
margin-bottom:8px !important;
}

.hero-text p{
font-size:13px !important;
margin-bottom:12px !important;
}

.btn{
padding:8px 16px !important;
font-size:13px !important;
}

.hero-image img{
max-width:140px !important;
height:auto !important;
}

}
.hero-desc-wrapper{
margin-bottom:15px;
}

.hero-read-more{
margin-top:10px;
margin-right:10px;
}
/* ===== CARD HOVER ANIMATION ===== */

.item-card,
.social-card,
.feedback-card{
transition: all 0.35s ease;
transform: translateY(0);
}

.item-card:hover,
.social-card:hover,
.feedback-card:hover{
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
/* ===== SCROLL ANIMATION ===== */

.animate-box{
opacity:0;
transform: translateY(40px);
transition: all 0.7s ease;
}

.animate-box.show{
opacity:1;
transform: translateY(0);
}
.hero-more-text{
display:none;
}

.hero-read-more{
display:inline-block;
margin-top:12px;
margin-right:10px;
padding:10px 22px;
background:linear-gradient(45deg,#0ea5a4,#06b6d4);
color:#fff;
border:none;
border-radius:30px;
cursor:pointer;
font-size:14px;
font-weight:600;
transition:0.3s;
}

.hero-read-more:hover{
transform:translateY(-3px);
}
.hero-desc-wrapper{
margin-bottom:15px;
}