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

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

html {
  scroll-behavior: smooth;
}

header{
  z-index: 999;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 100px;
  transition: 0.5s ease;
}

#top {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .navigation{
  position: relative;
}

header .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #BF6411;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
  width: 100%;
}

#loggo {
  width: 120px;
}

.motto {font-family: 'Tangarine', serif;
  font-style: italic !important;
  font-size: 22px !important;
  color: rgb(240, 167, 33);
  text-shadow: 4px 4px 4px rgb(0, 0, 0);
}

section{
  padding: 100px 100px;
}

.home{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #e2e2e2;
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(141, 141, 141, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content{
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 50px;
  display: none;
}

.home .content.active{
  display: block;
}

.home .content h1{
  /* font-size: 4em;
  font-weight: 700;
  /* text-transform: uppercase; ___
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: 5px;
  line-height: 75px;
  font-weight: bold !important;
  margin-bottom: 40px;
  background: -webkit-linear-gradient(rgb(255, 242, 227),rgb(226, 147, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */

  font-family: 'brush_script_mtitalic', cursive;
  font-weight: bold;
  font-style: normal;
  font-size:66px;
  background: -webkit-linear-gradient(rgb(255, 255, 255),rgb(240, 167, 33));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 filter: drop-shadow(-8px 5px 1px  rgba(0, 0, 0, 0.616)) ;

}

.home .content h1 span{
  font-size: 1.2em;
  font-weight: 600;
}

.home .content p{
  margin-bottom: 65px;
  font-size: 17px;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

.home .content a{
  background: white;
  padding: 15px 35px;
  color: #1680AC;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.home .content a:hover{
  background: transparent;
  padding: 15px 35px;
  border: 3px solid #BF6411;
  color: #BF6411;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a{
  color: #fff;
  font-size: 1.6em;
  transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
  margin-bottom: 20px;
}

.home .media-icons a:hover{
  transform: scale(1.3);
}

.home video{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn{
  width: 100%;
  height: 6px;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
  /* background: #BF6411; */
  background: #fff;
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.video-slide{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}


#navTitle {
  flex: 1;
  display: none;
  padding-left: 10px;
  color: white;
  transition: all 0.7s;
}



/* test */



.container{
  /* background:linear-gradient(45deg, rgb(226, 43, 119), rgb(255, 241, 112)); */
  background-color: white;
  padding:7px 2%;
  padding-bottom: 100px;
  padding-top: 70px;
  transition: 0.2s ease;
}

.container .heading{
  text-align: center;
  padding-bottom: 15px;
  color:#333;
  text-shadow: 0 5px 10px rgba(0,0,0,.2);
  font-size: 50px;
}
/* .headingex{
  text-align: center;
 
  padding-bottom: 15px;
  color:#333;
  text-shadow: 0 5px 10px rgba(0,0,0,.2);
  font-size: 50px;
} */

.arrow {
  height: 2px;
  border-radius: 10px;
  width: 70px;
  background-color: #BF6411;
}

.arrows {
  height: 2px;
  border-radius: 10px;
  width: 70px;
  background-color: #ff7b00;
}

.container .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:20px;
}


.container .box-container .box{
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding:5px 5px;
}

/* .container .box-container .box img{
  height: 80px;
} */

.price {
  display: inline-block;
  background-color: #555555;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px;
  border-radius: 4px;
}

.disc {
  font-weight: 500;
  color: #BF6411;
  font-size: 12px;
  padding: 2px;
}

.container .box-container .box h3{
  color:#444;
  font-size: 17px;
  padding:10px 0;
}

.container .box-container .box p{
  color:rgb(83, 83, 83);
  font-size: 13px;
  line-height: 1;
  padding:12px 10px;
}

#booker {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  outline: none;
  background-color: #BF6411;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

#bookerr {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  outline: none;
  background-color: #353535;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#bookerr:hover {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  outline: none;
  background-color: #4b2a00;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}


#booker:hover{
  width: 100%;
  height: 40px;
  border-radius: 5px;
  outline: none;
  background-color: #009ddb;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}


.box:nth-child(2) {
  transition-delay: 100ms;
}

.box:nth-child(3) {
  transition-delay: 100ms;
}

.box:nth-child(4) {
  transition-delay: 100ms;
}






/* .container .box-container .box .btn{
  margin-top: 10px;
  display: inline-block;
  background:#333;
  color:#fff;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
}

.container .box-container .box .btn:hover{
  letter-spacing: 1px;
} */

.container .box-container .box:hover{
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.03);
  transition: 0.2s ease;
}

.cont {
  display: flex;
  margin: 60px;
  padding-top: 130px;
  padding-bottom: 60px;
}

.aboutUs {
  flex: 1;
  float: left;
}

.imager {
  background-image: linear-gradient(to right,rgba(255, 157, 157, 0),rgb(214, 214, 214));
  border-bottom-right-radius:20px;
  border-top-right-radius:20px;
  float: right;
  flex: 1;
}
.imagery {
  background-image: linear-gradient(to left,rgba(255, 153, 0, 0),rgb(214, 214, 214));
  border-bottom-right-radius:20px;
  border-top-right-radius:20px;
  border-bottom-left-radius:20px;
  border-top-left-radius:20px;
  float: right;
  flex: 1;
}
.intros{
  padding: 8px;
}

#imager {
padding-top: 250px;
}

.headings {
  font-size: 45px;
}

#aboutDisc {
  padding-top: 25px;
  color: #333;
  font-size: 15px;
  line-height: 1.4em;
}

