/* ---------------------------------------
   BASIC NAVBAR DESIGN (CLOUDYMSG)
----------------------------------------- */
.navbar-custom {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

/* Brand Logo + Text */
.navbar-custom .navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-custom .navbar-brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Menu Links */
.navbar-custom .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #333 !important;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
/* =============== NAVBAR DROPDOWN ============== */
.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
  display: block;         /* required for hover animation */
  visibility: hidden;
  margin-top: 10PX;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  transition: background 0.3s ease,padding-left 0.3s ease;
}

/* Hover effect on items */
.dropdown-menu .dropdown-item:hover {
  background: #f2f6ff;
  color: salmon;
  padding-left: 26px;
}

/* Dropdown arrow smooth rotation */
.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Salmon hover effect */
.navbar-custom .nav-link:hover {
  background: salmon;
  color: white !important;
}

/* Active link */
.navbar-custom .nav-link.active {
  color: salmon !important;
  font-weight: 600;
}

/* ---------------------------------------
   TOGGLER BUTTON (VIDEO ICON)
----------------------------------------- */
.navbar-toggler {
  border: none !important;
  padding: 0 !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Video inside toggler */
.navbar-toggler video {
  border-radius: 8px;
}

/* ---------------------------------------
   MOBILE RESPONSIVENESS
----------------------------------------- */
@media (max-width: 991px) {
  .navbar-custom .navbar-nav {
    gap: 0;
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .navbar-custom .nav-link {
    padding: 12px 10px;
    margin: 3px 0;
    border-radius: 6px;
  }

  /* Expand background for mobile dropdown */
  .navbar-custom {
    padding: 10px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .navbar-custom .navbar-brand {
    font-size: 1.0rem;
  }

  .navbar-toggler video {
    width: 55px !important;
    height: 55px !important;
  }
}


/* -------------------------------------------------------------------------------------------------------------------------------------------------- */




/* Wrapper */
.video-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 20px auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Video Styling */
.video-container video {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay */
.video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.55)
  );
}

/* Content Overlay */
#whoweare {
  position: absolute;
  bottom: 30px;
  left: 40px;
  right: 40px;
  z-index: 2;
  color: #fff;
}

#whoweare h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

#whoweare p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 750px;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 992px) {
  #whoweare {
    bottom: 20px;
    left: 25px;
    right: 25px;
  }

  #whoweare h3 {
    font-size: 1.6rem;
  }

  #whoweare p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  #whoweare {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  #whoweare h3 {
    font-size: 1.4rem;
  }

  #whoweare p {
    font-size: 0.9rem;
  }

  .video-container video {
    max-height: 380px;
  }
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------
   SECTION HEADING
------------------------------ */
#hover_effect h4 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ff8066; /* salmon tone */
  margin-bottom: 25px;
}

/* ------------------------------
   CARD BASE STYLE
------------------------------ */
#hover_effect .card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #ffffff;
}

/* Card hover lift */
#hover_effect .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* ------------------------------
   CARD IMAGE
------------------------------ */
#hover_effect .card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 20px;
  background: #fff5f2; /* soft salmon background */
}

/* ------------------------------
   TEXT AREA
------------------------------ */
#hover_effect .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b58; /* dark salmon */
  margin-bottom: 8px;
}

#hover_effect .card-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ------------------------------
   SALMON BUTTON LINK
------------------------------ */
#hover_effect .card a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #ff8066;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

#hover_effect .card a:hover {
  background: #ff5b3f;
  transform: scale(1.05);
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */

/* Tablet */
@media (max-width: 992px) {
  #hover_effect .card img {
    height: 160px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #hover_effect h4 {
    font-size: 1.6rem;
  }

  #hover_effect .card img {
    height: 140px;
    padding: 16px;
  }

  #hover_effect .card-title {
    font-size: 1rem;
  }

  #hover_effect .card-text {
    font-size: 0.9rem;
  }

  #hover_effect .card a {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------- */
/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------
   EMPOWER SECTION
------------------------------ */
#empower {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Empower heading */
#empower h3 {
  font-size: clamp(1.4rem, 2.2vw + 1rem, 2.1rem);
  font-weight: 700;
  color: #ff6b5a;
  line-height: 1.4;
}

