@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@font-face {
  font-family: 'AvenirRegular';
  src: url('public/styles/fonts/AvenirRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: "CalibriLight";
    src: url("fonts/CalibriLight/calibri-light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  padding: 0;
  margin: 0;
}


:root {
  --body-background: #ffffff;
  --text-color1: #004f88;
  --text-color2: #2F4F4F;
  --text-color3: #0D0D0D;
  --nav-color: #131D4F;
  --text-span: #954C2E;
  --text-white: #ffffff;

  --font-poppins: 'Poppins', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-AvenirRegular: 'AvenirRegular', sans-serif;
  --font-CalibriLight: 'CalibriLight';
  
  --primary: #284389;
  --secondary: #7295ee;
  --white: #ffffff;
  --grey: #f2f2f2;
  --black: #000000;
  --text-white: #ffffff;
  --text-black: #000000;
  --text-grey: #5c5c5c;
  --btn-not-found: #62acf3;
  --font-16: 16px;

}





img {
  width: 100%;
}

/* ========================== Hamburger Menu  CSS============================ */
/* Base styles */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

/* Close button hidden by default */
.close-btn {
  display: none !important;
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
  padding: 10px 0;
}

/* Make sure sidemenu shows normally on desktop */
#sidemenu {
  display: flex;
  gap: 20px;
}

/* ========================== Hamburger Menu end ============================ */


/* Ensure the header is positioned for dropdown */
.stickyHeader {
  position: relative;
  z-index: 1000;
}


/* ====================== Sticky Nav CSS ====================== */

/* ====================== Header ====================== */
header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}

header .row {
  width: 100%;
  max-width: 1700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  row-gap: 30px;
  column-gap: 30px;
  padding: 0 0 5px 0;
}

header .l-container a img {
  max-width: 400px;
  width: 100%;
}

/* navigation css */
header .m-container nav {
  width: 100%;
}

header .m-container nav ul li {
  display: inline-block;
  margin-right: 30px;
  list-style: none;
}

header .m-container nav ul li a {
  text-decoration: none;
  color: var(--nav-color);
  font-size: 24px;
  text-transform: none;
  font-family: var(--font-CalibriLight);
  font-weight: 500;
  text-align: center;
  transition: 0.2s;
}

header .m-container nav ul li a:hover {
  border-bottom: 3px solid var(--text-color1);
}

header .m-container nav ul li a:active {
  border-bottom: 2px solid var(--text-color1) !important;
}

#sidemenu a.active {
  border-bottom: 3px solid var(--text-color1);
  color: var(--text-color1);
  transition: 0.1s ease-in-out;
}

/* end */

/* icon container */
header .r-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  row-gap: 30px;
  column-gap: 30px;
  margin-right: 10px;
}

header .r-container img {
  transition: 0.5s;
}

header .r-container img:hover {
  transform: scale(1.08);
}

header nav ul li.dropdown {
  position: relative;
}

header nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: auto;
  z-index: 1000;
  text-align: left;
}

header nav ul li.dropdown:hover .dropdown-content,
header nav ul li.active-dropdown .dropdown-content {
  display: block;
}

header nav ul li .dropdown-content li a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  text-align: left;
  background: none;
  white-space: nowrap;
  padding: 5px 0 0 0px;
  font-size: 19px;
}

header nav ul li .dropdown-content li a:hover {
  color: #000;
  background: none;
}

/* Active nav underline animation */
header .m-container nav ul li a.active {
  position: relative;
  color: #004f88;
  transition: 0.1s ease-in-out;
}

/* Animated underline */
/* header .m-container nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--text-color1);
  animation: underlineSlide 0.3s ease-in-out;
} */

@keyframes underlineSlide {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Optional: Make parent visually different too */
header nav ul li.active-dropdown>a {
  color: var(--text-color1);
  font-weight: bold;
}


@media screen and (max-width:900px){
    header nav ul li .dropdown-content{
        position: relative !important;
        text-align: center !important;
        margin-top: 10px;
    }
    header .m-container nav ul li{
        margin-right: 0 !important;
        width: 100%;
    }
    header nav ul li .dropdown-content li a{
        text-align: center;
    }
}

/* end */
/* ============================================ */

/* ====================== Footer ====================== */
#footer {
  background-color: #004f88;
  color: #fff;
  font-family: var(--font-CalibriLight);
  width: 100%;
}

#footer .footer-wrapper {
  background: url('../images/IMG/worldmap.png') right no-repeat;
  margin-right: 250px;
}

#footer .footer-wrapper img {
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
}

#footer .footer-row {
  width: 100%;
  max-width: 1600px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  padding: 70px 20px 5px;
  margin: 5px auto;
  column-gap: 100px;
}

/* 
#footer .footer-column {
  flex: 1 1 300px;
  min-width: 400px;
} */

#footer .services h1 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
 font-family: var(--font-CalibriLight);
}

#footer .services p {
  font-size: 17px;
  line-height: 2;
  font-family: var(--font-CalibriLight);
}

#footer .footer-branding p {
  margin-top: -30px;
  text-align: left;
  font-family: var(--font-CalibriLight);
}

#footer .copyright {
  background: #ffffff;
  padding: 10px;
}

#footer .copyright p {
  font-size: 12px;
  text-align: center;
  color: #004f88;
  font-family: var(--font-CalibriLight);
  font-weight: 600;
}

#footer .pages h1 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 48px;
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#footer .contact-info {
  margin: 30px 0 0;
}

#footer .contact-info h1 {
  font-size: 17px;
  margin-bottom: unset;
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#footer .pages ul {
  list-style: none;
  padding-left: 0;
}

#footer .pages li {
  margin-bottom: 10px;
}

#footer .pages a {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-family: var(--font-CalibriLight);
}

#footer .pages a:hover {
  color: #e0f7ff;
  text-decoration: underline;
}

#footer .contact {
  text-align: left;
}

#footer .contact .contact-info p,
#footer .contact .contact-info a {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  text-decoration: none;
  font-family: var(--font-CalibriLight);
}

#footer .contact .contact-info a:hover {
  color: #e0f7ff;
  text-decoration: underline;
}

#footer .contact-map {
  display: block;
  width: auto;
  margin-left: 330px;
  margin-top: -5px;
}

#footer .footer-branding img {
  width: 100%;
  max-width: 150px;
  display: block;
  margin-bottom: 10px;
}

#footer .footer-r-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 15px;
    padding: 0 0 30px 45px;
}

#footer .footer-r-container a img {
    width: 100%;
    max-width: 35px;
}

/* ============================================ */
/* ===================== RIGHT TOOL STYLES ===================== */
#right-tool {
  position: fixed;
  bottom: 100px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 9999;
  font-family: var(--font-CalibriLight);
}

#right-tool .right-tool-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#right-tool a,
#right-tool button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #004080;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 64, 128, 0.15);
}

#right-tool a:hover,
#right-tool button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 64, 128, 0.25);
}

#right-tool .right-tool-tooltip {
  position: absolute;
  right: 60px;
  background-color: #e9f4ff;
  color: #004080;
  padding: 5px 12px;
  border: 1px solid #cce5ff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 10001;
}

#right-tool .right-tool-button:hover .right-tool-tooltip {
  opacity: 1;
  transform: translateX(0);
}

#right-tool img {
  width: 100%;
  min-width: 35px;
  max-width: 35px;
  height: 100%;
  min-height: 35px;
  max-height: 35px;
  object-fit: contain;
}

/* Chatbot Container */
#right-tool #right-tool-chatbot-box {
  position: fixed;
  bottom: 80px;
  right: 100px;
  width: 320px;
  max-height: 500px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 64, 128, 0.25);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 9998;
  font-family: var(--font-CalibriLight);
}

/* Header */
#right-tool .chat-header {
  background-color: #004080;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-CalibriLight);
}

