@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

/* :root {
    --primary: #0f4229;
    --secondary: #1c1c1c;
    --light: #ffffff;
    --dark: #000000;
} */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #D2D2D2;
  margin-top: 110px;
}

body::before {
  position: absolute;
  width: min(1400px, 90vw);
  top: 10%;
  left: 50%;
  height: 90%;
  transform: translateX(-50%);
  content: '';
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
}

.topbar a i {
  color: #ffffff;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

/* .topbar a i:hover {
  color: #25D366; 
} */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-left,
  .topbar-right {
    margin: 5px 0;
  }
}


body::before {
  position: absolute;
  width: min(1400px, 90vw);
  top: 10%;
  left: 50%;
  height: 90%;
  transform: translateX(-50%);
  content: '';
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
}

/* For headings */
h1, h2, h3, .section-title, .hero-heading {
  font-family: 'Bebas Neue', sans-serif;
}

/* For general text */
body, p, a, li, .hero-paragraph, .hero-subheading {
  font-family: 'Poppins', sans-serif;
}
a:hover span i {
  color: #00adb5;
}

/* TOPBAR */
.topbar {
  top: auto;
  width: 100%;
  height: auto;
  background-color: #1e1e2f;
  z-index: 1000;
  font-size: 14px;
  position: static;
  transition: top 0.2s;
   border-bottom: 2px solid #1aa3a3;
}

.topbar .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar {
  background-color: #1e1e2f;
  padding: 10px 0;
  font-size: 14px;
}

.container-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

/* CENTER the topbar-left */
.topbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* Center horizontally */
  text-align: center;
}

.topbar-left span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  color: #ddd;
}

.topbar-left i {
  margin-right: 6px;
  color: #1aa3a3 !important;
}

.topbar-left a {
  color: #fff;
  text-decoration: none;
}

.topbar-left a:hover {
  color: #1aa3a3 !important;
}

/* RIGHT SIDE - stick to the right edge */
.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 0;
}

.topbar-right a {
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s ease;
}

.topbar-right a i:hover {
  color: #00adb5 !important;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .topbar{
    display: none;
  }
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    margin-bottom: 8px;
  }

  .topbar-left span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .topbar-right {
    justify-content: flex-start;
    gap: 10px;
  }

  .topbar-right a {
    font-size: 18px;
  }
}



/* Navbar */
.navbar,
.navbar-container,
.nav-links li {
  overflow: visible !important;
}

.navbar {
  position: relative;
  top: auto;
  width: 100%;
  z-index: 999;
  background: rgb(30, 30, 47);
  backdrop-filter: blur(10px);
  padding: 15px 60px !important;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  height: 65px !important;
  width: 200px !important;
  margin-right: 56px !important;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-left: 140px;
  align-items: center;
  position: relative;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #ccc;
  font-weight: 600;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(0, 173, 181, 0.15);
}

.contact-btn {
  background-color: #00adb5;
  color: #1e1e2f !important;
  font-weight: bold;
  border-radius: 6px;
  
}

.contact-btn:hover {
  background-color: #00adb5 !important;
  color: #fff !important;
}

/* DROPDOWN MENU */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  background: #1e1e2f !important;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  z-index: 9999 !important;
  flex-direction: column;
}

.dropdown:hover > .dropdown-menu,
.dropdown-submenu:hover > .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 5px 12px;
  color: #ccc;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 173, 181, 0.1);
  color: #00adb5;
}

/* RIGHT SIDE DROPDOWN */
.dropdown-menu.right {
    left: 100%;
    top: 0px;
    margin-left: 0px;
}

.dropdown-submenu {
  position: relative;
  font-size: 15px;
}
        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 332px;
            height: 100vh;
            background: #1e1e2f;
            box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease-in-out;
            padding: 20px;
            overflow-y: auto;
            z-index: 9999;
        }
