body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
overflow-x: hidden;
}

/* LOGO */

.logo{
width:180px;
}


/* 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 IMAGE */

.hero{
    margin-top: 110px;
height:85vh;
background-image:url("../image/header\ bg.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
}

/* BLACK BOX */

.hero-content{

background: linear-gradient(to right, rgba(18,18,18,0) 0%, rgb(2, 2, 2) 50%, rgba(18, 18, 18, 0) 100%);
color:white;
width: 100%;
padding:40px 80px;
margin-top: 250px;
text-align:center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
animation:fadeUp 2s ease;

}
@media (max-width:768px){
    .hero-content{
        padding: 20px;
        font-size: 16px;
    }
}

/* TEXT */

.hero-content h1{
font-size:45px;
margin-bottom:10px;
}
.hero-content h2{
font-size:35px;
}
/* ANIMATIONS */

@keyframes fadeUp{

0%{
transform:translateY(40px);
opacity:0;
}

100%{
transform:translateY(0);
opacity:1;
}

}
@keyframes logoFloat{

0%{
transform:translateY(0px);
}

100%{
transform:translateY(-5px);
}

}
.about{
    background-color: #11627d;
    min-height: 100vh;
    color: white;
}
.about2 h1{
    margin-top: 70px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 9%;
}
.about2 p{
    margin-top: 15px;
    margin-left: 9%;
    font-size: 17px;
}
.about img{
    width:100%;
    margin-top: 70px;
    border-radius: 20px;
}

.about2{
    display:flex;
    flex-direction:column;
}



.services {
  padding: 80px 0;
  background: rgb(192, 188, 188);
}

.services .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a73e8;
  background: #eef4ff;
  border: 1px solid #c2d9ff;
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.services .section-title {
  font-size: 3.5rem;
  font-weight: 450;
  color: black;
  margin-bottom: 12px;
}

.services .section-title span {
  color: #1a73e8;
}

.services .section-sub {
  color: #666;
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 50px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-box {
  background: white;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border-radius: 16px;
  border: 1px solid #e0ecff;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 115, 232, 0.12);
  border-color: #1a73e8;
}

.card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c2d9ff;
}

.icon-box {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.service-box:hover .icon-box {
  background: #1a73e8;
}

.icon-box i {
  font-size: 28px;
  color: #1a73e8;
  transition: 0.3s;
}

.service-box:hover .icon-box i {
  color: white;
}

.card-line {
  width: 36px;
  height: 3px;
  background: #1a73e8;
  border-radius: 2px;
  margin: 0 auto 16px;
  transition: 0.3s;
}

.service-box:hover .card-line {
  width: 56px;
}

.service-box h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a73e8;
  background: #eef4ff;
  border: 1px solid #c2d9ff;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 14px;
}

.cta-strip {
  background: #eef4ff;
  border: 1px solid #c2d9ff;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.cta-strip h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
}

.cta-strip p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 6px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a73e8;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #1558c0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    flex-direction: column;
    text-align: center;
  }
}



.services-slider{
padding:80px 0;
background-color: rgb(154, 151, 151);
}

.container{
width:90%;
margin:auto;
}

.service-card{

background:white;
border-radius:10px;
padding:40px 20px;
text-align:center;

box-shadow:0 8px 20px rgba(0,0,0,0.08);

transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.service-card i{

font-size:40px;
color:#0d6efd;
margin-bottom:15px;

}

.service-card h5{
font-size:18px;
font-weight:600;
}

.howitworks{
padding:95px 20px;
background-color: #11627d;
color: white;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:50px;
font-weight:700;
color:#222;
}

.how-grid{
display:flex;
align-items:center;
gap:50px;
}

/* steps */

.steps{
flex:1;
}

.step{
display:flex;
align-items:flex-start;
margin-bottom:35px;
gap:20px;
}

.icon{
width:61px;
height:50px;
border-radius:50%;
border:2px solid white;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:white;
transition:0.3s;
}

.step:hover .icon{
background:white;
color:black;
}

.content h4{
margin:0;
font-size:20px;
font-weight:600;
margin-bottom:8px;
}

.content p{
margin:0;
color:white;
line-height:1.6;
}

/* image */

.image-box{
flex:1;
}

.image-box img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* responsive */

@media(max-width:900px){

.how-grid{
flex-direction:column;
}

.section-title{
font-size:28px;
}

.step{
margin-bottom:25px;
}

}

/* ===== 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;
  }
}

/* === about hero === */


.about-hero{
margin-top: 110px;
height:85vh;

background:
linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2)),
url("../image/abouthero1.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding:0 10%;
color:white;
}

.content{
max-width:600px;
animation:fadeUp 1.5s ease;
}

.about-tag{
display:inline-block;
border-bottom:2px solid white;
padding-bottom:5px;
margin-bottom:20px;
font-size:18px;
opacity:0.9;
}

.title{
font-size:50px;
margin-bottom:20px;
line-height:1.2;
padding-top: 20px;
}

.desc{
color:#e2e8f0;
margin-bottom:25px;
font-size:18px;
}

.stats{
display:flex;
flex-wrap:wrap;
gap: 7px;
padding-top: 10px;
}
.stats span{
background:#11627d;
padding:7px 14px;
border-radius:20px;
font-size:14px;
transition:0.3s;
margin-top: 18px;
}
.stats span:hover{
transform:translateY(-5px);
background:#11627d;
}

/* animation */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}
/* responsive */

@media(max-width:768px){
.about-hero{
padding:0 6%;
text-align:center;
}

.title{
font-size:36px;
}
.stats{
justify-content:center;
}
}




/* SECTION */

.about-section{
padding:110px 10%;
background:white;
}

/* CONTAINER */

.about-container{
display:flex;
align-items:center;
gap:50px;
}

/* TEXT */

.about-text{
flex:1;

}

.about-text h2{
font-size:36px;
margin-bottom:20px;
color:#222;
}

.about-text p{
font-size:16px;
color:#555;
line-height:1.7;
margin-bottom:15px;
}

/* IMAGE */

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* MOBILE */

@media(max-width:768px){

.about-container{
flex-direction:column;
text-align:center;
}

.about-text h2{
font-size:28px;
}
}

.values-section{
    padding:80px 20px;
    background:#f7f9fc;
    text-align:center;
}

.sub-title{
    color:#4a6cf7;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.main-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:50px;
    color:#1f2d3d;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.value-card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    text-align:left;
    position:relative;
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.icon{
    font-size:30px;
    background:#077fbf;
    color:white;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-bottom:15px;
}

.value-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#1f2d3d;
}

.value-card p{
    font-size:15px;
    color:#6c7a89;
    line-height:1.6;
}

/* Responsive */

@media(max-width:768px){

.main-title{
    font-size:28px;
}

.value-card{
    text-align:center;
}

.icon{
    margin:auto;
    margin-bottom:15px;
}

}
