/* Apply Saira font to the whole website */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
}

body {
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    font-family: 'Montserrat', sans-serif;
    /* Default */
}
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
    color: var(--black-color);
    /* Bold */
}

.bg-silver-light {
    background-color: #F7F8FA !important;
}

.carousel-content h1 {
    font-weight: 700;

}

.carousel-content p {
    font-weight: 600;

}

p {
    font-weight: 400;
    /* font-family: 'Montserrat', sans-serif; */
    /* Regular */
}

button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

#schemeTable_filter {
    margin-bottom: 10px;
}

#schemeTable th,
#schemeTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Add border to pagination numbers */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #ddd;
    /* Blue border */
    padding: 5px 10px;
    margin: 2px;
    border-radius: 5px;
    background-color: white;
    color: #ddd;
    transition: 0.3s;
}





body {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--white-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navbar {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Make navbar sticky */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
    background-color: white;
}


/* Add spacing between navbar items */
.navbar-nav .nav-item {
    margin: 5px 5px;
    /* Adjust the gap between menu items */
}

/* Navbar link default styles */
.navbar-nav .nav-link {
    text-align: center;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
    transition: color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Hover effect - reduce height */
.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}




/* Target only between 992px and 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
    .navbar-brand img {
        width: 120px !important;
    }

    .navbar-brand figcaption {
        font-size: 10px !important;
        /* smaller caption */
    }

    /* Navbar links */
    .navbar-nav .nav-link {
        font-size: 12px !important;
        /* shrink text */
        padding: 0.1rem 0.2rem !important;
        /* tighter spacing */
    }

    /* Buttons */
    .navbar .btn {
        font-size: 11px !important;
        padding: 0.3rem 0.6rem !important;
    }

    /* Reduce gap between buttons */
    .navbar .nav-item.d-flex.gap-2 {
        gap: 0.3rem !important;
    }
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/* Fade-in + Slide-down animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    font-size: 15px;
    padding: 5px 10px;
    transition: text-indent 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect (Only Move Text) */
.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: #fff !important;
    text-indent: 10px;
    /* Moves only the text, not the box */
}




/* Login Button */
.btn-signup {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border: 1px solid var(--primary-color); /* border in same color */
    border-radius: 6px; /* optional rounded */
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border: 1px solid var(--primary-color); /* border in same color */
    border-radius: 6px; /* optional rounded */
}




.btn-custom {
    font-size: 14px;
    font-weight: bold;
}

.btn-theme-light {
    background-color: var(--primary-color);
    color: #fff;
}

.text-theme-dark {
    color: var(--secondary-color);
}

.btn-theme-dark {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-theme-light {
    background-color: var(--primary-color);
    color: #fff;
}

/* Login Button */
.btn-signup {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    padding: 8px 10px;
}

/* Sign Up Button */
.btn-login {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    padding: 8px 10px;
}



@media (max-width: 1200px) {
    .action-button {
        display: none !important;
    }
}

footer {
    background-color: #2b343b;
    color: #fff;
    font-family: sans-serif;
}



.footer .widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 20px;
    position: relative;
    /* Space for icon */
}


.footer a {
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary-color);
    /* Hover Effect */
}

/* Divider Line */
.list-border li {
    border-bottom: 1px dashed #cccccc44;
    padding-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: left;
    }

    .footer ul {
        padding-left: 0;
    }
}

.footer-bottom {
    background-color: #002855;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: white;
    margin: 0;
}

.footer-bottom a {
    color: #45c4e9;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        width: 45%;
        /* Two sections per row on smaller screens */
    }
}

@media (max-width: 500px) {
    .footer-section {
        width: 100%;
        /* Single section per row on very small screens */
    }
}



/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    /* margin: 0 auto 35px auto; */
}



.carousel-control-prev {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    left: 2%;
    color: #000;
    background: var(--bs-secondary);
    border-radius: 50px;
    opacity: 0.8;
}

.carousel-control-prev:hover {
    background: var(--secondary-color);
    transition: .4s;
}

.carousel-control-next {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    right: 2%;
    background: var(--bs-secondary);
    border-radius: 50px;
    opacity: 0.8;
}

