 body {
      background-color:black;
      font-family: Arial, sans-serif;
    }


    .contact-section {
      padding: 50px 0;
    }

    /* Info cards */
    .info-box {
      background: #f2f2f2;
      padding: 25px 15px;
      border-radius: 6px;
      text-align: center;
      height: 100%;
    }

    .info-box i {
      font-size: 30px;
      color: #0a2c6b;
      margin-bottom: 10px;
    }

    .info-box h6 {
      font-weight: 700;
      margin-bottom: 8px;
    }

    .info-box p {
      margin: 0;
      font-size: 14px;
    }

    .info-box a {
      color: #0a2c6b;
      text-decoration: none;
    }

    /* Contact Form */
    .form-container {
      background: #9b4dff;
      padding: 40px;
      border-radius: 6px;
      max-width: 600px;
      margin: 0 auto; /* center */
      text-align: center;
    }

    .form-container h3 {
      color: #0a2c6b;
      font-weight: 700;
    }

    .form-control {
      border-radius: 4px;
      padding: 10px;
    }

    .btn-submit {
      background: #0a2c6b;
      color: #fff;
      padding: 10px 25px;
      border-radius: 4px;
      border: none;
      transition: 0.3s;
    }

    .btn-submit:hover {
      background: #09408f;
    }

    /* navbar section */

  
 .hero {

      background-image: url("images/main.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; 
      height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .cookie-bar {
      font-size: 14px;
    }
    .navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.navbar-brand .brand-text {
  font-weight: bold;
  color: #007bff;  /* replace this with your logo’s main color */
}
/* Bigger, modern logo */
.logo-img {
  height: 60px;
  width: auto;
  margin-right: 12px;
  transition: transform 0.4s ease;
}

/* Brand text with pink-purple gradient */
.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Gradient Text */
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
  transition: all 0.4s ease-in-out;
}

/* Hover effect for brand */
.brand-hover:hover .logo-img {
  transform: scale(1.15) rotate(-5deg);
}

.brand-hover:hover .brand-text {
  letter-spacing: 3px;
  transform: scale(1.1);
  text-shadow: 0px 0px 25px rgba(255, 78, 203, 0.8);
}

/* Nav links hover animation */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff4ecb !important;
}

.nav-link:hover::after {
  width: 100%;
}
/* Gradient Search Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #9b4dff, #ff4ecb);
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(155, 77, 255, 0.5);
}

/* Navbar links with pink-purple hover */
.nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link {
  font-size: 1rem;         /* slightly smaller text */
  padding: 8px 14px;       /* reduce padding */
  white-space: nowrap;     /* prevent text breaking into two lines */
  line-height: 1.2;        /* compact height */
}

/* Keep navbar aligned properly */
.navbar {
  min-height: 65px;   /* uniform height */
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff4ecb !important; /* text changes to pink */
}

.nav-link:hover::after {
  width: 100%; /* underline animation */
}

