.elementor-88 .elementor-element.elementor-element-3769ceb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:1px;--margin-right:0px;--padding-top:2px;--padding-bottom:10px;--padding-left:1px;--padding-right:0px;}@media(min-width:768px){.elementor-88 .elementor-element.elementor-element-3769ceb{--width:1500%;}}/* Start custom CSS for html, class: .elementor-element-fe1b653 *//* --- Hero Section Styles --- */
.hero-section {
    background-color: #0019C1; /* ডিপ ব্লু ব্যাকগ্রাউন্ড */
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Golden Light Heading */
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #FFD700; /* গোল্ডেন কালার */
    text-shadow: 0px 0px 15px rgba(255, 215, 0, 0.5); /* গ্লো ইফেক্ট */
}

/* White Paragraph */
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff !important; /* প্যারাগ্রাফ টেক্সট হোয়াইট */
    margin-bottom: 35px;
    max-width: 500px;
    opacity: 0.95;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-gold {
    background: #FFD700;
    color: #0019C1;
}

.btn-gold:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #0019C1;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h4 {
    font-size: 26px;
    color: #FFD700; /* স্ট্যাটাস নাম্বার গোল্ডেন */
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #ffffff;
}

/* Hero Image Section */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    /* ইমেজ যদি পিএনজি হয় তবে শ্যাডো সুন্দর লাগবে */
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.3));
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: white;
    color: #0019C1;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-btns, .hero-stats {
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0778886 *//* SERVICES SECTION */
.services{
  padding:90px 10%;
  color:white;
}

.services h2{
  text-align:center;
  font-size:40px;
  color:gold;
}

.services-sub{
  text-align:center;
  margin-bottom:50px;
  opacity:.7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:30px;
}

.service-card{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
  padding:30px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
  border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 0 25px #00d4ff;
}

.service-card .icon{
  font-size:40px;
  margin-bottom:15px;
}

.service-card h3{
  margin-bottom:10px;
}

.service-card p{
  opacity:.8;
  line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:900px){
  .services{
    padding:70px 6%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-64ccef6 *//* UNIQUE FAQ */
.faq-unique{
  padding:100px 10%;
  background:linear-gradient(135deg,#050b2e,#0a1a4f,#020b2a);
  color:#fff;
}

.faq-unique h2{
  text-align:center;
  font-size:42px;
  color:#6cf2ff;
}

.faq-sub{
  text-align:center;
  margin-bottom:50px;
  opacity:.75;
}

.faq-wrap{
  max-width:850px;
  margin:auto;
}

.faq-card{
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
  border-radius:18px;
  margin-bottom:18px;
  border:1px solid rgba(108,242,255,.25);
  box-shadow:0 0 15px rgba(0,212,255,.15);
  overflow:hidden;
  transition:.3s;
}

.faq-card:hover{
  box-shadow:0 0 30px rgba(0,212,255,.4);
}

.faq-q{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 26px;
  cursor:pointer;
}

.faq-q span{
  font-size:18px;
}

.faq-q b{
  font-size:26px;
  color:#6cf2ff;
  transition:.3s;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease;
}

.faq-a p{
  padding:0 26px 20px;
  line-height:1.6;
  opacity:.85;
}

.faq-card.active .faq-a{
  max-height:220px;
}

.faq-card.active .faq-q b{
  transform:rotate(45deg);
}

/* RESPONSIVE */
@media(max-width:768px){
  .faq-unique{
    padding:80px 6%;
  }
}/* End custom CSS */