
/* Safari 11+ */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .container {
      display: -webkit-flex;
    }
  }
}

/* Root Variables */
:root {
  --default-font: "Rubrik", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Rubrik", sans-serif;
  --nav-font: "Rubrik", sans-serif;

  /* Global Colors */
  --background-color: #f4f4f4;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #a72682;
  --contrast-color: #ffffff;

  /* Navigation Colors */
  --nav-color: #ffffff;
  --nav-hover-color: #a72682;
  --nav-dropdown-background-color: #000000;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #a72682;

  /* Template Custom Colors */
  --footer-background-color: #000000;

  /* Scrolling Behavior */
  scroll-behavior: smooth;
}

/* General Styles */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

* {
  padding: 0;
  margin: 0;
}

a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Arrow Down Animation */
.arrow-down {
  position: absolute;
  top: 108%;
  left: 98%;
  transform: translate(-50%, -50%);
}

.arrow-down span {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  border-bottom: 0.1rem solid #ffffff;
  border-right: 0.1rem solid #ffffff;
  transform: rotate(45deg);
  animation: scroll 1s infinite;
  box-sizing: border-box;
  cursor: pointer;
  margin-bottom: -5px;
}

.arrow-down span:nth-child(2) { animation-delay: 0.1s; }
.arrow-down span:nth-child(3) { animation-delay: 0.2s; }
.arrow-down span:nth-child(4) { animation-delay: 0.3s; }

@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10%, -10%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) translate(10%, 10%);
  }
}

