body{
	margin: 0px;
	height: auto;
}

footer{
	margin-top: auto;
	margin-bottom: 0px;
}

.roboto-regular {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
}


img {
  max-width: 100%;
  height: auto;
}

.container{
	width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

body {
  background-color: white;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    flex-direction: column;
  }

  img {
    max-width: 100%; 
  }
}

#Parent1{
	width: 100%;
	padding: 10px 5px;
  display: flex;
  flex-wrap: wrap;
	justify-content: space-evenly;	
	align-items: center;
	background-color: #6D1B1B;
	color: white;
	gap: 10px;
	box-sizing: border-box;
}
.Phone{
	white-space: nowrap;
	font-size: 14px;
}
@media(max-width:768px){

	#Parent1{
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	#Parent1 div{
		display: flex;
		align-items: center;
		font-size: 14px;
		gap: 5px;
	}

	select{
		padding: 3px;
		border-radius: 4px;
	}

}

#box{
	width: 50%;
	padding-right: 30px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
	background-color: #6D1B1B;
	color: white;
}

#logo{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
	gap: 5px;
}
#logo a{
	text-decoration: none;
	color: white;
}
#size{
	margin-right: 4%;
}

#logo2{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}
#logo2 a{
	text-decoration: none;
	color: white;
}
#size3{
	margin-right: 4%;
	margin-top: 1%;
}

#logo3{
	width: 50%;
	display: flex;
	align-items: center;
	margin-left: 8px;
}
#logo3 a{
	text-decoration: none;
	color: white;
}
#size5{
	margin-right: 1%;
}

#logo4{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
#logo4 a{
	text-decoration: none;
	color: white;
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.language-switcher select:hover {
  border-color: #007bff;
}

/* Focus effect */
.language-switcher select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* Custom arrow */
.language-switcher::after {
  content: "▼";
  font-size: 10px;
  color: #555;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#Parent2{
	width: 90%;
  display: flex;
	justify-content: space-between;	
	align-items: center;
	padding: 15px 20px;
}

#Heading1{
	display: flex;
	justify-content: center;
	margin-left: 10%;
	margin-right: 10px;
	margin-top: 5px;
}
#size8{
	margin-left: 35%;
	margin-top: 3%;
}
#size9{
	margin-top: 0;
	margin-left: 0;
}
#Heading2{
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: flex-end;
	align-items: center;
	margin-top: 0;
	margin-right: 0;
}
#Heading2 a{
	text-decoration: none;
	color: #222;
	font-weight: 500;
	position: relative;
	padding-bottom: 5px;
	transition: 0.3s ease;
}

/* Hover effect */
#Heading2 a:hover{
	color: #6D1B1B;
}

/* Animated underline */
#Heading2 a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: goldenrod;
	transition: 0.3s ease;
}

#Heading2 a:hover::after{
	width: 100%;
}

#Heading2 a.active{
	color: #6D1B1B;
}

#Heading2 a.active::after{
	width: 100%;
}


/* Hover effect */
#Heading2 a:hover{
    color: goldenrod;
}

#line{
	border: 1px solid lightgray;
	margin-top: -70px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 40px;
  margin-top: 20px;
}

.hero-text {
  flex: 1;
}
.hero a{
	text-decoration: none;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.5;
}
.hero-text p {
  font-size: clamp(1.5rem, 1.5rem);
  line-height: 2;
}
#g{
	color: #6D1B1B;
	font-size: clamp(2.2rem, 6vw, 5rem);
}
.box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #6D1B1B;   /* your theme color */
  color: black;
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

#icon img{
	width: 10%;
}
.hero-text p {
  margin: 20px 0;
  color: #555;
}
#icon{
	border: 1px solid #6D1B1B;
   margin-top: 2%;
   display: flex;
	 align-items: center;
	 margin-left: 3%;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   border-bottom-left-radius: 5px;
   border-bottom-right-radius: 5px;
}
#icon a{
	width: 60%;
	padding: 3%;
  text-decoration: none;
	color: black;
}

.hero-slider{
    width:100%;
    max-width:600px;
    height:50vh;
    overflow:hidden;
    position:relative;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
   border-bottom-left-radius: 10px;
   border-bottom-right-radius: 10px;
}

.slider{
    display:flex;
    width:100%;
    height:100%;
    transition:transform 1s ease-in-out;
}

