:root{
    --default-font: "Roboto", sans-serif;
    --heading-font: "Raleway", sans-serif;
    --main-color:rgb(10, 87, 176);
    --secondary-color:#4e4e4e;
       --accent-color: #8B5CF6;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    
    --dark-color: #111827;
    --gray-dark: #374151;
    --gray-medium: #6B7280;
    --gray-light: #F3F4F6;
    --white-color: #FFFFFF;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
html{
  scroll-padding-top:72px ;
}
body{
    color: var(--secondary-color);
    font-family: var(--default-font);
}
h1,h2,h3,h4,h5,h6{
  font-family: var(--heading-font);
  color: var(--main-color)!important;
}
.navbar-brand{
  font-family: var(--heading-font);
  font-size: 26px!important;
  letter-spacing: 1.3px;
}
 .navbar a{
    color: white!important;
 }
 .nav-link.active {
  color: var(--main-color) !important;
  font-weight: bold;
}
.language-btn {
    border: 1px solid var(--main-color);
    color:white;
    font-size: 0.9rem;
    transition: all .5s ease-in-out;
    padding: 7px 40px;
}

.language-btn:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}
 header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url(../imgs/hero2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    filter: brightness(0.95) contrast(1.1);
    display: flex;
    justify-content: center;
    align-items: center;
  } 
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.scroll-arrow {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
  .navbar-toggler {
    border-color: white;
  }
 .navbar-toggler:focus{
  box-shadow: none!important;
 }
  header h1 {
    font-size: 26px;
  }
  header p {
    max-width: 100%;
  }
  .card{
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  .card-img-container {
    height: 350px;
    overflow: hidden;
}
.section-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 10px;
  color: var(--heading-color);
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 5px;
  transition: width 0.3s ease;
}
.section-title:hover::before {
  width: 100%;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-weight: 500;
}

.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
  /* Services Section */
.service-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    content: "";
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    color: var(--white-color);
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-description {
    color: var(--white-color);
    z-index: 1;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white-color);
    transition: var(--transition);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.service-description {
    color: var(--gray-medium);
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay-content {
    text-align: center;
    color: var(--white-color);
    padding: 2rem;
}

.service-overlay-content h4 {
    color: var(--white-color) !important;
    margin-bottom: 1rem;
}
.work-card {
  border: 2px solid transparent;
  border-color: #0c88cc;
  background: rgba(255, 255, 255, 1); 
  background-clip: padding-box;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: drop-shadow(0 0 8px #054365);
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}




.contact .icon{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--main-color);
    font-size: 1.3rem;
    color: var(--main-color); 
}

.contact .box{
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact .box p{
    font-size: 14px;
    font-family: var(--default-font);
}
.contact-form-container {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
    background: #FAFAFA;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--white-color);
     border: 2px solid #E5E7EB;
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.submit-btn {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    background: #D1FAE5;
    color: var(--success-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #A7F3D0;
    margin-top: 1rem;
    text-align: center;
}
  @media screen and (min-width:768px) {
    header h1{
        font-size: 60px!important;
    }
    header p{
        max-width: 60%;
    }
    
  }
  .whatsapp-float {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  line-height: 55px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

.whatsapp-float i {
  vertical-align: middle;
}
