
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

/********** Template CSS **********/

/*body {
    margin: 0;
    height: 100vh;
     cursor: none;  <-- is line ko hata diya hai 
    overflow: hidden;
}

#dot {
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;*/ /* High z-index to stay on top */
    /*transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
}*/


body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f6f6f6;
}

:root {
    --primary: #FF800F;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}




/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 30px;
    height: 30px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar-light .navbar-toggler {
    color: rgb(227 23 23 / 55%);
    border-color: blue;
    background-color: white;
}
    .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 400;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #0d6efd;
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
        font-family: "Quicksand", Sans-serif;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/

.hero-section {
    background-color: #18407c;
    color: white;
    padding: 80px 0;
}

.hero-img {
    position: relative;
    width: fit-content;
    margin: auto;
    border-radius: 60px;
}

    .hero-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: 2px;
        width: 99%;
        height: 500px;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        background: linear-gradient(to right, rgba(11, 61, 145, 0.9), rgba(255, 255, 255, 1));
        border-radius: 60px;
        z-index: 2;
        overflow: hidden;
    }


    .hero-img img {
        position: relative;
        width: 93%;
        height: 500px;
        object-fit: cover;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        border-radius: 20px;
        z-index: 2;
        overflow: hidden;
    }


.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff33;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 13.134px;
    animation: pulse 2s infinite ease-in-out;
}
h1.display-5 {
    color: #FFFFFF;
    text-shadow: 5px 0px 2px rgba(0, 0, 0, 0.1);
    font-family: "Quicksand", Sans-serif;
    font-size: 45px;
  font-weight: 600;
    line-height: 1em;
}


p.mt-3 {
    font-family: "Quicksand", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    word-spacing: 0.1em;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/***About*/
/*.about-btn {
    display: inline-block;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background-color: #0d6efd;*/ /* Your requested color */
    /*border-radius: 8px;*/ /* Slight rounded corner */
    /*text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}
    .about-btn:hover {
        background-color: #0b5ed7;*/ /* Slightly darker blue on hover */
        /*box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
        transform: translateY(-2px);
    }*/

.section-title {
    color: #1e3c72;
    font-weight: 700;
    font-family: "Quicksand", Sans-serif;
}

.rounded-img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c2c71;
    color: white;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.btn-call {
    background: #ef4b3f;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    padding: 12px 25px;
}

/*trafic*/
.traffic-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    background-color: rgb(24, 64, 124);
    color: #fff;
}

.content1 {
    max-width: 500px;
    margin: 20px;
    padding: 20px;
    background-color: rgb(24, 64, 124);
    color: white;
    border-radius: 6px;
    
    position: relative;
    z-index: 2;
}