.slide{
    width:100%;
    height:100%;
    flex-shrink:0;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* MOBILE */
@media (max-width:768px){

    .slider{
        height: 250px;
    }

    .slider img{
        object-fit: contain;
    }

}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
#Parent4{
	width: 90%;
	border: 1px solid lightgray;
	padding: 1%;
  margin-top: 2%;
   display: flex;
	 align-items: center;
	 margin-left: 3%;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
   border-bottom-left-radius: 10px;
   border-bottom-right-radius: 10px;
}
#wrap2{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#wrap2 img{
	margin-right: 2%;
}
#wrap3{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#wrap3 img{
	margin-right: 2%;
}
#wrap4{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#wrap4 svg{
	margin-right: 2%;
}
#wrap5{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#wrap5 svg{
	margin-right: 2%;
}
#line2{
	height: 30px;
	border-left: 1px solid lightgray;
}

#Parent5{
	width: 80%;
	text-align: center;
	margin-top: 50px;
	margin-left: 10%;
}
#text8{
	font-size: 25px;
	font-weight: bold;
	color: goldenrod;
	display: flex;
	justify-content: center;
	align-items: center;
}
#line3{
	width: 2%;
	border: 1px solid goldenrod;
	margin-left: 1%;
	margin-right: 1%;
}
#text9{
	font-size: 40px;
}
#text10{
	font-size: 15px;
	color: gray;
}

#Wrapper2{
	width: 100%;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
	 padding: 5px;
}
#Parent6{
  margin: 1%;
  padding: 1%;
	text-align: center;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#Parent7{
  margin: 1%;
  padding: 1%;
	text-align: center;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#Parent8{
  margin: 1%;
  padding: 1%;
  padding-top: 1%;
	text-align: center;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#Parent9{
  margin: 1%;
  padding: 1%;
  padding-top: 1.5%;
	text-align: center;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#Parent10{
  margin: 1%;
  padding: 1%;
	text-align: center;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#Parent11{
  margin: 1%;
  padding: 1%;
	text-align: center;
	border: 1px solid lightgray;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#Parent6,
#Parent7,
#Parent8,
#Parent9,
#Parent10,
#Parent11{
	flex: 1 1 300px;
	max-width: 350px;
}

.text11{
	margin-top: 5%;
	font-size: 18px;
	font-weight: bolder;
}
#T{
	font-size: 18px;
	font-weight: bolder;
}
.text12{
	margin-top: 4%;
}

.wrap6{
	margin-top: 8%;
	display: flex;
  justify-content: center;
  align-items: center;
  color: brown;
}
.wrap6 a{
  text-decoration: none;
  color: #6D1B1B;
}
.wrap6 img{
	margin-left: 2%;
	margin-top: 1%;
}

.wrap6d{
	margin-top: 8%;
	display: flex;
  justify-content: center;
  align-items: center;
  color: brown;
}
.wrap6d a{
	margin-top: 1%;
  text-decoration: none;
  color: #6D1B1B;
}
.wrap6d img{
	margin-left: 2%;
	margin-top: 2%;
}

#Wrapper3{
	width: 100%;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 20px 0px;
}
#Parent12{
	flex: 1 1 450px;
	width: 100%;
}
#Parent12 img{
	height: 470px;
	border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#Parent13{
	flex: 1 1 450px;
	width: 100%;
}
@media(max-width:768px){

	#Parent13 h1{
		font-size: 35px;
		line-height: 45px;
	}

}
@media(max-width:768px){

	#Parent13{
		margin-top: 20px;
	}

}
#Parent13 button{
	transition: 0.4s;
	cursor: pointer;
}

#Parent13 button:hover{
	transform: translateY(-3px);
}

#text14{
	font-size: 20px;
	color: goldenrod;
	display: flex;
	align-items: center;
}
#line4{
	width: 10%;
	border: 1px solid goldenrod;
	margin-left: 1%;
	margin-right: 4%;
}

.wrap7{
	width: 100%;
	margin-top: 1%;
	margin-left: 2%;
}
#text15{
	font-size: 40px;
}
#g{
	color: #6D1B1B;
	font-size: 50px;
}
#text16{
	font-size: 17px;
	margin-top: 3%;
	line-height: 1.5;
}