/* Chat Area */
#right-tool .chat-body {
  padding: 14px;
  height: 500px;
  overflow-y: auto;
  background: #f4f9ff;
}

/* Chat Messages */
#right-tool .chat-message {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  font-family: var(--font-CalibriLight);
}

#right-tool .chat-message.bot {
  color: #004080;
  background: #e4f1ff;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 90%;
  font-family: var(--font-CalibriLight);
}

#right-tool .chat-message.user {
  text-align: right;
  color: #fff;
  background: #004080;
  padding: 5px 10px;
  border-radius: 10px;
  margin-left: auto;
  max-width: 90%;
  font-family: var(--font-CalibriLight);
}

/* Input Area */
#right-tool .chat-input {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

#right-tool .chat-input input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #004f88;
  font-size: 14px;
  outline: none;
  margin-right: 8px;
}

/* Stylized Send Button */
#right-tool .chat-input button {
  background-color: #004f88;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#right-tool .chat-input button:hover {
  background-color: #0066cc;
  transform: translateY(-5px);
}


/* Style for Close Button inside the Chat Header */
#right-tool-chatbot-box .chat-close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
}

#right-tool-chatbot-box .chat-close-btn:hover {
  color: white;
}

#right-tool-chatbot-box .chat-header {
  position: relative;
}


/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px !important;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: #999;
  border-radius: 50%;
  display: inline-block;
  animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}


/*=================== Responsive BreakPoints CSS ===========================*/
@media (max-width: 2030px) {

  #footer .footer-r-container {
    padding: 0 0 30px 60px;
    }
}

@media (max-width: 1820px) {
  header {
    padding: 0 10px;
  }

  header .row {
    margin-right: 25px;
    row-gap: 20px;
    column-gap: 20px;
  }

  #footer .contact-map {
    margin-left: 270px;
    margin-top: -5px;
    height: 300px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
  }

  #footer .footer-r-container {
    padding: 0 0 30px 25px;
}
}

/* ============================================ */
@media (max-width: 1670px) {
  #footer .contact-map {
    margin-left: 300px;
    margin-top: -5px;
    height: 250px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
  }
}

/* ============================================ */
@media (max-width: 1600px) {
  header .row {
    flex-direction: column;
    row-gap: 1px;
    column-gap: 20px;
    padding: 0 0 80px 0;
  }

  #footer .contact-map {
    margin-left: -30px;
    margin-top: -5px;
    height: 250px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
  }

}

/* ============================================ */
@media (max-width: 1490px) {
  header .m-container nav ul li {
    margin-right: 15px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }
}

/* ============================================ */
@media (max-width: 1388px) {
  header .row {
    row-gap: 10px;
    column-gap: 10px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }
}

/* ============================================ */
@media (max-width: 1365px) {
  header .row {
    flex-direction: column;
    row-gap: 1px;
    column-gap: 20px;
    padding: 0 0 80px 0;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }
}

/* ============================================ */
@media screen and (max-width: 900px) {

  /* hamburger menu */
  .hamburger {
    display: block;
  }

  #sidemenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    /* Adjust based on header height */
    right: 0;
    background-color: white;
    width: 100%;
    padding: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  #sidemenu.active {
    display: flex;
  }

  .close-btn {
    display: block !important;
  }

  .close-btn {
    text-align: right;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }

  /* end */
  header nav ul li .dropdown-content {
    min-width: 100%;
    width: 100%;
    text-align: center;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }

}

/* Dropdown hidden by default */
header nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: auto;
  z-index: 1000;
  text-align: left;
}

/* Show dropdown on hover OR if it's active (automatically opened by JS) */
header nav ul li.dropdown:hover .dropdown-content,
header nav ul li.active-dropdown .dropdown-content {
  display: block;
}

/* Highlight active direct link */
header .m-container nav ul li a.active {
  position: relative;
  color: var(--text-color1);
  border-bottom: 4px solid var(--text-color1);
  transition: 0.1s ease-in-out;
}

/* Style the parent menu when one of its child links is active */
header nav ul li.active-dropdown > a {
  color: var(--text-color1);
  font-weight: bold;
}

/* ============================================ */
@media (max-width: 810px) {
  footer .t-container nav ul li {
    margin-right: 15px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }
}

/* ============================================ */
@media (max-width: 768px) {
  .world-map {
    width: 1500px;
    transform: translateX(-30%);
    background-size: cover;
    opacity: 0.08;
  }

  .contact-info {
    text-align: left;
    margin-top: 40px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }
}

/* ============================================ */
@media (max-width: 720px) {
  footer .t-container nav {
    display: none;
  }

  footer {
    padding: 30px 10px;
  }

  footer .footer-content {
    row-gap: 0px;
    column-gap: 0px;
  }

  #footer .footer-wrapper {
    background: url('../images/IMG/worldmap.png') right no-repeat;
    margin-right: auto;
  }
}

/* End Header Style */


/* ===================== loader CSS==================== */
body.no-scroll {
  overflow: hidden;
}

#loader-con {
  background: var(--body-background);
  height: auto;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
  position: absolute;
  top: 0;
  content: '';
}

.jimu-primary-loading:before {
  left: -19.992px;
}

.jimu-primary-loading:after {
  left: 19.992px;
  -webkit-animation-delay: 0.32s !important;
  animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
  background: #076fe5;
  -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  width: 13.6px;
  height: 32px;
}

.jimu-primary-loading {
  text-indent: -9999em;
  margin: auto;
  position: absolute;
  right: calc(50% - 6.8px);
  top: calc(50% - 16px);
  -webkit-animation-delay: 0.16s !important;
  animation-delay: 0.16s !important;
}

@-webkit-keyframes loading-keys-app-loading {

  0%,
  80%,
  100% {
    opacity: .75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}

@keyframes loading-keys-app-loading {

  0%,
  80%,
  100% {
    opacity: .75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}

/* ===================== loader CSS==================== */

/* ===================== cookieConsent CSS==================== */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5) !important;
  color: #fff;
  padding: 15px 20px;
  display: none;
  z-index: 10000;
  text-align: center;
}

.cookie-message {
  max-width: 800px;
  margin: 0 auto;
}

#cookieConsent button {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin-left: 15px;
  cursor: pointer;
  border-radius: 4px;
}

/* ===================== cookieConsent CSS==================== */

/* ===================== Banner CSS==================== */
#main-banner {
  background-image: url('../images/IMG/banner2-bg.png');
  background-size: 1800px;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 90px;
}

#main-banner .row {
  width: 100%;
  max-width: 1230px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}


#main-banner h1 {
  font-size: 32px;
  color: var(--text-white);
  font-family: var(--font-CalibriLight);
  text-align: left;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
  width: 100%;
  line-height: 2;
}

#main-banner p {
  line-height: 1.6;
  font-size: 20px;
  color: var(--text-white);
  font-family: var(--font-CalibriLight);
  text-align: left;
  padding-bottom: 15px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}



/* From Uiverse.io by TISEPSE */
#main-banner a {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid #fefefe;
  color: #fefefe;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}

/* #main-banner a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: #004f88;
    transition: 0.3s ease-in-out;
    transform: scaleY(1);
}

#main-banner a:hover::before {
    transform: scaleY(0);
}

#main-banner a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: #004f88;
    transition: 0.3s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.5s;
}

#main-banner a:hover::after {
    transform: scaleX(0);
} */

#main-banner a span {
  position: relative;
  font-family: var(--font-CalibriLight);
  z-index: 3;
}

#main-banner button {
  background-color: none;
  text-decoration: none;
  background-color: #004f88;
  border: none;
}



#banner-vid-home {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#banner-vid-home .row {
  width: 100%;
  max-width: 1800px;

  background-color: rgba(0,0,0,0.2);

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;

  padding: 200px 0 200px 275px;
}
#banner-vid-home .background-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  
  z-index: -1;
}
#banner-vid-home .background-clip video 