.carousel-control-next:hover {
    background: var(--secondary-color);
    transition: .8s;
}

.carousel-content-btn1 {
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
    border: 0;
    border-radius: 5px;
}

.carousel-content-btn1:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border: 0;
    opacity: 1;
    transition: 0.3s;
}



#carouselId .carousel-indicators li {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    margin: 30px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}


.carousel-caption.caption-one {
    left: 0;
    right: auto;
    text-align: left;
    bottom: 5%;
    top: auto;
    transform: none;
    padding-left: 10%;
}

.carousel-content-left {
    max-width: 850px;
}




/*** Animations ***/
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.animated {
    animation-duration: 2s;
    /* Slowed down from 1s */
    animation-fill-mode: both;
}



/*** Services Start ***/
.service-section {
    padding: 50px 100px;
}

@media (max-width: 768px) {
    .service-section {
        padding: 10px;
        /* Or 0 if you want no padding */
    }
}

.contactus-section {
    padding: 50px 100px;
}

@media (max-width: 768px) {
    .contactus-section {
        padding: 10px;
        /* Or 0 if you want no padding */
    }
}




.step-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-card.active {
    background: var(--primary-color);
    color: #fff;
}

.service-img {
    width: 100%;              /* make image responsive */
    height: auto;             /* maintain aspect ratio */
    border-radius: 12px;      /* rounded corners */
    object-fit: cover;        /* crop nicely if fixed height used */
    transition: transform 0.3s ease-in-out;
}

.service-img:hover {
    transform: scale(1.05);   /* zoom effect on hover */
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-card.active .step-icon {
    color: #fff;
}

.step-card p {
    font-size: 14px;
    margin-top: 10px;
    color: inherit;
}

a.btn-primary {
    text-decoration: none;    /* remove underline */
    display: inline-block;    /* so padding/margins work well */
}

/*** Services End ***/
/*** Testimonial Start ***/

.testimonial-section {
    background-color: #022F42;
    padding: 40px 60px;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* space between image and text */
    margin-bottom: 20px;
}

.testimonial .thumb {
    flex-shrink: 0;
    /* prevents image from shrinking */
}

.testimonial .thumb img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.testimonial .ml-100 {
    flex-grow: 1;
    text-align: left;
    /* aligns text to the start */
}



@media (max-width: 600px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial .ml-100 {
        text-align: center;
        margin-top: 10px;
    }

    .text-justify {
        text-align: center;
    }
}

/* .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    margin: 5px;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    background: var(--primary-color);
} */

.owl-nav {
    display: none;
}

/*** Testimonial end ***/




/*** blog start ***/

.blog-card-custom {
    background-color: #fff;
    color: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px dotted var(--primary-color);
}

.blog-category {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
    color: var(--primary-color);
    border-radius: 6px;
    display: inline-block;
}

.blog-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 15px;
}

.blog-img {
    width: 100%;
    margin-top: auto;
}

.blog-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.read-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 12px;
    transition: background-color 0.3s ease;
}

.read-btn:hover {
    color: #fff;
    background-color: var(--secondary-color);
}
/*** blog end ***/



/*** about start ***/
.clientimg {
    max-width: 100%;
    height: auto;
    border-radius: 50% 50%;
    /* Optional for rounded corners */
}

#aboutStats .card {
    border: 1px solid #eddcca;
    border-radius: 20px;
    min-height: auto !important;
}

.bg-light-orange {
    background-color: #e59a4b40;
    /* Light orange with transparency */
}

#ourexpertise2 .card {
    background: #fff;
    color: black !important;
    border-radius: 20px;
    padding: 20px;
    font-size: 14px;
    padding-bottom: 20px;
    padding-top: 20px;
    min-height: auto !important;
}

.custom-alpha-list {
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
    font-size: 15px;
}

.custom-alpha-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    color: #000;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px dashed #ccc; /* Bottom dashed border */
}

.custom-alpha-list .alpha-marker {
    position: absolute;
    left: 0;
    font-weight: bold;
}




/*** about end ***/




.page-header {
    background: #036e6fcf !important;
}


.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--white-color);
}

