*{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}


/* HEADER */
.main-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    border-bottom: 1px solid #eee;
}

/* CONTAINER */
.header-container{
    max-width: 1300px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img{
    height: 48px;
}

/* MENU DESKTOP */
.nav-menu{
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-menu a{
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active{
    color: #e11d2e;
}
/* DROPDOWN */
.dropdown{
    position: relative;
}

/* button */
.dropbtn{
    text-decoration:none;
    color:#000;
    font-weight:500;
    cursor:pointer;
}

/* submenu */
.dropdown-content{
    position:absolute;
    top:100%;          /* no gap */
    left:0;
    background:#fff;
    min-width:240px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    border-radius:6px;
    overflow:hidden;
    display:none;
    z-index:9999;
}

/* links */
.dropdown-content a{
    display:block;
    padding:12px 15px;
    text-decoration:none;
    color:#000;
    font-size:14px;
    border-bottom:1px solid #eee;
}
.dropdown-content a:hover{
    background:#f5f5f5;
}

/* hover open */
.dropdown:hover .dropdown-content{
    display:block;
}


/* BUTTON */
.quote-btn{
    padding: 10px 20px;
    border: 1.5px solid #000;
    background: transparent;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
}
.quote-btn:hover{
    background:#000;
    color:#fff;
}

/* MOBILE TOGGLE */
.menu-toggle{
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span{
    width: 26px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}
.mobile-dropdown{
    width:100%;
}

.mobile-dropbtn{
    padding:12px 0;
    font-weight:500;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

.mobile-dropcontent{
    display:none;
    flex-direction:column;
    padding-left:10px;
}

.mobile-dropcontent a{
    padding:10px 0;
    text-decoration:none;
    color:#000;
    font-size:14px;
    border-bottom:1px solid #f0f0f0;
}

.mobile-quote{
    margin-top:12px;
    text-align:center;
    border:1px solid #000;
    padding:12px;
    border-radius:6px;
    text-decoration:none;
    color:#000;
}

/* MOBILE MENU */
.mobile-menu{
    position: fixed;
    top: 72px; /* height of header */
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 99999;
    overflow-y: auto;
}

.mobile-menu a{
    padding: 12px 0;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}
.mobile-menu a:last-child{
    border-bottom: none;
}

/* ANIMATION */
@keyframes slideDown{
    from{opacity:0; transform: translateY(-10px);}
    to{opacity:1; transform: translateY(0);}
}

/* RESPONSIVE */
@media(max-width: 900px){
    .nav-menu{
        display: none;
    }
    .quote-btn{
        display: none;
    }
    .menu-toggle{
        display: flex;
    }
}

/* PAGE CONTENT */
.page-content{
    margin-top: 90px;
    padding: 40px;
}
   .fullimg-slider {
      position: relative;
      width: 100%;
      height: 550px;
      overflow: hidden;
      background: #000; /* background color behind images */
    }

    /* ===== Each Slide ===== */
    .fullimg-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .fullimg-slide.active {
      opacity: 1;
      z-index: 1;
    }

    /* ===== Image Styling ===== */
    .fullimg-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;  /* shows full image without cropping */
      object-position: center;
      background-color: #000; /* fills behind image */
    }

    /* ===== Optional Dots for Navigation ===== */
    .slider-dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .slider-dots span {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .slider-dots span.active {
      opacity: 1;
      background: #f5c518;
    }
    .home-banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000; /* optional background behind images */
  margin-top: 70px;
}

.home-slider-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.home-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Normal img styling */
.home-slide img {
  width: 100%;
  height: auto;          /* maintain aspect ratio */
  object-fit: contain;   /* ensures full image visible */
  display: block;
}

/* navigation arrows */
.home-navigation{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  padding:0 18px;
  z-index:30;
  pointer-events:none;
}
.home-nav-btn{
  pointer-events:auto;
  width:48px;height:48px;border-radius:50%;
  background:rgba(0,0,0,0.45);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;cursor:pointer;user-select:none;
  transition:transform .12s, background .12s;
}
.home-nav-btn:hover{ transform:scale(1.05); background:rgba(0,0,0,0.7); color:#f4c542; }

/* dots */
.home-dots{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;gap:10px;
  z-index:40;
}
.home-dots .dot{
  width:12px;height:12px;border-radius:50%;
  background:rgba(255,255,255,0.55);cursor:pointer;transition:transform .12s, background .12s;
}
.home-dots .dot.active{ background:#f4c542; transform:scale(1.2); }

/* responsive */
@media (max-width:1024px){ .home-banner-slider { height:auto; } }
@media (max-width:768px){ .home-banner-slider { height:auto; } }
@media (max-width:480px){ .home-banner-slider { height:auto; } }


/* NEWSLETTER */
.newsletter-section{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:-120px;
    position:relative;
    z-index:5;
}

.newsletter-box{
    background:#c61c2d;
    width:85%;
    padding:50px 30px;
    border-radius:20px;
    text-align:center;
    color:#fff;
}

.newsletter-box h2{
    font-size:42px;
    margin-bottom:25px;
    font-weight:700;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    max-width:600px;
    margin:auto;
    overflow:hidden;
    border-radius:8px;
}

.newsletter-form input{
    flex:1;
    padding:14px 16px;
    border:none;
    outline:none;
    font-size:15px;
}

.newsletter-form button{
    background:#000;
    color:#fff;
    border:none;
    padding:14px 28px;
    cursor:pointer;
    font-weight:600;
}

/* FOOTER */
.footer{
    background: 
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('../assets/images/home/footer.webp') center / cover no-repeat;
    color:#fff;
    padding-top:180px;
    padding-bottom:40px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap:40px;
}

/* FOOTER LOGO */
.footer-logo img{
    width:140px;
    margin-bottom:15px;
    background-color: white;
}
.footer p{
    font-size:14px;
    line-height:1.7;
    color:#ddd;
}

/* TITLES */
.footer h3{
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
}

/* LINKS */
.footer-links a{
    display:block;
    text-decoration:none;
    color:#fff;
    margin-bottom:10px;
    font-size:14px;
    transition:.3s;
}
.footer-links a:hover{
    color:#e11d2e;
}

/* CONTACT */
.footer-contact div{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:12px;
    font-size:14px;
}
.footer-contact i{
    color:#e11d2e;
    margin-top:4px;
}

/* BOTTOM */
.footer-bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
    text-align:center;
    font-size:13px;
    color:#ccc;
}

/* FLOATING ICONS */
.float-icons{
    position:fixed;
    right:15px;
    bottom:80px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:99;
}
.float-icons a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:20px;
    text-decoration:none;
}
.float-whatsapp{background:#25D366;}
.float-call{background:#ff7a00;}
.float-google{background:#fff;color:#000;border:1px solid #ddd;}

/* RESPONSIVE */

@media(max-width: 900px){
    .newsletter-box h2{font-size:28px;}
    .newsletter-form{flex-direction:column;}
    .newsletter-form button{width:100%;}
    .footer-container{
        grid-template-columns:1fr;
    }
    .newsletter-section{
        margin-bottom:-80px;
    }
}


/* SECTION */
.about-section{
    padding:80px 0;
    background:#fff;
}

.about-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
    align-items:center;
    overflow:hidden;
}

/* IMAGE BOX */
.about-img{
    position:relative;
    opacity:0;
    transform: translateX(-120px); /* LEFT start */
    transition: all 1s ease;
}

.about-img img{
    width:100%;
    border-radius:12px;
    position:relative;
    z-index:2;
}
/* CONTENT */
.about-content{
    opacity:0;
    transform: translateX(120px); /* RIGHT start */
    transition: all 1s ease;
}

.about-content h5{
    font-size:16px;
    margin-bottom:10px;
    font-weight:600;
}

.about-content h1{
    font-size:34px;
    color:#d6001c;
    margin-bottom:20px;
    font-weight:700;
}

.about-content h2{
    font-size:34px;
    color:#d6001c;
    margin-bottom:20px;
    font-weight:700;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
    color:#333;
}

/* ACTIVE STATE */
.about-section.active .about-img{
    opacity:1;
    transform: translateX(0); /* move RIGHT */
}

.about-section.active .about-content{
    opacity:1;
    transform: translateX(0); /* move LEFT */
}

/* RESPONSIVE */
@media(max-width: 900px){
    .about-container{
        grid-template-columns:1fr;
    }
    .about-content h2{
        font-size:26px;
    }
}
/* SECTION */
.services-section{
    background:#d9d9d9;
    padding:80px 0;
}

/* TITLES */
.services-title{
    text-align:center;
    margin-bottom:50px;
}
.services-title h4{
    color:#d6001c;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}
.services-title h2{
    color:#d6001c;
    font-size:32px;
    font-weight:700;
}

/* CONTAINER */
.services-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}

/* CARD */
.service-card{
    background:#e0e0e0;
    border-radius:18px;
    padding:20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition:0.3s;
}

.service-card:hover{
    transform: translateY(-6px);
}

/* IMAGE */
.service-card img{
    width:100%;
    border-radius:12px;
    margin-bottom:15px;
}

/* CONTENT */
.service-card h3{
    color:#d6001c;
    font-size:20px;
    margin-bottom:10px;
}

.service-card p{
    font-size:14px;
    line-height:1.7;
    color:#000;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .services-container{
        grid-template-columns:1fr;
    }
    .services-title h2{
        font-size:24px;
    }
}
/* SECTION */
.why-section{
    padding:80px 0;
    background:#fff;
}

.why-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT CONTENT */
.why-content h3{
    color:#d6001c;
    font-size:22px;
    margin-bottom:15px;
}

.why-content p{
    font-size:15px;
    line-height:1.8;
    color:#000;
    margin-bottom:20px;
}

/* FEATURE BOX */
.feature-box{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.feature-icon{
    width:50px;
    height:50px;
    background:#d6001c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    font-size:22px;
}

.feature-text h4{
    color:#d6001c;
    margin-bottom:8px;
    font-size:18px;
}

.feature-text p{
    font-size:14px;
    line-height:1.7;
}

/* RIGHT IMAGE */
.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    border-radius:14px;
}

/* FLOAT LOGO BADGE */
.why-badge{
    position:absolute;
    top:30px;
    right:-30px;
    background:#f36a00;
    color:#fff;
    padding:18px 20px;
    border-radius:18px;
    text-align:center;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.why-badge span{
    display:block;
    font-size:12px;
    font-weight:500;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .why-container{
        grid-template-columns:1fr;
    }
    .why-badge{
        right:10px;
        top:10px;
    }
}
.ac-services-section{
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url("assets/images/home/footer.webp") center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}
.icon-white{
    filter: brightness(0) invert(1);
}

.ac-services-section .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.ac-services-section .container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    text-align:center;
}

/* Header */
.section-header span{
    font-size:16px;
    color:#ddd;
    display:block;
    margin-bottom:10px;
    letter-spacing:1px;
}

.section-header h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:60px;
}

/* Grid */
.services-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:40px;
}

/* Box */
.service-box{
    text-align:center;
    padding:10px;
}

.icon-box{
    width:40px;
    height:40px;
    background:#d7192d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    border-radius:8px;
    margin:0 auto 20px;
}
.icon-box img{
    width:20px;
    height:20px;
}
.service-box h3{
    font-size:20px;
    margin-bottom:12px;
}

.service-box p{
    font-size:15px;
    line-height:1.7;
    color:#ddd;
}

/* Responsive */
@media(max-width:992px){
    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .section-header h2{
        font-size:32px;
    }

    .services-grid{
        grid-template-columns: 1fr;
    }
}
.ab-section{
    padding: 80px 0;
    background:#fff;
}

.ab-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.ab-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    align-items:center;
}

/* IMAGE SIDE */
.ab-image-box{
    position:relative;
    border-radius:14px;
    overflow:hidden;
}

.ab-image-box img{
    width:100%;
    height:auto;
    border-radius:14px;
}

/* decorative shapes */
.ab-shape{
    position:absolute;
    border-radius:14px;
    z-index:2;
}

.ab-shape-orange{
    width:90px;
    height:90px;
    background:#e7682f;
    top:20px;
    right:-30px;
}

.ab-shape-black{
    width:70px;
    height:70px;
    background:#000;
    bottom:30px;
    left:-25px;
}

/* CONTENT */
.ab-title{
    color:#d71920;
    font-size:28px;
    margin-bottom:15px;
}

.ab-text{
    color:#333;
    line-height:1.7;
    margin-bottom:30px;
}

/* INFO BLOCKS */
.ab-info{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.ab-info h4{
    color:#d71920;
    margin-bottom:6px;
}

.ab-info p{
    margin:0;
    line-height:1.6;
    color:#333;
}

.ab-icon{
    min-width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.ab-icon.red{
    background:#d71920;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
    .ab-grid{
        grid-template-columns:1fr;
    }

    .ab-shape-orange,
    .ab-shape-black{
        display:none;
    }
}
.testimonial-section{
    position:relative;
    padding:100px 20px;
    background:#fff;
    overflow:hidden;
    text-align:center;
}

.testimonial-container{
    max-width:900px;
    margin:auto;
    position:relative;
    z-index:2;
}

.testimonial-title{
    font-size:42px;
    font-weight:800;
    color:#333;
    margin-bottom:40px;
}

.testimonial-slider{
    min-height:160px;
}

.testimonial-slide{
    display:none;
    animation: fadeIn 0.8s ease;
}

.testimonial-slide.active{
    display:block;
}

.testimonial-slide p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-slide h4{
    font-weight:600;
    color:#000;
}

/* Dots */
.testimonial-dots{
    margin-top:25px;
}

.dot{
    display:inline-block;
    width:8px;
    height:8px;
    background:#ccc;
    border-radius:50%;
    margin:0 6px;
    cursor:pointer;
}

.dot.active{
    background:#000;
}

/* Background circles */
.testimonial-bg{
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background: repeating-radial-gradient(
        circle,
        #f2f2f2 0px,
        #f2f2f2 2px,
        transparent 2px,
        transparent 8px
    );
    opacity:0.6;
}

.left-circle{
    left:-100px;
    top:120px;
}

.right-circle{
    right:-100px;
    top:60px;
}

/* Animation */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */
@media(max-width:768px){
    .testimonial-title{
        font-size:30px;
    }
}
.breadcrumb-section{
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top:70px;
}

.breadcrumb-content h1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-nav{
    font-size: 14px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.breadcrumb-nav a{
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.breadcrumb-nav a:hover{
    text-decoration: underline;
}

.breadcrumb-nav span{
    color: #fff;
    opacity: 0.7;
}

.breadcrumb-nav .active{
    color: #fff;
    font-weight: 600;
    opacity: 1;
}

/* Mobile */
@media(max-width:768px){
    .breadcrumb-section{
        height: 200px;
    }
    .breadcrumb-content h1{
        font-size: 26px;
    }
}
.ac-content-section{
    width:100%;
    background:#fff;
    /* padding:80px 0; */
}

.ac-content-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    font-family:Arial, sans-serif;
    color:#222;
}

.ac-content-container h3{
    font-size:22px;
    margin-top:10px;
    margin-bottom:10px;
    color:#c4161c;
}

.ac-content-container p{
    font-size:16px;
    line-height:1.9;
    margin-bottom:10px;
}

.ac-content-container ul{
    padding-left:20px;
    margin-bottom:20px;
}

.ac-content-container ul li{
    font-size:16px;
    line-height:1.8;
    margin-bottom:5px;
}
.gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: auto;
        }

        /* Gallery Item */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            cursor: pointer;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeUp 0.8s ease forwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Hover Zoom */
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Overlay */
        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        /* Animation */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .contact-section {
    text-align: center;
    padding: 50px 20px;
}

.contact-section h2 {
    color: #c4161c;
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    width: 260px;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 28px;
    color: #c4161c;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.form-container {
    max-width: 100%;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

label span {
    color: red;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #777;
    border-radius: 2px;
    background: #f2f2f2;
    outline: none;
}

textarea {
    height: 140px;
    resize: none;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

button {
    background: #1aa3e8;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
}

button:hover {
    background: #1489c4;
}

.banner-slider{
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slides{
    width: 100%;
    height: 100%;
    position: relative;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active{
    opacity: 1;
    z-index: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */
.nav1{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    z-index: 10;
    transition: 0.3s;
}

.nav1:hover{
    background: rgba(0,0,0,0.8);
}

.prev{ left: 20px; }
.next{ right: 20px; }

/* Mobile */
@media(max-width:768px){
    .banner-slider{
        height: 60vh;
    }
}