* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background: #f8fbff;
}

:root {
    --primary: #1037b6;
    --secondary: #e11c09;
    --white: #ffffff;
    --dark: #0d1b2a;
}

/* ================= NAVBAR ================= */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand img {
    height: 65px;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    transition: 0.4s;
}

.nav-link:hover {
    color: var(--primary);
}

/* Underline Effect */

.nav-link:not(.dropdown-toggle)::before {
    content: '';
    width: 0%;
    height: 3px;
    background: var(--secondary);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.4s;
    border-radius: 20px;
}

.nav-link:not(.dropdown-toggle):hover::before {
    width: 100%;
}

/* Dropdown */

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar .dropdown-toggle::after {
    margin-left: 0 !important;
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    margin-top: 15px;
    border: none;
    border-radius: 18px;
    padding: 15px;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

/* Quote Button */

.quote-btn {
    background: linear-gradient(45deg, var(--secondary), #ff3b28);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
}

.quote-btn:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: white;
}

/* ================= HERO SLIDER ================= */

.carousel-item {
    height: 90vh;
    min-height: 650px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.8;
    color: #ddd;
}

.hero-btn {
    margin-top: 30px;
}

.hero-btn a {
    margin-right: 15px;
}

.btn-main {
    background: var(--secondary);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    display: inline-block;
}

.btn-main:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--secondary);
    border-radius: 50%;
    padding: 25px;
}

/* ================= MARQUEE ================= */

.marquee-section {
    background: var(--primary);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 25s linear infinite;
}

