/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family:Arial, sans-serif;
  line-height:1.6;
  color:#222;
  background:#fff;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   MAIN CONTAINER / SECTION
========================= */
.section_wrapper,
.container,
.content_wrapper{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

section{
  padding-top:70px;
  padding-bottom:70px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,h2,h3,h4,h5,h6{
  margin-top:0;
  margin-bottom:18px;
  line-height:1.2;
  font-weight:700;
  color:#111;
}

h1{
  font-size:clamp(2rem, 5vw, 3.5rem);
}

h2{
  font-size:clamp(1.6rem, 4vw, 2.6rem);
}

h3{
  font-size:clamp(1.25rem, 3vw, 1.8rem);
}

p{
  margin-top:0;
  margin-bottom:16px;
  font-size:1rem;
  color:#555;
}

/* =========================
   BUTTONS
========================= */
.button,
button,
input[type="submit"],
input[type="button"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 26px;
  border:none;
  border-radius:12px;
  text-decoration:none;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  transition:all 0.3s ease;
  text-align:center;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover{
  transform:translateY(-2px);
}

/* Optional modern button colors */
.button-primary{
  background:#111;
  color:#fff;
}

.button-primary:hover{
  background:#333;
}

.button-secondary{
  background:#f3f3f3;
  color:#111;
}

.button-secondary:hover{
  background:#e8e8e8;
}

/* =========================
   HEADER
========================= */
#Header{
  width:100%;
  padding:14px 30px;
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 15px rgba(0,0,0,0.06);
}

#Header .header-inner,
#Header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

#Header .logo img{
  max-height:56px;
  width:auto;
}

/* Desktop menu */
#Header .menu_wrapper ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:24px;
}

#Header .menu_wrapper ul li a{
  text-decoration:none;
  color:#222;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

#Header .menu_wrapper ul li a:hover{
  color:#666;
}

/* Mobile menu icon */
#Header .responsive-menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
  line-height:1;
}

/* =========================
   SIDE MOBILE MENU
========================= */
#Side_slide{
  width:300px;
  max-width:85%;
  background:#fff;
  box-shadow:-4px 0 20px rgba(0,0,0,0.08);
}

#Side_slide ul.menu{
  list-style:none;
  margin:0;
  padding:20px 0;
}

#Side_slide ul.menu li a{
  display:block;
  padding:14px 24px;
  text-decoration:none;
  color:#222;
  font-size:16px;
  font-weight:500;
  border-bottom:1px solid #f0f0f0;
  transition:0.3s ease;
}

#Side_slide ul.menu li a:hover{
  background:#f9f9f9;
}

/* =========================
   HERO / SLIDER
========================= */
.mfn-main-slider,
.hero-section{
  width:100%;
  min-height:80vh;
  display:flex;
  align-items:center;
}

.hero-content{
  max-width:700px;
}

.hero-content h1{
  margin-bottom:20px;
}

.hero-content p{
  font-size:1.05rem;
  margin-bottom:26px;
}

/* =========================
   GRID / COLUMNS
========================= */
.row{
  display:flex;
  flex-wrap:wrap;
  margin-left:-15px;
  margin-right:-15px;
}

.column{
  padding-left:15px;
  padding-right:15px;
}

.col-2{
  width:50%;
}

.col-3{
  width:33.3333%;
}

.col-4{
  width:25%;
}

.col-100{
  width:100%;
}

/* =========================
   CARDS / MODERN BLOCKS
========================= */
.card{
  background:#fff;
  border-radius:18px;
  padding:28px;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
  height:100%;
}

.card h3{
  margin-bottom:12px;
}

.card p{
  margin-bottom:0;
}

/* =========================
   FORMS
========================= */
input,
select,
textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #ddd;
  border-radius:12px;
  font-size:15px;
  outline:none;
  transition:0.3s ease;
}

input:focus,
select:focus,
textarea:focus{
  border-color:#999;
  box-shadow:0 0 0 3px rgba(0,0,0,0.05);
}

/* =========================
   TABLET
========================= */
@media only screen and (max-width:1024px){

  .section_wrapper,
  .container,
  .content_wrapper{
    padding-left:20px;
    padding-right:20px;
  }

  section{
    padding-top:60px;
    padding-bottom:60px;
  }

  .mfn-main-slider,
  .hero-section{
    min-height:auto;
    padding-top:70px;
    padding-bottom:70px;
  }

  .col-4{
    width:50%;
  }

  .col-3{
    width:50%;
  }

  #Header{
    padding:12px 20px;
  }

  #Header .menu_wrapper ul{
    gap:16px;
  }
}

/* =========================
   MOBILE
========================= */
@media only screen and (max-width:768px){

  body{
    font-size:15px;
  }

  section{
    padding-top:50px;
    padding-bottom:50px;
  }

  .section_wrapper,
  .container,
  .content_wrapper{
    padding-left:16px;
    padding-right:16px;
  }

  #Header{
    padding:10px 16px;
  }

  #Header .logo img{
    max-height:44px;
  }

  #Header .menu_wrapper{
    display:none;
  }

  #Header .responsive-menu-toggle{
    display:block;
  }

  #Side_slide{
    width:280px;
  }

  .mfn-main-slider,
  .hero-section{
    min-height:auto;
    text-align:center;
    padding-top:50px;
    padding-bottom:50px;
  }

  .hero-content{
    max-width:100%;
    margin:0 auto;
  }

  h1,h2,h3{
    text-align:center;
  }

  .button,
  button,
  input[type="submit"],
  input[type="button"]{
    width:100%;
  }

  .col-2,
  .col-3,
  .col-4,
  .column{
    width:100%;
  }

  .row{
    margin-left:0;
    margin-right:0;
  }

  .column{
    padding-left:0;
    padding-right:0;
    margin-bottom:20px;
  }

  .card{
    padding:22px;
    border-radius:16px;
  }

  p{
    font-size:15px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media only screen and (max-width:480px){

  #Header{
    padding:10px 14px;
  }

  #Header .logo img{
    max-height:40px;
  }

  h1{
    font-size:2rem;
  }

  h2{
    font-size:1.6rem;
  }

  h3{
    font-size:1.25rem;
  }

  .card{
    padding:18px;
  }

  .button,
  button,
  input[type="submit"],
  input[type="button"]{
    min-height:46px;
    padding:12px 18px;
    font-size:14px;
  }
}