.content1 h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: "Quicksand", Sans-serif;
    color: white;
}

    .content1 p {
        font-size: 16px;
        line-height: 1.5;
        font-weight:bold;
        margin-bottom: 20px;
        font-family: "Quicksand", Sans-serif;

    }

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.circle {
    width: 80px;
    height: 80px;
    border: 5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 10px auto;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hire-btn {
    background-color: #e74c3c;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}

    .hire-btn:hover {
        background-color: #c0392b;
    }

.call-us {
    font-size: 16px;
}

.image-section {
    position: relative;
    max-width: 400px;
    margin: 20px;
    margin-left: auto;
   
}

    .image-section img {
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        width: 100%;
        height: 400px;
        display: block;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
        
    }


.benefits {
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    padding: 12px;
    position: absolute;
    bottom: -70px; /* keeps it at the bottom */
    left: 0; /* aligns it to the left */
    transform: translateX(-30%); /* shifts it further left outside the image */
    max-width: 300px; /* keep if you want width same */

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

    .benefits h2 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #0b3d91;
        font-family: "Quicksand", Sans-serif;
    }

.benefit-item {
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #000;
}

    .benefit-item.red {
        background-color: white;
    }

    .benefit-item.blue {
        background-color: white;
        color: black;
    }

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3); /* semi-transparent for blend */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-item.red .icon-circle {
    background-color: #ec3609;
    color: #fff;
}

.benefit-item.blue .icon-circle {
    background-color: #0b3d91;
    color: #fff;
}

.icon-circle i {
    font-size: 16px;
}

.benefit-text strong {
    font-size: 14px;
    display: block;
}

.benefit-text span {
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .traffic-section {
        flex-direction: column;
        align-items: center;
    }

    .image-section {
        position: static;
    }

    .benefits {
        position: static;
        margin-top: 20px;
    }
}
.progress-circle {
    --progress: 95; /* default percentage, individual div se override hota hai */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient( #1348bb calc(var(--progress) * 1%), #ddd 0 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

    .progress-circle::before {
        content: attr(data-progress) "%";
        position: absolute;
        color: #fff;
    }



/*** Service ***/
.service-card1 {
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .service-card1:hover {
        background-color: #0b3d91; /* Blue background */
        color: white;
    }

        .service-card1:hover h5,
        .service-card1:hover p {
            color: white;
        }

.service-card1:hover .arrow-box {
    background-color: white; /* Arrow box background on hover */
    color: #0b3d91; /* Arrow color on hover */
}

.service-card1 .arrow-box {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #f8f9fa; /* light bg default */
    color: #0b3d91;
    text-decoration: none;
}

    .service-card1.arrow-box span {
        font-size: 20px;
    }
/*.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

.business-section {
    display: flex;
    padding: 40px;
    font-family: 'Quicksand', sans-serif;
    background: #f3f3f3;
    gap: 30px;
}

.experience-section {
    display: flex;
    gap: 30px;
    position: relative;
}

.image-left {
    position: relative;
    width: 280px;
    height:340px
}

    .image-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

.image-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .image-right img {
        width: 280px;
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
    }

/* Circle Badge */
.exp-circle {
    position: absolute;
    bottom: -60px;
    left: 95%;
    transform: translateX(-50%);
    background-color: #012b6a;
    color: white;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 0 0 10px white; /* white border around circle */
}

    .exp-circle .exp-number {
        font-size: 38px;
    }

    .exp-circle .exp-text {
        font-size: 15px;
        line-height: 1.3;
    }

.content-box {
    max-width: 700px;
}

    .content-box h1 {
        font-size: 35px;
        color: #0b3d91;
        margin-bottom: 20px;
        font-weight: 700;
        font-family: 'Quicksand', sans-serif;
    }

    .content-box p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
        font-family: 'Quicksand', sans-serif;
    }

.info-section {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #f3f3f3;
 
}

.info-card {
  background: #fff;
  display: flex;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
  align-items: center;
}

.video-review {
  gap: 20px;
  padding-right: 40px;
}

.video-thumb {
  position: relative;
  width: 150px;
  height: 120px;
  overflow: hidden;
  border-radius: 100px 0 0 100px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #002b6d;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 13.134px;
    animation: pulse 2s infinite ease-in-out;
}

.review-text .stars {
  color: #f9b233;
  margin-bottom: 8px;
}

.review-text p {
    margin: 0;
    color: #002b6d;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
}

.review-text strong {
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.traffic-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 40px;
  border-radius: 20px 100px 100px 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

    .traffic-card i {
        color: #e74c3c;
        font-size: 28px;
        margin-bottom: 10px;
        
    }

    .traffic-card h3 {
        margin: 0;
        font-size: 24px;
        color: #002b6d;
        font-weight: 700;
        font-family: 'Quicksand', sans-serif;
    }

    .traffic-card p {
        margin: 0;
        font-size: 15px;
        color: #555;
        font-family: 'Quicksand', sans-serif;
    }


.call-btn {
    background-color: #e74c3c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .business-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .experience-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .image-left {
        width: 100%;
        height: 300px;
    }

        .image-left img,
        .image-right img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 20px;
        }

    .image-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .exp-circle {
        bottom: 10px;
        left: 10px;
        width: 100px;
        height: 100px;
        padding: 5px;
        box-shadow: 0 0 0 5px white;
    }

    .exp-number {
        font-size: 18px;
    }

    .exp-text {
        font-size: 10px;
    }

    .content-box {
        width: 100%;
    }

        .content-box h1 {
            font-size: 40px;
        }

    .info-section {
        flex-direction: column;
        gap: 16px;
    }

    .info-card {
        width: 100%;
        flex-direction: row;
    }

    .call-btn {
        margin-top:10px;
        width: 100%;
        justify-content: center;
    }
}



/*Blog*/

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .blog-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .facts .row > div {
        text-align: center;
        margin-bottom: 30px;
    }

    .facts h1.display-4 {
        font-size: 32px;
    }

    .facts span.text-primary {
        font-size: 16px;
        display: block;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .facts h1.display-4 {
        font-size: 28px;
    }

    .facts {
        padding: 30px 15px !important;
        background-size: cover;
        background-position: center;
    }

        .facts span.text-primary {
            font-size: 14px;
        }
}


/*** price ***/
.pricing-section {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

    .pricing-section h2 {
        font-size: 36px;
        color: #0b3d91;
        margin-bottom: 10px;
        font-family: 'Quicksand', sans-serif;
    }

    .pricing-section p {
        max-width: 800px;
        margin: 0 auto 40px;
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        font-family: 'Quicksand', sans-serif;
    }

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    width: 300px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    text-align: left;
}

    .plan-card h4 {
        font-size: 20px;
        margin-top: 50px;
        color: #0b3d91;
        font-family: 'Quicksand', sans-serif;
    }

    .plan-card p {
        font-size: 13px;
        margin-bottom: 20px;
        color: #666;
        font-family: 'Quicksand', sans-serif;
    }

    .plan-card ul {
        list-style: none;
        margin-bottom: 20px;
    }

        .plan-card ul li {
            margin-bottom: 10px;
            font-size: 14px;
            color: #444;
            font-family: 'Quicksand', sans-serif;
        }

.price-circle {
    position: absolute;
    top: -35px;
    left: 20px;
    background: #0b3d91;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
}

    .price-circle.red {
        background: #e74c3c;
    }

    .price-circle h3 {
        font-size: 16px;
        margin: 0;
        font-family: 'Quicksand', sans-serif;
        color:white;
    }

.buy-btn {
    background: #0b3d91;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

    .buy-btn.red {
        background: #e74c3c;
    }

.popular {
    background: #0b3d91;
    color: white;
}

    .popular h4,
    .popular p,
    .popular ul li {
        color: white;
        font-family: 'Quicksand', sans-serif;
    }
@media screen and (max-width: 900px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 400px;
    }

    .price-circle {
        left: 50%;
        transform: translateX(-50%);
    }
}

/**FAQ**/

.accordion-button:not(.collapsed) {
    color: #063970; /* default black text */
    background-color: #f8f9fa; /* subtle background */
    box-shadow: none;
}

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

.accordion-button::after {
    filter: invert(0.5); /* icon color adjustment if needed */
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
    
}

.testimonial-left,
.testimonial-right {
    position: relative;
    
}

    .testimonial-left img,
    .testimonial-right img {
        position: absolute;
        border-radius: 70px;
       
    }

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 200px;
    height: 200px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--secondary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #7F8499;
}

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #7F8499;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
        font-family: "Quicksand", Sans-serif;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #7F8499;
            margin-right: 10px;
           
        }

        .footer .btn.btn-link:hover {
            color: var(--primary);
            letter-spacing: 1px;
            box-shadow: none;
            
        }

