.elementor-178 .elementor-element.elementor-element-11f69d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:060px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-178 .elementor-element.elementor-element-314b123{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-ee38d85 *//* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: relative;
  z-index: 100;
  padding: 20px 0;
  background-color: #ffffff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 97px;
  height: 63px;
  object-fit: contain;
}

.nav-menu {
  margin-left: auto;
  margin-right: 30px;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-item a {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: color 0.3s ease;
}

.nav-item a.active, 
.nav-item a:hover {
  color: #29499d;
}

.book-now-btn button {
  background-color: #fdb715;
  color: #4054b2;
  border: 1px solid #4054b2;
  border-radius: 100px;
  padding: 14px 31px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-now-btn button:hover {
  background-color: #4054b2;
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
 
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-text {
  max-width: 630px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 600;
  color: #4054b2;
  line-height: 1.2;
  margin-bottom: 36px;
}

.hero-text p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.book-now-link {
  display: inline-block;
  padding: 8px 30px;
  background-color: transparent;
  border: 2px solid #fdb715;
  border-radius: 30px;
  color: #444444;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.book-now-link:hover {
  background-color: #fdb715;
  color: #4054b2;
}

/* Contact Info Cards */
.contact-info {
  padding: 60px 0;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.info-card {
  flex: 1;
  background-color: #fdb715;
  padding: 40px 30px;
  text-align: center;
  border-radius: 0 0 50px 0;
  height: 209px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.8px;
}

/* Contact Form Section */
.contact-form-section {
  position: relative;
  padding: 60px 0;
  background-color: #0046ff;
  margin-top: 60px;
  margin-bottom: 135px;
  padding-bottom: 325px;
}

.section-title {
  font-size: 160px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.29);
  text-align: center;
  line-height: 151px;
  margin-bottom: 40px;
}

.contact-form-container {
     display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    position: absolute;
    top: 28%;
    /* padding-bottom: 291px; */
    z-index: 99;
}

.contact-form {
  width: 60%;
  background-color: #ffffff;
  padding: 36px 73px;
  border-radius: 30px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #c8d5dc;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.6;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.submit-group {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}

.submit-btn {
  background-color: #1f51ef;
  color: #ffffff;
  border: 1px solid #467ff7;
  border-radius: 50px;
  padding: 17px 72px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #0039e6;
}

.contact-image {
  width: 40%;
  max-width: 560px;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  margin-right: auto;
    margin-left: 25%;
    display: block;
    z-index: 999999;
    position: relative;
    bottom: -53px
  
  
}
.elementor-178 .elementor-element.elementor-element-11f69d0 {
    
    margin-top: 0px;
    
}

/* Footer */
.footer {
  background: linear-gradient(90deg, rgba(255, 248, 225, 1) 0%, rgba(255, 250, 205, 1) 40%, rgba(255, 234, 191, 1) 100%);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-company,
.footer-links,
.footer-contact,
.footer-newsletter {
  flex: 1;
}

.footer-logo img {
  width: 193px;
  height: 125px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-company p,
.footer-contact p,
.footer-newsletter p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 14px;
  letter-spacing: -0.8px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #29499d;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-bottom: 2px solid #000000;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  opacity: 0.6;
}

.newsletter-form button {
  background-color: transparent;
  border: 2px solid #000000;
  border-radius: 40px;
  padding: 15px;
  margin-left: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #000000;
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: -0.8px;
}

.social-icons {
  display: flex;
  gap: 22px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 2.2px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .section-title {
    font-size: 150px;
  }
  
  .contact-form {
    padding: 30px 50px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text h1 {
    font-size: 40px;
  }
  
  .hero-text p {
    font-size: 20px;
  }
  
  .info-cards {
    flex-direction: column;
  }
  
  .info-card {
    width: 100%;
  }
  
  .section-title {
    font-size: 100px;
    line-height: normal;
  }
  
  .contact-form-container {
    flex-direction: column;
  }
  
  .contact-form,
  .contact-image {
    width: 100%;
  }
  
  .contact-image {
    margin-top: 30px;
    order: -1;
  }
  
  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-company,
  .footer-links,
  .footer-contact,
  .footer-newsletter {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-menu {
    margin: 0;
    width: 100%;
  }
  
  .nav-list {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .book-now-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 60px;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .footer-company,
  .footer-links,
  .footer-contact,
  .footer-newsletter {
    flex: 0 0 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .contact-image img {
      display:none;
  }
  
  .contact-form-section {
      
      position: relative;
        top: -106px;
                margin-right: -10px;
        margin-left: -10px;
      
  }
  
  .contact-form-container {
      
      margin:0 auto;
      left: 0px;
      padding:10px;
      
  }
  
  .submit-group {
      justify-content:center;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .book-now-link {
    font-size: 18px;
  }
  
  .info-card h3 {
    font-size: 28px;
  }
  
  .info-card p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 40px;
    position: relative;
        top: -67px;
  }
  
  .contact-form {
    /*padding: 20px;*/
    position: relative;
        bottom: 105px;
  }
  
  .submit-btn {
    padding: 15px 40px;
  }
}/* End custom CSS */