.staffs {
  display: flex;
}

#staffs {
  border: 1px solid #BF6411;
  border-radius: 7px;
  background-color: #fff;
  box-shadow:  0 5px 10px rgba(0,0,0,.2);
  width: 120px;
  height: 80px;
  text-align: center;
}

#abtPad {
  padding-right: 30px;
  padding-top: 25px;
}


.imgPos {
position: relative;
}

#imgPos1 {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  border-radius: 7px;
  padding: 4px;
  width: 170px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s ease;
}


#imgPos1:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.05);
  transition: 0.2s ease;
  cursor: pointer;
}

#imgPos2 {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  border-radius: 7px;
  padding: 4px;
  width: 240px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

#imgPos2:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.05);
  transition: 0.2s ease;
  cursor: pointer;
}

#imgPos3 {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  border-radius: 7px;
  padding: 4px;
  width: 150px;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s ease;
}

#imgPos3:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.05);
  transition: 0.2s ease;
  cursor: pointer;
}

#imgPos4 {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  border-radius: 7px;
  padding: 4px;
  width: 170px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

#imgPos4:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.05);
  transition: 0.2s ease;
  cursor: pointer;
}



/* services */
.iconSize{
width: 50px;
}

.ttle {
  font-weight: bold;
  font-size:21px;
  color: #965500;
}

.desc {
  font-size: 13px;
  text-align: left !important;
}
/* End Services */

#explorer {
  border:2px solid #BF6411;
  border-radius: 7px;
  background-color: #BF6411;
  color: white;
  width: 100%;
  height: 37px;
  font-weight: bold;
  cursor: pointer;
}

.containers .boxs-containers{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:25px;
}


.containers .boxs-containers .boxs{
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding:10px 10px;
}


.containers .boxs-containers .boxs:hover{
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.03);
  transition: 0.3s ease;
}


.containers{
  /* background:linear-gradient(45deg, rgb(226, 43, 119), rgb(255, 241, 112)); */
  background-color: white;
  padding:10px 4%;
  padding-bottom: 50px;
  padding-top: 100px;
  transition: 0.3s ease;
}

.containers .heading{
  text-align: center;
  padding-bottom: 15px;
  color:#333;
  text-shadow: 0 5px 10px rgba(0,0,0,.2);
  font-size: 50px;
}


.boxs-containers {
  padding-top: 20px !important;
}



/* Gallery */


#descripter {
  width: 30%;
  padding: 10px;
}

#descripters {
  display: none;
}

#descripter h2{
  font-size: 45px;
}

#gale {
  width: 70%;
}

#imgBoxx {
  margin: 20px;
  padding-top: 85px;
}

/* Position the image container (needed to position the left and right arrows) */
.containerr {
  position: relative;
}

.gd {
  font-size: 14px;
}