/* Responsive Adjustments for Arrow */
@media (max-width: 1024px) {
  .arrow-down {
    top: 107%;
    left: 98%;
  }
  .arrow-down span {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media (max-width: 767px) {
  .arrow-down {
    top: 108%;
    left: 105%;
  }
  .arrow-down span {
    width: 1.1rem;
    height: 1.1rem;
  }
}

@media (max-width: 550px) {
  .arrow-down {
    top: 108%;
    left: 90%;
  }
  .arrow-down span {
    width: 1rem;
    height: 1rem;
  }
}

/* Privacy Text Section */
.privacy-text {
  color: rgb(0, 0, 0);
  background-color: white;
  margin: 60px 0 40px;
  font-size: 16px;
  padding: 50px;
  height: 100%;
  border-radius: 10px;
}

.privacy-text a { color: #a72682; }
.privacy-text h1 {
  text-align: center;
  padding-bottom: 25px;
}

.privacy-text p { line-height: 2.1; }

@media (max-width: 768px) {
  .privacy-text {
    margin-top: 40px;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
  }
  .privacy-text h1 { padding-bottom: 15px; }
}

@media (max-width: 550px) {
  .privacy-text {
    margin: 5% 0 5% 3%;
    width: 94%;
  }
}

/* Saiprocare Header */
.saiprocare {
  padding: 0 150px;
  text-align: center;
}

.saiprocare_img {
  width: 80%;
  height: 80%;
  margin-bottom: 80px;
}

.saiprocare h1 { font-size: 40px; }

@media (max-width: 1199px) {
  .saiprocare { padding: 25px 110px 0; }
  .saiprocare h1 { font-size: 28px; }
}

@media (max-width: 900px) {
  .saiprocare { padding: 20px 50px 0; }
  .saiprocare h1 { font-size: 22px; }
}

@media (max-width: 380px) {
  .saiprocare { padding: 10px 40px 0; }
  .saiprocare h1 { font-size: 22px; }
}

/* Global Header */
.header {
  --background-color: black;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  margin-bottom: 10px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted {
  color: var(--contrast-color);
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

.scrolled .header {
  /* box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%); */
  background-color: black;
}

/* Index Page Header */
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/* Navmenu - Desktop */
@media (min-width: 1199px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    padding: 15px 14px;
  }

  .navmenu li:last-child {
    padding-right: 0;
  }

  .navmenu a {
    background: linear-gradient(to right, #AE782E, #FFF28A, #AE782E);
    background-clip: text; /* Standard property */
    -webkit-background-clip: text; /* Required for WebKit-based browsers */
    -webkit-text-fill-color: transparent; /* Makes text transparent in WebKit */
    padding: 0px 2px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a:hover:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(to right, #AE782E, #FFF28A, #AE782E);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out;
  }

  .navmenu a:hover,
  .navmenu .active {
    background: linear-gradient(to right, #AE782E, #FFF28A, #AE782E); /* Gradient for hover/active state */
    -webkit-background-clip: text; /* Ensures gradient applies to text */
    background-clip: text; /* Standard property for non-WebKit browsers */
    -webkit-text-fill-color: transparent; /* Makes text transparent for WebKit browsers */
  }
  
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a {
    color: #AE782E;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s;
  }

  .navmenu a:hover {
    background-color: #210319;
  }

  .navmenu .dropdown ul {
    display: none;
    position: static;
    margin: 10px 20px;
    padding: 10px 0;
    background-color: var(--nav-dropdown-background);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    font-size: 32px;
    top: 15px;
    right: 15px;
    position: absolute;
    z-index: 9999;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: var(--footer-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #a72682;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

/* Footer Top Section */
.footer .footer-top {
  padding: 20px 0 0 0;
  background-color: #111111; /* Fallback */
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

/* Footer About Section */
.footer .footer-about {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer .footer-about h4 {
  margin-left: 20px;
  margin-bottom: -15px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-top: 15px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  margin-left: 10px;
  font-size: 14px;
  font-family: var(--heading-font);
}

/* Footer Links Section */
.footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-links h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  margin-right: 17px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.footer .mobile-link a{
   color: #ffffff;
}

.footer .map-link a{
   color: #ffffff;
}

.footer .map-link a:hover{
  color: var(--accent-color);
}

.footer .mobile-link a:hover{
  color: var(--accent-color);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links-socialize h4{
  font-size: 16px;
}

/* Social Links Section */

.footer .social-links {
  margin-left: 30px;
  margin-bottom: 30px;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .social-links a {
  color: #ffffff;
  background-color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

/* Footer Newsletter Section */
.footer .footer-newsletter p {
  font-size: 14px;
  font-family: var(--heading-font);
  text-align: justify;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit] :hover {
  background: #d12367;
}

/* Error and Success Messages */
.footer .footer-newsletter .error-message,
.footer .footer-newsletter .sent-message,
.footer .footer-newsletter .loading {
  display: none;
  padding: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  margin-top: 10px;
}

.footer .footer-newsletter .error-message {
  background: #df1529;
  color: #ffffff;
}

.footer .footer-newsletter .sent-message {
  background: #059652;
  color: #ffffff;
}

.footer .footer-newsletter .loading {
  background: var(--background-color);
}

.footer .footer-newsletter .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: subscription-loading 1s linear infinite;
}

/* Footer Copyright */
.footer .copyright {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.footer .copyright a {
  color: #ffffff;
}

.footer .copyright a:hover {
  color: var(--accent-color);
}

.footer .link-white:hover {
  color: #fed800;
}

.footer .credits {
  margin-top: 5px;
  font-size: 14px;
}

/* Footer Breakline */
.footer .footer-breakline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1%;
  padding: 0 3% 0% 4%;
}

.footer-line {
  width: 1px;
  height: 50%;
  background-color: #ffffff;
  opacity: 0.2;
}

/* Loading Animation */
@keyframes subscription-loading {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .footer .footer-newsletter {
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: center;
  }

  .footer .footer-links1 {
      display: flex;
      flex-direction: column;
      width: 32%;
      margin-bottom: 30px;
  }

  .footer .footer-links {
      display: flex;
      flex-direction: column;
      width: 31%;
  }

  .footer .footer-about {
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 30%;
  }

  .footer .footer-breakline {
    padding: 0 4% 0% 4%;
  }
}

@media (max-width: 768px) {
  .footer .footer-newsletter {
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: center;
  }

  .footer .footer-links1 {
      display: flex;
      flex-direction: column;
      width: 50%;
      margin-bottom: 30px;
  }

  .footer .footer-links {
      display: flex;
      flex-direction: column;
      width: 50%;
  }

  .footer .footer-about {
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 100%;
  }

  .footer .footer-breakline {
      visibility: hidden;
  }
}

@media (max-width: 380px) {
  .footer .copyright p {
      font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--accent-color);
  line-height: 0;
}

.scroll-top:hover {
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0 0 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: black;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 100px;
  height: 2px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 0px 9px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*-------------------------------------------------------------- 
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  z-index: 0;
  margin: 0;
  font-size: 45px;
  font-weight: 400;
  font-family: var(--nav-font);
  margin-top: 250px;
  text-shadow: 0px 3px 1px black;
}

.hero h2:before {
  content: attr(REFL-TEXT);
  position: absolute;
  transform: rotateX(180deg);
  line-height: 100px;
  transform-origin: bottom;
  background: linear-gradient(to top, #ffffff, transparent);
  opacity: 0.2;

  /* Standard property and vendor prefixes for compatibility */
  -webkit-background-clip: text;  /* Safari and Chrome */
  -moz-background-clip: text;     /* Firefox (older versions) */
  background-clip: text;          /* Standard property */
}


.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    margin-top: 330px;
    text-shadow: 0px 2px 1px black;
  }

  .hero h2::before {
    line-height: 2.2;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  text-align: justify;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  padding-top: 120px;
}

.contact-info {
  margin-top: 10px;
  padding-left: 90px;
}

.contact .info-item+.info-item {
  margin-top: 10px;
}

.error-message {
  color: red; /* Error text color */
  font-size: 12px; /* Adjust font size as needed */
  display: none; /* Default hidden */
  margin-top: 5px; /* Add space between the error and the input field */
}


.contact .info-item i {
  color: var(--accent-color);
  width: 20px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease-in-out;
  margin-right: 12px;
  font-size: 20px;
}

.get-in-touch {
  max-width: 600px;
  position: relative;
  padding: 0px;
  border: 2px solid white;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

.get-in-touch .title {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 48px;
  background: linear-gradient(to right, #a72682 0%, #a72682 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-form .form-field {
  position: relative;
  margin: 12px 0;
}

/* Apply consistent bottom border for all input fields, select, and textarea */
.contact-form .input-text-field,
.contact-form .input-text-area,
.contact-form select {
  display: block;
  width: 100%;
  height: 36px;
  border: none;
  border-bottom: 2px solid var(--accent-color);
  -webkit-text-fill-color: #787777;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  padding-left: 10px;
  background-color: #fff;
  -webkit-appearance: none; /* For Safari and other browsers */
  -moz-appearance: none; /* For Firefox */
  appearance: none; /* General */
  box-shadow: none; /* Remove inner shadow in Safari */
}

.contact-form .input-text-area {
  height: auto; /* Adjust for textarea */
  resize: none; /* Disable resize if needed */
}

/* Add focus styles for all fields */
.contact-form .input-text-field:focus,
.contact-form .input-text-area:focus,
.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--accent-color); /* Ensure consistent color on focus */
}

/* Safari-specific fixes using WebKit selector */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .contact-form select {
    background-color: #fff; /* Ensure consistent background */
    border-radius: 0; /* Reset border radius */
  }
}

.contact .contact-links a {
  color: color-mix(in srgb, var(--default-color) 5%, #000000 60%);
  background-color: color-mix(in srgb, var(--default-color) 5%, #2e2d2d 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.contact .contact-links {
  align-items: center;
  justify-content: center;
  width: 230px;
}

.contact .contact-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.contact-form .input-text-field:focus+.label,
.contact-form .input-text-field.not-empty+.label {
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
}

.contact-form .label {
  position: absolute;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--accent-color);
  cursor: text;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out,
  -webkit-transform .2s ease-in-out;
}

.contact-form .sub_btn {
  display: inline-block;
  background-color: #a72682;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  padding: 8px 16px;
  border: none;
  border-radius: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100px;
  cursor: pointer;
  align-items: center;
}

.sub_btn_align {
  display: flex;
  justify-content: center;
}

.sub_btn:hover {
  transform: scale(1.05);
  transition: transform 330ms ease-in-out;
  color: #ffffff;
}

.form-selected {
  color: #5a5959;
}

/* contact demo */
.contact-demo {
  background-color: #ffffff;
}

/*///// Country Code //////*/

#country_phone_code {
  width: 50px;
  padding: 0;
  float: left;
}

.phone-number-style{
  width: 87%
}

#phone_number {
  width: 79.2%;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  #phone_number {
    width: 73.5%;
  }
}

@media (max-width: 1025px) {
  .contact .contact-links {
    width: 230px;
  }
}

@media (max-width: 992px) {
  .get-in-touch {
    max-width: 100%;
  }

  .contact .contact-links {
    padding-bottom: 30px;
    width: 220px;
  }

  .contact-form {
    margin: 0;
  }

  .contact-form .input-text-area {
    width: 100%;
  }

  #phone_number {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .contact .contact-links {
    width: 216px;
  }

  #phone_number {
    width: 88.5%;
  }
}

@media (max-width: 530px) {
  #phone_number {
    width: 85%;
  }

  .contact .contact-links {
    width: 205px;
  }
}

@media (max-width: 425px) {
  #phone_number {
    width: 82%;
  }
}

@media (max-width: 375px) {
  .contact-info{
    padding-left: 75px;
  }

  #phone_number {
    width: 77.5%;
  }

  .contact .contact-links {
    width: 200px;
  }
}

/* Article Section  */
/* blog */

.article-line {
  position: relative;
}

.article-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #AE782E, #FFF28A, #AE782E);
  z-index: 1;
}

#blog {
  display: block;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4% 2% 2% 2%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap;
}

.blog-box {
  width: 25.9%;
  background-color: #ffffff;
  margin: 30px;
  border-radius: 10px;
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;;
}

.blog-box:hover {
  transform: scale(1.02); /* Subtle zoom effect */
  filter: drop-shadow(0px 0px 20px rgba(33 33, 33, .2))
}

.blog-img img {
  width: 100%;
  padding: 3% 3% 0% 3%;
  object-fit: cover;
  object-position: center;
}

.blog-text {
  padding: 4% 4% 2% 4%;
  display: flex;
  flex-direction: column;
}

.blog-text .blog-title {
  height: 4.4rem;
}

.blog-text p {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  padding-top: 0%;
  margin-bottom: 2%;
}

.blog-text .blog-title {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.blog-text .date-column p {
  font-size: 12px;
  font-weight: 400;
  padding-top: 1%;
}

.blog .gallery-filter {
  padding: 0 15px;
  width: 100%;
  text-align: center;
  line-height: 2.5;
}

.blog .gallery-filter .filter-item {
  color: #000000;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.blog .gallery-filter .filter-item.active {
  color: #a72682;
  border-color: #a72682;
}

/* .blog .box-title{
  margin-top: 5%;
} */

.blog .blog-box.show {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blog .blog-box.hide {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1250px) {
  .blog-box {
    width: 25%;
  }
}

@media (max-width: 1100px) {
  .blog-box {
    width: 35%;
  }
}

@media (max-width: 767px) {
  .blog-box {
    width: 70%;
  }
}

@media (max-width: 550px) {
  .blog-box {
    margin: 20px 10px;
    width: 100%;
  }

  #blog {
    padding: 20px;
  }
}

/* cruise terminal */

.article-info {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 5%;
}

.article-info .cruise {
  line-height: 1.3;
}

.cruise::first-letter {
  float: left;
  font-size: 120px;
  line-height: 0.5;
  padding-right: 2px;
}

.cruise-terminal {
  line-height: 2.1;
}

.article-info ul {
  padding-left: 1rem;
}

.sugar::first-letter {
  float: left;
  font-size: 98px;
  line-height: 0.8;
  padding-right: 2px;
}

.article-info .sugar {
  line-height: 1.3;
}

.article-info .insurence h2 {
  line-height: 1.3;
}

.insurance::first-letter {
  float: left;
  font-size: 90px;
  line-height: 0.5;
  padding-top: 14px;
  padding-right: 4px;
}

.article-info-icon {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  height: 15%;
  width: 80%;
  justify-content: center;
  justify-items: center;
}

.article-info-icon img {
  padding: 15px 0 15px 0;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.article-img {
  display: grid;
  grid-template-columns: repeat(2, 48.5%);
  gap: 1.7rem;
  padding-top: 1rem;
}

.main1 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.main2 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

.main3 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.main4 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 4;
}

.main5 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
}

.hero blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 3px solid var(--accent-color);
  margin: 40px 0;
}

.hero .text-format {
  color: #ffffff;
  font-style: italic;
  font-size: 20px;
}

.hero .text-heading {
  z-index: 0;
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  font-family: var(--nav-font);
  margin-top: 250px;
  text-shadow: 0px 3px 1px black;
}

/* Responsive Media Queries */
@media(max-width:1025px) {

  .article-img {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
  }

  .article-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 5%;
  }

  .cruise::first-letter {
    font-size: 115px;
    line-height: 0.5;
  }

  .sugar::first-letter {
    font-size: 90px;
    line-height: 0.8;
  }

  .insurance::first-letter {
    font-size: 85px;
    line-height: 0.5;
  }
}

@media(max-width:768px) {

  .article-img {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
  }

  .article-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 5%;
  }

  .cruise::first-letter {
    font-size: 105px;
    line-height: 0.5;
  }

  .sugar::first-letter {
    font-size: 82px;
    line-height: 0.8;
  }

  .insurance::first-letter {
    font-size: 80px;
    line-height: 0.5;
  }

  .adjust-size {
    max-width: 100%;
  }

  .cruise-terminal {
    line-height: 1.8;
  }
}

@media(max-width:550px) {

  .article-info {
    margin: 5% 0% 5% 3%;
    width: 94%;
  }

  .article-info-icon {
    display: flex;
    animation-duration: 2s;
    opacity: 1;
    top: 3rem;
    position: absolute;
    width: 8rem;
    height: 1%;
    z-index: 0;
    right: 15.5rem;
    left: 6.5rem;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cruise::first-letter {
    font-size: 98px;
    line-height: 0.5;
  }

  .sugar::first-letter {
    font-size: 80px;
    line-height: 0.8;
  }
}

/* --------newsroom------ */

.hero .newsroom {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 100%;
  position: relative;
  padding: 15px 0 0 0;
  display: flex;
  justify-content: center;
}

.hero .newsroom h1 {
  color: var(--heading-color); /* Use variable for heading color */
  margin: 0;
  font-size: 50px;
  font-family: "Playfair Display", serif;
  text-shadow: 1px 0.1px 2px rgb(14, 13, 13);
  text-transform: capitalize;
  margin-bottom: 125px;
}

.alert {
  display: none; /* Keep hidden by default */
  position: absolute;
  bottom: 49%;
  left: 7rem;
  transform: translateX(-50%);
  background-color: #fdf3df;
  color: rgb(0, 0, 0);
  text-wrap: nowrap;
  padding: 2px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-size: 12px;
}

@media (max-width: 1199px) {
  .hero .newsroom h1 {
    font-size: 50px;
    text-shadow: 1px 0.1px 2px black;
    margin-bottom: 125px;
  }

  .hero .newsroom h1::before {
    line-height: 2.2;
  }
}

@media (max-width: 1024px) {
  .alert {
    bottom: 50%;
    left: 6.5rem;
    padding: 3px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .hero .newsroom h1 {
    margin-top: 60px;
    font-size: 45px;
    text-shadow: 1px 0.1px 2px black;
  }

  .hero .newsroom h1::before {
    line-height: 2.2;
  }

  .alert {
    bottom: 50%;
    left: 6rem;
    padding: 3px;
    font-size: 11px;
  }
}

@media (max-width: 550px) {
  .hero .newsroom h1 {
    margin-top: 40px;
    font-size: 42px;
    text-shadow: 1px 0.1px 2px black;
  }

  .hero .newsroom h1::before {
    line-height: 2.2;
  }

  /* Instead of visibility:hidden, set display:none */
  .alert {
    display: none;
  }
}

/* Share icon on article */

.share-button {
  text-decoration: none;
  border-color: #ffffff00;
  background-color: #ffffff00;
}

#social-media-icons {
  display: none;
}

#social-media-icons.visible {
  display: block;
}

.share-container {
  position: relative;
  display: inline-block;
}

.social-icons {
  position: absolute;
  top: 0;
  left: 33px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  padding: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 40px;
  line-height: 1.1;
}

.social-icons a {
  display: block;
  margin: 10px 0;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
  text-align: center;
}

.social-icons a:hover {
  color: #a72682;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}



        /* ====================================career page css======================================================` */

/* General Styles */
.container-ceo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.detel {
  flex: 1 1 50%;
  padding: 5%;
  text-align: left;
}

.detel h1 {
  font-size: 50px;
  margin-bottom: 1  0px;
}

span {
  color: rgb(0, 0, 0);
}

.detel p {
  background-color: #fff; /* White background */
  color: #000; /* Black text color */
  font-size: 16px; /* Default text size */
  line-height: 1.6; /* Better readability */
  font-style: italic;
  border-radius: 10px; /* Rounded corners */
  padding: 15px 20px; /* Inner spacing */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft card shadow */
  border: 1px solid #ddd; /* Light border */
  margin-bottom: 20px;
  display: inline-block;
  max-width: 500px; /* Restrict white box width */
  text-align: justify; /* Align text properly */
  position: relative;
}

/* CEO Image Styles */
.ceo-images {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 5%;
}

/* Circular Background Design */
.ceo-images .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0; /* Keep behind the person */
}

.ceo-images .background .circle {
  position: absolute;
  border-radius: 50%;
  background-color: #a72682; /* Purple color */
  opacity: 0.8;
}

.ceo-images .background .circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -30px;
  left: -30px;
}