#wrap8{
	width: 100%;
	margin-top: 6%;
	display: flex;
	align-items: center;
	position: relative;
}
.wrap8{
	width: 100%;
	margin-top: 2%;
	display: flex;
	align-items: center;
	position: relative;
}
.icon2{
	margin-right: 1.5%;
	position: relative;
	top: 2px;
}

.wrap9{
	width: 30%;
	margin-top: 5%;
	padding: 1%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
	background-color: #6D1B1B;
	color: white;
}
.wrap9 a{
	text-decoration: none;
	color: white;
}
#text18{
	margin-right: 4%;
}

#text8{
	margin-top: 6%;
	font-size: 22px;
	color: goldenrod;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
#line3{
	width: 2%;
	border: 1px solid goldenrod;
	margin-left: 1%;
	margin-right: 1%;
}
#text9{
	font-size: 40px;
}

#Wrapper4{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px;
}
.Parent{
	text-align: center;
	position: relative;
}

/* LIGHT MODE IMAGE */
.van-light{
    display:block;
    width:90px;
}

/* DARK MODE IMAGE */
.van-dark{
    display:none;
    width:90px;
}

/* AUTOMATIC DARK MODE SWITCH */
@media (prefers-color-scheme: dark){

    .van-light{
        display:none;
    }

    .van-dark{
        display:block;
    }

}
.icon-box,
.icon-box2{
    position: relative;
    width: 110px;
    height: 100px;
    border: 1px solid goldenrod;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.number{
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: goldenrod;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
}
.t{
	margin-top: 20%;
}

.dotted-line {
  width: 100px;
  border-top: 2px dotted #ccc;
  margin-top: 55px;
}
@media(max-width:768px){

	.dotted-line{
		display:none;
	}

  .icon-box{
  	gap: 20px;
  }

  .icon-box2{
  	margin-top: 20px;
  }

  .t{
  	margin-right: 20px;
  }
}

#Wrapper5{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.stats-section {
	margin-top: 2%;
  background-color: #6D1B1B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 4px;
  color: #D4AF37;
}
.Parent14{
	margin-right: 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.stat {
	display: flex;
	margin-left: 5%;
  text-align: center;
  position: relative;
}
#stat {
	display: flex;
	margin-left: %;
  text-align: center;
  position: relative;
}
.stat h2 {
  font-size: 42px;
  margin: px 0 px;
  font-weight: 700;
}

.stat p {
  font-size: 14px;
}

.icon {
  width: 50px;
  height: 50px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  top: 40px;
}
#wraps{
	margin-top: 10%;
}
#wraps2 p{
	width: 90%;
	margin-bottom: 1%;
}

/* Mobile Responsive */
‎@media (max-width: 768px) {
‎  .stats-section {
‎    flex-direction: column;
‎    gap: 25px;
‎    padding: 25px 15px;
‎  }
‎
‎  .divider {
‎    width: 60px;
‎    height: 1px;
‎  }
‎
‎  .stat h2 {
‎    font-size: 32px;
‎  }
‎
‎  .stat p {
‎    font-size: 13px;
‎  }
‎
‎  .icon {
‎    width: 45px;
‎    height: 45px;
‎  }
‎}

.stats-section {
	width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #6D1B1B;
  padding: 7px 4px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 6px;
  color: #FFD700;
  position: relative;
}

#stat {
  text-align: center;
  padding: 6px;
  color: #FFD700;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border: 2px solid #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
  color: #FFD700;
}

.stat h2 {
  font-size: 42px;
  margin: 10px 0;
  font-weight: bold;
}

.stat p {
  font-size: 16px;
  color: #fff;
}
#stat h2 {
  font-size: 42px;
  margin: 10px 0;
  font-weight: bold;
}

#stat p {
  font-size: 16px;
  color: #fff;
}

.divider {
  width: 2px;
  height: 90px;
  background: #FFD700;
  margin: 0 20px;
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .stats-section {
    flex-direction: column;
  }

  .divider {
    width: 60%;
    height: 2px;
    margin: 20px 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    gap: 25px;
    padding: 25px 15px;
  }

  .divider {
    width: 60px;
    height: 1px;
  }

  .stat h2 {
    font-size: 32px;
  }

  .stat p {
    font-size: 13px;
  }

  .icon {
    width: 45px;
    height: 45px;
  }
}
.Parent14 svg{
  position: relative;
  top: 28px;
}
#text19{
	font-size: 15px;
	color: goldenrod;
	margin-top: 4%;
	margin-left: 4%;
}
#wrap7{
	width: 70%;
	margin-top: 1%;
	margin-left: 4%;
}
#text20{
	font-size: 30px;
}
#Parent15{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 20px;
	line-height: 1.5;
}
#pack{
	width: 90%;
	margin-left: 3%;
}
#pack2{
	width: 50%;
	margin-top: 2%;
	margin-left: 3%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.testimonial-slider{
    position:relative;
    overflow:hidden;
    max-width:600px;
    margin:auto;
    padding: 60px;
}