/* Contact Box Styling */
.contact-box {
    background-color: #ffefef;
    padding: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #000;
    /* Soft shadow */
}

/* Icon Styling */
.contact-icon {
    font-size: 24px;
    color: #333;
    padding: 15px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}


.contact-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
    font-weight: 400;
}




.section-title {
    text-align: center;
    margin: 40px 0;
}

.section-title h2 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

/* Styling "OUR" */
.section-title h2 .text-dark {
    color: #000;
    /* Black */
}

/* Styling "PRODUCTS" */
.section-title h2 .text-theme-colored2 {
    color: #33bdf1;
    /* Light blue */
}

/* Double underline effect */

.section-title h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #000;
    margin: 5px auto 0;
}

.section-title h2::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #000;
    margin: auto;
    position: relative;
    top: 50px;
}

.line-bottom {
    width: 0;
    height: 3px;
    border-radius: 30px;
    background: var(--heading-color);
    margin: 0px auto 0;
    transition: width 0.3s ease-in-out;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
}

.service-box:hover .line-bottom {
    width: 100%;
}

.linner:hover .line-bottom {
    width: 100%;
}




.labeltext {
    font-size: 16px !important;
    background-color: #d9edf7;
    font-family: 'Montserrat', sans-serif;
}

input {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    background: transparent;
}

.textField {
    border-radius: none;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-color: #444444;
    background-color: #d9edf7;
    color: #000000;
    font-size: 22px;
    font-weight: normal;
    width: 10%;
    text-align: center;
}

/* Blog Card Styles */
/* Button */
.btn-primary {
    border-radius: 6px;
    font-size: 0.85rem;
    padding: 8px 15px;
    align-self: start;
    background:#f40402;
    /* Ensures button stays at the bottom */
}



/* New Card Styling */

.news-card {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 20px;
    margin-bottom:20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.service-item {
    display: block;
    padding: 12px 16px;
    background-color: #fde8d3; /* light peach background */
    color: #000;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: #fcd2aa;
}

.service-item.active {
    background-color: var(--primary-color); /* highlighted orange */
    color: #fff;
    font-weight: bold;
}
.secondary-highlight-text{
    color: var(--secondary-color);
}

.accordion-item {
    border: 1px solid #e5e7eb;
    /* light border */
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    padding: 5px;
}

/* Hover effect */
.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Accordion header */
.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
    box-shadow: none !important;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* On active (opened) */
.accordion-button:not(.collapsed) {
    color: #fff;
   background: linear-gradient(135deg, #f60103c9, #f60103c9);


}

/* Icon rotate */
.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


.icon-style {
    font-weight: 300;
    font-size: 40px;      /* same size for all icons */
    color: #fff;          /* or use var(--primary-color) if needed */
    margin-bottom: 10px;  /* spacing below icon */
}
.counter-value {
    font-size: 2rem;
    font-weight: 600;
}
.author{
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.contact-card {
    background: #ed6a201f;
    border-radius: 12px;
    /* height: 170px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card .icon {
    font-size: 30px;
    color: var(--primary-color);
    /* dark brownish icon color */
}

.contact-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card .icon {
    font-size: 28px;
    color: var(--primary-color);
    /* Theme color */
}

.contact-card h5 {
    font-size: 16px;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

@media (min-width: 768px) and (max-width: 991px) {
    .contact-card .icon i {
        font-size: 1rem;
        /* smaller icon */
    }

    .contact-card h5 {
        font-size: 0.9rem;
        /* smaller heading */
    }

    .contact-card p {
        font-size: 0.6rem;
        /* smaller text */
    }

    .contact-card p a {
        font-size: 0.6rem;
        /* smaller text */
    }
}


.text-desgin {
    text-align: justify;
    line-height: 25px;
}

.textField {
    display: inline-block;
    padding: 6px 10px;
    margin: 0 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

/* On focus */
.textField:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(0, 128, 128, 0.2);
}

/* Input spacing */
#sipamount {
    width: 120px;
    text-align: right; /* numbers aligned properly */
}

/* Dropdowns */
#sipmonth,
#sipinterest {
    width: 80px;
    text-align: center;
    cursor: pointer;
}