@media (min-aspect-ratio: 16/9) {
    banner-vid-home .background-clip {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
   banner-vid-home .background-clip { 
        width:auto;
        height: 100%;
    }
}

#banner-vid-home a span {
  position: relative;
  font-family: var(--font-CalibriLight);
  z-index: 3;
}

#banner-vid-home button {
  background-color: none;
  text-decoration: none;
  background-color: #004f88;
  border: none;
}
#banner-vid-home h1 {
  font-size: 30px;
  color: var(--text-white);
  font-family: var(--font-CalibriLight);
  text-align: left;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
  width: 100%;
  line-height: 2;
}

#banner-vid-home p {
  line-height: 1.6;
  font-size: 25px;
  color: var(--text-white);
  font-family: var(--font-CalibriLight);
  text-align: left;
  padding-bottom: 15px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}
#banner-vid-home a {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid #fefefe;
  color: #fefefe;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
/* ========================================= */

  #home-hero-swiper {
    width: 100%;
    height: 600px;
    max-width: 1800px;
  }

  #home-hero-swiper .swiper-slide {   
    background-size: contain;
    object-fit: fill;
    background-repeat: no-repeat;
    background-position: center;
  }
  /*#home-hero-swiper .banner-slide-2 {*/
  /*  background-image: url('../images/IMG/imgbannerslider2.jpg');*/
  /*}*/
  
/* ===================== Home 1 CSS==================== */
#home {
  width: 100%;
  min-height: 500px;
  padding: 0 10px 30px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

#home .row {
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row-reverse;
  column-gap: 20px;
}

#home .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#home .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#home .l-container p {
  line-height: 1.5;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#home .l-container ul li {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
  margin-left: 40px;
}

#home .r-container img {
  display: flex;
  width: 100%;
  min-width: 600px;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
}

/* #home .r-container img:hover {
    transform: scale(1.03);
} */
/* ========================================= */
/* ========================================= */
#home-1 {
  width: 100%;
  min-height: 400px;
  padding: 0 10px 30px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

#home-1 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row;
  column-gap: 20px;
}

#home-1 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#home-1 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#home-1 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#home-1 .r-container img {
  display: flex;
  width: 100%;
  min-width: 600px;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;

  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
}

/* #home-1 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Home 2 CSS==================== */
#home-2 {
  width: 100%;
  min-height: 400px;
  padding: 0 10px 30px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

#home-2 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row-reverse;
  column-gap: 20px;
}

#home-2 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#home-2 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#home-2 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#home-2 .r-container img {
  display: flex;
  width: 100%;
  min-width: 600px;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;

  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
}

/* #home-2 .r-container img:hover {
    transform: scale(1.03);
} */
/* ========================================= */
/* ===================== Home 3 CSS==================== */
#home-3 {
  width: 100%;
  min-height: 400px;
  padding: 0 10px 30px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

#home-3 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row;
  column-gap: 20px;
}

#home-3 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#home-3 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#home-3 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#home-3 .l-container ul li {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
  margin-left: 40px;
}


#home-3 .r-container img {
  display: flex;
  width: 100%;
  min-width: 600px;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;

  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
}

/* #home-3 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Home 4 CSS==================== */
#home-4 {
  width: 100%;
  min-height: 400px;
  padding: 0 10px 30px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

#home-4 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row-reverse;
  column-gap: 20px;
}

#home-4 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#home-4 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#home-4 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#home-4 .l-container ul li {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
  margin-left: 40px;
}

#home-4 .r-container img {
  display: flex;
  width: 100%;
  min-width: 600px;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;

  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
}

/* #home-4 .r-container img:hover {
    transform: scale(1.03);
} */
/* ===================== Services 1 ==================== */
#services-1 {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#services-1 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row;
  column-gap: 20px;
}

#services-1 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#services-1 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
    font-family: var(--font-CalibriLight);
}

#services-1 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
    font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#services-1 .l-container ul li {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
    font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
  margin-left: 40px;
}

#services-1 .r-container img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  border-radius: 10px;
}

/* #services-1 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Services 2 ==================== */

#services-2 {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#services-2 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-right: 300px;
  margin-left: 300px;
  gap: 30px;
  padding: 70px 20px 50px;
}

#services-2 .l-container,
#services-2 .r-container {
  text-align: center;
  width: 100%;
}

#services-2 h3 {
  padding-top: 5px;
    font-family: var(--font-CalibriLight);
  font-size: 32px;
  text-align: center;
  margin: 5px 0 0;
  color: var(--text-color1);
}

#services-2 .l-container p,
#services-2 .r-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  text-align: center;
  padding: 10px 15px 10px 1px;
}

#services-2 .container img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  border-radius: 10px;
}

/* #services-2 .container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Services 3 ==================== */
#services-3 {
  background-color: #ffffff;
  color: #004f88;
  padding: 20px 0px 40px;
  text-align: center;
  font-family: var(--font-CalibriLight);
}

#services-3 .subscribe-container {
  max-width: 800px;
  margin: 0 auto;
}

#services-3 .subscribe-container h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 2;
  color: var(--text-color1);
}

#services-3 .subscribe-container p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-color2);
}

#services-3 .subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

#services-3 .subscribe-form input[type="email"] {
  padding: 10px;
  width: 250px;
  border: none;
  border-bottom: 1px solid #004f88;
  background: transparent;
  color: #004f88;
  font-size: 16px;
  outline: none;
}

#services-3 .subscribe-form input::placeholder {
  color: #004f88;
}

#services-3 .subscribe-form button {
  padding: 10px 20px;
  background-color: #004f88;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
}

#services-3 .subscribe-form button:hover {
  background-color: #e1e1e1;
}

/* ========================================= */

/* ===================== Services 2 ==================== */
#services2-1 {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#services2-1 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  flex-direction: row;
  column-gap: 20px;
}

#services2-1 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#services2-1 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#services2-1 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-top: 10px;
}

#services2-1 .l-container ul li {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
  margin-left: 40px;
}

#services2-1 .r-container img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  border-radius: 10px;
}

/* #services2-1 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Services 2 ==================== */

#services2-2 {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#services2-2 .row {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-right: 300px;
  margin-left: 300px;
  gap: 30px;
  padding: 70px 20px 50px;
}

#services2-2 .l-container,
#services2-2 .r-container {
  text-align: center;
  width: 100%;
}

#services2-2 h3 {
  padding-top: 5px;
  font-family: var(--font-CalibriLight);
  font-size: 32px;
  text-align: center;
  margin: 5px 0 0;
  color: var(--text-color1);
}

#services2-2 .l-container p,
#services2-2 .r-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  text-align: center;
  padding: 10px 15px 10px 1px;
}

#services2-2 .container img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  border-radius: 10px;
}

/* #services2-2 .container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Services 3 ==================== */
#services2-3 {
  background-color: #ffffff;
  color: #004f88;
  padding: 20px 0px 40px;
  text-align: center;
  font-family: var(--font-CalibriLight);
}

#services2-3 .subscribe-container {
  max-width: 800px;
  margin: 0 auto;
}

#services2-3 .subscribe-container h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 2;
  color: var(--text-color1);
}

#services2-3 .subscribe-container p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-color2);
}

#services2-3 .subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

#services2-3 .subscribe-form input[type="email"] {
  padding: 10px;
  width: 250px;
  border: none;
  border-bottom: 1px solid #004f88;
  background: transparent;
  color: #004f88;
  font-size: 16px;
  outline: none;
}

#services2-3 .subscribe-form input::placeholder {
  color: #004f88;
}

#services2-3 .subscribe-form button {
  padding: 10px 20px;
  background-color: #004f88;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
}

#services2-3 .subscribe-form button:hover {
  background-color: #e1e1e1;
}

/* ========================================= */

/* ===================== About ==================== */
#about-banner {
  width: 100%;
  min-height: 50px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0 0;
}

#about-banner .row {
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}

#about-banner .about-title {
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  width: 100%;
  text-align: center;
}

