/* Style carousel images */
body{
    font-family: "Poppins",sans-serif !important;
}
.carousel-item {
    position: relative;
    /* z-index: -9999; */
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 85vh; /* Makes the images fill the screen height */
    background-color: transparent;
    width: 100%; /* Ensure it takes full width */
    filter: brightness(50%);
    display: block;
  }
  .carousel-caption a {
    text-decoration: none;
  }
  /* Blackish overlay effect */

  
  /* Align the text to the left */
  .carousel-caption.left-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    /* font-size: 22px; */
    /* z-index: 10; */
    margin:0px;
}
  
  .carousel-caption h1 {
    font-size: 55px;
    text-transform: uppercase;
    text-align: center;

  }
  
  .carousel-caption p {
    font-size: 19px;
    /* text-align: center; */
  }
  .carousel-caption button{
    display: block;
    margin: auto;
    width: auto;
    font-size: 14px;;
  }
  
  .carousel-caption h1,
  .carousel-caption p {
    margin-bottom: 15px;
  }
  
  /* Apply smooth transition to carousel */
  .carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition effect */
  }
  
  /* Style for the Contact Now button */
  .crbtn {
    background-color: #ebe5e1 !important;
    color: black !important;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .crbtn:hover {
    background-color: #e65c00;
  }
  
  /* Add smooth transition for the carousel */
  .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .carousel-fade .carousel-item.active {
    opacity: 1;
  }
  
  /* Custom arrows */
  .previcon, .previnext {
    background-color: black !important; /* Dark background for arrows */
    border-radius: 10%;
    padding: 10px;
    font-size: 20px;
    width: auto;
    display:none;
  }
  

  
  .carousel-item {
    position: relative;
  }
  
  /* Section Styling */
  .section2 {
    padding: 50px 0;
    background-color: transparent;
    background: #fbfbfb;
    
    text-align: left;
  }
  
  /* Styling for the card items in the slick-slider */

   /* Custom Styles */
   .section2 .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Stronger shadow effect */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    margin: 10px;;
    /* height: auto; */
    /* width: 100% !important; */
  }

  /* .section2 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15); 
  } */

  .section2 .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    padding: 10px;
    padding-top: 15px;
  }


  .section2 .card-body {
    padding: 10px !important;
    background-color: #f9f9f9;
    border-radius: 0 0 20px 20px;
  }

   .section2 .card-title {
    font-size: 14px;
    font-weight: 700 !important;
    color: #333;
    margin-top: 0;
    text-align: left;
    margin-bottom: 15px;
  }

   .section2 .card-text {
    font-size: 12px;
    color: #666;
    text-align: left;
    margin-bottom: 20px;
  }

  .slick-next:before {
    display: none;
}
  .slick-prev:before {

    display: none;
}



.section2  i{
  margin-right: 5px;;
  display: inline-block;
}
  /* General styles */
  .faqs-section{
    background: linear-gradient(to right,rgb(90, 90, 212),rgb(43, 101, 226));
    padding:50px;
  }
  .faqs-section .title{
    font-size:40px;
    color:white;
  }
#FAQ {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;

}

.accordian {
width: 100%;
max-width: 1250px;
margin: 0 auto;

border-radius: 8px;
}

.item {
background-color: #e7ecf5;
margin-bottom: 10px;
padding: 15px 20px;
border-radius: 8px;
position: relative;
transition: background-color 0.3s ease;
}

.item.selected {
background-color: #ffffff;
}

.item::after {
content: "";
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
/* background-color: #06965c; */
}

.FAQ-title {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-weight: 600;
font-size: 28px;
color: #131414;
}

.faqQuestion {
font-size: 15px;
color: #131414;
text-align: start;
}

.FAQ-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
font-weight: 400;
font-size: 15px;
line-height: 1.6;
color: #131414;
}

.FAQ-content.show {
max-height: 9999px;
transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.expandToggle {
background: #ffffff;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
font-weight: 600;
}

.FAQ-ShowMore {
text-align: center;
margin-top: 20px;

}

.FAQ-ShowMore button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: navy;
  color: white;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 15px;
transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
background-color: #8ee0c4;
color: black;
font-weight: 700;
}



