@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Base palette (kept from your file) */
  --blue: #368CE7;
  --blue-dark: #1666BA;
  --blue-light: #7AB3EF;

  --red: #FF0000;
  --red-dark: #A70000;
  --red-light: #FF5252;

  --green: #76BA1B;
  --green-dark: #4C9A2A;
  --green-light: #ACDF87;

  --orange: #ff7400;
  --orange-dark: #ff4d00;
  --orange-light: #ff9a00;

  --black: #000;
  --dark: #333;
  --light: #666;

  --white: #fff;
  --white-dark: #ccc;
  --white-light: #eee;

  /* ✅ NEW: Brand theme (GREEN) */
  --brand: #16a34a;        /* main green */
  --brand-dark: #0f6b2f;   /* darker green */
  --brand-light: #86efac;  /* light green */
  --brand-accent: #f6f04e; /* your yellow-ish accent for text/buttons */
  --brand-shadow: rgba(22, 163, 74, 0.45);

  --btn: var(--brand);
  --btn-hover: var(--brand-dark);
  --btn-active: #15803d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p { margin: 0; }

a,
button,
input,
textarea {
  outline: 0;
  transition: all .5s ease;
}

a { text-decoration: none !important; }

html { scroll-behavior: smooth; }

#more, #more1, #more2 {
  font-weight: 400;
  display: none;
}

body {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-style: normal;
  background: url(../img/bg.jpg) center;
  background-attachment: fixed;
  background-size: cover;
  counter-reset: my-awesome-counter;
}

h1, h2, h3, h4, h5, h6 { font-family: "Tilt Warp", serif; }

header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
  width: 100%;
  float: left;
}

header {
  padding: 10px 0;
  background-color: transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  z-index: 3;
  color: #ffffff;
  position: absolute;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo{
  font-family: "Tilt Warp", serif;
  font-size: 30px;
  color: #ffffff;
}

/* ✅ Button now uses theme variables */
.btn-cu {
  padding: 17px 40px;
  width: 80%;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: var(--btn);
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
  color: #fff;
  font-weight: bold;
}

.btn-cu:hover {
  letter-spacing: 3px;
  background-color: var(--btn-hover);
  color: hsl(0, 0%, 100%);
  box-shadow: var(--brand-shadow) 0px 7px 29px 0px;
}

.btn-cu:active {
  letter-spacing: 3px;
  background-color: var(--btn-active);
  color: hsl(0, 0%, 100%);
  box-shadow: rgba(22, 163, 74, 0.55) 0px 0px 0px 0px;
  transform: translateY(10px);
  transition: 100ms;
}

.container {
  width: 100%;
  max-width: 1350px;
  padding: 0 15px;
}

.banner {
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../img/banner.jpg) center;
  background-size: cover;
  padding: 20px 0;
  position: relative;
}

.banner .container {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.banner h1 {
  font-size: 35px;
  margin: 0 0 10px;
}

.banner p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 20px;
}

.section {
  padding: 20px 0;
  position: relative;
}

.section .container {
  position: relative;
  z-index: 2;
}

.h2, h2 {
  font-size: 35px;
  margin: 0 0 15px;
}

.para {
  font-size: 15px;
  line-height: 23px;
  margin: 0 0 20px;
}

.para:last-child { margin: 0; }