#about-banner .about-title h1 {
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

/* ========================================= */
/* ===================== About-1 ==================== */
#about-video .content-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
}

#about-video {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-video .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#about-video .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
  margin-bottom: 50px;
}

#about-video .l-container h1 {
  line-height: 2;
  font-size: 45px;
  color: var(--text-color1);
  font-weight: 700;
  font-family: var(--font-CalibriLight);
}

#about-video .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 15px;
}

#about-video .r-container {
  width: 100%;
  max-width: 700px;
  background-color: #ffffff;
  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-video .r-container img {
  width: 100%;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  max-height: 500px;

  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.28);
}

#about-video .r-container img:hover {
  transform: scale(1.03);
}

/* ========================================= */
/* ===================== About-1 ==================== */
#about-1 {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-1 .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#about-1 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 10px;

  width: 100%;
  max-width: 800px;
}

#about-1 .l-container ul {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
}

#about-1 .l-container ul li {
  margin-left: 40px;
}

#about-1 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#about-1 .l-container h2 {
  line-height: 2;
  font-size: 24px;
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
}

#about-1 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
}

#about-1 .r-container {
  width: 100%;
  max-width: 700px;

  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-1 .r-container img {
  width: 100%;
  max-width: 1000px;
  transition: 0.5s;
  height: 100%;
  max-height: 500px;
}

/* #about-1 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== About-2 ==================== */
#about-2 {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-2 .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#about-2 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 10px;

  width: 100%;
  max-width: 800px;
}

#about-2 .l-container ul {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
}

#about-2 .l-container ul li {
  margin-left: 40px;
  font-size: 16px;
}

#about-2 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#about-2 .l-container h2 {
  line-height: 2;
  font-size: 24px;
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
}

#about-2 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
}

#about-2 .r-container {
  width: 100%;
  max-width: 700px;

  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-2 .r-container img {
  width: 100%;
  max-width: 1000px;
  transition: 0.5s;
  height: 100%;
  max-height: 500px;
}

/* #about-2 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== About-3 ==================== */
#about-3 {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-3 .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#about-3 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 10px;

  width: 100%;
  max-width: 800px;
}

#about-3 .l-container ul {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
}

#about-3 .l-container ul li {
  margin-left: 40px;
  font-size: 16px;
}

#about-3 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#about-3 .l-container h2 {
  line-height: 2;
  font-size: 24px;
  color: var(--text-color2);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#about-3 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
}

#about-3 .r-container {
  width: 100%;
  max-width: 700px;

  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-3 .r-container img {
  width: 100%;
  max-width: 1000px;
  transition: 0.5s;
  height: 100%;
  max-height: 500px;
}

/* #about-3 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== About-4 ==================== */
#about-4 {
  width: 100%;
  min-height: 500px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-4 .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#about-4 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 10px;

  width: 100%;
  max-width: 800px;
}

#about-4 .l-container ul {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  padding-bottom: 5px;
}

#about-4 .l-container ul li {
  margin-left: 40px;
  font-size: 16px;
}

#about-4 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#about-4 .l-container h2 {
  line-height: 2;
  font-size: 24px;
  color: var(--text-color2);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#about-4 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
}

#about-4 .r-container {
  width: 100%;
  max-width: 700px;

  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-4 .r-container img {
  width: 100%;
  max-width: 1000px;
  transition: 0.5s;
  height: 100%;
  max-height: 500px;
}

/* #about-4 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== About 5==================== */
#about-5 .collapsible {
  background-color: #f2f2f2;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 13px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
}

#about-5 .active,
.collapsible:hover {
  background-color: #f2f2f2;
}

#about-5 .content {
  display: none;
  overflow: hidden;
  background-color: #f2f2f2;
}

#about-5 {
  width: 100%;
  min-height: 400px;
  padding: 0 10px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#about-5 .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#about-5 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#about-5 .l-container h1 {
  line-height: 2;
  font-size: 45px;
  color: var(--text-color1);
  font-weight: 700;
  font-family: var(--font-CalibriLight);
}

#about-5 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
}

#about-5 .r-container {
  width: 100%;
  max-width: 700px;

  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-5 .r-container img {
  width: 100%;
  max-width: 600px;
  transition: 0.5s;
  height: 100%;
  max-height: 500px;
}

/* #about-5 .r-container img:hover {
    transform: scale(1.03);
} */

/* ========================================= */
/* ===================== Job Opportunities ==================== */
#JO-1 {
  width: 100%;
  min-height: 400px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#JO-1 .row {
  width: 100%;
  max-width: 1600px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  row-gap: 1px;
  column-gap: 20px;
  padding: 0 10px;
}

#JO-1 .l-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 1px;
  column-gap: 20px;

  width: 100%;
  max-width: 800px;
}

#JO-1 .l-container h1 {
  line-height: 2;
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#JO-1 .l-container p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  font-family: var(--font-CalibriLight);
}

#JO-1 .r-container {
  width: 100%;
  max-width: 700px;
  padding: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ========================================= */
/*===================== Jobs Offer =========================*/

#JobFilter {
  box-sizing: border-box;
  margin: 0;
  font-family: var(--font-CalibriLight);
  background: #fff;
}

#JobFilter .filter-buttons {
  text-align: center;
  margin-bottom: 20px;
}

#JobFilter .filter-buttons button {
  background: #f3f3f3;
  border: none;
  padding: 15px 30px;
  margin: 10px;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;

}

#JobFilter .filter-buttons button.active,
#JobFilter .filter-buttons button:hover {
  background: #004f88;
  color: #fff;
}

#JobFilter .property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px
}

#JobFilter .property-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  font-family: var(--font-CalibriLight);
}

#JobFilter .card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  justify-content: space-between;
}

#JobFilter .location {
  background: #004f88;
  color: white;
  padding: 4px 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  font-family: var(--font-CalibriLight);
}

#JobFilter .job-position {
  font-weight: bold;
  color: var(--text-color1);
  margin: 3px 0;
  font-size: 16px;
  font-family: var(--font-CalibriLight);
}

#JobFilter h4 {
  font-size: 16px;
  margin-bottom: 30px;
  margin-left: 2px;
  color: var(--text-color2);
  font-family: var(--font-CalibriLight);
}

#JobFilter .details {
  font-size: 0.9em;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  flex-grow: 1;
  font-family: var(--font-CalibriLight);
}

#JobFilter .btn-wrap {
  text-align: center;
  margin-top: auto;
}

#JobFilter .apply-btn {
  background: #004f88;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  font-family: var(--font-CalibriLight);
}

#JobFilter .apply-btn.disabled {
  pointer-events: none;   /* disables clicking */
  opacity: 0.5;           /* greyed out */
  cursor: not-allowed;
}


#JobFilter .apply-btn:hover {
  background: #0056b3;
  font-family: var(--font-CalibriLight);
}

#JobFilter .pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

#JobFilter .pagination .circle {
  background: #f3f3f3;
  border: none;
  padding: 8px 12px;
  margin: 0 4px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

#JobFilter .pagination .circle.active,
#JobFilter .pagination .circle:hover {
  background: #004f88;
  color: #fff;
}
/* =================== JOBS Modal Section ====================== */
/* FIXED: use lowercase #appModal to match the ID */
#appModal.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* scroll if modal is too tall */
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 0;
  font-family: var(--font-CalibriLight);
  /* top spacing for modal */
}

#appModal .modal-content {
  background-color: #fff;
  margin: 0 auto;
  /* center horizontally only */
  padding: 30px 40px;
  border-radius: 20px;
  width: 80%;
  max-width: 800px;
  position: relative;

  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-family: var(--font-CalibriLight);
}

#appModal h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  padding: 0;
  margin: 0;
  font-size: 13px;
}

#appModal .modal-content h4 {
  padding: 15px 0 0 0;
  font-family: var(--font-CalibriLight);
}

#appModal .close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