.test-sec{
  background: linear-gradient(
    rgba(0, 0, 0, 0.8), /* Semi-transparent black overlay */
    rgba(0, 0, 0, 0.8)
), url('images/tst.jpg'); /* Your background image */
background-size: cover; /* Ensure the image covers the entire background */
background-position: center; /* Center the image */
  padding:50px;
}


.testimonials {

  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  margin: 1.5rem auto;
  /* box-shadow: 0 0 25px rgba(0, 0, 0, 0.15); */
}

.description {
  font-size: 0.95rem;
  color: #fff0f0;
}

.slider-container {
  margin-top: 2rem;
  margin: 2rem auto 0 auto;
  position: relative;
  overflow: hidden;
}
.slider {
  display: flex;
  flex: 0 0 1;
  width: 300%; /* Depends On slide-box Length * 100 */
  transition: all 0.5s linear;
}
.slide-box {
  padding: 10px 80px;
  margin: auto;
  width:100%;
}
.slide-box .comment {
  background-color: #ff5722;
  color: #fff;
  font-size: 0.86rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.4px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  /* position: relative; */
  font-weight: 400;
}
.slide-box .comment::before {
  content: "";
  /* position: absolute;
  left: 50%; */
  bottom: -10px;
  height: 20px;
  width: 20px;
  background-color: #000;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}
.slide-box img {
  max-width: 60px;
  border-radius: 0%;
}
.section6 button{
  padding:  10px 20px;
  width: 80%;
}
.slide-box .name {
  font-size: 1rem;
  color: white;
}
.slide-box .job {
  font-size: 0.7rem;
  color: #8d8e97;
  font-weight: 400;
}

.control-slider {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  background-color: #ff5722;
  line-height: 40px;
  color: white !important;
  border-radius: 50px;

}
.btn-left {
  left: 10px;
}
.btn-right {
  right: 10px;
}

@media screen and (max-width: 500px) {
  .slide-box {
    padding: 0px;
  }
}



.section4 {
  /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
  color: #fff;
  /* padding: 80px 0; */
  
}




h1.section-title {
  /* font-size: 42px; */
  font-weight: 700;
  line-height: 1.3;
  color: black;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

p.section-description {
  font-size: 18px;
  color: black;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.crbtn {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.crbtn i {
  margin-right: 10px;
}

.crbtn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00c6ff 0%, #0056b3 100%);
}

.crbtn:focus {
  outline: none;
}







.wrapper{
  width:100%;
  padding-top: 20px;
  text-align:center;
}
.wrappers .plan {
  
    transition: ease-in 0.2s;
      color: white;
      width: 100px;
    
  }
  
.wrappers{
  padding: 60px 0;
}

.wrappers main {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
}



.wrappers .header {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 10px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.wrappers .switch {
position: relative;
display: inline-block;
width: 50px;
height: 25px;
vertical-align: -40%;
margin-right: 5px;
}

.wrappers .switch input {
display: none;
}

.wrappers .slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--color-1);
border-radius: 34px;
transition: 0.1s;
}

.wrappers .slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 28px;
bottom: 3px;
background-color: white;
border-radius: 50%;
transition: 0.1s;
}

.wrappers input:checked + .slider:before {
transform: translateX(-25.2px);
box-shadow: 0 0 2px #2196f3;
}

.wrappers input:checked + .slider {
background-color: var(--color-2);
}
.mcbook{
width: 300px;
height: auto;
}

.wrappers .decorated {
display: inline-block;
color: var(--color-1);
font-size: 18px;
white-space: nowrap;
position: relative;
}
.booknow {
background-image: linear-gradient(to right, #0471f2, #003ad0); /* Apply the gradient from left to right */
color: white; /* Text color */
padding: 10px 20px; /* Button padding */
font-size: 14px; /* Font size */
border: none; /* Remove default border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Change cursor to pointer */
text-align: center; /* Center the text */
transition: background-image 0.3s ease; /* Smooth transition on hover */

}

.booknow:hover {
background-image: linear-gradient(to right, #003ad0, #0471f2); /* Reverse the gradient on hover */
}

.wrappers .decorated::after {
content: "";
display: block;
width: 100%;
height: 80px;
left: -10px;
bottom: -47px;
position: absolute;
background-image: url("https://assets.codepen.io/9277864/underline-1.svg");
background-repeat: no-repeat;
transform: rotate(6.19rad);
}

.wrappers .pricing-plan {
display: flex;
gap: 30px;
flex-wrap: wrap;
}

.wrappers .plan {

border-radius: 10px;

padding: 23px;
min-width: 220px;
flex: 1;
display: flex;
justify-content: space-between;
gap: 16px;
flex-direction: column;
}

.wrappers .plan:hover,
.wrappers .button:hover {
transform: scale(1.009);
}

.wrappers .price {
display: flex;
align-items: flex-start;
gap: 7px;
margin-bottom: 20px;
}

.wrappers .whole {
font-weight: bold;
font-size: 35px;
}

.wrappers .cent {
font-weight: bold;
}

.wrappers .button {
color: white;
text-decoration: none;
background-color: var(--color-1);
display: inline-block;
width: 100%;
text-align: center;
padding: 9px 20px;
border-radius: 6px;
box-shadow: 1px 0 4px rgba(0, 0, 0, 0.4);
margin-bottom: 20px;
}

.wrappers .title {
font-weight: 600;
margin-bottom: 12px;
}

.wrappers ul {
list-style-type: none;
}

.wrappers ul li {
margin-bottom: 8px;
}



.wrappers .first-cut {
display: flex;
flex-direction: column;
}

.wrappers .best {
position: relative;
}

.wrappers .popular {
position: absolute;
top: -65px;
right: -57.5px;
width: 100px;
height: 200px;
overflow: hidden;
transform: rotate(-45deg);
}

.wrappers .inner {
transform: rotate(45deg);
background-color: #00ba96;
width: 100px;
height: 100px;
top: 20px;
left: -50px;
position: relative;
border-top-right-radius: 10px;
}



.wrappers .popular p {
font-weight: bold;
font-size: 18px;
transform: rotate(46deg) translate(50px, -4px);
color: white;
}

.wrappers li:last-child {
display: flex;
align-items: flex-end;
}

.wrappers li:last-child::before {
align-self: center;
}

.wrappers .label {
display: inline-block;
margin-right: 5px;
padding: 4px 12px;
background-color: #445566;
color: white;
border-radius: 6px;
}

.wrappers .tooltip:hover {
cursor: help;
}
.wrappers .plan1 {
   background-color:#fae8ff;

   color:black;
  }
.wrappers .plan2 {
   background-color:#dcfce7;

   color:black;
  }
.wrappers .plan3 {
  background-color:#4a52f7;
color: white;


  }
  .wrappers .title{
    font-size: 14px;
  }


    

.sec-title2{
color:#fff;
}
.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: #d7a449;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}

/* Styling for Section 4 */
.section4 {
  padding: 50px 0;
  background-color: #e1e4e6; /* Light blue background for the section */
  display: flex;
  justify-content: center;
  align-items: center;
}

.section4 .container {
  max-width: 1200px; /* Limit the width of the container */
}

.section4 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Ensure the layout is responsive */
}

.section4 .col-md-6 {
  flex: 1;
  padding: 20px;
}

.section4 img {
  max-width: 100%; /* Ensure the image is responsive */
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.section4 h1 {
  font-size: 22px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
  text-align: left;
}

.section4 p {
  font-size: 18px;
  color:black;
  line-height: 1.6;
  margin-bottom: 30px;
}

.crbtn {
  background-image: linear-gradient(to right, #003ad0, #0471f2) !important; /* Reverse the gradient on hover */
  color: white; /* White text */
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crbtn i {
  margin-right: 10px;
}
.carousel {
  scroll-behavior: smooth;
}


.crbtn:hover {
  background-color: #0f75b5; /* Darker blue on hover */
  transform: translateY(-3px); /* Lift effect on hover */
}
.secimg{
  width:75%;
  height: 500px;
}
.left-fixed {
  position: fixed;
  z-index: 1;

 bottom: 10%; /* Align to the left side */
  transform: translateY(-50%); /* Center the image vertically */
  width: 50px; /* Set the width for the left image */
}

.right-fixed {
  position: fixed;
  bottom: 10%;  /* Align to the left side */
transform: translateY(-50%); /* Center the image vertically */
right:0;
width: 50px; /* Set the width for the left image */
z-index: 2;
}

@media screen and (min-width:300px) and (max-width:768px) {
  .secimg{
    width: 100%;
    height: auto;
  }
  .section2 .card-body {
    padding: 5px !important;
    background-color: #f9f9f9;
    border-radius: 0 0 20px 20px;
  }
.right-fixed{
  bottom: 15%;
}
.left-fixed{
  bottom: 15%;
}
  
  .carousel-caption h1{
    font-size: 21px;
    color:#ffc107;
  }
  .carousel-caption p{
    font-size: 16px;
    font-weight: normal;
   
  }
  .carousel-item img{
    height: 60vh;;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
}
.section2{
  padding: 5px;
}
.section4 h1{
  font-size: 18px;;
  margin-bottom: 13px;
        margin-top: 12px;
        text-align: left;
}
.section4 p{
  font-size: 14px;;
}
.crbtn{
  text-align: center !important;
  width: 100%;
  display: block;
  margin: auto;
}
.section4 .col-md-6{
  padding: 5px;;
}
.about-section{
  padding: 20px;;
}
.image-column img{
  width: 100%;
height: 300px !important;
}

.about-section .image-column .inner-column{
  margin-left: 0px;;
}
.sec-title .title {
  font-size: 15px;;
}
.about-section .content-column .inner-column {
  padding-right: 0px;;
  padding-top: 0px;
}

.whole {
text-align: center !important;
}
.wrappers .plan {
    
  transition: ease-in 0.2s;
padding: 20px;;
width: 100%;
  
}
ol, ul {
  padding-right: 0px !important;
}
.whychose .col-lg-3{
  margin-top:10px;
  margin-bottom:10px;
}
.whychose .col-lg-3 .card{
  height: auto;
}
.whychose .section-title{
  font-size: 30px  !important;
  margin-bottom: 0px;;
}
body,html{
  overflow-y: none;
  overflow-x: hidden;
}
.faqs-section{
  padding: 5px;
padding-bottom: 22px;;
}
.testimonials{
  padding: 15px;
}
.test-sec{
  padding: 0px  !important;
 
}
.faqs-section .title{
  font-size: 23px;
  text-align: center;
  margin-top: 20px;
}
.pcolimg img{
  width: 100% !important;
}

}

@media screen and (min-width:300px) and (max-width:400px) {
  .carousel img{
    height: 70vh;
  }
  .carousel-caption h1{
    font-size: 18px;;
  }
  .carousel-caption p{
    font-size: 14px;;
  }
}

@media screen and (min-width:768px) and (max-width:820px) {
  .FAQ-ShowMore {
    text-align: center;
    margin-top: 0px !important;
 

    }
  .test-sec{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
 .section2{
    padding: 80px;;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
} 
.carousel-caption h1{
  font-size: 30px;;
}
.carousel-caption p{
  font-size:18px;;
}

.carousel-item img{
  height: 45vh;;
}
.section4 img{
  margin-bottom: 20px;;
}
.about-section{
  padding: 15px;;
}
.image-column img{
width: 716px !important;
height: 450px !important;
}
.crbtn{
  width: 35%;
}
.section4{
  margin-top: 20px;;
}
.section4 img{
  width: 100%;
}
.whychose .col-lg-3{
  margin-top: 10px;;
  margin-bottom: 10px;;
}
.faqs-section .title{
  font-size: 30px;
}
}
@media screen and (min-width:820px) and (max-width:1022px)  {
  .image-column img {
    width: 644px !important;
    height: 511px !important;
}
}

@media screen and  (min-width:1024px) and (max-width:1366px) {

  .section2{
    padding: 80px;;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
} 
.carousel-caption h1{
  font-size: 30px;;
}
.carousel-caption p{
  font-size:18px;;
}

.carousel-item img{
  height: 45vh;;
}
.section4 img{
  margin-bottom: 20px;;
}
.about-section{
  padding: 15px;;
}

.crbtn{
  width: 65%;
}
.section4{
  margin-top: 20px;;
  padding: 25px;
}
.section4 img{
  width: 100%;
}
.payment-input-group input {
  padding-right: 0px;;
}
}

 /* General Styling */
 .pricings {
  padding: 60px 0;
  background: linear-gradient(to right,rgb(90, 90, 212),rgb(43, 101, 226));

}
.colsp{
margin-top:50px;
}


/* Title Styling */
.pricing-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
  text-align: left;
}

/* Checklist Styling */
.pricing-checklist {
  list-style-type: none;
  padding: 0;
}

.pricing-checklist li {
  font-size: 14px;
  color:whitesmoke;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.pricing-checklist i {
  margin-right: 10px;
  font-size: 12px;

  background-color:dodgerblue;
  color:whitesmoke;
  padding:8px;
  border-radius:50px;
}

.animate__animated {
  /* display: inline-block;
  margin: 0 0.5rem;

animation-delay: 600ms;
  animation-duration: 2s;  */
}

/* Image Styling */
.pcolimg img {
  width: 100%;
  border-radius: 8px;
  /* max-width: 456px; */
  width: 86%;
  max-height: 397px;
  object-fit: cover;

}





/* General Section Styling */
.contact1 {
  padding: 50px 0;
  background-color: #f4f7fc;
}

/* Section Title Styling */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.contact1 form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;

  max-width: 600px;
  margin: 10px auto;
}
.card1s{
  border-color: #8ACBF380;
    border-color: #8ACBF380;
   border-radius: 14px 14px 14px 14px;
    box-shadow: 3px -3px 25px 0px rgba(203, 233, 255, 0.6) inset;
border-width: 1px ;
border-style: solid;
 
    border-width: 1px 1px 1px 1px;
  border-top-width: 1px;
    border-right-width: 1px;
  border-bottom-width: 1px;
    border-left-width: 1px;
}
.cards2{
  border-color: #8ACBF380;
  border-color: #8ACBF380;
 border-radius: 14px 14px 14px 14px;
  box-shadow: 3px -3px 25px 0px rgba(203, 233, 255, 0.6) inset;
border-width: 1px ;
border-style: solid;

  border-width: 1px 1px 1px 1px;
border-top-width: 1px;
  border-right-width: 1px;
border-bottom-width: 1px;
  border-left-width: 1px;
  padding:1rem
}

/* Form field styles */
.form-control {
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: #007bff; /* Blue border when focused */
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); /* Blue focus shadow */
}
.contact-form:hover {
  transform: translateY(-10px); /* Subtle hover effect */
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 25px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.contact-form button {
  /* background-color: #0056b3;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; */
}
.contact-btn {
  background-color: #0056b3;
  width: 100%;
  color: #fff;
}
.contact-form button:hover {
  background-color: #004494;
  transform: translateY(-2px);
}

.contact-form button:active {
  transform: translateY(1px); /* Active button effect */
}

/* Contact Info Styling */
.contact-info {
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Contact Item Styling */
.contact-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  align-items: center;
  justify-content: start;
}

.contact-item i {
  font-size: 26px;
  color: white;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff5722;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.contact-item i:hover {
  background-color: #004494;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 14px;
    color: #666;
}



@media (min-width: 768px) and (max-width: 1024px) {
  .contact1 {
      padding: 60px 0;
  }

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

  .contact-item {
      flex-direction: row;
      text-align: left;
  }
}

.fa-map-marker-alt{
  padding:15px;

}
.fa-envelope{
  padding:15px;
}