.testimonial-slide{
    position:absolute;
    width:100%;
    opacity:0;
    transform:translateX(100%);
    transition:all 0.6s ease;
    font-size: 20px;
    line-height: 2;
    text-align: center;
}

.testimonial-slide.active{
    opacity:1;
    transform:translateX(0);
    position:relative;
}

.testimonial-slide.prev-slide{
    transform:translateX(-100%);
}

.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#6D1B1B;
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:1000;
}

/* LEFT BUTTON */
.prev-btn{
    left:10px;
}

/* RIGHT BUTTON */
.next-btn{
    right:10px;
}

/* DARK MODE */
@media (prefers-color-scheme: dark){

    .testimonial-section{
        background:#111;
    }

    .testimonial-slide{
        background:#1b1b1b;
        color:white;
    }

    .testimonial-slide p{
        color:white;
    }

    .client-info span{
        color:#ddd;
    }

    .prev-btn,
    .next-btn{
        background:goldenrod;
        color:black;
    }

}
#s img{
 position: relative;
 top: -10px;
}
#text21{
	font-size: 17px;
	margin-top: 4%;
}
#wrap15{
	margin-top: 5%;
	margin-left: 50px;
	display: flex;
	border-radius: 100%;
	position: relative;
}
.circle-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  top: 2px;
  left: -10px;
}

.circle-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#text23{
	font-size: 20px;
	color: skyblue;
}

#Wrapper6{
	width: 96%;
	padding: 2%;
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #6D1B1B;
}

.stat2 {
	display: flex;
	margin-left: 5%;
  position: relative;
  color: #FFD700;
}
.icon5 {
  width: 50px;
  height: 50px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  top: 6px;
  left: -2px;
}
.stat2 h2 {
  font-size: 25px;
  margin: px 0;
  font-weight: bold;
  color: #FFD700;
}

.stat2 p {
	margin-bottom: 3%;
  font-size: 16px;
  color: #fff;
}
.stat2 img{
  position: relative;
  top: -1px;
}
#merge{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.wrap16{
	margin-right: 10%;
	padding-left: 1.8%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid white;
	border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
	background-color: #6D1B1B;
	color: white;
}

.wrap16 a{
	text-decoration: none;
	color: white;
}
.wrap9 a{
	text-decoration: none;
	color: white;
}
.wrap17 a{
  position: relative;
  top: -80px;
  left: 200px;
}

#BGcolor{
	width: 100%;
  background-color: black;
  color: white;
}
#Wrapper7{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  box-sizing: border-box;
}
@media(max-width:768px){

    #Wrapper7{
        flex-direction:column;
        align-items:flex-start;
    }

    .Parent2,
    #GParent2{
        width:100%;
    }

    #divider2{
        display:none;
    }

}
.footer-logo{
    width:100%;
    max-width:300px;
    height:auto;
    margin-bottom: -30px;
}

.Parent2{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
#your-text {
	width: 100%;
	margin-left: 10%;
	margin-top: -40px;
	line-height: 2;
}

#footer,
#Heading3,
#your-text,
.logo,
.logo2,
.logo3{
	word-break: normal;
	overflow-wrap: break-word;
}

#Heading3{
	width: 100%;
	max-width: 350px;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	margin-top: 2%;
	margin-left: 0;
	position: relative;
}
.size8{
	margin-left: 450px;
	margin-top: 3%;
}
.size9{
	position: relative;
	top: -54px;
	left: -40px;
}

#Heading4{
	width: 100%;
	display: flex;
	margin-left: 10%;
	margin-top: 1px;
}
.social-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #000; /* your theme */
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: 0.3s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #8B2C2C;
}