#appModal .close:hover {
  color: #000;
}

#appModal form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 1px;
  margin-top: 20px;
}

#appModal label {
  width: 100%;
  font-weight: bold;
  margin-bottom: 5px;
}

#appModal input[type="text"],
#appModal input[type="email"],
#appModal input[type="file"],
#appModal input[type="number"],
#appModal textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #01477a;
  ;
  border-radius: 5px;
  resize: vertical;
}

#appModal .form-group {
  flex: 1 1 45%;
  margin-bottom: 10px;
}

#appModal .full-width {
  flex: 1 1 100%;
  margin-bottom: 15px;
}

#appModal button[type="submit"] {
  padding: 12px 24px;
  margin-top: 15px;
  background-color: #01477a;
  ;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#appModal button[type="submit"]:hover {
  background-color: #0056b3;
}

/* ========================================= */
/* ===========================PARALLAX SECTION JO============================*/
#JobParallax .parallax {
  background-image: url('../images/IMG/parallax1.jpg');
  min-height: 60vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 94.6%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 70px 20px;
  font-family: var(--font-CalibriLight);
}

#ContactParallax .parallax {
  background-image: url('../images/IMG/parallax1.jpg');
  min-height: 60vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 94.6%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 70px 20px;
  font-family: var(--font-CalibriLight);
}

/* ===================== Job Opportunities 2  ==================== */
/* ========================================= */

#JobContactUs .job-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  align-items: flex-start;
  box-sizing: border-box;
  font-family: var(--font-CalibriLight);
}

#JobContactUs .job-contact-left,
#JobContactUs .job-contact-right {
  flex: 1 1 48%;
  color: #000;
}

#JobContactUs .job-contact-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
}

#JobContactUs .job-contact-left p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-color2);
  font-family: var(--font-CalibriLight);
}

#JobContactUs .job-contact-right h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
  text-shadow: 1px 1px 5px white;
}

#JobContactUs .job-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#JobContactUs .job-contact-form input[type="text"],
#JobContactUs .job-contact-form input[type="tel"],
#JobContactUs .job-contact-form input[type="email"],
#JobContactUs .job-contact-form textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 1em;
}

#JobContactUs .job-contact-form textarea {
  border: 1px solid #ccc;
  resize: vertical;
}

#JobContactUs .attachment-section {
  display: flex;
  justify-content: space-between;
  font-size: 0.95em;
  align-items: center;
}

#JobContactUs .file-label {
  font-size: 16px;
  cursor: pointer;
  color: #004f88;
  position: relative;
  font-family: var(--font-CalibriLight);
  text-shadow: 1px 1px 5px white;
}

#JobContactUs .file-label input[type="file"] {
  display: none;
}

#JobContactUs .file-count {
  color: var(--text-color2);
  text-shadow: 1px 1px 5px white;
  font-size: 16px;
  font-family: var(--font-CalibriLight);
}

#JobContactUs .job-contact-form button {
  padding: 12px;
  background: #004f88;
  color: white;
  border: none;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}

#JobContactUs .disclaimer {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
  color: var(--text-color2);
  font-family: var(--font-CalibriLight);
  text-shadow: 1px 1px 5px white;
}

#JobContactUs .disclaimer a {
  color: #000;
  text-decoration: underline;
}

/*==============================================*/
/*=================== Contact Us CSS ===========================*/

#Contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: auto;
  gap: 80px;
  font-family: var(--font-CalibriLight);
}

#Contact .contact-left,
#Contact .contact-right {
  flex: 1;
  min-width: 300px;
  margin: 10px;
}

#Contact .contact-left {
  padding: 50px;
  border-radius: 10px;
  background: rgba(0, 64, 128, 0.7);
}

#Contact .contact-left h2 {
  font-family: var(--font-CalibriLight);
  font-size: 41px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ffffff;
}

#Contact .contact-left p {
  line-height: 2;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-CalibriLight);
  margin-bottom: 20px;
}

#Contact form input,
#Contact form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  font-size: 14px;
  background: transparent;
}


#Contact form textarea {
  height: 120px;
  resize: vertical;
}

#Contact input::placeholder,
#Contact textarea::placeholder {
  color: #fff;
}

#Contact .send-btn {
  width: 100%;
  padding: 12px;
  background-color: #004080;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#Contact .captcha-notice {
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}

#Contact .captcha-notice a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}


#Contact .contact-right a {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
  font-size: 20px;
}

#Contact .contact-right p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
  font-size: 20px;
}

#Contact .contact-right h3 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
}

#Contact .contact-right h4 {
  font-size: 16px;
  margin-top: 20px;
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
}

#Contact .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #2e3f44;
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0px 10px 0px 0px;
  border-radius: 5px;
  max-width: fit-content;
  white-space: nowrap;
  line-height: 2;
  margin-top: 10px;
}

#Contact .whatsapp-btn img {
  height: 50px;
  width: 60px;
  object-fit: contain;
  display: inline-block;
}

/* ================= Text Shadow ======================== */

#Contact .contact-right p {
  line-height: 2;
  font-size: 18px;
  color: var(--text-color2);
  font-weight: 600;
  font-family: var(--font-CalibriLight);
  text-shadow: 1px 1px 5px white;
}

#Contact .contact-right h3,
#Contact .contact-right h4 {
  color: var(--text-color1);
  font-family: var(--font-CalibriLight);
  text-shadow: 1px 1px 5px white;
}

#Contact .contact-right h3 {
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 10px;
}

#Contact .contact-right h4 {
  font-size: 25px;
  margin-top: 20px;
}

/* ========================================= */
/*================= Blog ======================*/
#BlogSwiper {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #01487a;
  font-family: var(--font-CalibriLight);
  color: #fff;
}

div#customPagination {
    display: block !important;
}

#BlogSwiper img {
  max-width: unset;
}

#BlogSwiper {
  width: 100%;
}

#BlogSwiper .swiper {
  width: 100%;
}

#BlogSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#BlogSwiper .swiper-slide a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

#BlogSwiper .mySwiper2 {
  height: 80vh;
}

#BlogSwiper .mySwiper {
  height: 20vh;
  box-sizing: border-box;
  padding: 10px 0;
}

#BlogSwiper .mySwiper .swiper-slide {
  width: 25%;
  opacity: 0.4;
  cursor: pointer;
}

#BlogSwiper .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

#BlogSwiper .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

#BlogSwiper .swiper-slide img {
  max-width: 1200px;
  margin: 0 auto;
}

#BlogSwiper .slide-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: var(--font-CalibriLight);
}

#BlogSwiper .slide-content p {
  margin: 5px 0;
  font-size: 24px;
  font-family: var(--font-CalibriLight);
}

#Blog .pagination-container {
  text-align: center;
  padding: 20px;
}

#Blog .pagination a {
  color: white;
  background: #222;
  padding: 8px 12px;
  margin: 3px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: background 0.3s ease;
  cursor: pointer;
}

#Blog .pagination a:hover {
  background: #007bff;
}

#Blog .pagination a.active {
  background: #007bff;
  font-weight: bold;
}

#BlogSwiper .swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
}

/* ========================================= */
/* ===================== Studio R CSS==================== */
#studio-r-content {
  --color-primary: #0a192f;
  --color-secondary: #f4a261;
  --color-accent: #e76f51;
  --color-bg: #fafafa;
  --color-text: #333;
  --color-text-light: #666;
  --max-width: 1800px;
}

/* Container */
#studioSwiper {
  width: 90vw;
  max-width: 900px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

/* Swiper slide styling */
#studioSwiper .swiper-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.08);
}

/* Slide image */
#studioSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-width: 100px;
  max-width: 1000px;
  max-height: 300px;
  min-height: 40px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 15px;
}

/* Zoom effect on hover */
#studioSwiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Overlay gradient */
#studioSwiper .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15), transparent);
  color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  backdrop-filter: blur(3px);
}

