* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  font-family: 'Poppins', sans-serif;
}




body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f8f8;
}


.navbar {
  width: 100%;
  background: #012631;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1600px;
  margin: auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 38px;
}

/* Nav Menu */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}
.nav-menu ul li > .dropdown-menu a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu ul li a:hover {
  color: gray;
}
@media(max-width: 769px){
    .nav-menu ul li a{
        color: black;
    }
}
/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  padding: 20px;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 8px 0;
  color: #333;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: #1e73be;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

/* Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon {
  font-size: 18px;
  cursor: pointer;
  color: white;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

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

@media (max-width: 1024px) {

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: #fff;
    height: calc(100vh - 80px);
    padding: 40px;
    transition: 0.3s;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 10px 0 0 15px;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: block;
  }
}



.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
@media(max-width: 769px){
    .banner{
        height: auto;
    }
}
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f5f5f5;
  padding: 0 0;
}

.slide img {
  max-width: 100%;
  width: 100%;
}

.slide-content h1 {
  font-size: 3rem;
  color: #222;
}

.slide-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #555;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.0);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 5;
}
.prev:hover{
  background-color: #fff;
  color: #1804049a;
  border-radius: 50%;
  transition: 0.3s;
}
.next:hover{
  background-color: #fff;
  color: #1804049a;
  border-radius: 50%;
  transition: 0.3s;
}
.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.dot.active {
  background: #0074D9;
}

/* drop down  */


.dropbtn {

  color: #000;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}





/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    text-align: center;
  }

  .slide img {
    width: 100%;
    margin-top: 0px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }
}

/* new product */