/* Transparent navbar with background image */
.custom-navbar {
  background: url("images/navbar-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  backdrop-filter: blur(5px); /* glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  background-color: rgba(0, 0, 0, 0.5); /* fallback: semi-transparent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
  color: #fff !important;
} 
/* navbar section close */

/* navbar section */
/* Navbar Custom Styling */
.custom-navbar {
  background: #111; /* dark background */
  font-family: 'Montserrat', sans-serif;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #ddd;
  font-weight: 600;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 6px; /* spacing between icon and text */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link i {
  font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #03A9F5; /* highlight color */
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  border: none;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-gradient:hover {
  opacity: 0.85;
  color: #fff;
}

/* Navbar icon hover effect */
.navbar .nav-link i {
  transition: color 0.3s ease;
}

.navbar .nav-link:hover i {
  color: #ff4ecb;  /* change to your brand color */
}


.gradient-icon {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff); /* pink → purple */
  
  -webkit-text-fill-color: transparent;
  display: inline-block;
}


/* image section */
 .contactimage-section {
      position: relative;
      width: 100%;
      height: 100vh; /* full screen */
      overflow: hidden;
    }

    .contactimage-section img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* image fits properly */
      filter: brightness(70%); /* dark overlay for text readability */
    }

    .contactimage-text {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      color: #fff;
      max-width: 450px;
      animation: fadeInLeft 1.5s ease-out;
    }

    .contactimage-text h1 {
      font-size: 3rem;
      margin-bottom: 15px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .contactimage-text p {
      font-size: 1.2rem;
      line-height: 1.6;
    }

    /* Simple fade in + slide animation */
    @keyframes fadeInLeft {
      0% {
        opacity: 0;
        transform: translateX(-50px) translateY(-50%);
      }
      100% {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
      }
    }
/* Card Style */
.info-box {
  background: #000; /* black background */
  color: #fff; /* white text */
  padding: 25px 15px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Gradient Icon */
.gradient-icon {
  font-size: 32px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Hover Effect */
.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(155, 77, 255, 0.6);
}

.info-box a {
  color: #fff;   /* white */
  text-decoration: none; /* remove underline */
}

.info-box a:hover {
  color: #ff4ecb; /* pink hover (optional) */
}


/* form with map section */

body {
  background-color: #000;
  font-family: Arial, sans-serif;
  color: white;
}

.contact-section {
  padding: 50px 0;
}

/* Info Card */
.info-box {
  background: #111;
  padding: 25px 15px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(155, 77, 255, 0.5);
}

/* Gradient Icons */
.info-box i {
  font-size: 35px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-box h6 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.info-box p,
.info-box a {
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.info-box a:hover {
  color: #ff4ecb;
}

/* Contact Form */
.form-container {
  background: #111;
  padding: 40px;
  border-radius: 8px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.form-container h3 {
  font-weight: 700;
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
}

.form-control {
  border-radius: 4px;
  padding: 10px;
  background: #222;
  border: 1px solid #444;
  color: white;
}

.form-control:focus {
  border-color: #9b4dff;
  box-shadow: 0 0 5px #9b4dff;
}

.btn-submit {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  transition: 0.3s;
}

.btn-submit:hover {
  opacity: 0.85;
}

/* Map */
.map-container {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Gradient placeholder */
  .form-control::placeholder {
    background: linear-gradient(90deg, #ff4ecb, #9b4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    opacity: 1;
  }

  /* footer css */
.page-wrapper {
  position: static; 
  width: 100%;
}

footer p, footer strong, footer b, footer {
    color: #b0b0b0;
}

.footer-top {
    background: #303030;
    background-size: cover;
    background-position: center;
    padding: 0 0 20px;
    font-family: rubik;
  padding-top:30px;
  
}

.footer-top, .footer-bottom {
    background-color: #1c1f2f;
}

.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #313646;
    background-color: #6016ba !important;
    color: #b0b0b0;
    font-family: rubik;
}


.footer-site-info {
    font-size: 92.86%;
}
#footer-navigation, #footer-navigation li a:hover, .custom-footer, .custom-footer li a:hover {
    color: white;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

.footer-bottom ul {
    margin: 0;
}
.inline-inside {
    font-size: 0;
    line-height: 0;
}
.clearfix:after, .clearfix:before {
    content: "";
    display: table;
}
#footer-menu li {
    display: inline-block;
    padding: 0 21px;
    position: relative;
    line-height: 1;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

#footer-navigation, #footer-navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}
#footer-menu li+li:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: -1px;
    top: 0;
    font-size: 0;
    border-left: 1px solid #232234;
    border-right: 1px solid #333146;
}


navigation li a, .custom-footer, .custom-footer li a {
    color: #99a9b5;
    padding-top: 15px;
}

#footer-socials {
    text-align: right;
}

#footer-socials .socials {
    text-align: right;
    margin: 0 -7px;
    display: inline-block;
    vertical-align: middle;
}

a.socials-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 5px;
    line-height: 16px;
    padding: 10px;
    border-radius: 50%;
    background-color: #141421;
    border: 1px solid #2e2e4c;
    box-shadow: 3px 9px 16px rgb(0,0,0,0.4), -3px -3px 10px rgba(255,255,255, 0.06), inset 14px 14px 26px rgb(0,0,0,0.3), inset -3px -3px 15px rgba(255,255,255, 0.05);
}

.socials-item i {
    display: inline-block;
    font-weight: normal;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 16px;
    text-align: center;
    vertical-align: top;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    text-rendering: auto;
}

.facebook {
    color: #4e64b5;
}

.twitter {
    color: #00aced;
}
.instagram {
    color: #9a8f62;
}
.youtube {
    color: #c82929;
}

.telegram {
    color: #2ca5e0;
}


a.socials-item:hover {
    box-shadow: 0 0px 20px rgba(84, 1, 74, 0.7);
    border-color: rgba(255, 6, 224, 0.61);
    background: linear-gradient(to right, rgba(255, 9, 9, 0.12941176470588237), #c000ffb5, rgba(255, 0, 94, 0.14));
}

.footer-bottom a:hover {
    color: white;
}


footer p, footer li {
    font-size: 15px;
    line-height: 22px;
}


.widget {
    margin-bottom: 50px;
}

.footer-title {
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 15px;
    font-size: 16px;
    position: relative;
}

.footer-title:after {
    width: 50px;
    background: #fff;
    opacity: 0.2;
    height: 1px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.gem-contacts-item {
    padding-top: 10px;
    font-size: 15px;
}

.gem-contacts-item i {
    padding-right: 10px;
}

footer .widget ul {
    list-style: none;
    margin-top: 5px;
}

.posts li {
    border-bottom: 1px solid #4f3950;
    padding-bottom: 12px;
    padding-top: 6px;
}

footer p, footer li {
    font-size: 15px;
    line-height: 22px;
}

.gem-pp-posts-date {
    color: #00bcd4;
    font-size: 89.5%;
}

footer p {
    line-height: 24px;
    margin-bottom: 10px;font-size: 15px;
}

.wpcf7-form-control-wrap .wpcf7-form-control {
    padding: 7px!important;
    width: 100%;
}

.wpcf7-form-control-wrap input {
    background: #1c1f2f;
    overflow: hidden;
    border: 1px solid #2e344d;
    background-color: #1c1f2f;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-form-control-wrap input:hover {
    background-color: transparent;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcf7 .wpcf7-form .contact-form-footer textarea {
    height: 160px;
    width: 100%;
}

.wpcf7-form-control-wrap textarea:hover {
    background-color: transparent;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcf7-form-control-wrap textarea {
    background: #1c1f2f;
    overflow: hidden;
    border: 1px solid #2e344d;
    background-color: #1c1f2f;
    box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03);
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

textarea {
    overflow: auto;
    resize: vertical;
}

.wpcf7 .wpcf7-form .contact-form-footer .wpcf7-submit {
    width: 100%;
    padding: 11px;
    margin: 0;
    line-height: 0;
}
.wpcf7-form .contact-form-footer .wpcf7-submit {
    background-color: #394050;
    color: #99a9b5;
    border: none;
    cursor: pointer;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
    letter-spacing: 2px;
    color: rgba(255,255,255,.5);
    box-shadow: none;
    text-transform: uppercase;
    outline: none !important;
    background-color: #1c1f2f;
    border-radius: 5px;
    min-width: 140px;
    /* box-shadow: 10px 10px 36px rgb(0,0,0,0.5), -13px -13px 23px rgba(255,255,255, 0.03), inset 14px 14px 70px rgb(0,0,0,0.2), inset -15px -15px 30px rgba(255,255,255, 0.04); */
    box-shadow: 3px 9px 16px rgb(0,0,0,0.4), -3px -3px 10px rgba(255,255,255, 0.06), inset 14px 14px 26px rgb(0,0,0,0.3), inset -3px -3px 15px rgba(255,255,255, 0.05);
    border-width: 1px 0px 0px 1px;
    border-style: solid;
    border-color: #2e344d;
    transition: all 0.3s ease-in-out 0s;
}

.wpcf7-form input[type=submit] {
    height: 40px;
    line-height: 21px;
    padding: 10px 40px;
    font-size: 14px;
}

.posts li a {
    color: #99a9b5;
}

.wpcf7-form .contact-form-footer .wpcf7-submit:hover {
    box-shadow: 0 0px 20px rgba(84, 1, 74, 0.7);
    border-color: rgba(255, 6, 224, 0.61);
    background: linear-gradient(to right, rgba(255, 9, 9, 0.12941176470588237), #c000ffb5, rgba(255, 0, 94, 0.14));
    color: white;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
.widget_gallery a {
    display: inline-block;
}
footer .widget ul {
    list-style: none;
    margin-top: 5px;
}
.widget_gallery ul {
    padding-left: 0;
    display: table;
}

.widget_gallery li {
    display: inline-block;
    width: 33.33%;
    /* float: left; */
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    padding: 2px;

}

.widget_gallery.gallery-grid-4 li {
    width: 30%;
}


#waterdrop {
    height: 30px;
}

#waterdrop canvas {
    bottom: -70px !important;
}

.footer-site-info
{
  padding-top: 10px;
}


/* navbar section */
/* Navbar Custom Styling */
.custom-navbar {
  background: #111; /* dark background */
  font-family: 'Montserrat', sans-serif;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #ddd;
  font-weight: 600;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 6px; /* spacing between icon and text */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link i {
  font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #03A9F5; /* highlight color */
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff4ecb, #9b4dff);
  border: none;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-gradient:hover {
  opacity: 0.85;
  color: #fff;
}

/* Navbar icon hover effect */
.navbar .nav-link i {
  transition: color 0.3s ease;
}

.navbar .nav-link:hover i {
  color: #ff4ecb;  /* change to your brand color */
}

/* Popup background */
#successPopup {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Popup box */
#successPopup .popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

#successPopup h2 {
  color: #28a745;
  margin-bottom: 10px;
}

.back-home-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff00b3;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.back-home-btn:hover {
  background: #0056b3;
}

/* Smooth animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* bell css */
.fas {
  margin-right: 10px;  /* space between icons */
  font-size: 15px;     /* adjust size */
  color:White;         /* default color */
  transition: color 0.3s, transform 0.2s; /* smooth hover effect */
}

.fas:hover {
  color: #ff4ecb;   /* change color on hover */
  transform: scale(1.2); /* zoom effect */
} 