
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 70px;
}


.section {
    padding: 80px 0;
   
}
 .card { border-radius: 12px; }
  .btn-primary { background: #0d6efd; }
  .btn-primary {
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}      
    
      
        
section {
    scroll-margin-top: 80px;
}
.nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}
.logo {
    height: 60px;
    width: auto;
}

/* mobile */
@media (max-width: 768px) {
    .logo {
        height: 30px;
    }
}
 
/* ==================================
   HERO SLIDER
================================== */

.hero{
    margin-top:30px;
    overflow:hidden;
}

.carousel-item{
    position:relative;
}

/* Image */
.slider-img{
    width:100%;
    height:auto;
    display:block;
}

/* Overlay */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.1);
    z-index:1;
}

/* Content over image */
.slider-content{
    position:absolute;
    inset:0;
    z-index:2;
}

.slider-content .container,
.slider-content .row{
    height:100%;
}

/* Text */
.slider-content h1{
    font-size:3.5rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:15px;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
}

.slider-content p{
    font-size:1.2rem;
    margin-bottom:25px;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
}

.slider-content .btn{
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
}

/* Controls */
.carousel-control-prev,
.carousel-control-next{
    width:8%;
}

/* Indicators */
.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

/* ==================================
   TABLET
================================== */

@media (max-width:991px){

    .slider-content h1{
        font-size:2.3rem;
    }

    .slider-content p{
        font-size:1rem;
    }
}

/* ==================================
   MOBILE
================================== */

@media (max-width:768px){
    .slider-content{
        text-align:center;
    }

    .slider-content .col-lg-6{
        width:100%;
    }

    .slider-content h1{
        font-size:1.5rem;
        margin-bottom:10px;
    }

    .slider-content p{
        font-size:13px;
        margin-bottom:12px;
    }

    .slider-content .btn{
        padding:8px 18px;
        font-size:13px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .slider-content h1 {
        font-size: 1.2rem;
    }

    .slider-content p {
        font-size: 12px;
    }

    .carousel-indicators {
        margin-bottom: 5px;
    }
    
   

}

/* Small Mobile */

@media (max-width: 418px) {
.hero{
    margin-top:0px!important;
}
    .navbar-toggler-icon {
        width: 1em !important;
        height: 1em !important;
    }

    .navbar-brand img {
        height: 40px !important;
        width: auto !important;
    }

    .navbar-brand span {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
   

}

 



   

.bg-primary-light { background: #e7f1ff; }
.bg-warning-light { background: #fff3cd; }
.bg-danger-light { background: #fde2e2; }

.border-top-blue { border-top: 4px solid #0d6efd; }
.border-top-yellow { border-top: 4px solid #ffc107; }
.border-top-red { border-top: 4px solid #dc3545; }

.commit-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}


.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;

    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ICON */
.service-icon {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d3b66;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* CONTENT */
.service-content {
    padding: 40px 20px 25px;
    text-align: center;
}

.service-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 16px;
    color: #6c757d;
}
.service-list {
    text-align: left;
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.service-list li {
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollSlider 20s linear infinite;
}

/* CARD */
.testimonial-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: left;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
}
.stars i {
    color: #ffc107;
    font-size: 14px;
}
.client-img {
    width: 70px;   /* increase size */
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
/* AUTO SCROLL */
@keyframes scrollSlider {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* PAUSE ON HOVER (optional) */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 250px;
    }
}

.challenge-box,
.solution-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.challenge-box:hover,
.solution-box:hover {
    transform: translateY(-5px);
}

/* LEFT BORDER COLORS */
.challenge-box {
    border-left: 5px solid #dc3545;
}

.solution-box {
    border-left: 5px solid #198754;
}

/* LIST */
.challenge-box li,
.solution-box li {
    font-size: 14px;
    margin-bottom: 10px;
}






.challenge-box,
.solution-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.challenge-box:hover,
.solution-box:hover {
    transform: translateY(-5px);
}

.challenge-box {
    border-left: 5px solid #dc3545;
}

.solution-box {
    border-left: 5px solid #198754;
}

.solution-icon { 
background: #FFD700;
    color: #003D7A;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.challenge-icon{
background: #003D7A;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
} 


.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.custom-faq .accordion-button {
    background: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 18px;
    border: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: #fff;
}

.custom-faq .accordion-body {
    background: #fff;
    padding: 20px;
    font-size: 14px;
    color: #555;
}

.custom-faq ul {
    margin-top: 10px;
    padding-left: 20px;
}

.custom-faq ul li {
    margin-bottom: 6px;
}
.video-box {
    max-width: 900px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.video-box img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

/* DARK OVERLAY */
.video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0d6efd;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 2;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* HOVER EFFECT */
.video-box:hover img {
    transform: scale(1.05);
}
.offer-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.counter-box {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
}

.counter-box h4 {
    margin: 0;
    font-weight: bold;
}

.counter-box small {
    color: #6c757d;
}

/* Button hover */
.offer-box .btn {
    font-weight: 600;
    padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-box {
        margin-top: 20px;
    }
}

/* LIST ITEMS */
.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.guarantee-item i {
    font-size: 22px;
    margin-top: 4px;
}

/* TEXT */
.guarantee-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #6c757d;
}

/* RIGHT BOX */
.guarantee-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* QUOTE ICON */
.quote-icon {
    font-size: 40px;
    color: #0d6efd;
    position: absolute;
    top: 15px;
    left: 20px;
    opacity: 0.2;
}

/* QUOTE TEXT */
.quote-text {
    font-size: 16px;
    font-style: italic;
    color: #333;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .guarantee-box {
        margin-top: 20px;
    }
}

/* FORM BOX */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* INPUT */
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    border-radius: 8px;
    font-size: 14px;
}

/* RIGHT SIDE */
.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ITEMS */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 22px;
    margin-top: 5px;
}

/* TEXT */
.info-item p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

/* COLORS */
.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.linkedin { background: #0a66c2; }
.instagram { background: #e4405f; }

/* HOVER EFFECT */
.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .info-box {
        margin-top: 20px;
    }
}

.footer {
    background: #0d1b2a;
    color: #fff;
}

.footer h5, .footer h6 {
    color: #fff;
}

.footer p {
    font-size: 14px;
    color: #adb5bd;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* SOCIAL */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1b263b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0d6efd;
}

/* FOOTER CONTAINER FULL WIDTH */
.footer .container {
    max-width: 100%;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* RIGHT LINKS */
.footer-policy {
    display: flex;
    gap: 15px;
}

.footer-policy a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
}

.footer-policy a:hover {
    color: #fff;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    /* Footer spacing */
    .footer {
        padding: 30px 15px;
        text-align: center;
    }

    /* All columns center */
    .footer .row > div {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Logo center */
    .footer .navbar-brand {
        display: flex;
        justify-content: center;
    }

    /* Social icons center */
    .footer .social-links {
        display: flex;
        justify-content: center;
    }

    /* Footer links */
    .footer-links {
        padding: 0;
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    /* Text size */
    .footer p {
        font-size: 13px;
    }

    /* Bottom section (IMPORTANT FIX) */
    .footer-bottom .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 10px;
    }

    /* Policy links center */
    .footer-policy {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}


