/* ===== CSS Variables ===== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-black {
    color: var(--text-dark) !important;
}

.text-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-below {
    position: relative;
    display: inline-block;
}

.line-below::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ===== Container ===== */
.container {
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.container-fluid {
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-google {
    color: #ffff;
    border: none;
    background: #2563eb;
    border-radius: 8px;
    padding: 16px 5px;
    font-weight: 600;
}

/* ===== Hero Section ===== */
#hero {
    padding: 60px 0;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.hero_content {
    margin-bottom: 30px;
}

.hero_content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero_content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero_content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
}

.hero_image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== Login Form ===== */
.login-hero {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.top__login__group {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group.has_icon .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #323437;
    font-size: 22px;
    font-weight: 600;
}

.form-group.has_icon .form-control {
    padding-left: 45px;
}

.form-control {
    padding: 14px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    min-height: 44px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.has_password .pwd_show_hide {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.has_password .pwd_show_hide .show-eye {
    display: none;
}

.has_password .pwd_show_hide.active .hide-eye {
    display: none;
}

.has_password .pwd_show_hide.active .show-eye {
    display: inline;
}

.middle__login__group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-check-label {
    font-size: 14px;
    color: var(--text-dark);
}

.link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.link:hover {
    color: var(--primary-dark);
}

.forgotpassword {
    font-size: 14px;
}

.bottom__login__group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-signin {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* ===== Counter Section ===== */
#counter {
    padding: 60px 0;
    background: #ffffff;
}

.counter__item {
    text-align: center;
    padding: 20px;
}

.counter__item .icon {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
    opacity: 0.9;
}

.counter__item h4 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.counter__item p {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* ===== Our Services ===== */
#ourServices {
    padding: 80px 0;
    background: var(--bg-light);
}

.def__title__wrap {
    margin-bottom: 50px;
}

.def__title__wrap.text-center {
    text-align: center;
}

.def__title__wrap h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.def__title__wrap h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.def__title__wrap p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 23px;
}

.home-service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.home-service-card .card-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.home-service-card .nav-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.home-service-card .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    min-height: 44px;
}

.home-service-card .nav-link:hover {
    background: var(--bg-light);
}

.home-service-card .nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.home-service-card .nav-link .icon {
    font-size: 18px;
}

.home-service-card .card-body {
    padding: 30px;
}

.services_content_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services_content_left {
    flex: 1;
}

.services_content_left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.services_content_left p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.services_content_right {
    flex-shrink: 0;
}

.service-icon {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.2;
}

/* ===== Ready Section ===== */
#ready {
    padding: 80px 0;
    background: var(--white);
}

.ready-social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-icons-grid i {
    font-size: 60px;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icons-grid i:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* ===== How It Works ===== */
#howItWorks {
    padding: 80px 0;
    background: var(--bg-light);
}

.step-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.top_step {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.top_step h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.top_step p {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
}

.step_content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step_content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* ===== About Us ===== */
#aboutus {
    padding: 80px 0;
    background: var(--white);
}

.aboutus_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon {
    font-size: 200px;
    color: var(--primary-color);
    opacity: 0.3;
}

/* ===== Why Choose Us ===== */
#whyChooseUs {
    padding: 80px 0;
    background: var(--bg-light);
}

.why_choose_item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.why_choose_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why_choose_item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why_choose_item .icon i {
    font-size: 30px;
    color: var(--white);
}

.why_choose_item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why_choose_item p {
    color: var(--text-light);
    margin: 0;
}

/* ===== Testimonials ===== */
#testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__wraper {
    margin-bottom: 30px;
}

.testimonial__wraper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.testimonial__wraper p {
    color: var(--text-light);
}

.testimonials_text_wrap {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.testi_comments {
    position: relative;
}

.qoute_top,
.qoute_last {
    margin-bottom: 15px;
}

.testi_comments p {
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
}

.user__infos {
    margin-top: 20px;
}

.user__infos .star {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.user__infos h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.user__infos p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.swiper_slider_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.swiper-prev,
.swiper-next {
    cursor: pointer;
}

.swiper-pagination {
    position: static !important;
}

/* ===== Payment Methods ===== */
#paymentMethods {
    padding: 80px 0;
    background: var(--white);
}

/* ===== FAQ ===== */
#faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    border: none;
    min-height: 44px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: var(--white);
    padding: 20px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

/* ===== Footer ===== */
footer {
    background: #1a1a2e;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer_main_info {
    margin-bottom: 30px;
}

.footer_main_info .logo-white img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer_main_info p {
    color: #c9d1de;
    margin-bottom: 20px;
}

.social_media_links {
    display: flex;
    gap: 15px;
}

.social_media_links li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social_media_links li a:hover {
    background: var(--primary-color);
}

.footer_link_wrap {
    margin-bottom: 20px;
}

.footer_link_wrap h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer_link_wrap h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer_menu li {
    margin-bottom: -15px;
}

.footer_menu li a {
    color: #9ca3af;
    transition: var(--transition);
}

.footer_menu li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact_wrap .contact_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact_wrap .contact_icon {
    flex-shrink: 0;
}

.contact_wrap .contact_text {
     color: #dde3ed;
     font-size: 15px;
}

.contact_wrap .contact_text a {
    color: #edeef0;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright_text {
    color: #9ca3af;
    margin: 0;
    text-align: center;
}

/* ===== WhatsApp Button ===== */
.whatsapp-container {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 999999 !important;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25d366 !important;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  transform: scale(0.9);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1) !important;
  background-color: #1fcc5f !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
  fill: #fff !important;
  width: 30px !important;
  height: 30px !important;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Focus States ===== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .hero_content h1 {
        font-size: 36px;
    }
    
    .def__title__wrap h2 {
        font-size: 28px;
    }
    
    .services_content_wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .services_content_right {
        order: -1;
    }
    
    .service-icon {
        font-size: 80px;
    }
    
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        margin-bottom: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        border-radius: 5px;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #f8f9fa;
    }
}