.marquee-content h5 {
    white-space: nowrap;
    margin-right: 80px;
    font-size: 18px;
    font-weight: 600;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================= SERVICES ================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--dark);
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: rgba(16, 55, 182, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 40px;
    color: var(--primary);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ================= WHY CHOOSE ================= */

.why-section {
    background: linear-gradient(135deg, #0f2f9e, #081a52);
    color: white;
    border-radius: 30px;
    padding: 70px;
}

.why-box {
    display: flex;
    margin-bottom: 30px;
}

.why-box i {
    font-size: 40px;
    color: var(--secondary);
    margin-right: 20px;
}

.why-box h5 {
    font-weight: 700;
}

/* ================= CONTACT ================= */

.contact-section {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.form-control {
    height: 55px;
    border-radius: 12px;
}

textarea.form-control {
    height: 140px;
}

/* ================= FOOTER ================= */

footer {
    background: #08132f;
    color: white;
    padding-top: 80px;
}

.footer-logo img {
    height: 70px;
    background: aliceblue;
    padding: 5px;
    border-radius: 3px;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: 0.4s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    color: #ccc;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 45px;
    }

    .why-section {
        padding: 40px 25px;
    }
}

@media(max-width:768px) {

    .carousel-item {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .contact-section {
        padding: 30px 20px;
    }
}
/* ================= ABOUT SECTION ================= */

.about-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img img {
    border-radius: 30px;
    width: 100%;
    height: 650px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, #1037b6, #0d2d96);
    color: #fff;
    padding: 30px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(16,55,182,0.3);
}

.experience-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-box p {
    margin: 0;
    font-weight: 500;
}

.about-tag {
    background: rgba(225, 28, 9, 0.1);
    color: var(--secondary);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f8fbff;
    padding: 20px;
    border-radius: 20px;
    transition: 0.4s;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.about-feature i {
    width: 60px;
    height: 60px;
    background: rgba(16, 55, 182, 0.1);
    color: var(--primary);
    font-size: 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.about-feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .about-main-img img{
        height: auto;
    }

    .experience-box{
        right: 20px;
        bottom: 20px;
        padding: 20px 25px;
    }

    .about-content h2{
        font-size: 38px;
    }
}

@media(max-width:768px){

    .about-content h2{
        font-size: 30px;
    }

    .experience-box h2{
        font-size: 34px;
    }
}
/* ================= WHY CHOOSE US ================= */

.why-choose-section {
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
    position: relative;
    overflow: hidden;
}

.why-left-content .why-badge {
    background: rgba(225, 28, 9, 0.1);
    color: var(--secondary);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.why-left-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 25px;
}

.why-left-content h2 span {
    color: var(--primary);
}

.why-left-content p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.why-mini-box {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 20px;
    border-radius: 22px;
    transition: 0.4s;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.why-mini-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.why-mini-box i {
    width: 60px;
    height: 60px;
    background: rgba(16, 55, 182, 0.1);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.why-mini-box h5 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.why-mini-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.why-image-wrapper {
    position: relative;
}

.why-image-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: linear-gradient(135deg, #1037b6, #0c2a8c);
    color: #fff;
    padding: 25px 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(16,55,182,0.35);
}

.floating-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    font-size: 34px;
}

.floating-card h4 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 4px;
}

.floating-card p {
    margin: 0;
    font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .why-left-content h2{
        font-size: 38px;
    }

    .why-image-wrapper img{
        height: auto;
    }

    .floating-card{
        left: 20px;
        bottom: 20px;
    }
}

@media(max-width:768px){

    .why-left-content h2{
        font-size: 30px;
    }

    .floating-card{
        padding: 18px 20px;
    }

    .floating-card h4{
        font-size: 26px;
    }

    .floating-icon{
        width: 55px;
        height: 55px;
    }

    .floating-icon i{
        font-size: 24px;
    }
}
/* ================= FAQ SECTION ================= */

.faq-section {
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
    position: relative;
}

.custom-faq .accordion-item {
    border: none;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.custom-faq .accordion-button {
    background: #fff;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    padding: 24px 28px;
    box-shadow: none !important;
    border: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1037b6, #0d2f9d);
    color: #fff;
}

.custom-faq .accordion-button::after {
    filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

.custom-faq .accordion-body {
    padding: 25px 28px;
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    background: #fff;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .custom-faq .accordion-button{
        font-size: 16px;
        padding: 20px;
    }

    .custom-faq .accordion-body{
        padding: 20px;
    }
}
.work-process-section{
    background:#fff;
}

.process-card{
    background:#fff;
    border-radius:25px;
    padding:40px 25px;
    text-align:center;
    position:relative;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:40px;
    font-weight:800;
    color:rgba(16,55,182,0.08);
}

.process-icon{
    width:90px;
    height:90px;
    background:rgba(16,55,182,0.1);
    color:var(--primary);
    margin:auto;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;
}

.process-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.8;
}
.counter-section{
    background:linear-gradient(135deg,#1037b6,#081a52);
}

.counter-wrapper{
    padding:70px 40px;
    border-radius:35px;
}

.counter-box h2{
    color:#fff;
    font-size:55px;
    font-weight:800;
    margin-bottom:10px;
}

.counter-box p{
    color:#ddd;
    font-size:18px;
    margin:0;
}
/* ================= CONTACT SECTION ================= */

.contact-section{
    background:#fff;
    border-radius:35px;
    padding:60px;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

.contact-badge{
    background:rgba(225,28,9,0.1);
    color:var(--secondary);
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
    margin-bottom:20px;
    letter-spacing:1px;
}

.contact-text{
    line-height:1.9;
}

.contact-info-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-info-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#f8fbff;
    padding:18px 20px;
    border-radius:20px;
    transition:0.4s;
}

.contact-info-box:hover{
    transform:translateX(8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    background:#fff;
}

.contact-icon{
    width:65px;
    height:65px;
    background:rgba(16,55,182,0.1);
    color:var(--primary);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.contact-info-box span{
    display:block;
    font-size:14px;
    color:#777;
    margin-bottom:4px;
}

.contact-info-box h6{
    margin:0;
    font-weight:700;
    color:var(--dark);
}

.contact-form .form-control{
    height:60px;
    border:none;
    background:#f8fbff;
    border-radius:18px;
    padding:15px 20px;
    font-size:15px;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:160px;
    resize:none;
    padding-top:20px;
}

.contact-form .form-control:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(16,55,182,0.08);
}

.contact-form .btn-main{
    padding:15px 35px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .contact-section{
        padding:40px 25px;
    }
}

@media(max-width:768px){

    .contact-section{
        border-radius:25px;
    }
}
.testimonial-section{
    background:#f8fbff;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
    transition:0.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.quote-icon{
    width:70px;
    height:70px;
    background:rgba(225,28,9,0.1);
    color:var(--secondary);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.testimonial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-img{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#1037b6,#0c2a8c);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
}

.client-info h5{
    margin:0;
    font-weight:700;
}

.client-info span{
    color:#777;
    font-size:14px;
}
@media(max-width:768px){

    .counter-box h2,
    .counter-value{
        font-size: 28px;
    }

    .counter-box p{
        font-size: 13px;
    }

}
.welcome-section{
    position: relative;
    background: #fff;
}

.welcome-content h2{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-top: 15px;
}

.welcome-content h2 span{
    color: #d60000;
}

.welcome-content p{
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-top: 20px;
}

.welcome-tag{
    display: inline-block;
    background: rgba(214,0,0,0.08);
    color: #d60000;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.welcome-points{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.welcome-point{
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-point i{
    color: #d60000;
    font-size: 20px;
}

.welcome-point span{
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.welcome-image-wrapper{
    position: relative;
}

.welcome-img{
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: 0.5s ease;
}

.welcome-image-wrapper:hover .welcome-img{
    transform: scale(1.03);
}

.floating-box{
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #d60000;
    color: #fff;
    padding: 20px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(214,0,0,0.25);
}

.floating-box h4{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.floating-box p{
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive */
@media(max-width:991px){

    .welcome-content h2{
        font-size: 36px;
    }

    .floating-box{
        left: 15px;
        bottom: 15px;
        padding: 15px 20px;
    }

}

@media(max-width:576px){

    .welcome-content h2{
        font-size: 28px;
    }

    .welcome-point span{
        font-size: 15px;
    }

}