.containerr img{
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,boxs-containers
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* Container for image text */
.caption-containerr {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
  padding: 5px;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.actives,
.demo:hover {
  opacity: 1;
  border: 3px solid #BF6411;
  padding: 3px;
}

.social {
  border-radius: 10px;
  /* background-color: rgba(48, 48, 48, 0.5); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
}

.social td {
  padding: 20px;
}
/* End Gallery */



/* hiden transition */

section {
display: grid;
}

.hidden {
  opacity: 0;
  transition: all 0.7s;
  filter: blur(5px);
  transform: translateX(-100%);
}



.hiddens {
  opacity: 0;
  transition: all 0.7s;
  filter: blur(5px);
  transform: translateX(-100%);
}

.shows {
  opacity: 1;
  transition: all 0.7s;
  filter: blur(0);
  transform: translateX(0);
}


#hidder {
line-height: 40px;
}

.show {
  opacity: 1;
  transition: all 0.7s;
  filter: blur(0);
  transform: translateX(0);
}




/* End-hidden-transition */




@media (max-width:768px){
  .container{
      padding:20px;
  }

  #ContacT {
    margin: 20px;
    height: 470px !important;
  }

}


@media (max-width: 1040px){

  .hiddeR {
    display: none;
  }

  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items{
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background-image: url("../icons/menu.png");
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url("../icons/close.png");
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }



#descripter {
display: none;
}

#descripter h2{
  font-size: 45px;
}

#gale {
  width: 100%;
}
#descripters {
  display: block;
}

#descripters h2{
  font-size: 45px;
}

/* aboutUs */
.imager {
  display: none;
}

#staffs {
  border: 1px solid #BF6411;
  border-radius: 7px;
  background-color: #fff;
  box-shadow:  0 5px 10px rgba(0,0,0,.2);
  width: 90px;
  height: 30px;
  text-align: center;
}

.cont {
  margin: 20px;
}

.headings{
  font-size: 30px;
}

#ContacT {
  margin: 20px;
  height: 470px !important;
}

/* End */

}


@media (max-width: 560px){
  .home .content h1{
    font-size: 3em;
    line-height: 60px;
  }

  #ContacT {
    margin: 20px;
    height: 470px !important;
  }


  #navTitle {
    font-size: 22px;
    margin-right: 100px;
  }

  #loggo {
    width: 50px;
  }

  .hiddeR {
    padding-top: 15px;
    display: block !important;
  }

  .ConT {
   display: none;
  }

  #Cont {
    border: 0 !important;
    width: 100% !important;
  }
}


/* contacts */

#ContacT {
  height: 450px !important;
  margin: 20px !important;
  padding-top: 80px !important;
  padding-bottom: 60px;
}

#Cont {
  border-right: 2px solid gray;
  width: 50%;
}

#Cont h1{
color: white;
font-size: 24px;
padding: 5px;
}

#Cont p{
  font-weight: bold;
  font-size: 18px;
  color: #4b2a00;
}

.liner {
  width: 50px;
  background-color: #1680AC;
  display: block;
}


.social-links a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

.liner {
  height: 3px;
  border-radius: 10px;
  width: 70px;
  background-color: #ff7b00;
}

#ConT {
  padding-left: 20px;
  
}

.MaP img{
  border-radius: 7px;
  border: 1px solid rgb(255, 145, 0);
  padding: 3px;
}

.bango {
  width: 100%;
  height: 100px;
  background-color: grey;
}


.hiddeR {
  display: none;
}

.intros {
  line-height: 22px !important;
  padding-bottom: 30px;
}


/* emma */

.containerss .boxs-containerss{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:25px;
}


.containerss .boxs-containerss .boxs{
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding:10px 10px;
}


.containerss .boxs-containerss .boxs:hover{
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.03);
  transition: 0.3s ease;
}


.containerss{
  /* background:linear-gradient(45deg, rgb(226, 43, 119), rgb(255, 241, 112)); */
  background-color: white;
  padding:10px 4%;
  padding-bottom: 100px;
  transition: 0.3s ease;
}

.containerss .heading{
  text-align: center;
  padding-bottom: 15px;
  color:#333;
  text-shadow: 0 5px 10px rgba(0,0,0,.2);
  font-size: 50px;
}

