@charset "utf-8";
* {
  padding: 0px;
  margin: 0px;
}
@font-face {
    font-family: 'BookAntiqua';
    src: url('font/bookantiqua.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: 'BookAntiqua';
}
a {
  text-decoration: none;
}

/* Header Start */
div.headerHolder {
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 3px 6px -6px black;
  z-index: 9999;
  position: fixed;
  top: 0;
}
div.headerContent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  height: 100%;
}
div.logo {
  margin-right: 40px;
}
div.logo img {
  height: 70px;
}
/* Header End */

/* Slider Start */
.swiper {
    width: 100%;
    aspect-ratio: 40 / 11;
    margin: 110px 0 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 80%;
    height: auto;   
    object-fit: contain;
}
/* Slider End */

/* Menu Start */
.mainMenu {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu > li {
  position: relative;
  height: 100%;
  z-index: 1000;
}

.menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
  background: #fff;
  color: #08519e;
  transition: background 0.2s ease;
}

.menu > li:hover > a {
  background: #272c34;
  color: #fff;
}

.hasChild > a::after,
.hasChild2 > a::after {
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.hasChild > a::after {
  content: "\f078";
}

.hasChild2 > a {
  padding-right: 22px;
}

.hasChild2 > a::after {
  content: "\f105";
  position: absolute;
  right: 8px;
  top: 10px;
  transform: none;
}

.menu > li:hover > a::after {
  transform: rotate(180deg);
}

.menu li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  max-width: 400px;
  background: #272c34;
  color: #fff;
  border: 1px solid #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transform: translateY(-15px) scaleY(0.98);
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  z-index: 900;
}

.menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
}

.menu li ul li {
  position: relative;
  border-bottom: 1px solid #000;
}

.menu li ul li:last-child {
  border-bottom: none;
}

.menu li ul li a {
  display: block;
  padding: 10px 28px 10px 14px;
  color: #fff;
  font-size: 16px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu li ul li:hover > a {
  background: #353b44;
  color: #fff;
}

.menu li ul li ul {
  position: absolute;
  top: -1px;
  left: 100%;
  min-width: 250px;
  max-width: 400px;
  background: #272c34;
  color: #fff;
  border: 1px solid #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform-origin: left;
  transform: translateX(-14px) scaleX(0.98);
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  z-index: 800;
}

.menu li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scaleX(1);
}

.menu li ul li ul li a {
  padding: 10px 12px;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu li ul li ul li:hover > a {
  background: #353b44;
  color: #fff;
}

.menu li ul li:has(.disabled-link) {
  cursor: pointer;
  padding: 10px 28px 10px 14px;
  white-space: normal;
  word-break: break-word;
}

.menu,
.menu ul,
.menu ul ul,
.menu ul ul ul,
.menu ul ul ul ul {
  list-style: none !important;
}
/* Menu End */

div.contentWrapper {
  background-color: #ffffff;
  padding-top: 130px;
  padding-bottom: 40px;
}

/* left Content Start */
div.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    margin: auto;
    gap: 30px;
}

div.leftContent {
  width: 70%;
}

div.indexContent {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px 30px;
  font-size: 15px;
  line-height: 26px;
  border: 1px solid #e6e9ef;
}

div.indexContent p {
  margin: 12px 0;
  color: #5e5e5e;
  text-align: justify;
  font-size: 16px;
}

div.indexContent p:first-of-type {
  margin-top: 20px;
}

div.indexContent p:last-child {
  margin: 0;
}

div.homeContent ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

div.indexContent ul li img {
  width: 100%;
  height: auto;
  cursor: default;
}
/* left Content End */

h1.title {
  font-size: 18px;
  color: #08519e;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
}

h2.subTitle {
  font-size: 14px;
  line-height: 18px;
  color: #08519e;
  padding: 5px 0px;
  font-weight: bold;
}

div.rightContent {
    width: 30%;
    margin-left: 0;
}

/* Latest News Scroll Start */
div.latestNews {
    width: 100%;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px 20px 10px 20px;
    font-size: 15px;
    line-height: 26px;
    border: 1px solid #e6e9ef;
}

div.latestNews ul {
    padding: 0;
    margin: 0;
}

div.latestNews ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed #acacac;
    cursor: pointer;
    transition: background-color 0.2s;
}

div.latestNews ul li:hover {
    background-color: #ececec;
}

div.latestNews ul li .icon {
    font-size: 50px;
    line-height: 1;
    flex-shrink: 0;
}