/* Headline */
#studioSwiper .slide-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Author and date */
#studioSwiper .slide-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 4px;
}

/* Swiper navigation buttons styling */
#studioSwiper .swiper-button-next,
#studioSwiper .swiper-button-prev {
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#studioSwiper .swiper-button-next:hover,
#studioSwiper .swiper-button-prev:hover {
  background: #ff6b6b;
  color: #fff;
  box-shadow: 0 8px 20px rgb(255 107 107 / 0.7);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  #studioSwiper .swiper-slide img {
    height: 260px;
  }

  #studioSwiper .slide-content h2 {
    font-size: 1.2rem;
  }
}

#studio-r-content * {
  box-sizing: border-box;
}

#studio-r-content h1,
#studio-r-content h2,
#studio-r-content h3 {
  font-family: var(--font-CalibriLight);
  color: var(--text-color1);
  margin-top: 0;
  line-height: 1;
  font-size: 32px;
  margin-bottom: 15px;
}

#studio-r-content p {
  font-size: 16px;
  color: var(--text-color2);
  margin: 0 0 1.3em 0;
  /*display: flex;*/
  justify-content: flex-start;
  font-family: var(--font-CalibriLight);
}

#studio-r-content ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text);
}

#studio-r-content ul li {
  margin-bottom: 0.8em;
}

#studio-r-content .container {
  max-width: var(--max-width);
  margin: 2rem auto 4rem auto;
  padding: 0 1rem;
}

#studio-r-content .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

#studio-r-content .hero-text {
  max-width: 600px;
}

#studio-r-content .hero-text p {
  font-size: 16px;
  color: var(--text-color2);
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  font-family: var(--font-CalibriLight);
}

/* Added responsive fixes for hero-text and hero-image */
#studio-r-content .hero-image {
  width: 100%;
  height: auto;
  min-width: 0;
}

#studio-r-content .hero-image #studioSwiper {
  width: 100%;
  max-width: 100%;
  max-height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgb(10 25 47 / 0.1);
}

#studio-r-content .hero-text p.hero-highlight {
  font-weight: 400;
  color: var(--text-color2);
  margin-top: 1rem;
  font-size: 16px;
}

#studio-r-content .hero-text h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-color1);
  line-height: 1.2;
  margin-bottom: 1rem;
}

#studio-r-content .showroom {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  background: white;
  padding: 2rem 3rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgb(10 25 47 / 0.08);
}

#studio-r-content .showroom-title {
  font-size: 32px;
  color: var(--text-color1);
  font-weight: 700;
  border-left: 6px solid var(--text-color1);
  padding-left: 1rem;
  margin-bottom: 1.3rem;
  font-family: var(--font-CalibriLight);
}

#studio-r-content .showroom-text p {
  font-size: 16px;
  color: var(--text-color2);
  line-height: 1.5;
}

#studio-r-content .why-studio-r {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1px;
  margin-bottom: 1px;
  margin-left: 30px;
  margin-right: 10px;
}

#studio-r-content .why-card {
  /* background: white; */
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 12px;
  /* box-shadow: 0 6px 18px rgb(0 0 0 / 0.07); */
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

#studio-r-content .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px #004f88;
}

#studio-r-content .why-card h3 {
  color: var(--text-color2);
  font-family: var(--font-CalibriLight);
  margin-bottom: 1rem;
  font-size: 16px;
}

#studio-r-content .why-card ul {
  padding-left: 1.2rem;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 1rem;
}

#studio-r-content .launchpad {
  /* background: linear-gradient(135deg, #f4a261 20%, #e76f51 90%); */
  color: white;
  /* padding: 3rem 3rem 4rem 3rem; */
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto 5rem auto;
  /* box-shadow: 0 10px 40px rgb(231 111 81 / 0.6); */
  /* font-weight: 600; */
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

#studio-r-content .footer-cta {
  text-align: center;
  font-family: var(--font-CalibriLight);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--color-primary);
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}

#studio-r-content .footer-cta P {
  font-size: 16px;
  color: var(--text-color2);
  margin: 0 0 1.3em 0;
  display: flex;
  justify-content: center;
  font-family: var(--font-CalibriLight);
  margin-top: 80px;
  font-weight: 400;
}

#studiogallery {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

#studiogallery .gallery-wrapper {
  width: 100%;
  max-width: 1600px;
}

#studiogallery .gallery-header {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
  font-family: var(--font-CalibriLight);
  color: var(--text-color1);
}

#studiogallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

#studiogallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 3;
}

#studiogallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

#studiogallery .gallery-item:hover img {
  transform: scale(1.1);
}

#studiogallery .pagination {
  margin-top: 30px;
  text-align: center;
}

#studiogallery .pagination button {
  background-color: #222;
  color: white;
  border: none;
  padding: 10px 18px;
  margin: 0 8px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

#studiogallery .pagination button:disabled {
  background-color: #999;
  cursor: not-allowed;
}

#studiogallery .pagination button:hover:not(:disabled) {
  background-color: #444;
}

#studiogallery .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

#studiogallery .modal img {
  max-width: 30%;
  max-height: auto;
  border-radius: 20px;
}

#studiogallery .close-modal {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 30px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  #studio-r-content .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #studio-r-content .hero-text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  #studio-r-content .hero-text h1 {
    font-size: 1.8rem;
  }

  #studio-r-content .hero-text p {
    font-size: 1rem;
    justify-content: center;
  }

  #studio-r-content .hero-text p.hero-highlight {
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  #studio-r-content .hero-image #studioSwiper {
    max-height: 280px;
  }

  #studiogallery .modal img {
    max-width: 35%;
    max-height: auto;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  #studio-r-content .hero-text h1 {
    font-size: 1.5rem;
  }

  #studio-r-content .hero-text p {
    font-size: 0.9rem;
  }

  #studio-r-content .hero-text p.hero-highlight {
    font-size: 1rem;
  }

  #studio-r-content .hero-image #studioSwiper {
    max-height: 220px;
  }

  #studiogallery .modal img {
    max-width: 90%;
    max-height: auto;
    border-radius: 20px;
  }
}

@media (max-width: 900px) {
  #studio-r-content .showroom {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  #studio-r-content .why-studio-r {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #studiogallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #studiogallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

#studiogallery .modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 1001;
  transition: background 0.3s;
}

#studiogallery .modal-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

#studiogallery .modal-prev {
  left: 30px;
}

#studiogallery .modal-next {
  right: 30px;
}

/* ========================================= */
/*================= Blog Post ======================*/
#BlogContent {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px 60px;
  font-family: var(--font-CalibriLight);
}

#BlogContent .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
  font-family: var(--font-CalibriLight);
}

#BlogContent .back-button:hover {
  background-color: #0846c3;
  transform: translateY(-2px);
}

#BlogContent .back-button svg {
  width: 16px;
  height: 16px;
  fill: white;
}

#BlogContent .row {
  max-width: 1000px;
  width: 100%;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#BlogContent .l-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  font-family: var(--font-CalibriLight);
}

#BlogContent .l-container h1 {
  font-size: 34px;
  color: #212529;
  font-weight: 700;
  font-family: var(--font-CalibriLight);
  margin-bottom: 10px;
}

#BlogContent .l-container h2 {
  font-size: 18px;
  color: #212529;
  font-weight: 700;
  font-family: var(--font-CalibriLight);
  margin-bottom: 10px;
}

#BlogContent .l-container h3 {
  font-size: 18px;
  color: #212529;
  font-weight: 700;
  font-family: var(--font-CalibriLight);
  margin-bottom: 10px;
}

#BlogContent .l-container h4 {
  font-size: 18px;
  color: #212529;
  font-weight: 700;
  font-family: var(--font-CalibriLight);
  margin-bottom: 10px;
}

#BlogContent .meta-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 20px;
}

#BlogContent .author::before {
  content: "👤";
  margin-right: 6px;
}

