body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
overflow-x: hidden;
}

/* NAVBAR */

.navbar-nav .nav-link{
margin:0 10px;
font-size: 15px;
font-family: sans-serif;
color: black;
}
.dropdown-menu .dropdown-item{
  font-family: sans-serif;
}
.navbar-nav .nav-link:hover{
color:#1ba6d5;
}

.dropdown-menu{
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
border:none;
}

.dropdown-item:hover{
background:#f2f6ff;
color:#1ba6d5;
}
/* BUTTON */

.contact-btn{
background:#1ba6d5;
color:white;
padding:10px 25px;
border-radius:5px;
font-weight: bold;
}

.contact-btn:hover{
background:#148bb4;
color:white;
}

/*===hero page===*/

.hero-section {
  background: linear-gradient(135deg, #0a7a8f 0%, #0d5c75 40%, #1a3a5c 100%);
  padding: 80px 0;
  margin-top: 125px;
}

.hero-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 0 0 50%;
}

.hero-right {
  flex: 0 0 50%;
}

.hero-badge {
  display: inline-block;
  background: #148bb4;
  color: white;
  border: 1px solid white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-left h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: white;
}

.hero-left .hero-bold {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero-left p {
  font-size: 0.95rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
   border: 1px solid rgba(255,255,255,0.4);
  transition: 0.3s;
}

.hero-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .hero-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .hero-right {
    flex: unset;
    width: 100%;
  }
}

/* ===== SECOND ===== */

.solution-section {
  background: linear-gradient(160deg, #e8f4f8 0%, #cce8f0 50%, #b8dce8 100%);
  padding: 80px 0;
}

.solution-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-left {
  flex: 0 0 50%;
}

.solution-right {
  flex: 0 0 50%;
}

.solution-left img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.solution-badge {
  display: inline-block;
  background: white;
  color: #0a7a8f;
  border: 1px solid #0a7a8f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.solution-right h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0a7a8f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.solution-right p {
  font-size: 0.95rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 32px;
}

.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0a7a8f;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #0a7a8f;
}

.solution-btn:hover {
  background: #0a7a8f;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 992px) {
  .solution-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .solution-left {
    flex: unset;
    width: 100%;
  }
}

/* ===== THIRD ===== */

.tdc-section {
  background: linear-gradient(135deg, #0a7a8f 0%, #0d5c75 40%, #1a3a5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tdc-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,200,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.tdc-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tdc-left {
  flex: 0 0 50%;
}

.tdc-right {
  flex: 0 0 50%;
}

.tdc-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.tdc-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.tdc-left .tdc-bold {
  font-size: 1rem;
  font-weight: 700;
  color: #e0f7fa;
  line-height: 1.7;
  margin-bottom: 14px;
}

.tdc-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.tdc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.3s;
}

.tdc-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.tdc-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.tdc-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.tdc-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 18px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .tdc-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .tdc-left,
  .tdc-right {
    flex: unset;
    width: 100%;
  }
}

/* ===== FOURTH ===== */

.analytics-section {
  background: linear-gradient(160deg, #e8f4f8 0%, #cce8f0 50%, #b8dce8 100%);
  padding: 80px 0;
}

.analytics-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.analytics-left {
  flex: 0 0 50%;
}

.analytics-right {
  flex: 0 0 50%;
}

.analytics-left img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.analytics-badge {
  display: inline-block;
  background: transparent;
  color: #0a7a8f;
  border: 1px solid #0a7a8f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.analytics-right h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0a7a8f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.analytics-right p {
  font-size: 0.95rem;
  color: #2c4a5a;
  line-height: 1.8;
  margin-bottom: 32px;
}

.analytics-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0a7a8f;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #0a7a8f;
  transition: 0.3s;
}

.analytics-btn:hover {
  background: #0a7a8f;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .analytics-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .analytics-left,
  .analytics-right {
    flex: unset;
    width: 100%;
  }
}

/* ===== FOOTER MAIN ===== */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* ===== LOGO ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: fit-content;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 45px;
  height: 45px;
  transition: filter 0.3s ease;
}

.footer-logo:hover .logo-icon {
  filter: drop-shadow(0 0 8px rgba(180, 160, 100, 0.8));
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-logo:hover .logo-text {
  color: #11627d;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #11627d;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.social-btn:hover::before {
  transform: scale(1);
}

.social-btn:hover {
  border-color: #11627d;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
  transform: translateY(-3px);
}

.social-btn:hover svg {
  transform: scale(1.15);
  color: #1a1a1a;
}




/* ===== FOOTER COLUMNS ===== */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
  padding-left: 43px;
}



.footer-col:hover .footer-heading::after {
  width: 40px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: '›';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  color: #11627d;
  font-size: 16px;
  line-height: 1;
}

.footer-links li a:hover {
  color: #11627d;
  padding-left: 14px;
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(-14px);
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 30px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #111111;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.ldcb-link {
  color: #11627d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ldcb-link:hover {
  color: #fff;
  text-shadow: 0 0 8px #11627d;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.contact-info svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-info:hover {
  color: #11627d;
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(200, 169, 110, 0.07);
}

.contact-info:hover svg {
  transform: scale(1.2);
  stroke: #11627d;
}

.flag-badge {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
  cursor: default;
}

.flag-badge:hover {
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.3);
  color: #11627d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}