div.latestNews ul li .newsContent {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

div.latestNews ul li .newsTitle {
    color: #000d5c;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

div.latestNews ul li .date {
    color: #848484;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.allNews {
    border-top: 1px solid #e0e0e0;
    padding-top: 7px;
    text-align: center;
}

div.allNews a {
    color: #ff7200;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

div.allNews a:hover {
    color: red;
}

div.latestNews .scrollNews {
    overflow: hidden;
    height: 300px;
    position: relative;
}

div.latestNews .scrollNews ul.newsList {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

div.latestNews .scrollNews ul.newsList li.lastItem {
    border-bottom-color: red;
}

div.latestNews .scrollNews:hover ul.newsList {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
/* Latest News Scroll End */

/* Latest Reports Start */
div.latestReports {
  margin-top: 30px;
  width: 100%;
  background: #525963;
  border-radius: 10px;
  padding: 25px 20px 20px 20px;
  font-size: 15px;
  line-height: 26px;
  border: 1px solid #e6e9ef;
}

.latestReports h1.title {
    color: white;
}

div.latestReports ul {
  padding: 0;
  margin: 0;
}

div.latestReports ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed #dbdbdb;
  cursor: pointer;
  transition: background-color 0.2s;
}

div.latestReports ul li:hover {
  background-color: #464c54;
}

div.latestReports ul li .icon {
  font-size: 50px;
  line-height: 1.3;
  flex-shrink: 0;
}

div.latestReports ul li .reportContent {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

div.latestReports ul li .reportTitle {
  color: #faf9f6;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

div.latestReports ul li .reportCat {
  color: #cdcdcd;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.latestReports .scrollReports {
  overflow: hidden;
  height: 300px;
  position: relative;
}

div.latestReports .scrollReports ul.reportList {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

div.latestReports .scrollReports ul.reportList li.lastItem {
  border-bottom-color: red;
}
/* Latest Report End */

/* All News Start */
.allNews ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
  flex-direction: column;
  gap: 25px;
}

.allNews ul li {
  background: #fdfdfd;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 25px 28px;
  text-align: left;
  transition: all 0.2s ease;
  margin-bottom: 20px;
  cursor: pointer;
}

.allNews ul li:last-child {
  margin-bottom: 0;
}

.allNews ul li:hover {
  border: 1px solid #ff7200;;
}

/* News Title */
span.newsTitle {
  font-size: 16px;
  font-weight: 700;
  color: #08519e;
  display: inline-block;
}

/* News Date */
span.date {
  font-size: 14px;
  color: #808080;
  display: inline-block;
  margin-bottom: 10px;
}

/* Short News / Details */
div.shortNews {
  position: relative;
  color: #333;
  line-height: 1.6;
  font-size: 14px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.shortNews p {
  margin-bottom: 10px;
}

/* "See Attachment" placeholder */
div.shortNews .noText {
  color: #999;
  font-weight: 600;
  display: inline-block;
}

/* Breadcrumb Title */
h1.title a {
  color: #08519e;
  text-decoration: none;
  transition: color 0.2s ease;
}

h1.title a:hover {
  color: #ff7200;
}

/* Pagination Styling */
div.pagignation {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

div.pagignation ul {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
}

div.pagignation ul li {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fafafa;
  transition: all 0.2s ease;
}

div.pagignation ul li:hover {
  background: #08519e;
  border-color: #08519e;
}

div.pagignation ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

div.pagignation ul li:hover a {
  color: #fff;
}

div.pagignation ul li.active {
  background: #08519e;
}

div.pagignation ul li.active a {
  color: #fff;
}

/* Single News View Enhancements */
.allNews ul li.single-news {
   background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  cursor: text;
}

.allNews ul li.single-news li {
 pointer-events: none;
}

.allNews ul li.single-news .newsTitle {
  font-size: 26px;
  color: #000d5c;
  display: block;
  margin-bottom: 10px;
}

.allNews ul li.single-news .date {
  color: #777;
  display: block;
  font-size: 14px;
}

.allNews ul li.single-news .shortNews {
  font-size: 18x;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
  cursor: text;
}
/* All News End */

/* --------- */


/* form .singleline-input,
form .multiline-input {
  width: 220px;
  height: 19px;
  padding: 2px;
  border: 1px solid #ced1da;
}
input[type="text"],
textarea {
  border-radius: 4px;
  box-shadow: 1px 1px 1px #ccc;
} */

form span {
  color: #ff0000;
}
#submit {
  border-radius: 3px;
  border: 0px;
  background-color: #005290;
  cursor: pointer;
  margin-top: 10px;
  height: 30px;
  font-size: 14px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  padding-bottom: 3px;
  text-shadow: 0.1em 0.1em 0.05em #003d67;
  padding-left: 5px;
  padding-right: 5px;
}





/* Footer Start */
 #footer {
    background-color: #636972;
    border-top: 4px solid #5db4ec;
    color: #fff;
    padding: 20px 0 0 0;
  }

  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .footer-left {
    width: 65%;
    float: left;
  }

  .footer-right {
    width: 33%;
    float: left;
    margin-left: 2%;
  }

  .footer-title {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #5bb9c2;
  }

  .footer-title h3 {
    margin: 0 0 0 15px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
  }

  .footer-icon {
    background-color: #5bb9c2;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .contact-info,
  .quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
  }

  .contact-info {
    margin-left: 36px;
  }

  .quick-links {
    margin-left: 60px;
  }

  .contact-info li,
  .quick-links li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
  }

  .contact-info li i {
    margin-right: 5px;
    color: #5bb9c2;
    width: 20px;
    text-align: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .contact-info li.email i {
    position: relative;
    top: 1px;
  }

  .contact-info li.fax i {
    position: relative;
    top: -1px;
  }

  .contact-info li.web i {
    position: relative;
    top: 1px;
  }

  .contact-info a,
  .contact-info .text {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-info a:hover,
  .contact-info .text:hover {
    color: yellow;
  }

  .contact-info li {
    color: inherit;
  }

  .contact-info li:hover {
    color: inherit;
  }

  .contact-info li:not(:has(i)) {
    padding-left: 25px;
  }

  .quick-links li a {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
  }

  .quick-links li a:hover {
    color: yellow;
  }

  #footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    font-size: 14px;
    background: #41474f;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
  }
/* Footer End */


/* Product List Start */
.product {
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 25px 20px 20px 20px;
  background-color: #525963;
  border-radius: 10px;
  line-height: 26px;
}

.product .title {
  color: #fff;
}

.product ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.product ul li {
  background-color: #525963;
  transition: background-color 0.2s ease;
  position: relative;
  display: block;
}

.product ul li {
  border-bottom: 1px dashed #6b7280;
}

.product ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: block;
  padding: 12px 15px;
  width: 100%;
  transition: transform 0.2s ease;
}

.product ul li:hover {
  background-color: #353b44;
}

.product ul li:hover a {
  color: yellow;
  transform: translateX(5px);
}

.product ul li a.active {
  color: #ffc000;
}

.product ul li:has(a.active) {
  background-color: #353b44;
}

.product ul li.active {
  background-color: #353b44;
}
/* Product List End */


.ProductLeftContent {
  width: 30%;
}

.ProductRightContent {
  width: 70%;
}

/* Product Description Start */
.ProductRightContent .productImg {
  margin: 20px 0;
}

.ProductRightContent .productImg img {
 width: 100%;
 height: auto;
}

.ProductRightContent .productDescription {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.ProductRightContent .productDescription p {
  margin-bottom: 20px;
  text-align: justify;
}

.ProductRightContent .productPoint {
  font-weight: 600;
  color: #08519e;
  display: inline-block;
}

.ProductRightContent .productDescription span.productPoint {
  font-size: 16px;
}

.ProductRightContent .productDescription br {
  margin-bottom: 20px;
}

.ProductRightContent .productDescription ul li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 30px;
}

div.productDetails ul {
  list-style: none;
}

.ProductRightContent .productDescription ul li::before {
  content: "✔️";
  color: #08519e;
  position: absolute;
  left: 0;
  top: -1px;
}

.ProductRightContent .productDescription ul li p {
  margin: 0;
  word-wrap: break-word;
}

.ProductRightContent .productDescription .presentation {
  font-weight: 600;
  color: #08519e;
}

.ProductRightContent .productDescription .presentation + p {
  font-size: 18px;
  color: #555;
}
/* Product Description End */

/* Our Values Start */
.values-section {
  position: relative;
  overflow: hidden;
}

.values-section .indexImg {
  position: absolute;
  top: 110px;
  right: 0;
  width: 280px;
  pointer-events: none;
  z-index: 0;
}

.values-section .goalsDetails ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.values-section .goalsDetails ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #5e5e5e;
  font-weight: 500;
  font-size: 15px;
  list-style: none;
}

.values-section .goalsDetails ul li i {
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  color: #08519e;
  font-size: 18px;
  transform: translateY(25%);
}
/* Our Values End */

/* Quality Policy Start */
.quality-section {
  position: relative;
  overflow: hidden;
}

.quality-section .indexImg {
  float: right;
  width: 200px;
  margin: 20px 0 10px 20px;
}
/* Quality Policy End */

.reportImg {
  margin-top: 20px;
}

.reportImg img {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

/* ---------------- */

.modern-sitemap {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 35px 40px;
  position: relative;
}

.sitemap-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.modernSiteMap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modernSiteMap ul li {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  transition: all 0.25s ease;
  overflow: hidden;
}

.modernSiteMap ul li ul li.expandable {
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px dashed #acacac;
}

.modernSiteMap ul li.expandable.open {
  background-color: #ececec;
}

.modernSiteMap ul li ul li.expandable.open {
  background-color: #e1e1e1;
  border-top: 1px dashed #acacac;
}

.modernSiteMap ul li ul li.expandable:last-child {
  border-bottom: none;
}

.modernSiteMap ul li ul li ul li {
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px dashed #acacac;
}

.modernSiteMap ul li ul li ul li:first-child {
  border-top: 1px dashed #acacac;
}

.modernSiteMap ul li ul li ul li:last-child {
  border-bottom: none;
}

.modernSiteMap ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #08519e;
  font-weight: 600;
  padding: 12px 16px;
  font-size: 16px;
  gap: 10px;
  transition: all 0.2s ease;
  position: relative;
}

.modernSiteMap ul li a i.fa-solid {
  color: #08519e;
  flex-shrink: 0;
}

.modernSiteMap ul li:hover {
  background: #f9fcff; 
}

.modernSiteMap ul li a:hover {
  transform: translateX(5px);
}

.modernSiteMap .toggleIcon {
  margin-right: 8px;
  flex-shrink: 0;
  color: #777;
  transition: transform 0.25s ease;
  width: 16px;
  text-align: center;
}

.expandable > a .toggleIcon i {
  transition: transform 0.25s ease;
  transform: rotate(-90deg);
}

.expandable.open > a .toggleIcon i {
  transform: rotate(0deg);
}

.modernSiteMap a[href] {
  cursor: pointer;
}

.modernSiteMap .expandable > a:not([href]) {
  cursor: pointer;
}

.modernSiteMap ul li ul {
  display: none;
  padding-left: 40px;
  background: #ffffff;
}

.modernSiteMap ul li ul.show {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.modernSiteMap ul li ul li {
  border: none;
  background: #fff;
}

.modernSiteMap ul li ul li > a .toggleIcon {
  margin-right: 8px;
}

.modernSiteMap ul li ul li.expandable > a .toggleIcon i {
  transform: rotate(0deg);
}

.modernSiteMap ul li ul li.expandable.open > a .toggleIcon i {
  transform: rotate(90deg);
}

.modernSiteMap ul li ul li a {
  color: #333;
  font-weight: normal;
  padding: 8px 14px;
  font-size: 16px;
}

.modernSiteMap ul li ul li ul li a {
  line-height: 1.6;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ----------- */

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3%;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

.contact-left {
  flex: 0 0 45%;
}

.contact-right { 
  flex: 0 0 52%;
}

.others-info {
  border-radius: 10px;
  padding: 20px;
  background: #fcfcfc;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}

.others-info h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #aeaeae;
}

.others-info p {
  line-height: 1.6;
  color: #444;
  text-align: left;
}

.others-info a {
  color: #0077cc;
  text-decoration: none;
}

.others-info a:hover {
  text-decoration: underline;
}

.form-container {
  border-radius: 10px;
  padding: 20px;
  background: #fcfcfc;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 15px;
}

div.indexContent .form-container p {
  margin: 0;
}

div.indexContent p#formMessage:first-of-type {
  margin-top: 0;
}

.form-group label {
  font-size: 16px;
  color: #08519e;
  font-weight: 600;
  cursor: text;
  margin: 0;
}

.form-group input,
.form-group textarea {
  padding: 8px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid #e6e9ef;
  font-family: 'BookAntiqua';
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid #ff7200;
  outline: none;
}

textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: 'BookAntiqua';
  line-height: 1;
  border-radius: 6px;
  margin-top: 5px;
  border: none;
  background-color: #08519e;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}

.submit-btn:hover {
  transform: translateY(1px);
  background-color: #0a5cb4 !important;
}

#successOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-card {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.success-card .checkmark {
  font-size: 50px;
  color: #4bb543;
  margin-bottom: 20px;
}

.success-card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.success-card p {
  margin: 15px 0 !important;
}

.success-card button {
  padding: 6px 15px;
  background-color: crimson;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'BookAntiqua';
  transition: 0.3s;
}

.success-card button:hover {
  background-color: firebrick;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-left, .form-container {
    width: 100%;
  }

  .submit-btn {
    font-size: 18px;
    height: 35px;
  }
}

.map-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