#BlogContent .date::before {
  content: "📅";
  margin-right: 6px;
}

#BlogContent .l-container p {
  color: #495057;
  font-size: 16px;
  line-height: 2;
  margin: 0;
  font-family: var(--font-CalibriLight);
}

#BlogContent .l-container ul {
  margin-left: 20px;
  padding-left: 10px;
}

#BlogContent .l-container ul li {
  color: #495057;
  margin-top: 10px;
  font-size: 16px;
  font-family: var(--font-CalibriLight);
}

#BlogSideBar {
  max-width: 320px;
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: var(--font-CalibriLight);
}

#BlogSideBar h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--font-CalibriLight);
}

#BlogSideBar .blog-card {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
}

#BlogSideBar .blog-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

#BlogSideBar .blog-card .blog-info {
  flex: 1;
}

#BlogSideBar .blog-card .blog-info a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0d6efd;
  display: block;
}

#BlogSideBar.blog-card .blog-info a:hover {
  text-decoration: underline;
}

#BlogSideBar .blog-card .blog-info .blog-date {
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}

/* ========================================= */
/*=================== FAQs CSS ===========================*/
#faqs {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 40px 20px;
  font-family: var(--font-CalibriLight);
  color: var(--text-color1);
}

#faqs h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #003366;
}

#faqs .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(750px, 1fr));
  gap: 30px;
}

#faqs .faq-item {
  background: #ffffff;
  border-radius: 12px;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); */
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  border-left: 4px solid transparent;
}

#faqs .faq-item.active {
  border-left: 4px solid #0051a2;
}

#faqs .faq-question {
  padding: 20px 25px;
  background-color: #e8f0fc;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

#faqs .faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

#faqs .faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

#faqs .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: #fff;
  font-size: 16px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

#faqs .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px 25px;
}

#faqs .pagination {
  text-align: center;
  margin-top: 50px;
}

#faqs .pagination button {
  background-color: #2F4F4F;
  color: white;
  border: none;
  padding: 7px 10px;
  font-size: 16px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#faqs .pagination button:hover,
#faqs .pagination button.active {
  background-color: #004f88;
  ;
}

@media (max-width: 768px) {
  #faqs h1 {
    font-size: 28px;
  }

  #faqs .faq-question {
    font-size: 16px;
  }

  #faqs .faq-answer {
    font-size: 13.5px;
  }

  #faqs .faq-grid {
    grid-template-columns: 1fr;
  }

  #faqs .faq-question::after {
    content: "+";
    position: absolute;
    right: 0px;
    top: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  
   #banner-vid-home .background-clip {
        /*display: none;*/
    }
    #banner-vid-home .row {
        /*background: url('../images/video/banner.mp4');*/
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #banner-vid-home p {
        font-size: 16px;
        text-align: center;
        width: center;
    }
    #banner-vid-home .row {
        padding: 70px 10px;
        
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    #banner-vid-home .inner-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    #banner-vid-home h1 {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 450px) {
  #faqs .faq-answer {
    font-size: 11px;
  }

  #faqs .faq-question {
    font-size: 13px;
  }
}

/*=================== Case Studies CSS ===========================*/

#case-studies-unique h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-CalibriLight);
}

/* === Gallery Grid === */
.gallery-unique {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9fafb;
    color: #222;
    display: flex;
    justify-content: center;
    padding: 2rem 10rem;
    gap: 20px;
    width: 100%;
}

/* === Card Styling === */
.case-study-unique {
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  width: 100%;
}

.case-study-unique:hover {
  transform: translateY(-5px);
}

.case-study-unique img {
  width: 100%;
  height: 320px;
  object-fit: fill;
}

/* Ensure content takes full height to push button down */
.content-unique {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 0.75rem;
}

.title-unique {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-CalibriLight);
}

.desc-unique {
  font-size: 16px;
  color: #666;
  line-height: 2;
  flex-grow: 1;
  font-family: var(--font-CalibriLight);
}

.read-more-btn-unique {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  background: #004f88;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s ease;
}

.read-more-btn-unique:hover {
  background: #005fa3;
}

/* === Pagination === */
.pagination-unique {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination-unique button {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pagination-unique button:hover:not(:disabled) {
  background: #eee;
}

.pagination-unique button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-unique button[aria-current="page"] {
  background: #004f88;
  color: white;
  border-color: #004f88;
}

/* === Modal === */
.modal-overlay-unique {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay-unique.active {
  display: flex;
}

.modal-content-unique {
  background: white;
  padding: 1rem;
  max-width: 1600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-content-unique img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.modal-caption-unique {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.modal-close-unique {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.modal-close-unique::before {
  content: '×';
}

/* Zoomed image toggle */
.modal-content-unique.zoomed img {
  transform: scale(1.5);
  cursor: zoom-out;
  transition: transform 0.3s ease;
}

/* === Responsive Adjustments === */

@media (max-width: 950px) {
.gallery-unique {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5px;
}

}


@media (max-width: 950px) {
  .gallery-unique {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }

  .desc-unique {
    font-size: 0.85rem;
  }
}

@media (max-width: 700px) {
  .gallery-unique {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .desc-unique {
    font-size: 0.85rem;
  }
}

/* === Placeholder Card for Empty Slots === */
.placeholder-unique {
  visibility: hidden;
}

/* === Modal Animation === */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/*=================== Responsive BreakPoints CSS ===========================*/
/* ========================================= */
@media (max-width: 1600px) {
  #services-2 .row {
    margin-right: 0px;
    margin-left: 0px;
    gap: 30px;
    padding: 40px 20px 40px;
  }

  #services-2 .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  #services-1 .row {
    width: 100%;
    max-width: 1500px;
    padding: 20px;
  }
  #services2-2 .row {
    margin-right: 0px;
    margin-left: 0px;
    gap: 30px;
    padding: 40px 20px 40px;
  }

  #services2-2 .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  #services2-1 .row {
    width: 100%;
    max-width: 1500px;
    padding: 20px;
  }


  #home .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding: 30px 40px;
  }

  #home .l-container ul li {
    margin-left: -230px;
  }

  #home .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home .l-container p {
    text-align: left;
    width: 100%;
    font-size: 16px;
  }

  #home .l-container h1 {
    text-align: left;
    width: 100%;
    font-size: 32px;
  }

  #home-1 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 0px 40px;
  }

  #home-1 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-1 .l-container p {
    text-align: left;
    width: 100%;
    font-size: 16px;
  }

  #home-1 .l-container h1 {
    text-align: left;
    width: 100%;
    font-size: 32px;
  }

  #home-2 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding: 0px 40px;
  }

  #home-2 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-2 .l-container p {
    text-align: left;
    width: 100%;
    font-size: 16px;
  }

  #home-2 .l-container h1 {
    text-align: left;
    width: 100%;
    font-size: 32px;
  }

  #home-3 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 0px 40px;
  }

  #home-3 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-3 .l-container p {
    text-align: left;
    width: 100%;
    font-size: 16px;
  }

  #home-3 .l-container h1 {
    text-align: left;
    width: 100%;
    font-size: 32px;
  }

  #home-4 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding: 0px 40px;
  }

  #home-4 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-4 .l-container p {
    text-align: left;
    width: 100%;
    font-size: 16px;
  }

  #home-4 .l-container h1 {
    text-align: left;
    width: 100%;
    font-size: 32px;
  }

  #home .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-1 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-2 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-3 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-4 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-hero-swiper {
    height: 500px;
  }
}