.ceo-images .background .circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 20px;
}

.ceo-images .background .circle:nth-child(3) {
  width: 250px;
  height: 250px;
  top: 100px;
  right: 30px;
}

/* Person Image */
.ceo-images .person {
  position: relative;
  z-index: 1; /* Keep person image on top */
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  transform: translateY(-40px);
  transition: transform 0.5s ease; /* Smooth transition */
}

.ceo-images:hover .person {
  transform: translateY(-20px) translateX(20px); /* Smoothly shift the person image */
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
  .container-ceo {
    flex-direction: column;
  }

  .detel,
  .ceo-images {
    flex: 1 1 100%;
    text-align: center;
  }

  .detel {
    padding: 3%;
  }

  /* Circles positioning adjustment */
  .ceo-images .background .circle {
    opacity: 0.8;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .detel h1 {
    font-size: 30px;
  }

  .detel p {
    font-size: 14px; /* Adjust for smaller screens */
    line-height: 18px;
  }

  .ceo-images .person {
    max-width: 200px;
  }

  .ceo-images .background .circle:nth-child(1) {
    width: 250px;
    height: 250px;
    top: -20px;
    left: -20px;
  }

  .ceo-images .background .circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 10px;
  }

  .ceo-images .background .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 80px;
    right: 40px;
  }

  .ceo-images .person {
    transform: translateY(-20px);
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .detel h1 {
    font-size: 24px;
  }

  .detel p {
    font-size: 12px;
    line-height: 16px;
  }

  .ceo-images .person {
    max-width: 150px;
  }

  .ceo-images .background .circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -10px;
    left: -10px;
  }

  .ceo-images .background .circle:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: 5px;
  }

  .ceo-images .background .circle:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 70px;
    right: 0;
  }

  .ceo-images .person {
    transform: translateY(-10px);
  }
}

