
/** main-footer **/

.main-footer{
  position: relative;
  background: white;
}

.main-footer .widget-section{
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer .widget-section:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.10);
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0px;
  margin-left: -235px;
}

.main-footer .about-widget{
  position: relative;
  max-width: 280px;
}

.main-footer .about-widget h2{
  font-size: 30px;
  line-height: 40px;
  color: black;
  font-weight: 600;
  margin-bottom: 34px;
}

.main-footer .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-footer .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border: 1px solid #323232;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  color: #000000;
}

.main-footer .social-links li a:hover{
  color: black;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .widget-title h4{
  font-size: 20px;
  line-height: 30px;
  color: black;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 14px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
}

.main-footer .links-widget .links-list li a:hover{

}

.main-footer .contact-widget .widget-content{
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px 20px 30px 30px;
  border-bottom: 5px solid var(--theme-color);
  padding-top: 24px;
  overflow: hidden;
}

.main-footer .contact-widget .widget-content h3{
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.10);
  padding: 21px 20px 20px 20px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.main-footer .contact-widget .widget-content h3 a{
  display: inline-block;
}

.main-footer .contact-widget .widget-content h3 a:hover{
  color: black;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0px;
}

.footer-bottom .bottom-inner p{
  position: relative;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
}

.footer-bottom .bottom-inner p a{
  display: inline-block;
}

.footer-bottom .bottom-inner p a:hover{
  text-decoration: underline;
}

.footer-bottom .bottom-inner .location-box p{
  display: inline-block;
  padding-left: 28px;
}

.footer-bottom .bottom-inner .location-box p i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
}

.main-footer .contact-widget .widget-content .image-box{
  -webkit-animation: service_hexagon_2 15s infinite linear;
  -moz-animation: service_hexagon_2 15s infinite linear;
  -o-animation: service_hexagon_2 15s infinite linear;
  animation: service_hexagon_2 15s infinite linear;
}

.main-footer.home-3{
  background: transparent;
}

.main-footer.home-3 .widget-section{
  background: #121212;
  border-radius: 0px 0px 20px 20px;
}

.main-footer .subscribe-widget .form-group{
  position: relative;
  margin-bottom: 10px;
}

.main-footer .subscribe-widget .form-group:last-child{
  margin-bottom: 0px;
}
.info-section {
  padding: 90px 40px;
  background: #f8f8f8;
}

.info-section .container {

  max-width: 1400px;

  margin: auto;

  display: flex;

  align-items: center;

  gap: 60px;
}



/* LEFT IMAGE */

.info-image {
  flex: 1;
}

.info-image img {

  width: 100%;

  border-radius: 20px;

  object-fit: cover;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}



/* RIGHT CONTENT */

.info-content {
  flex: 1;
}

.info-content h2 {

  font-size: 42px;

  color: #1f2a44;

  margin-bottom: 20px;

  font-weight: 700;
}

.info-content p {

  font-size: 18px;

  line-height: 1.8;

  color: #444;

  margin-bottom: 30px;
}
.faq-section {
  padding: 90px 20px;
  background: #f8f8f8;
}

.faq-section .container {
  max-width: 1000px;
  margin: auto;
}

.faq-section h2 {

  text-align: center;

  font-size: 42px;

  color: #1f2a44;

  margin-bottom: 50px;

  font-weight: 700;
}



/* FAQ BOX */

.faq-item {

  background: #fff;

  border-radius: 12px;

  margin-bottom: 20px;

  overflow: hidden;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}



/* QUESTION */

.faq-question {

  width: 100%;

  background: #fff;

  border: none;

  outline: none;

  padding: 24px 30px;

  font-size: 20px;

  font-weight: 600;

  color: #1f2a44;

  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;
}



/* ICON */

.faq-icon {

  font-size: 28px;

  color: #f97727;

  transition: 0.3s ease;
}



/* ANSWER */

.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;

  background: #fafafa;
}

.faq-answer p {

  padding: 0 30px 25px;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  text-align: left;
}



/* ACTIVE */

.faq-item.active .faq-answer {

  max-height: 300px;
}

.faq-item.active .faq-icon {

  transform: rotate(45deg);
}

.arrow{
  background-color: transparent !important;
}
/* POINTS */

.info-content ul {

  padding: 0;

  margin: 0;

  list-style: none;
}

.info-content ul li {

  position: relative;

  padding-left: 38px;

  margin-bottom: 22px;

  font-size: 19px;

  color: #222;

  line-height: 1.7;
}


/* RED CHECK ICON */

.info-content ul li::before {

  content: "✓";

  position: absolute;

  left: 0;

  top: 0;

  width: 24px;

  height: 24px;

  background: #f97727;

  color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  font-weight: bold;
}
.service-buttons {
  padding: 40px 20px;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.buttons-container {

  max-width: 1400px;

  margin: auto;

  display: flex;

  gap: 35px;

  justify-content: center;

  flex-wrap: wrap;
}



/* BUTTON CARD */

.service-btn {

  background: #fff;

  width: 420px;

  min-height: 110px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  gap: 22px;

  padding: 22px 25px;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.service-btn:hover {

  transform: translateY(-5px);
}



/* ICON */

.icon-box {

  width: 58px;

  height: 58px;

  background: #f97727;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 28px;

  flex-shrink: 0;
}



/* TEXT */

.service-btn h3 {

  font-size: 22px;

  color: #1f2a44;

  line-height: 1.4;

  font-weight: 700;

  margin: 0;
}



/* MOBILE */

@media(max-width:768px) {

  .service-btn {

    width: 100%;
  }

  .service-btn h3 {

    font-size: 18px;
  }

}


/* MOBILE */

@media(max-width:991px) {

  .info-section .container {

    flex-direction: column;
  }

  .info-content h2 {

    font-size: 34px;
  }

}

.main-footer .subscribe-widget .form-group input[type='text'],
.main-footer .subscribe-widget .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  padding: 10px 30px;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget .form-group input:focus{

}

.main-footer .subscribe-widget .form-group .theme-btn{
  width: 100%;
}

.main-footer.home-3 .footer-bottom .bottom-inner p{
  color: var(--text-color);
}

.main-footer .logo-widget .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  line-height: 44px;
  color: rgba(255, 255, 255, 0.80);
}

.main-footer .logo-widget .info-list li a{
  display: inline-block;
  color: rgba(255, 255, 255, 0.80);
}

.main-footer .logo-widget .info-list li a:hover{

}

.main-footer .logo-widget .info-list li i{
  font-size: 20px;
}

.main-footer .logo-widget .info-list li:nth-child(2) i{
  font-size: 16px;
}


/** rtl-css **/

.rtl .main-footer .widget-section:before{
  margin-left: 235px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .main-footer .widget-section:before{
    display: none;
  }

  .main-footer{
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (max-width: 991px){
  .main-footer .about-widget{
    max-width: 100%;
    margin-bottom: 30px;
  }

  .main-footer .logo-widget{
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px){
  .main-footer .footer-widget{
    margin: 0px 0px 30px 0px !important;
  }

  .main-footer .widget-section{
    padding: 70px 0px 40px 0px;
  }

  .footer-bottom .bottom-inner{
    display: block;
    text-align: center;
  }

  .main-footer .footer-bottom .social-links{
    justify-content: center;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}











