/* ========================================= */
@media (max-width: 1200px) {
  #home .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 30px 10px;
  }

  #home .l-container ul li {
    margin-left: 20px;
  }


  #home .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home .l-container p {
    text-align: center;
    width: 100%;
  }

  #home .l-container h1 {
    text-align: center;
    width: 100%;
  }

  #home-1 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 30px 10px;
  }

  #home-1 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-1 .l-container p {
    text-align: center;
    width: 100%;
  }

  #home-1 .l-container h1 {
    text-align: center;
    width: 100%;
  }

  #home-2 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 30px 10px;
  }

  #home-2 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-2 .l-container p {
    text-align: center;
    width: 100%;
  }

  #home-2 .l-container h1 {
    text-align: center;
    width: 100%;
  }

  #home-3 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 30px 10px;
  }

  #home-3 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-3 .l-container p {
    text-align: center;
    width: 100%;
  }

  #home-3 .l-container h1 {
    text-align: center;
    width: 100%;
  }

  #home-4 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 30px 10px;
  }

  #home-4 .l-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home-4 .l-container p {
    text-align: center;
    width: 100%;
  }

  #home-4 .l-container h1 {
    text-align: center;
    width: 100%;
  }

  #services-1 .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
  }

  #services-1 .l-container h2 {
    width: 100%;
    padding: 0px 0 0;
  }

  #services-2 .container img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 320px;
  }
    #services2-1 .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
  }

  #services2-1 .l-container h2 {
    width: 100%;
    padding: 0px 0 0;
  }

  #services2-2 .container img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 320px;
  }

  #about-video .row {
    flex-direction: column;
    padding: 20px 10px;
  }

  #about-video .l-container {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 0px;
  }

  #about-video .l-container p {
    text-align: center;
  }

  #about-1 .row {
    flex-direction: column-reverse;
  }

  #about-2 .row {
    flex-direction: column-reverse;
  }

  #about-3 .row {
    flex-direction: column-reverse;
  }

  #about-4 .row {
    flex-direction: column-reverse;
  }

  #about-5 .row {
    flex-direction: column-reverse;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #JobFilter .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #Contact .container {
    gap: 30px;
  }

  #main-banner {
    margin-bottom: 30px;
    min-height: 400px;
    padding: 40px 10px;
  }

  #main-banner .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  #main-banner h1 {
    text-align: center;
    width: 100%;
  }

  #main-banner p {
    text-align: center;
  }
  
   #banner-vid-home .row {
    min-height: 0px;
  }

  #banner-vid-home .background-clip {
    aspect-ratio: auto;
    max-height: 100vh;
  }
  #banner-vid-home .row {
    min-height: 500px;
    padding: 100px 10px;
  }
  
.gallery-unique {
    padding: 2rem;
    gap: 30px;
}
}

/* ============================================ */
/* ============================================ */
@media (max-width: 900px) {

 #banner-vid-home .row {
    min-height: 50px;
  }
  #home-hero-swiper {
    height: 300px;
  }
  #home-hero-swiper .swiper-slide {
    background-position: top center;
  }

  #main-banner {
    margin-bottom: 30px;
    min-height: 400px;
    padding: 40px 10px;
  }

  #main-banner .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  #main-banner h1 {
    text-align: center;
    width: 100%;
  }

  #main-banner p {
    text-align: center;
  }

  #services-1 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 20px 10px;
  }

  #services-1 .l-container h2 {
    text-align: center;
  }

  #services-1 {
    padding: 10px 10px;
  }

  #services-2 h3 {
    font-size: 22px;
    margin: 0px 0 0;
  }

  #services-2 {
    width: 100%;
    max-width: 900px;
  }

  #services-2 .container img {
    height: 100%;
    width: 100%;
    max-height: 300px;
    max-width: 330px;
  }

  #services-2 h3 {
    font-size: 20px;
    margin: 10px 0 0 20px;
  }
    #services2-1 .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 20px 10px;
  }

  #services2-1 .l-container h2 {
    text-align: center;
  }

  #services2-1 {
    padding: 10px 10px;
  }

  #services2-2 h3 {
    font-size: 22px;
    margin: 0px 0 0;
  }

  #services2-2 {
    width: 100%;
    max-width: 900px;
  }

  #services2-2 .container img {
    height: 100%;
    width: 100%;
    max-height: 300px;
    max-width: 330px;
  }

  #services2-2 h3 {
    font-size: 20px;
    margin: 10px 0 0 20px;
  }

  #about-banner {
    padding: 20px 0 0 0;
  }

  #about-banner .about-title h1 {
    font-size: 22px;
  }

  #about-video .r-container {
    width: 100%;
    max-width: 900px;
    padding: 10px 10px;
  }

  #Contact .container {
    flex-direction: column;
  }

  #BlogContent {
    flex-direction: column;
    gap: 30px;
    padding: 35px 20px 60px;
  }
}

/* ========================================= */
@media (max-width: 700px) {
  #home .l-container h1 {
    font-size: 32px;
  }

  #home-1 .l-container h1 {
    font-size: 32px;
  }

  #home-2 .l-container h1 {
    font-size: 32px;
  }

  #home-3 .l-container h1 {
    font-size: 32px;
  }

  #home-4 .l-container h1 {
    font-size: 32px;
  }

  #home .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-1 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-2 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-3 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #home-4 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #main-banner h1 {
    font-size: 32px;
  }

  #main-banner p {
    font-size: 20px;
  }

  #main-banner a {
    font-size: 18px;
  }

  #services-1 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #services-1 .l-container h2 {
    font-size: 28px;
  }

  #services-2 .row {
    flex-direction: column;
  }

  #services-2 .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
    #services2-1 .r-container img {
    display: flex;
    min-width: 1px;
    min-height: 1px;
  }

  #services2-1 .l-container h2 {
    font-size: 28px;
  }

  #services2-2 .row {
    flex-direction: column;
  }

  #services2-2 .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #about-5 .l-container h1 {
    text-align: center;
    width: 100%;
    font-size: 28px;
  }

  #about-1 .l-container h1 {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  #about-2 .l-container h1 {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  #about-3 .l-container h1 {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  #about-4 .l-container h1 {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  #JobFilter .property-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  #JobFilter .filter-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    margin: 4px;
  }

  #BlogContent .l-container h1 {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  #BlogContent .l-container h2 {
    font-size: 16px;
    text-align: left;
    width: 100%;
  }

  #BlogContent .l-container p {
    font-size: 14px;
  }
  
  #banner-vid-home h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  #home-hero-swiper .banner-slide-2 {
    background-image: url('../images/IMG/imgbannerslider-mobile.jpg');
  }
}

/* ========================================= */
@media (max-width: 400px) {
  #home .l-container h1 {
    font-size: 28px;
  }

  #home-1 .l-container h1 {
    font-size: 28px;
  }

  #home-2 .l-container h1 {
    font-size: 28px;
  }

  #home-3 .l-container h1 {
    font-size: 28px;
  }

  #home-4 .l-container h1 {
    font-size: 28px;
  }

  #BlogSideBar {
    display: none;
  }
}


body .modal-msg.show {
  display: flex;
}
body .modal-msg.show .modal-msg-wrapper {
  transform: scale(1);
}
body .modal-msg {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.329);
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  body .modal-msg {
    padding: 0 30px;
  }
  #banner-vid-home .row {
    height: 210px;
  }
}
body .modal-msg .modal-msg-wrapper {
  width: 100%;
  max-width: 500px;
  height: auto;
  background: var(--white);
  border-radius: 10px;
  transition: 0.3s;
  transform: scale(0);
  background: white;
  border-radius: 5px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-content {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-content img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(221, 221, 221, 0.431372549);
  margin-bottom: 20px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-content p {
  line-height: 1.7em;
  color: var(--text-grey);
  font-size: 16px;
}
body .modal-msg .modal-msg-wrapper .modal-msg-footer {
  text-align: center;
  padding: 0 0 30px 0;
}
body .modal-msg .modal-msg-wrapper .modal-msg-footer button {
  padding: 10px 30px;
  border: 0;
  border-radius: 30px;
  background: var(--primary);
  color: var(--text-white);
  cursor: pointer;
  transition: 0.3s;
}
body .modal-msg .modal-msg-wrapper .modal-msg-footer button:hover {
  background: var(--secondary);
}