.flexbox {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.flexbox:last-child { margin: 0; }

.flexbox>p,
.flexbody { flex: 1; }

.flexbox>p:first-child,
.flexbody:first-child { padding: 0 30px 0 0; }

.flexbox>p:last-child,
.flexbody:last-child { padding: 0 0 0 30px; }

.flexbox>img {
  width: 100%;
  max-width:50%;
}

.section1{
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(../img/casino-img-1.jpg) center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.image{ width: 40%; }
.image img{ width: 100%; }

.carousel-wrapper{
  max-width:1500px;
  margin:auto;
  overflow:hidden;
  position:relative;
}

.carousel{
  display:flex;
  gap:20px;
  animation: scroll 12s linear infinite;
}

.card{
  flex:0 0 calc(33.333% - 13px);
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card-content{
  padding: 20px;
  text-align: center;
}

@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media(max-width:992px){
  .card{flex:0 0 50%}
  .banner{ padding: 20px 0 0 0;}
  .banner .container {min-height: 180px;}
  .banner p{ font-size: 14px;}
}

@media(max-width:576px){
  .card{flex:0 0 100%}
}

.center {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin: 0 0 20px;
}

.center:last-child { margin: 0 !important; }

.right{
  background-color: rgba(255,255,255, 0.7);
  padding: 20px !important;
  z-index: 3;
  margin-right: -150px;
}

.left{
  background-color: rgba(255,255,255, 0.7);
  padding: 20px !important;
  z-index: 3;
  margin-left: -150px;
}

.container>img {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}

.ul{
  flex-direction: column;
  float: left;
}

li {
  font-size: 14px;
  color: #000000;
  background: url(../img/tick.png) no-repeat 0 -2px;
  background-size: 23px auto;
  list-style-type: none;
  margin: 0 0 10px;
}

li:before {
  content: '';
  min-width: 12px;
  height: 30px;
  border-radius: 12px;
  margin: 0 25px 0 0;
}

.flexgroup {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flexgroup:last-child { margin: 0; }

.flexgroupbox {
  width: 24%;
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
  text-align: center;
  background-color: var(--brand);
  align-items: center;
  box-shadow: 1px -1px 11px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 15px;
  color: #fff;
  border-radius: 10px;
}

.flexgroupbox img{
  width: 100%;
  margin: 0 0 10px;
}

button{
  border: none;
  border-bottom: 2px solid #fff;
  background-color: transparent;
  color: var(--brand-accent);
}

.img{
  width: 50%;
  border-radius: 10px;
  margin-top: -50px;
  overflow: hidden;
  margin-bottom: 20px;
}

.img img{ width: 100%; }

.box{
  width: 33%;
  margin: 0 0 20px;
}

.content{
  color: #000000;
  padding: 15px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

h4 {
  font-size: 20px;
  margin: 0 0 10px;
}

.center>img {
  width: auto;
  max-width: 100%;
}

.formsection {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.formsection .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.formsection .para {
  text-align: center;
  font-size: 28px;
  line-height: 1.5;
}

.formbox {
  width: 100%;
  float: left;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formfield {
  width: 49%;
  height: 50px;
  margin: 0 0 10px;
  padding: 0 10px;
  border: none;
  background: #f3f3f3;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}

.formfield2{ width: 100%; }

.textarea-cu {
  width: 100%;
  height: 100px;
  margin: 0 0 10px;
  padding: 10px;
  border: none;
  background: #f3f3f3;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder { color: #333; }

/* ✅ fixed hardcoded blue button -> brand green */
.formbutton {
  width: 100%;
  float: left;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  outline: 0 !important;
}

.formbutton:hover { background: var(--brand-dark); }

/* ✅ Footer now green */
footer {
  background-color: var(--brand);
  text-align: center;
  padding: 30px 0;
  color: #ffffff;
}

footer .para{
  font-weight: 100;
  font-size: 14px;
}

.footer-flex {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  float: left;
  margin: 0 0 20px;
}

.f-logo{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  min-height: 50px;
  background-color: var(--brand-dark);
}

.f-logo img{ width: 100%; }

.f-logo:hover{
  background-color: #0b4f22;
  border-radius: 5px;
}

footer .container {
  display: flex;
  flex-direction: column;
}

.footerlinks {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  margin: 0 0 20px;
}

.ssl-img img {
  width: 50px;
  margin-left: 10px;
}

.social-icon {
  display: flex;
  gap: 5px;
  margin-left: 20px;
}

.social-icon img {
  width: 100%;
  max-width: 30px;
}

.footerlinks a {
  font-size: 14px;
  color: #fff;
  margin: 0 6px;
}

.footerlinks a:hover { text-decoration: underline !important; }

.copyrights { font-size: 14px; }

.text-white {
  font-size: 12px;
  margin: 0 0 10px !important;
}

.alert {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 0px;
  margin-bottom: 0 !important;
  left: 0;
  text-align: center;
  width: 20%;
  margin: auto;
  padding: 10px!important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 0 !important;
}

.alert-dismissible { z-index: +3; }

.alert-close {
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--brand-dark);
  color: white;
  padding: 0px !important;
  width: 3rem;
  height: 2rem;
  font-size: 14px;
}

.hide { display: none; }

span { font-weight: bold; }

.alert p { font-size: 13px; }

.alert-close {
  padding: 0px 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--brand-dark);
  color: white;
  margin: 0 !important;
  font-size: 14px;
}

.table-cu {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, .4);
  margin: 0 0 10px;
  color: #000000;
  flex-wrap: wrap;
  position: relative;
}

/* ✅ accent bars changed to green */
.table-cu:after{
  position: absolute;
  content: '';
  width: 50%;
  height: 10px;
  background-color: var(--brand-dark);
  top: -5px;
  left: 0;
  border-radius: 5px;
}

.table-cu::before{
  position: absolute;
  content: '';
  width: 50%;
  height: 10px;
  background-color: var(--brand-dark);
  bottom: -5px;
  right: 0;
  border-radius: 5px;
}

.title{
  color: #000000;
  top: 10px;
  text-align: center;
  width: 25%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title h3{
  margin: 0;
  font-size: 23px;
  color: #000;
}

.table-inner{
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.small{ font-size: 12px; }

.table-logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 25%;
  background-color: var(--brand);
  padding: 20px 20px;
}

.table-logo img{ width: 180px; }

.rating{
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  flex-direction: column;
  float: left;
}

.rating img{
  width: 100px;
  margin: 0 10px;
}

.rating .para{
  font-weight: bold;
  margin: 0;
  font-size: 25px;
  width: auto;
}

.table-cu li {
  width: auto;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: url(../img/check.png) no-repeat 0 5px;
  background-size: 14px auto;
}

.table-cu li:before {
  content: '';
  min-width: 12px;
  height: 22px;
  border-radius: 12px;
  margin: 0 10px 0 0;
}

.table-cu .ul{
  width: 25%;
  background-color: var(--brand);
  height: 100%;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.btn-box {
  width: 25%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding: 15px;
}

.btn-box img{ width: 70%; }

/* ✅ numbers changed to green */
.num{
  background-color: var(--brand);
  color: #fff;
  padding: 10px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 25px;
  margin: 0 0 10px;
  border-radius: 50%;
  counter-increment: my-awesome-counter;
}

.num::before { content: counter(my-awesome-counter); }

.show-mob{ display: none; }

@media (max-width:800px) {
  .h2, h2, h3 { font-size: 20px; }
  h1{ font-size: 25px; }
  .para { font-size: 14px; }

  .flexbox { flex-direction: column; }

  .flexbox>img {
    max-width: 100%;
    order: 1;
    margin: 0 0 15px;
  }

  .flex-img{ display: none; }

  .flexbody,
  .flexbox>.para {
    padding: 0 !important;
    order: 2;
  }

  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flexgroupbox {
    width: 100%;
    margin: 0 0 10px;
  }

  .formfield { width: 100%; }
  .formbutton { width: 100%; }

  .footerlinks {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
  }

  .table-inner{ flex-direction: column; }
  .table-cu{ width: 100%; margin: 0 0 20px; }

  .logo-cu{ margin: 0; }
  ul{ padding-left: 0; }

  .table-logo{
    width: 100%;
    margin: 0 0 10px;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .table-cu .ul{
    width: auto;
    padding: 20px;
  }

  .btn-box{ width: 100%; }

  .footer-flex{ gap: 5px; }

  .alert{ width: 100%; }
  .alert p{ font-size: 11px; }

  .show-desk{ display: none; }
  .show-mob{ display: block; }
  .head-box{ display: none; }

  .banner h1{ font-size: 20px; }

  .ul{
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  .image{ width: 100%; }
  .f-logo{ width: 100px; }

  .rating{ width: 100%; margin: 20px 0; }
  .flex{ width: 100%; }
  .title{ width: 100%; }
  .title h3{ color: #000; }

  .testimonial-section{ margin: 0 !important; }
  .slides{ height: 315px !important; }
  .dot{ width: 25px !important; }
  .left, .right{ margin: 0 ; }
}

.testimonial-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  float: left;
  background-color: var(--brand);
}

.subtitle {
  color: gray;
  margin-bottom: 30px;
}

.slider { position: relative; }

.slides {
  position: relative;
  height: 260px;
  color: #fff;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: fade 0.5s ease-in-out;
}

.slide.active { display: flex; }

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.shape {
  background-color: #ffffff;
  width: 150px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape img { width: 100%; }

h3 {
  color: #ffffff;
  margin: 0;
}

/* ✅ slider buttons changed to green theme */
.btn {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: var(--brand-dark);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover { background: var(--brand); }

.prev { left: -50px; }
.next { right: -50px; }

.dots { margin-top: 20px; }

.dot {
  height: 5px;
  width: 50px;
  margin: 0 5px;
  display: inline-block;
  background-color: #bbb;
  border-radius: 5px;
  cursor: pointer;
}

.dot.active { background-color: var(--brand-light); }