.footer .btn.btn-square {
    color: #7F8499;
    border: 1px solid #7F8499;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

                                                        /**About us Page**/

/*Page Header*/
.page-header {
    position: relative;
}

    .page-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
        z-index: 1;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

    /**About US**/

.about-section {
    background: #fff;
}

.line-decoration {
    width: 60px;
    height: 4px;
    background-color: #ff2d75;
    position: relative;
    margin-top: 10px;
}

    .line-decoration::after,
    .line-decoration::before {
        content: '';
        position: absolute;
        height: 4px;
        width: 20px;
        background-color: #ff2d75;
        top: 0;
    }

    .line-decoration::before {
        left: -30px;
    }

    .line-decoration::after {
        right: -30px;
    }


/* Timeline Container */

.process-section {
    background-color: #eeeee4;
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

    /* Vertical Middle Line */
    .timeline::before {
        content: '';
        position: absolute;
        width: 6px;
        background-color: #063970;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
        z-index: 1;
    }

/* Each Timeline Item */
.container-t {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    box-sizing: border-box;
}

/* Left and Right Positions */
.left {
    left: 0;
}

.right {
    left: 50%;
}

/* Box Content */
.content {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* Step Box */
.step-box {
    background-color: #063970;
    padding: 4px 12px;
    display: inline-block;
    border-radius: 0 0 8px 8px;
    margin-bottom: 10px;
}

    .step-box h6 {
        margin: 0;
        color: #fff;
        font-weight: bold;
        font-family: 'Quicksand', sans-serif;
    }

    .step-box span {
        font-size: 20px;
        font-family: 'Quicksand', sans-serif;
    }

/* Connector Line */
.container-t::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #063970;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.left::before {
    right: 0px;
}

.right::before {
    left: 0px;
}

/* Dot Circle */
.container-t::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #063970;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.left::after {
    right: 20px; /* 30 (line) + 16 (dot) */
}

.right::after {
    left: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 31px;
    }

    .container-t {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .container-t::before {
            left: 20px;
            right: auto;
        }

        .container-t::after {
            left: 12px;
            right: auto;
        }

    .left, .right {
        left: 0;
    }
}

/*Mission annd vision*/
.mission-vision-section {
    background: #f8f9fa;
}

.mission-box, .vision-box {
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .mission-box:hover, .vision-box:hover {
        transform: translateY(-5px);
    }

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #063970;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

                                 /*web development*/

.soft-header h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Quicksand', sans-serif;
}
.soft-header p {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    color:black;
    padding-left:40px;
}
@media (max-width: 768px) {
    h1, h2, h3 {
        font-size: 31px;
        text-align: center;
    }

    .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        margin-top:10px;
    }

    .soft-header h4 {
        font-size: 25px;
    }

    .soft-header p {
        font-size: 17px;
    }

    .page-header1 h1 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    h2, h3, h4 {
        font-size: 1.25rem !important;
    }

    .page-header1 {
        height: 180px !important;
    }
}