.Heading2{
  width: 100%;
  margin-top: 10%;
  margin-left: 25%;
  line-height: 2;
}
.Heading2 a{
	margin-top: 10%;
	line-height: 1.2;
	text-decoration: none;
	color: white;
}
#footer{
  width: 90%;
  margin-top: 10%;
  margin-left: 28%;
  line-height: 2;
}
#footer a{
	margin-top: 10%;
	text-decoration: none;
	color: white;
}
.Heading3{
	width: 90%;
	margin-top: 8%;
	font-size: 20px;
}
.box2{
	height: 3%;
	margin-left: 300px;	
	margin-top: 12%;
	color: white;
}

.logo{
	display: flex;
	align-items: center;
}
.logo a{
	text-decoration: none;
	color: white;
}
.size{
	margin-right: 4%;
}

.logo2{
	margin-top: 15px;
	display: flex;
	align-items: center;
}
.logo2 a{
	text-decoration: none;
	color: white;
}
.size3{
	margin-right: 4%;
	margin-top: 0.5%;
}

.logo3{
	margin-top: 20px;
	display: flex;
	align-items: center;

}
.logo3 a{
	text-decoration: none;
	color: white;
}
.size5{
	margin-right: 4%;
}
.box3{
	width: 80%;
	height: 3%;
	margin-left: 3%;
	margin-top: 8%;	
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo4{
	margin-left: 3%;
}
.size2{
	margin-left: 15%;
	text-decoration: none;
	color: white;
}
.logo5{
	margin-left: 2%;
}
.size4 {
	margin-left: 12%;
	text-decoration: none;
	color: white;
}
.logo6{
	margin-top: 15px;
	display: flex;
	align-items: center;
}
.logo6 a{
	text-decoration: none;
	color: white;
}
#note{
	color: black;
}

#Wrapper8{
	width: 100%;
	margin-top: -95px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}
#GParent3{
	display: flex;
	align-items: center;
}
#GParent4{
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 2%;
	margin-top: -1%;
}
#GParent4 a{
	text-decoration: none;
	color: white;
}
#Heading21{
	margin-top: 3%;
}
.children2{
	width: 60%;
	margin-top: 3%;
	margin-left: 4%;
	margin-right: 4%;
}
#tech{
	width: 60%;
	margin-top: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#code{
	margin-right: 5%;
}

#BGcolor{
	width: 100%;
  background-color: black;
  color: white;
}
#Wrapper7{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
}


@media(max-width:768px){

    #Wrapper7{
        flex-direction:column;
        align-items:flex-start;
    }

    .Parent2,
    #GParent2{
        width:100%;
    }

    #divider2{
        display:none;
    }

}

.Parent2{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

#GParent2{
	flex: 1;
	padding: 0 20px;
}

#your-text {
	width: 120%;
	line-height: 2;
}

#Heading3{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	position: static;
}
.size8{
	margin-left: 30%;
	margin-top: 3%;
}

@media(max-width:768px){

  #Heading3{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-left:0;
  }

  .size9{
    position:static;
    display:flex;
    justify-content:center;
    align-items:center;
  }

}
#Heading4{
	width: 100%;
	display: flex;
	margin-left: 15%;
	margin-top: 1px;
}
.social-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #000; /* your theme */
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: 0.3s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #8B2C2C;
}
#divider2{
	width: 2px;
	height: 250px;
	background-color: rgba(255,255,255,0.3);
	margin: 0 20px;
}

.Heading2{
  width: 120%;
  margin-top: 20px;
  margin-left: 2px;
  line-height: 2;
  text-align: left;
}
.Heading2 a{
	margin-top: 10%;
	text-decoration: none;
	color: white;
}
#footer{
  width: 90%;
  margin-top: 20px;
  margin-left: 30%;
  line-height: 2;
  text-align: left;
}
#footer a{
	margin-top: 10%;
	text-decoration: none;
	color: white;
}
.Heading3{
	width: 90%;
	margin-top: 8%;
	margin-left: -10px;
	font-size: 20px;
}
.box2{
	height: 3%;
	margin-left: 3%;	
	margin-top: 20px;
	color: white;
}
.size50{
	margin-left: -10px;
}
.size51{
	margin-left: 20px;
}

.logo{
	display: flex;
	align-items: center;
}
.logo a{
	text-decoration: none;
	color: white;
}
.size{
	margin-right: 4%;
}

