/* RESET */
a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.main-menu .nav-link,
.menu-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
}

.main-menu .nav-link:hover,
.menu-link:hover {
    color: #0d6efd;
}

/* MEGA MENU */
/* ================= MEGA MENU ================= */
.mega-dropdown {
    position: relative;
}

.mega-toggle {
    cursor: pointer;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 800px;
    display: none;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    z-index: 999;
}

/* Show menu on hover */
.mega-dropdown:hover .mega-menu {
    display: grid;
}

/* Grid layout */
.mega-menu {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Columns */
.mega-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #063863;
    margin-bottom: 12px;
}

.mega-column a {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s;
}

.mega-column a:hover {
    color: #0077b6;
}

/* ================= SUBMENU ================= */
.submenu {
    margin: 10px 0;
}

.submenu-title {
    font-size: 14px;
    font-weight: 600;
    color: #063863;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.submenu-items {
    display: none;
    padding-left: 12px;
    margin-top: 8px;
}

.submenu:hover .submenu-items {
    display: block;
}

.submenu:hover .arrow {
    transform: rotate(180deg);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .mega-menu {
        width: 100%;
        position: static;
        display: none;
        grid-template-columns: 1fr;
    }

    .mega-dropdown:hover .mega-menu {
        display: block;
    }
}


/* FOOTER */
.site-footer {
    background: #063863;
    color: #F0F7FA;
    padding: 60px 0;
}

.site-footer a {
    color: #F0F7FA;
}

.site-footer a:hover {
    color: #04A4C1;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
}

.footer-social i {
    font-size: 20px;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #04A4C1;
    padding-top: 20px;
    margin-top: 30px;
}
/* ---------------------
   HERO SECTION
----------------------*/
/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 55vh;
  background: url("images/hero.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: #fff;
}

/* Hero text */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  align-items: center;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  align-items: center;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  border: 2px solid #04A4C1;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #04A4C1;
  color: #fff;
  align-items: center;
}

/* Images */
.company-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero_image1 {
  max-width: 400px;
  width: 100%;
  height: 300;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 32px;
    text-align: center;
  }

  .hero-content p {
    text-align: center;
  }

  .hero-btn {
    display: block;
    margin: 0 auto 20px;
  }
}

@media (max-width: 576px) {
  .company-logo,
  .hero_image1 {
    max-width: 150px;
  }
}

/* Section Styling */
.who-we-are-section {
    background-color: #F7F9FC;
}

/* Title */
.who-title {
    font-size: 36px;
    font-weight: 700;
    color: #063863;
    text-align: left;

}

/* Description */
.who-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #063863;
    text-align: left;

}

/* Button */
.who-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border-radius: 30px;
    border: 2px solid #04A4C1;
    color: #063863;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    text-align: left;

}

.who-btn:hover {
    background: #04A4C1;
    color: white;
}
/* Section Background */
/* Section Background */
.core-services-section {
    background-color: #ffffff;
}

/* Heading */
.core-title {
    font-size: 36px;
    font-weight: 700;
    color: #063863;
    text-align: center;
}

/* Service Box */
.core-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Effect */
.core-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Icon */
.core-icon i {
    font-size: 40px;
    color: #04A4C1;
    margin-bottom: 20px;
}

/* Title */
.core-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #063863;
    margin-bottom: 10px;
}

/* Description */
.core-item-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
* Commitment section */
.commitment-section {
  background-color: #8fd4f1; /* change if you want a subtle bg */
  color: #063863;
}
.commitment-section {
  background-color: #F0F7FA; /* change if you want a subtle bg */
  color: #063863;
}

/* Title */
.commitment-title {
  font-size: 32px;
  font-weight: 700;
  color: #063863;
  margin-bottom: 1rem;
  text-align: left;
}

/* List container */
.commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each item */
.point-item {
  position: relative;        /* container for absolute dot */
  padding: 18px 20px 18px 64px; /* left padding to make room for dot */
  border-radius: 12px;
  margin-bottom: 12px;
  background: transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* hover lift */
.point-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(4,164,193,0.08);
}
.project-card {
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.project-img {
    height: 170px;       /* SMALL BOX HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img img {
    max-height: 150px;    /* LOGO SIZE */
    width: auto;
}

/* Dot styles (the classes you requested are present) */
.point-dot {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: #04A4C1;             /* dot color */
  border: 3px solid #F0F7FA;      /* inner contrast ring */
  border-radius: 50%;
  left: 24px;                      /* horizontal position inside the list */
  top: 50%;                        /* vertically center relative to item */
  transform: translateY(-50%);     /* center the dot vertically */
  box-shadow: 0 2px 6px rgba(4,164,193,0.15);
  position: absolute;              /* required for the 'position-absolute' class */
  z-index: 2;
  pointer-events: none;            /* matches pe-none */
}

/* Optional small inner marker to create a "map" look (subtle) */
.point-dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 0.95;
}

/* Text next to dot */
.point-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #063863;
  vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .point-item {
    padding-left: 54px;
  }
  .point-dot {
    left: 16px;
    width: 18px;
    height: 18px;
  }
  .point-text {
    font-size: 16px;
  }
}

/* If you want a vertical connecting line between dots (optional) */
.commitment-list.with-line .point-item::before {
  content: "";
  position: absolute;
  left: 34px;                   /* center line between dots (adjust per dot left) */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(4,164,193,0.18), rgba(4,164,193,0.06));
  z-index: 1;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}


body.o_web_client.login_page header,
body.o_web_client.login_page footer {
    display: none !important;
}