/* Image styling (center always) */
#empower img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet layout */
@media (max-width: 992px) {
  #empower .row {
    text-align: center;
  }

  #empower img {
    max-width: 300px;
    margin: 15px auto 0 auto; /* ensures CENTER */
  }
}

/* Mobile layout */
@media (max-width: 576px) {
  #empower h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  #empower img {
    max-width: 240px;
    margin: 10px auto; /* ALWAYS CENTERED */
  }
}

/* ------------------------------
   MESSAGE SECTION
------------------------------ */
#message {
  background: #fff5f2;
  border-radius: 14px;
  padding: 50px 15px;
  text-align: center;
}

#message h4 {
  font-size: clamp(1.4rem, 2vw + 1rem, 1.9rem);
  font-weight: 700;
  color: #ff6b5a;
  margin-bottom: 15px;
}

#message h4 span {
  color: #ff856f;
  font-weight: 800;
}

#message p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 0.4vw + 0.8rem, 1rem);
  line-height: 1.8;
  color: #4b4b4b;
}
/* ------------------------------------------------------------------------------------------------------------------ */

/* -----------------------------
   GRAPHICS SECTION WRAPPER
------------------------------ */
#graphics {
  max-width: 1100px;
  margin: 60px auto;
}

/* -----------------------------
   MODERN CARD LAYOUT
------------------------------ */
#graphics .modern-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px;
  border-radius: 18px;
  background: #fff5f2; /* soft salmon tint */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Image column */
#graphics .modern-card-image {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#graphics .modern-card-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content column */
#graphics .modern-card-content {
  flex: 1;
}

/* Title */
#graphics .modern-card-content h5 {
  font-size: clamp(1.3rem, 1.5vw + 1rem, 1.6rem);
  font-weight: 700;
  color: #ff6b5a; /* salmon */
  margin-bottom: 10px;
}

/* Text */
#graphics .modern-card-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b4b4b;
  margin-bottom: 18px;
}

/* Button group */
#graphics .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Salmon button */
#graphics .btn-meet {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #ff8066;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 15px rgba(255, 128, 102, 0.4);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

#graphics .btn-meet:hover {
  background: #ff5b3f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 91, 63, 0.45);
}

/* -----------------------------
   RESPONSIVE BEHAVIOR
------------------------------ */

/* Tablets & below */
@media (max-width: 992px) {
  #graphics {
    margin: 40px 1px;
  }

  #graphics .modern-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  #graphics .modern-card-image {
    flex: 0 0 auto;
  }

  #graphics .modern-card-content p {
    font-size: 0.95rem;
  }

  #graphics .button-group {
    justify-content: center;
  }
}

/* Small mobiles */
@media (max-width: 576px) {
  #graphics .modern-card {
    padding: 18px 14px;
  }

  #graphics .modern-card-content h5 {
    font-size: 1.25rem;
  }

  #graphics .modern-card-content p {
    font-size: 0.9rem;
  }

  #graphics .btn-meet {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
/* --------------------------------------------------------------------------------------------------------------------------------------- */

/* -----------------------------------------
   Section Base
------------------------------------------ */
.why-us-section {
  padding: 60px 0;
}

.why-us-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6b5a; /* Salmon */
}

.why-us-section .section-header h2 span {
  color: #ff856f; /* lighter salmon */
}

.why-us-section .section-header p {
  max-width: 750px;
  margin: 10px auto 30px auto;
  color: #4b4b4b;
  font-size: 1rem;
  line-height: 1.7;
}

/* -----------------------------------------
   Card Style
------------------------------------------ */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 22px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover Effect */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* -----------------------------------------
   Icons
------------------------------------------ */
.why-card .why-icon {
  font-size: 42px;
  margin-bottom: 12px;
  color: #ff6b5a; /* salmon */
  transition: color 0.25s ease, transform 0.25s ease;
}

.why-card:hover .why-icon {
  color: #ff5b3f; /* darker salmon on hover */
  transform: scale(1.1);
}

/* -----------------------------------------
   Text inside Card
------------------------------------------ */
.why-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b5a; /* salmon */
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #4b4b4b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* -----------------------------------------
   RESPONSIVE
------------------------------------------ */