@media (max-width: 767.98px) {
    #hero {
        padding: 40px 0;
    }
    
    .hero_content h1 {
        font-size: 28px;
    }
    
    .hero_content p {
        font-size: 16px;
    }
    
    .hero_content {
        text-align: center;
    }
    
    .hero_image {
        text-align: center !important;
    }
    
    .hero_image img {
        max-width: 80%;
    }
    
    .counter__item {
        padding: 15px;
    }
    
    .counter__item h4 {
        font-size: 24px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .step-item {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .about-icon {
        font-size: 120px;
    }
    
    .social-icons-grid i {
        font-size: 40px;
    }
    
    .home-service-card .card-header {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .home-service-card .nav-pills {
        flex-wrap: nowrap;
        min-width: max-content;
    }
    
    .home-service-card .nav-link {
        white-space: nowrap;
        padding: 10px 15px;
    }
    
    .home-service-card .nav-link .icon img {
        width: 24px;
        height: 24px;
    }
    
    .services_content_wrap {
        flex-direction: column;
    }
    
    .services_content_wrap .services_content_left {
        order: 2;
        margin-top: 20px;
    }
    
    .services_content_wrap .services_content_right {
        order: 1;
    }
    
    .why_choose_item {
        text-align: center;
        padding: 20px;
    }
    
    .why_choose_item .icon {
        margin: 0 auto 15px;
    }
    
    #testimonials .testimonials_image {
        text-align: center;
        margin-bottom: 30px;
    }
    
    #testimonials .testimonial__wraper {
        text-align: center;
    }
    
    #aboutus .def__title__wrap,
    #aboutus .aboutus_image {
        text-align: center;
    }
    
    #aboutus .aboutus_image {
        margin-top: 30px;
    }
    
    footer {
        text-align: center;
    }
    
    footer .footer_main_info {
        margin-bottom: 30px;
    }
    
    footer .social_media_links {
        justify-content: center;
    }
    
    footer .footer_link_wrap {
        margin-bottom: 20px;
    }
    
    footer .contact_wrap .contact_item {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .form-control, .form-select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .counter__item h4 {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 12px;
    }
    
    .accordion-body {
        font-size: 14px;
    }
    
    #paymentMethods .def__title__wrap,
    #paymentMethods .ready-social-media {
        text-align: center;
    }
    
    #paymentMethods .ready-social-media {
        margin-top: 25px;
    }
    
    .navbar-brand img {
        width: 150px !important;
        height: auto !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media print {
    .whatsapp-container,
    .navbar-toggler,
    header button {
        display: none !important;
    }
}

/* ===== About Us Page Styles ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    background-size: 200px 200px;
    animation: float 20s linear infinite;
}

.page-header h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    padding-right: 30px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.feature-item i {
    color: #10b981;
    font-size: 20px;
}

/* About Image */
.about-image {
    position: relative;
    padding: 20px;
}

.image-stack {
    position: relative;
    height: 400px;
}

.main-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.main-image i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 32px;
    color: #2563eb;
}

.floating-card .counter {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.floating-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.card-1 {
    bottom: 20px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 30px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #f9fafb;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.icon-box i {
    font-size: 36px;
    color: #fff;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose About */
.why-choose-about {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

.choose-item {
    background: #f9fafb;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.choose-item:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.choose-item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.choose-item .icon i {
    font-size: 30px;
    color: #fff;
}

.choose-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.choose-item p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 28px;
    color: #fff;
}

.stat-item h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background: #f9fafb;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.member-image i {
    font-size: 50px;
    color: #fff;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cta-buttons .btn-primary {
    background: #2563eb;
    border-color: #2563eb;
    padding: 14px 30px;
}

.cta-buttons .btn-primary:hover {
    background: #1d4ed8;
}

.cta-buttons .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
}

.cta-buttons .btn-outline-light:hover {
    background: #fff;
    color: #1f2937;
}

/* Core Value Icons */
.card_core_value .core__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card_core_value .core__icon i {
    font-size: 30px;
    color: #fff;
}

/* About Us Responsive */
@media (max-width: 991.98px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        justify-content: flex-start;
        margin-top: 30px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .who-we-are,
    .mission-vision,
    .why-choose-about,
    .our-team {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-item h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}



/* Horizontal Social Bar */
.social-bar {
    display: flex;
    justify-content: center; 
    gap: 5px;
    margin: 20px 0; 
}

.social-sidebar {
  display: flex;
  gap: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Circle */
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Colors for each social media */
.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: #e1306c; }
.social-icon.x { background: #1da1f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.pinterest { background: #bd081c; }
.social-icon.telegram { background: #0088cc; }

/* Hover effect */
.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.85;
}