/* .containerss .headingex{
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color:#333;
  text-shadow: 0 5px 10px rgba(0,0,0,.2);
  font-size: 50px;
} */


.boxs-containerss {
  padding-top: 20px !important;
}
.contact-section {
    padding: 50px 100px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info, .contact-form {
    flex-basis: 48%;
}

.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input, .input-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.input-box span {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 1em;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

.input-box input:focus ~ span,
.input-box textarea:focus ~ span,
.input-box input:valid ~ span,
.input-box textarea:valid ~ span {
    top: -12px;
    left: 10px;
    font-size: 0.8em;
    background: #fff;
    padding: 0 5px;
    color: #BF6411;
}

.input-box input[type="submit"] {
    background: #BF6411;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 5px;
}

.map-section {
    padding: 50px 100px;
}

.map-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-tile {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-basis: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s, color 0.3s;
}

.info-tile:hover {
    transform: scale(1.05);
    color: #BF6411;
    font-weight: bold;
}

.info-tile i {
    font-size: 2em;
    margin-right: 20px;
    transition: transform 0.3s;
}

.info-tile:hover i {
    transform: scale(1.2);
}

.info-tile h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.social-links-container {
    margin-top: 20px;
    text-align: center;
}

.social-links a {
    font-size: 2.5em;
    margin: 0 15px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background-color: #BF6411;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px #BF6411;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px; /* Adjust padding for smaller screens */
        text-align: center; /* Center text within the section */
    }

    .contact-container {
        flex-direction: column;
        align-items: center; /* Center items vertically in column layout */
    }

    .contact-info, .contact-form {
        flex-basis: 100%;
        margin-bottom: 20px;
        width: 100%; /* Ensure they take full width */
        max-width: 400px; /* Limit width for better readability on larger mobiles */
    }

    .contact-info .hiddener table, .contact-info .hiddener h2 {
        text-align: center; /* Center headings within contact-info */
        width: 100%;
    }

    .contact-info .hiddener table td {
        text-align: center; /* Center table cells for headings */
    }

    .info-tile {
        padding: 15px; /* Adjust padding for tiles */
        justify-content: center; /* Center content within tiles */
        text-align: center; /* Center text within tiles */
    }

    .info-tile i {
        margin-right: 10px; /* Adjust icon margin */
    }

    .contact-form form {
        padding: 20px; /* Adjust form padding */
    }

    .contact-form h2 {
        text-align: center; /* Center form heading */
    }

    .input-box input, .input-box textarea {
        width: calc(100% - 20px); /* Adjust width to account for padding */
        margin: 0 auto; /* Center input fields */
    }

    .input-box span {
        left: 50%;
        transform: translateX(-50%); /* Center placeholder text */
    }

    .input-box input[type="submit"] {
        width: 80%; /* Make submit button responsive */
        max-width: 200px; /* Limit submit button width */
        margin: 0 auto; /* Center submit button */
        display: block; /* Make it a block element to apply margin auto */
    }

    .social-connect-section {
        padding: 30px 10px; /* Further reduce padding for social section */
    }

    .social-connect-container .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Allow icons to wrap if necessary */
    }

    .social-connect-container .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Allow icons to wrap if necessary */
    }

    .social-connect-container .social-links a {
        font-size: 1.2em; /* Even smaller social icon size */
        margin: 0 2px; /* Even less spacing between social icons */
    }

    .cta-button-large {
        padding: 6px 12px; /* Smaller button padding */
        font-size: 0.7em; /* Smaller button font size */
        width: 60%; /* Adjust width */
        max-width: 150px; /* Adjust max-width */
        margin: 10px auto; /* Ensure button is centered */
    }
}

.social-connect-section {
    padding: 50px 100px;
    background-color: #f9f9f9;
}

.social-connect-container {
    text-align: center;
}

.social-connect-container h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.social-connect-container .social-links a {
    font-size: 3em;
    margin: 0 20px;
    color: black;
    transition: transform 0.3s, color 0.3s;
}

.social-connect-container .social-links a:hover {
    transform: scale(1.2);
    color: #BF6411;
}

.cta-button-large {
    display: inline-block;
    margin-top: 30px;
    padding: 20px 60px;
    background-color: #BF6411;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.5em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 5px #BF6411;
}
