/* ===================== BASE STYLES ===================== */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --dark-bg: #0b1120;
    --dark-bg-2: #111827;
    --warning: #ffc107;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    --gradient-dark: linear-gradient(135deg, #0b1120 0%, #1a1a2e 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
    max-width: 100vw;
}

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

iframe {
    max-width: 100%;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ===================== NAVBAR ===================== */
.set {
    display: flex;
    align-items: center;
    gap: 8px;
}

.set img {
    height: 50px;
}

#mainNav {
    /* padding: 15px 0; */
    transition: var(--transition);
    /* background: transparent; */
    background-color: black;
    z-index: 1050;
}


#mainNav.scrolled {
    background: rgba(11, 17, 32, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.brand-icon {
    font-size: 1.8rem;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-toggler {
    padding: 8px 12px;
    font-size: 1.2rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--warning) !important;
}

.dropdown-menu {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    min-width: 250px;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(13, 110, 253, 0.2);
    color: #fff;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(13, 110, 253, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(102, 16, 242, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.hero-title {
    line-height: 1.2;
}

.hero-stats .stat-item {
    border-left: 3px solid var(--warning);
    padding-left: 15px;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shield {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(13, 110, 253, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-shield i {
    font-size: 5rem;
    color: #fff;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(13, 110, 253, 0.4);
    }

    50% {
        box-shadow: 0 0 100px rgba(13, 110, 253, 0.6);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.3rem;
}

.card-1 {
    top: 60px;
    right: 40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 120px;
    left: 20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 60px;
    right: 60px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ===================== TRUSTED SECTION ===================== */
.trusted-logos span {
    transition: var(--transition);
}

.trusted-logos span:hover {
    color: var(--warning) !important;
}

/* ===================== ABOUT SECTION ===================== */
.about-image-wrapper {
    position: relative;
}

.about-img-box {
    background: linear-gradient(135deg, #e8f0fe 0%, #d1e3ff 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-img-box i {
    font-size: 8rem;
    color: var(--primary);
}

.about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 20px;
    text-align: center;
}

.experience-badge {
    position: absolute;
    /* bottom: -30px; */
    right: -20px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* ===================== WHY CHOOSE US ===================== */
.why-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 1.8rem;
}

/* ===================== MISSION & VISION ===================== */
.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.vision-card {
    border-top-color: var(--warning);
}

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

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 2rem;
    color: #fff;
}

.vision-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.mv-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

/* ===================== SERVICES ===================== */
.service-block {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-block:hover {
    box-shadow: var(--shadow-lg);
}

.service-icon-box {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon-box i {
    font-size: 6rem;
    color: #fff;
    z-index: 2;
}

.service-icon-1 {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.service-icon-2 {
    background: linear-gradient(135deg, #198754, #20c997);
}

.service-icon-3 {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.service-icon-4 {
    background: linear-gradient(135deg, #dc3545, #e91e63);
}

.service-icon-5 {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
}

.service-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-item:hover {
    background: #e8f0fe;
}

/* ===================== PROCESS / HOW IT WORKS ===================== */
.process-section {
    background: var(--gradient-dark);
}

.process-card {
    position: relative;
    padding: 30px 20px;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--warning);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 15px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.process-card:hover .process-icon {
    background: var(--primary);
}

.process-card:hover .process-icon i {
    color: #fff;
}

.process-card h5,
.process-card p {
    color: rgba(255, 255, 255, 0.8);
}

.process-card h5 {
    color: #fff;
}

/* ===================== STATS SECTION ===================== */
.stats-section {
    background: var(--gradient-primary);
}

.stat-box {
    padding: 30px 15px;
}

/* ===================== TEAM ===================== */
.team-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8f0fe, #d1e3ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-avatar i {
    font-size: 3.5rem;
    color: var(--primary);
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    margin: 0 4px;
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: #fff;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: var(--gradient-dark);
}

/* ===================== CONTACT ===================== */
.contact-info-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* ===================== MAP ===================== */
.map-section iframe {
    display: block;
    filter: grayscale(0.5);
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--dark-bg);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--warning);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.social-link-footer {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    margin-right: 8px;
    transition: var(--transition);
}

.social-link-footer:hover {
    background: var(--warning);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */

/* --- Tablet (max-width: 991px) --- */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .navbar-collapse {
        background: var(--dark-bg);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        min-width: auto;
        width: 100%;
        padding: 5px 0 5px 15px;
        animation: none;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .nav-item.dropdown .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    .service-icon-box {
        height: 200px;
        margin-bottom: 20px;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
    }

    .mv-card {
        padding: 30px;
    }

    .contact-form-card {
        padding: 30px;
    }
}

/* --- Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row>* {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-title br {
        display: none;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .hero-section .btn-lg {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .hero-stats .col-4 {
        text-align: center;
    }

    .hero-stats .stat-item {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--warning);
        padding-top: 10px;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.3rem;
    }

    .hero-stats .stat-item small {
        font-size: 0.7rem;
    }

    /* Navbar brand */
    .set img {
        height: 30px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    #mainNav .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Trusted section */
    .trusted-logos {
        gap: 10px !important;
    }

    .trusted-logos span {
        font-size: 0.85rem !important;
    }

    /* About section */
    .about-img-box {
        padding: 40px 20px;
    }

    .about-img-box i {
        font-size: 5rem;
    }

    /* Service blocks */
    .service-block {
        padding: 20px 15px;
    }

    .service-icon-box {
        height: 160px;
    }

    .service-icon-box i {
        font-size: 4rem;
    }

    .service-item {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    /* Why choose us cards */
    .why-card {
        padding: 25px 20px;
    }

    /* Mission & Vision */
    .mv-card {
        padding: 25px 20px;
    }

    .mv-card h3 {
        font-size: 1.4rem;
    }

    .mv-list li {
        font-size: 0.9rem;
    }

    /* Process / How it works */
    .process-card {
        padding: 20px 15px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }

    .process-icon i {
        font-size: 1.5rem;
    }

    /* Stats */
    .stat-box h2 {
        font-size: 1.5rem;
    }

    .stat-box p {
        font-size: 0.8rem;
    }

    /* Team */
    .team-card {
        padding: 25px 15px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-avatar i {
        font-size: 2.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    /* Contact */
    .contact-form-card,
    .contact-info-card {
        padding: 20px 15px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    /* CTA section */
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .btn-lg {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer .social-link-footer {
        margin: 0 4px;
    }

    /* Value cards */
    .value-card {
        padding: 20px 15px;
    }

    /* Back to top */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    /* Map */
    .map-section iframe {
        height: 250px !important;
    }

    /* Forms */
    .form-control,
    .form-select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* --- Small mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-section .d-flex.flex-wrap {
        flex-direction: column;
    }

    .hero-section .d-flex.flex-wrap .btn {
        width: 100%;
        text-align: center;
    }

    .bttn {
        margin: 11px;
    }

    .hero-stats .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .trusted-logos {
        flex-direction: column;
        align-items: center !important;
        gap: 8px !important;
    }

    .service-block h3 {
        font-size: 1.2rem;
    }

    .navbar-brand {
        font-size: 0.85rem;
    }

    .set img {
        height: 25px;
    }

    .set {
        gap: 5px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .stat-box h2 {
        font-size: 1.3rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 15px 12px;
    }

    .footer h5 {
        font-size: 1.1rem;
        margin-top: 10px;
    }
}

/* ===================== UTILITY ===================== */
.ls-2 {
    letter-spacing: 2px;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}