.logo2{
	display: flex;
	align-items: center;
}
.logo2 a{
	text-decoration: none;
	color: white;
}
.size3{
	margin-right: 4%;
	margin-top: 5%;
}

.logo3{
	display: flex;
	align-items: center;
}
.logo3 a{
	text-decoration: none;
	color: white;
}
.size5{
	margin-right: 2%;
}
.box3{
	width: 80%;
	height: 3%;
	margin-left: 3%;
	margin-top: 20px;	
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo4{
	margin-left: 3%;
}
#size2{
	margin-left: 15%;
	text-decoration: none;
	color: white;
}
.logo5{
	margin-left: 2%;
}
#size4{
	margin-left: 12%;
	text-decoration: none;
	color: white;
}
.logo6{
	display: flex;
	align-items: center;
}
.logo6 a{
	text-decoration: none;
	color: white;
}
#note{
	color: black;
}

@media (max-width: 768px){
   
   #your-text{
   	margin-left: -8%;
   }
  #Heading4{
     margin-left: 40%;
  }
	#footer{
		text-align: left;
		margin-left: 40%;
	}
	.Heading2{
		margin-left: 30%;
		text-align: left;
	}
	.size50{
		margin-left: 8%;
	}
	.size51{
		margin-left: 15%;
	}
	.box2{
		margin-left: 30%;
	}
	.size8{
		margin-left: 12%;
	}
	.box3{
		margin-left: 10%;
	}

}

#Wrapper8{
	width:100%;
	padding:20px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	gap:20px;
	text-align:center;
}
#GParent3{
	display: flex;
	align-items: center;
}
#GParent4{
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 2%;
	margin-top: -1%;
}
#GParent4 a{
	text-decoration: none;
	color: white;
}
.children2{
	width: 60%;
	margin-top: 3%;
	margin-left: 4%;
	margin-right: 4%;
}

@media(max-width:768px){

	#Wrapper8{
		flex-direction: column;
	}

  #GParent4{
  	width: 100%;
  	flex-direction: column;
  	gap: 10px;
  }
}


/* =========================
TABLET
========================= */

@media (max-width: 992px){

	#Parent1,
	#Parent2,
	#Wrapper3,
	#Wrapper6,
	#Wrapper8{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#Heading2{
		justify-content: center;
	}

	.hero{
		flex-direction: column;
		text-align: center;
	}

	#Parent12{
		margin-left: 0;
	}

}

/* =========================
MOBILE
========================= */

@media (max-width: 768px){

	body{
		font-size: 14px;
	}

	#Heading2{
		flex-direction: column;
		gap: 15px;
		margin-left: 5%;
	}

	#Parent4{
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	#line2{
		display: none;
	}

	.wrap9{
		width: 80%;
		margin: auto;
		margin-top: 30px;
	}

	#merge{
		width: 100%;
		flex-direction: column;
		gap: 20px;
	}

	.wrap17 a{
		position: static;
	}

	#GParent4{
		width: 100%;
		flex-direction: column;
		gap: 15px;
	}

	#Wrapper8{
		margin-top: 20px;
		flex-direction: column;
		gap: 20px;
	}

}

/* =========================
SMALL PHONES
========================= */

@media (max-width: 480px){

	.hero-text h1{
		font-size: 1.8rem;
	}

	#g{
		font-size: 2rem;
	}

	#text9,
	#text15,
	#text20{
		font-size: 24px;
	}

	.stat h2,
	#stat h2{
		font-size: 28px;
	}

}



/* Default Light Mode */
body{
    background-color: white;
    color: black;
}

/* Navigation */
#Parent2 a{
    color: black;
    transition: 0.3s;
}

/* Dark Mode */
@media (prefers-color-scheme: dark){

    body{
        background-color: #121212;
        color: white;
    }

    /* Navbar */
    #Parent2{
        background-color: #1e1e1e;
    }

    #Parent2 a{
        color: white;
    }

    /* Hero section */
    .hero{
        background-color: #121212;
    }

    .hero-text p{
        color: #ccc;
    }

    /* Boxes */
    #Parent6,
    #Parent7,
    #Parent8,
    #Parent9,
    #Parent10,
    #Parent11{
        background-color: #1e1e1e;
        border: 1px solid #333;
        color: white;
    }

    /* Footer */
    #BGcolor{
        background-color: black;
        color: white;
    }
}