/*Carrer*/

/* Hero Section */
.career-hero {
    background: linear-gradient(to right, #0b3d91, #155bc1);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .career-hero h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .career-hero p {
        font-size: 18px;
        max-width: 700px;
        margin: auto;
    }
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .benefit-items {
        flex-direction: column;
    }

    .career-hero h1 {
        font-size: 1.6rem;
    }

    .career-hero p {
        font-size: 1rem;
    }

    .job-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .career-hero {
        padding: 40px 10px;
    }

    .benefit-box {
        padding: 15px;
    }
}

/* Job Cards */
.job-listings h2 {
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
}

.job-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.08);
}

    .job-card h3 {
        color: #0b3d91;
        font-size:2.1rem;
    }

    .job-card p {
        margin: 10px 0;
        font-size: 1.1rem;
    }

.badge {
    display: inline-block;
    background: #e1ecf4;
    color: #0366d6;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

/* Benefits */
.benefits-section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.benefit-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.benefit-box {
    width: 200px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 15px;
    margin: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .benefit-box i {
        font-size: 28px;
        color: #0b3d91;
        margin-bottom: 10px;
    }

/* Application Form */
.apply-form-section {
    background: #e8f0fe;
    padding: 60px 20px;
    text-align: center;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

    .apply-form input,
    .apply-form textarea,
    .apply-form select {
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 15px;
    }

    .apply-form button {
        padding: 14px;
        border: none;
        background: #0b3d91;
        color: white;
        font-weight: bold;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
    }

        .apply-form button:hover {
            background: #083577;
        }

/* Responsive */
@media (max-width: 768px) {
    .benefit-items {
        flex-direction: column;
        align-items: center;
    }
}

/*contact us*/

/* Hero Section */
.contact-hero {
    background: linear-gradient(to right, #0b3d91, #155bc1);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

    .contact-hero h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .contact-hero p {
        font-size: 18px;
        max-width: 600px;
        margin: auto;
    }

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-info,
.contact-form {
    flex: 1 1 400px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

    .contact-info h2,
    .contact-form h2 {
        margin-bottom: 20px;
        color: #0b3d91;
    }

    .contact-info p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .contact-info i {
        color: #0b3d91;
        margin-right: 10px;
    }

    /* Form */
    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
        resize: none;
    }

    .contact-form button {
        background-color: #0b3d91;
        color: white;
        padding: 14px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
    }

        .contact-form button:hover {
            background-color: #083577;
        }

/* Map */
.map-section iframe {
    width: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
}


/*privacy*/

.privacy-policy-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}

    .privacy-policy-section .container {
        max-width: 900px;
        margin: auto;
    }

.privacy-title {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.privacy-intro {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.privacy-heading {
    color: #e74c3c;
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 10px;
}

.privacy-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-footer {
    text-align: center;
    margin-top: 50px;
    color: #777;
    font-size: 0.9em;
}