/* Medium screens - tablets */
@media (max-width: 992px) {
  .why-card {
    padding: 22px 18px;
  }

  .why-card h4 {
    font-size: 1.15rem;
  }

  .why-card .why-icon {
    font-size: 38px;
  }
}

/* Small screens - mobile */
@media (max-width: 576px) {
  .why-us-section {
    padding: 40px 0;
  }

  .why-us-section .section-header h2 {
    font-size: 1.8rem;
  }

  .why-card {
    padding: 20px 15px;
  }

  .why-card h4 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }

  .why-card .why-icon {
    font-size: 34px;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------
   SECTION BASE
---------------------------------------- */
.stats-section {
  padding: 60px 0;
  background: #ffffff;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* We'll control layout via .container */
.stats-section .container {
  /* default: stacked (for mobile / tablet) */
}

/* Heading */
.stats-heading {
    /* margin: auto; */
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff6b5a;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-color: red; */
  /* margin-bottom: 30px; */
}

/* ---------------------------------------
   SIMPLE, CENTERED STAT CARD
---------------------------------------- */
.stat-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
}

/* Icon big & salmon */
.stat-icon {
  font-size: 52px;
  color: #ff6b5a;
  margin-bottom: 8px;
}

/* Counter */
.counter-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

.counter {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ff6b5a;
}

.counter-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff9a80;
}

.stat-card p {
  margin-top: 6px;
  font-size: 1rem;
  color: #555;
}

/* "Statistics" heading in first card */
.stat-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b5a;
  margin-bottom: 4px;
}

/* ---------------------------------------
   DESKTOP LAYOUT: HEADING LEFT, CARDS RIGHT
---------------------------------------- */
@media (min-width: 992px) {
  .stats-section .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }

  /* Heading block on the left */
  .stats-heading {
    flex: 0 0 28%;
    max-width: 320px;
    text-align: left;
    margin-bottom: 0;
  }

  /* Cards (Bootstrap row) on the right */
  .stats-section .row {
    flex: 1;
  }
}

/* ---------------------------------------
   TABLETS
---------------------------------------- */
@media (max-width: 991.98px) {
  .stats-heading {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 46px;
  }

  .counter {
    font-size: 2rem;
  }
}

/* ---------------------------------------
   MOBILES
---------------------------------------- */
@media (max-width: 576px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-heading {
    font-size: 1.8rem;
  }

  .stat-icon {
    font-size: 40px;
  }

  .counter {
    font-size: 1.7rem;
  }

  .stat-card p {
    font-size: 0.9rem;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------ */

/* ---------------------------------------
   FOOTER BASE – LIGHT SALMON THEME
---------------------------------------- */
.site-footer {
  background: #ffe9e4; /* light salmon shade */
  color: #333; /* regular dark color */
  font-size: 0.95rem;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px 20px 35px;
}

/* ---------------------------------------
   GRID LAYOUT
---------------------------------------- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* ---------------------------------------
   COLUMNS
---------------------------------------- */
.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;

  color: #d45e48; /* deeper salmon text */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 7px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333; /* regular text color */
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-column ul li a:hover {
  color: #d45e48;         /* salmon hover */
  padding-left: 4px;
}

/* ---------------------------------------
   CONTACT INFO
---------------------------------------- */
.contact-info .contact-item {
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}

.contact-info .phone {
  font-weight: 600;
  color: #d45e48; /* subtle salmon highlight */
}

.contact-info .email {
  font-weight: 500;
  color: #aa4633;
}

/* ---------------------------------------
   SOCIAL ICONS
---------------------------------------- */
.social-section h4 {
  margin-top: 20px;
  font-size: 1rem;
  color: #d45e48;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #ffd6cd;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icon:hover {
  background: #d45e48;
  color: #fff;
  transform: translateY(-3px);
}

/* ---------------------------------------
   FOOTER BOTTOM
---------------------------------------- */
.footer-bottom {
  text-align: center;
  padding: 14px 10px 20px;
  font-size: 0.9rem;
  color: #444;
  background: #ffd6cd; /* slightly darker salmon strip */
}

.footer-bottom .powered-by {
  color: #aa4633;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ---------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 30px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .social-icons {
    justify-content: flex-start;
  }
}