.new-product-section {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media(max-width: 769px){
    .new-product-section{
        padding: 10px 0;
    }
}
.container {
  max-width: 1300px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header h2 {
  font-size: 42px;
  letter-spacing: 3px;
  font-weight: 600;
  display: inline-block;
}

.section-header .divider {
  display: inline-block;
  width: 2px;
  height: 35px;
  background: #1e73be;
  margin: 0 15px;
  vertical-align: middle;
}

.section-header p {
  display: inline-block;
  color: #1e73be;
  font-size: 16px;
  font-style: italic;
  text-align: left;
  vertical-align: middle;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  transition: transform 0.5s ease;
}
.products2{
    display: flex;
    max-width: 100%;
    overflow-x: auto;
}
.product-card {
  min-width: 30.333%;
  padding: 40px;
  background: #fff;
  text-align: center;
  border: 1px solid #eee;
  margin: 0 15px;
  margin-bottom: 10px;
}

.product-card img {
  width: 70%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.product-card a {
  text-decoration: none;
  color: #333;
}

.dots {
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
}

.dot.active {
  background: #000;
}

.nav {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #000;
  padding: 10px;
  transition: 0.3s;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .product-card {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .product-card {
    min-width: 100%;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    display: block;
    margin-top: 10px;
    text-align: center;
  }

  .section-header .divider {
    display: none;
  }
}


/* video section */

.video-section{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}
@media(max-width: 769px){
    .video-section{
        height: 100vh;
    }
}
.bg-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* Categories Container */
.categories{
  position:relative;
  z-index:2;
  height:100%;
  display:grid;
  grid-template-columns: repeat(7,1fr);
}

/* Each Category */
.category{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  transition:0.4s ease;
  cursor:pointer;
}
@media(max-width: 769px){
    .category{
        height: 150px;
    }
}
.category::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.2);
  transition:0.4s ease;
}

.category:hover::after{
  background:rgba(0,0,0,0.75);
}

.category h2{
  font-size:28px;
  font-weight:600;
  transition:0.4s ease;
}

.learn-btn{
  margin-top:20px;
  padding:10px 25px;
  border:1px solid #fff;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  opacity:0;
  transform:translateY(40px);
  transition:0.4s ease;
}

/* Hover Effect */
.category:hover h2{
  z-index: 2;
  transform:translateY(-20px);
}

.category:hover .learn-btn{
  opacity:1;
  z-index: 2;
  transform:translateY(0);
}

/* Vertical divider lines
.category:not(:last-child){
  border-right:1px solid rgba(255,255,255,0.2);
} */

/* Responsive */
@media(max-width:1200px){
  .categories{
    grid-template-columns: repeat(3,1fr);
  }
}

@media(max-width:768px){
  .categories{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:500px){
  .categories{
    grid-template-columns: 1fr;
  }
  .category{
    border-right:none !important;
    border-bottom:1px solid rgba(255,255,255,0.2);
  }
}

/* footer */

.footer {
  background-color: #012631;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  flex: 1 1 350px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-info {
  margin: 6px 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-info a {
  color: #ffffff;
  text-decoration: none;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin-right: 10px;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: #ffffff;
  color: #062f3b;
}

.footer-right {
  flex: 1 1 300px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;

}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

/* .footer-right a:hover {
  opacity: 0.7;
} */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-left: 50%;
  border-top: 1px solid rgba(255, 255, 255);
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}
.frando-product-page{
    background: #f3f3f3;
    color: #4a4a4a;
    overflow: hidden;
}

/* topbar */
.frando-product-topbar,
.frando-product-stickybar{
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.frando-topbar-inner{
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.frando-topbar-left h1,
.frando-topbar-left h2{
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: #4b4d55;
}

.frando-topbar-right{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.frando-breadcrumb{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #9a9a9a;
}

.frando-breadcrumb a{
    color: #9a9a9a;
    text-decoration: none;
}

.frando-breadcrumb a:hover{
    color: #333;
}

.frando-compare-btn{
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #cfcfcf;
    background: #fff;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    transition: .25s ease;
}

.frando-compare-btn:hover{
    background: #222;
    color: #fff;
    border-color: #222;
}

/* hero */
.frando-product-hero{
    width: 100%;
    background: #000;
}

.frando-product-hero img{
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

/* section title */
.frando-section-title{
    font-size: 54px;
    font-weight: 600;
    color: #4b4d55;
    margin: 0 0 70px;
    letter-spacing: .5px;
}

/* feature */
.frando-feature-section{
    padding: 90px 0 50px;
    background: #f3f3f3;
}

.frando-feature-grid{
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.frando-feature-item{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.frando-feature-image img{
    width: 100%;
    max-width: 100%;
    display: block;
    background: #fff;
}

.frando-feature-text{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}

.frando-feature-text p{
    font-size: 25px;
    line-height: 1.9;
    color: #6d6d6d;
    margin: 0;
    font-weight: 400;
}

/* color */
.frando-color-section{
    padding: 80px 0 70px;
    background: #f3f3f3;
    text-align: center;
}

.frando-color-title{
    font-size: 62px;
    letter-spacing: 14px;
    font-weight: 400;
    color: #383838;
    margin: 0 0 55px;
}

.frando-color-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.frando-color-item img{
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto 18px;
}

.frando-color-item h5{
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #444;
}

/* spec */
.frando-spec-section{
    padding: 40px 0 80px;
    background: #f3f3f3;
}

.frando-spec-wrap{
    max-width: 700px;
    margin: 0 auto;
}

.frando-spec-wrap h2{
    font-size: 52px;
    font-weight: 600;
    color: #4b4d55;
    margin: 0 0 18px;
    text-align: left;
}

.frando-spec-table{
    border-top: 3px solid #8f8f8f;
    background: transparent;
}

.frando-spec-row{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    border-bottom: 1px solid #e2e2e2;
    padding: 17px 0;
}

.frando-spec-row .label{
    font-size: 19px;
    color: #747474;
    line-height: 1.6;
}

.frando-spec-row .value{
    font-size: 19px;
    color: #575757;
    line-height: 1.6;
}

.frando-back-btn-wrap{
    text-align: center;
    margin-top: 55px;
}

.frando-back-btn{
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #9f9f9f;
    color: #666;
    background: transparent;
    text-decoration: none;
    font-size: 13px;
    transition: .25s ease;
}

.frando-back-btn:hover{
    background: #222;
    border-color: #222;
    color: #fff;
}

/* responsive */
@media (max-width: 1399.98px){
    .frando-section-title{
        font-size: 42px;
    }

    .frando-color-title{
        font-size: 48px;
        letter-spacing: 10px;
    }

    .frando-spec-wrap h2{
        font-size: 40px;
    }

    .frando-feature-text p,
    .frando-spec-row .label,
    .frando-spec-row .value,
    .frando-color-item h5{
        font-size: 17px;
    }
}

@media (max-width: 991.98px){
    .frando-topbar-inner{
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
    }

    .frando-topbar-right{
        justify-content: flex-start;
        align-items: flex-start;
    }

    .frando-product-hero img{
        height: 380px;
    }

    .frando-section-title{
        font-size: 32px;
        margin-bottom: 40px;
    }

    .frando-feature-item{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .frando-feature-item.image-right .frando-feature-text{
        order: 2;
    }

    .frando-feature-item.image-right .frando-feature-image{
        order: 1;
    }

    .frando-feature-text{
        min-height: auto;
        padding: 10px 0 0;
    }

    .frando-feature-text p{
        font-size: 16px;
        line-height: 1.8;
    }

    .frando-color-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .frando-color-title{
        font-size: 34px;
        letter-spacing: 6px;
    }

    .frando-spec-wrap h2{
        font-size: 32px;
    }

    .frando-spec-row{
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 575.98px){
    .frando-product-hero img{
        height: 240px;
    }

    .frando-topbar-left h1,
    .frando-topbar-left h2{
        font-size: 16px;
        line-height: 1.5;
    }

    .frando-breadcrumb{
        font-size: 10px;
        gap: 5px;
    }

    .frando-section-title{
        font-size: 26px;
    }

    .frando-color-title{
        font-size: 28px;
        letter-spacing: 4px;
    }

    .frando-feature-section{
        padding-top: 50px;
    }

    .frando-feature-grid{
        gap: 45px;
    }

    .frando-spec-wrap h2{
        font-size: 28px;
    }

    .frando-spec-row .label,
    .frando-spec-row .value{
        font-size: 15px;
    }
}

/* Search Sidebar */
.search-sidebar {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}

.search-sidebar.active {
    visibility: visible;
    opacity: 1;
}

.search-sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.search-sidebar-content {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.12);
    transition: 0.35s ease;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}

.search-sidebar.active .search-sidebar-content {
    right: 0;
}

.search-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-sidebar-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.search-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #222;
}

.search-form {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.search-input-group input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.search-input-group button {
    width: 55px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.search-sidebar-body p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 576px) {
    .search-sidebar-content {
        width: 100%;
        right: -100%;
    }
}
/* =========================
   GLOBAL CUSTOM CONTAINER
========================= */
.custom-container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}

/* =========================
   CONTACT HERO
========================= */
.contact-hero {
    position: relative;
    padding: 130px 0 110px;
    background: url('../img/banner/dbad_2024121011090201.png') center center / cover no-repeat;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.contact-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    color: #d7d7d7;
    margin-bottom: 16px;
}

.contact-hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 18px;
}

.contact-hero-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #f1f1f1;
    margin: 0;
}

/* =========================
   CONTACT MAIN SECTION
========================= */
.premium-contact-section {
    padding: 90px 0;
    background: #f7f8fa;
}

.contact-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card,
.map-card {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.contact-card-header {
    margin-bottom: 28px;
}

.contact-card-header h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
}

.contact-card-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6e6e6e;
}

/* =========================
   CONTACT INFO
========================= */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #f7f7f7;
    transition: 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    background: #f2f2f2;
}

.contact-info-item .icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-item .content span {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.contact-info-item .content a,
.contact-info-item .content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #111;
    text-decoration: none;
    word-break: break-word;
}

/* =========================
   SOCIAL LINKS
========================= */
.contact-socials {
    margin-top: 32px;
}

.contact-socials h5 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #333;
    transform: translateY(-3px);
}

/* =========================
   FORM
========================= */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.custom-input {
    width: 100%;
    height: 54px;
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.custom-input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.custom-textarea {
    min-height: 160px;
    height: auto;
    resize: vertical;
    padding-top: 14px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 40px;
    background: #111;
    color: #fff;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* =========================
   MAP SECTION
========================= */
.contact-map-section {
    padding: 0 0 90px;
    background: #f7f8fa;
}

.map-title {
    margin-bottom: 22px;
}

.map-title h2 {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 600;
    color: #111;
}

.map-title p {
    margin: 0;
    color: #6e6e6e;
    font-size: 15px;
}

.map-frame {
    border-radius: 20px;
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 110px 0 90px;
    }

    .contact-hero-content h1 {
        font-size: 42px;
    }

    .contact-info-card,
    .contact-form-card,
    .map-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .premium-contact-section {
        padding: 60px 0;
    }

    .contact-map-section {
        padding: 0 0 60px;
    }

    .contact-hero {
        padding: 90px 0 70px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .contact-card-header h2,
    .map-title h2 {
        font-size: 24px;
    }

    .contact-info-card,
    .contact-form-card,
    .map-card {
        padding: 22px;
        border-radius: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .custom-input {
        height: 50px;
    }

    .custom-textarea {
        min-height: 140px;
    }

    .contact-info-item {
        padding: 16px;
    }

    .contact-info-item .icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 16px;
    }
}
/* =========================
   CUSTOM ALERT
========================= */

.custom-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    position: relative;
    margin-bottom: 20px;
    animation: slideDown 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.custom-alert.success-alert {
    background: linear-gradient(135deg, #e8fff3, #f5fff9);
    border-left: 4px solid #22c55e;
}

.alert-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.alert-content strong {
    display: block;
    font-size: 16px;
    color: #111;
    margin-bottom: 3px;
}

.alert-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.alert-close {
    position: absolute;
    right: 12px;
    top: 12px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

.alert-close:hover {
    color: #111;
}

/* Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.banner .slides.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.banner .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.banner .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.banner .slide-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 650px;
    color: #fff;
}

.banner .slide-caption h2 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 18px;
}

.banner .slide-caption p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 28px;
    color: #f4f4f4;
}

.banner .learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 40px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.banner .learn-btn:hover {
    background: #333;
    color: #fff;
}

.banner .dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.banner .dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner .dot.active {
    background: #fff;
    transform: scale(1.12);
}

.banner .icons {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.banner .icons-wrapper {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.banner .icons svg {
    width: 38px;
    height: 38px;
    cursor: pointer;
    pointer-events: auto;
}

.banner #nextbtn {
    transform: rotate(-90deg);
}

.banner #previousbtn {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .banner.slider-container {
        height: 80vh;
        min-height: 420px;
    }

    .banner .slide-caption h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .banner.slider-container {
        height: 65vh;
        min-height: 360px;
    }

    .banner .slide-caption {
        left: 6%;
        right: 6%;
        max-width: 100%;
    }

    .banner .slide-caption h2 {
        font-size: 28px;
    }

    .banner .slide-caption p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .banner .icons svg {
        width: 30px;
        height: 30px;
    }

    .banner .dot {
        width: 12px;
        height: 12px;
    }
}