body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fafb;
  color: #333;
}

.dancing {
  font-family: "Dancing Script", cursive;
}

.section-title {
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  margin: 20px 0;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #047857;
  letter-spacing: 3px;
}

/* ------------------------- NAVBAR ------------------------------- */

.navbar {
  width: 96%;
  height: 60px;
  padding: 15px 30px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
  width: 60px;
  height: auto;
}



/* Centered tabs */
.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0 auto;           
}

.nav-links .li-nav .a-nav {
  text-decoration: none;
  color: #047857;
  font-weight: 7  00;
  transition: 0.3s;
}

.nav-links .li-nav .a-nav:hover {
  color: #065f46;
}


/* Phone Button  */
.flip-button {
  --col1: #047857;
  --col2: #ffffff;
  --col3: #047857;
  position: relative;
  min-width: 10rem;
  min-height: 3rem;
  perspective: 800px;
  padding-right: 0px;
}

.flip-button .button {
  appearance: none;
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 30px;
  font-size: .75em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background-color: var(--col1);
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 1s ease-out .5s;
  transform-style: preserve-3d;
  width: 100%;
}

.flip-button:hover .button {
  background-color: var(--col2);
  cursor: pointer;
  transform: rotateY(180deg); 
  transition: all .3s ease-out;
}

.flip-button:hover .button:active {
  background-color: #00513a;
  transform: rotateY(180deg); 
  transition: all .1s ease-out;
}

.flip-button .button::after {
  content: '';
  box-shadow: 0px 0px 60px 5px #046d50;
  display: block;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  transition: all .3s ease-out .95s;
}

.flip-button:hover .button::after {
  transition: all .3s ease-out;
}

.flip-button .text-front,
.flip-button .text-back {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 1.5em;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  width: 100%;
}

.flip-button .text-back {
  transform: translate(-50%, -50%) rotateY(180deg);
  color: #047857;
}


/* -------------------- HERO ------------------------------------ */
.hero {
  background: url("img1.jpg") center/cover no-repeat;
  color: white;
  height: 511px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay */
  z-index: 1;
}

.hero h1, .hero p {
  position: relative;
  z-index: 2; /* ensures text is above overlay */
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    height: 380px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* --------------------------- ABOUT ----------------------------- */
.about {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding: 0 5px;
  padding-bottom: 80px;
}

.sub-title {
  font-size: 40px;
  color: #047857;
  font-weight: 700;
}

.about-text {
  font-size: 18px;
  color: #047857;
  margin-bottom: 20px;
  justify-content: center;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.about-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-card h3 {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #047857;
}


.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}



.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid #047857;
  border-radius: 8px;
  color: #047857;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #047857;
  color: white;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s;
}

.btn:hover .arrow {
  transform: translateX(5px);
}

/* ------------------------------- Clients & Affiliates ------------- */

.client-container {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 50px;
  height: 300px;
  padding: 20px;
  justify-items: center;
  background-color: white;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.client-card {
  position: relative;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
}

/* Tooltip styling */
.client-card::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.client-card:hover::after {
  opacity: 1;
}

/* Tooltip arrow */
.client-card::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0,0,0,0.85) transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.client-card:hover::before {
  opacity: 1;
}

.client-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}


/*   --------------- Visio & Mission ---------------------------*/

.vision-mission {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.vm-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.vm-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #059669; 
}

.vm-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/*---------------------------------- STAND OUT ------------------ */
.stand-out {
  padding: 60px;
}

.stand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.stand-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.stand-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.stand-card:hover .stand-bg {
  transform: scale(1.1);
}

.stand-text {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  color: white;
  padding: 20px;
}

/* FOOTER -------------------------------------------------------- */
footer {
    width: 100%;
    background: #25262A;
    color: #fff;
    padding: 50px 20px;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;        
    align-items: flex-start;
    gap: 60px;                      
    flex-wrap: wrap;
    text-align: center;
}


.col {
    flex: 1;
    min-width: 250px;
}


.col-1 ul {
    list-style: none;
    padding: 0;
}

.col-1 ul li {
    margin: 8px 0;
}

.col-1 ul li a {
    color: #fff;
    font-size:larger;
    font-weight: 300;
    text-decoration: none;
}

.col-1 ul li a:hover {
    color: #0d9276;
}

.header-footer{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Column 2 Logo + Text + Icons centered */
.col-2 img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.company-name {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Social icons */
.socials-card {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 10px;
}

.socialContainer {
  width: 60px;
  height: 60px;
  background: #059669; 
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.socialContainer:hover {
  transform: translateY(-7px);
  background: #047857; /* darker emerald */
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.socialSvg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Specific branding if you want custom colors later */
.containerWhatsapp { background: #25D366; }
.containerWhatsapp:hover { background: #1ebe5a; }

.containerFacebook { background: #1877f2; }
.containerFacebook:hover { background: #0f5bc4; }

.containerLinkedin { background: #0A66C2; }
.containerLinkedin:hover { background: #084f96; }

/* Make icons slightly bigger on larger screens */
@media (min-width: 768px) {
  .socialContainer {
    width: 70px;
    height: 70px;
  }
  .socialSvg {
    width: 30px;
    height: 30px;
  }
}
