.page-navigation-wrapper {
    position: relative;
    overflow: hidden;
    background: #e6eff2;
    padding: 173px 0;
  }
  
  .book1 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .book2 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .page-heading h1 {
    color: #012e4a;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    z-index: 9;
  }
  
  .custom-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .custom-navigation li {
    color: #036280;
    text-transform: capitalize;
    list-style: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
  }
  
  .custom-navigation li i {
    color: #012e4a;
    font-size: smaller;
    font-weight: bolder;
  }
  
  .custom-navigation li a {
    color: #012e4a;
    text-decoration: none;
  }
  
  .custom-navigation li a:hover {
    color: #012e4a;
    text-decoration: none;
  }
.section-padding{
    padding: 100px 0px !important;
}

/* Contact Wrapper Styles */
.contact-wrapper-new {
    width: 100%;
}

/* Left Section Styles */
.contact-left-new {
    height: 100%;
}

.contact-details {
    padding: 40px;
    background-color: #036280;
    border-radius: 16px 16px 0px 0px;
}

.contact-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item.border-none {
    border: none !important;
    padding-bottom: 0;
}

.icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dotted #fff;
    border-radius: 50%;
    font-size: 30px;
    color: #fff !important;
    transition: all 0.3s ease;
}
.icon-box .bi {
    color: #fff !important; /* Force white color for icons */
    font-size: 30px;
    display: inline-block;
}
.text-content p {
    color: #fff;
    margin-bottom: 5px;
}

.text-content h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.text-content h3 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Media Box Styles */
.media-box {
    position: relative;
}

.media-box img {
    width: 100%;
    border-radius: 0px 0px 16px 16px;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Play Button Styles */
.video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: #036280;
    background-color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-play-button i {
    font-size: 24px;
    margin-left: 4px;
}

.video-play-button::before,
.video-play-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ripple 2s infinite;
    z-index: -1;
}

.video-play-button::after {
    animation-delay: 1s;
}

/* Form Container Styles */
.contact-form-container {
    margin-left: 40px;
}

.contact-form-container h2 {
    margin-bottom: 10px;
    color: #012E4A;
}

.contact-form-container p {
    color: #4F536C;
}

.form-wrapper {
    margin-top: 30px;
}

.input-field {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.input-field span {
    color: #012E4A;
    font-weight: 600;
    text-transform: capitalize;
}

.input-field input,
.input-field textarea {
    border: 1px solid #D4DCFF;
    color: #4F536C;
    padding: 18px 20px;
    border-radius: 8px;
    outline: none;
    font-weight: 500;
    width: 100%;
    transition: border-color 0.3s ease;
}

.input-field input::placeholder,
.input-field textarea::placeholder {
    color: #4F536C;
    font-weight: 500;
}

.input-field textarea {
    min-height: 150px;
    resize: vertical;
}

.input-field input:focus,
.input-field textarea:focus {
    border-color: #036280;
}

/* Submit Button Styles */
.submit-btn {
    background-color: #036280;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-play-button:hover {
    transform: scale(1.1);
    background-color: #036280;
    color: #fff;
}

.submit-btn:hover {
    background-color: #024b61;
}

.submit-btn:hover i {
    transform: translateX(5px);
}
.map-items .googpemap iframe {
    width: 100%;
    height: 710px;
    border: 0;
}