.nav-toggle {
  display: none;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
  color: #00adb5; /* Change as needed */
  z-index: 10001;
}
        .mobile-sidebar.active {
            left: 0;
        }

        .close-btn {
            font-size: 24px;
            border: none;
            background: none;
            float: right;
            cursor: pointer;
            margin-bottom: 20px;
            color: #00adb5; /* Change as needed */
        }

        .search-box {
            display: flex;
            margin-bottom: 20px;
        }

        .search-box input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            margin-bottom: 29px;
        }

        .search-box button {
            background: #008080;
            color: white;
            padding: 8px 12px;
            border: none;
            cursor: pointer;
            margin-bottom: 29px;
            margin-right: 1px;
        }

        .mobile-nav li {
            list-style: none;
            border-top: 1px solid #eee;
        }

        .mobile-nav a {
            display: block;
            padding: 12px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        /* .mobile-nav a:hover {
            background: #f0f0f0;
        } */

        .has-dropdown>a::after {
            content: ' ▼';
            float: right;
            font-size: 12px;
        }

        .submenu {
            display: none;
            padding-left: 10px;
        }

        .has-dropdown.open>.submenu {
            display: block;
        }

     /* Show toggler only on mobile */
.nav-toggle {
  display: none; /* Default hidden */
}

@media (max-width: 991px) {
  .nav-toggle {
    display: block !important; /* Show on mobile only */
  }

  .nav-links {
    display: none;
  }

  .mobile-sidebar {
    display: block;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none !important; /* Ensure it's hidden on desktop */
  }

  .mobile-sidebar,
  .close-btn {
    display: none !important;
  }
  
}
@media screen and (max-width:992px) {
  .floating-social {
    left: 15px;
    top: 810px;
    gap: 8px;
  
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
    
  }
  .social-btn.instagram {
    margin-bottom: 450px;
      
  }
}



.nav-links.open {
  display: flex;
}


a {
  text-decoration: none;
  color: white;
}

.contact-header {
  background: url('images/group-friends-looking-laptop.webp') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-header .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-header h1 {
  font-size: 55px;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-header p {
  font-size: 16px;
}

.contact-section {
  padding: 60px 20px;
  background: #fff;
}

.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.sub-heading {
  color: #00adb5;
  font-weight: bold;
  font-size: 55px;
  margin-bottom: 10px;
    padding-top: 60px;

}

.main-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e1e2f;
}

.description {
  font-size: 16px;
  color: white;
  margin-bottom: 40px;
}


/* form  */

   .contact-form {
  max-width: 600px;
  margin: 50px auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.06); /* transparent for dark backgrounds */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  backdrop-filter: blur(10px); /* soft blur effect */
  color: #fff;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #fff; /* white text for dark bg */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
}

.contact-form button {
  padding: 12px 25px;
  background-color: #00adb5;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #1e1e2f;
  color: white;
}
.contact-section {
  background: linear-gradient(to bottom right, #1e1e2f, #00adb5);
  padding: 0px;
  color: #fff;
}

    /* ✅ Success message styles */
   .success-msg {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00b894;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.3s ease-in-out;
  z-index: 1000;
}


    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 30px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Brand Colors */
.social-icons .facebook {
  background-color: #3b5998;
}

.social-icons .instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  /* margin-bottom: 60px; */
}

.social-icons .pinterest {
  background-color: #bd081c;
}

/* Hover effect */
.social-icons a:hover {
  transform: scale(1.15);
  filter: brightness(1.1);
}


/* Map */
.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  margin: 70px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgb(0, 173, 181); /* brand-colored glow */
  cursor: pointer;
}

.card-icon {
  font-size: 36px;
  color: #00adb5;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.card:hover .card-icon {
  color: #00adb5; /* Slight color shift on hover */
}

.card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e1e2f;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.card-icon {
  font-size: 32px;
  color: #00adb5;
  margin-bottom: 15px;
  display: block;
}


h1, h2, h3, .section-title, .hero-heading {
  font-family: 'Bebas Neue', sans-serif;
}

/* courser-dot */
@media (hover: hover) and (pointer: fine) {
  /* Base .cursor-dot */
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: #1e1e2f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 6px #00adb5;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
  }

  body.hovered .cursor-dot {
    background: #00adb5;
    box-shadow: 0 0 10px #00adb5;
  }

  body.clicked .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
  }
}




.floating-social {
  position: fixed;
  bottom: 20px;       /* Stick to bottom */
  left: 20px;         /* Stick to left */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-btn {
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp default */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
  color: white;
}

@media screen and (max-width: 992px) {
  .floating-social {
    bottom: 15px; /* Slightly higher on mobile */
    left: 15px;
    gap: 10px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 10px rgb(0, 173, 181);
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
}

.scroll-top-btn .arrow-up {
  position: absolute;
  z-index: 2;
  color: #00adb5!important;
  font-size: 20px;
}

.scroll-top-btn .ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#00adb5 25%, transparent 25% 100%);
  animation: rotate 2s linear infinite;
  z-index: 1;
  mask: radial-gradient(circle 24px at center, transparent 99%, black 100%);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px
  
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transition: transform .3s ease
}

.contact-card:hover {
  transform: translateY(-5px)
}

.icon {
  font-size: 24px;
  color: #00adb5
}

.location-link {
  color: #00adb5;
  text-decoration: none;
  transition: 0.3s ease;
}

.location-link:hover {
  text-decoration: underline;
  /* color: #007bff; */
}
.email:hover{
    text-decoration: underline;

}
.link{
  color: #00adb5;
  text-decoration: none;
  transition: 0.3s ease;
}
.link:hover {
  text-decoration: underline;
  color: #00adb5;
}