
body, html {
    overflow-x: hidden; /* Prevent horizontal overflow */
    margin: 0; /* Remove default margin */
  }


/* Top Bar */
/* Top Bar */
.top-bar {
    background-color: #E08D28;
    color: white;
    padding: 10px 0;
}

/* Links */
.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 8px;
}

.top-bar a:hover {
    color: #ddd;
}

/* Rotate phone icon */
.top-bar i.fa-phone {
    transform: rotate(90deg);
    display: inline-block;
}

/* Default: Show contact & social icons */
.top-bar .contact-info,
.top-bar .social-icons {
    display: flex;
    align-items: center;
}

/* Mobile view: Show only the phone number (aligned right) */
@media (max-width: 576px) {
    .top-bar .contact-info,
    .top-bar .social-icons {
        display: none !important; /* Hide email & social media */
    }

    .top-bar .phone-only {
        display: block !important; /* Show only the phone number */
        text-align: right;
        font-size: 16px;
        font-weight: bold;
        padding-right: 15px;
    }
}



.wide-container{
    width: 100%;
    max-width: 1300px;
}

/*navbar*/
/*navbar*/
.custom-navbar {
    background-color: #8B1538;
    padding: 10px 0;
}

.logo-img {
    height: 75px; /* Adjust based on your logo size */
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-toggler {
        margin-right: 10px; /* Adds space to the right of the hamburger */
    }
    
    .quote-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .logo-img{
        margin-left: 10px;
    }
}

/* Hamburger icon white */
.navbar-toggler {
    border: none; /* Removes default border */
    padding: 5px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Navbar spacing */
.navbar-nav {
    margin-left: 20px;
}

.navbar-nav .nav-item {
    margin-right: 15px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 15px;
}

.navbar-nav .nav-link:hover {
    color: #E08D28 !important;
}
.navbar-nav .nav-item.active .nav-link {
    color: #E08D28 !important; /* Active color */
    font-weight: bold;
}

/* Navbar link hover state */
.navbar-nav .nav-link:hover {
    color: #E08D28 !important;
}


.quote-btn {
    background-color: #E08D28;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.quote-btn:hover {
    background-color: #c0762d;
    color: white;
}


/*navbar*/
/*navbar*/
/* Banner Styling */
.banner {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Max Width for Content */
.banner-content {
    max-width: 800px;
}

/* Headings */
.banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Paragraph */
.banner p {
    font-size: 1rem;
    margin: 15px 0;
}

/* Learn More Button */
.learn-more-btn {
    background-color: #E08D28;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.learn-more-btn:hover {
    background-color: #c0762d;
    color: white;
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
    .banner {
        height: 50vh;
        padding: 10px;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    .banner p {
        font-size: 0.9rem;
        margin: 10px 0;
    }

    .learn-more-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 4px;
    }
}

/* Small Tablets (576px - 768px) */
@media (max-width: 768px) {
    .banner {
        height: 60vh;
        padding: 15px;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
        margin: 12px 0;
    }

    .learn-more-btn {
        padding: 9px 18px;
        font-size: 1rem;
    }
}
/* Smooth Fade Effect for Text */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Slide Up Effect for Paragraph */
.slide-up {
    animation: slideUp 1.5s ease-in-out;
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Custom Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
    opacity: 0.8;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators li {
    background-color: #E08D28;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #AB0D62;
}

/* Pause on Hover */
.carousel:hover {
    animation-play-state: paused;
}


/*about section*/
/*about section*/
.about-us {
    padding: 60px 0;
}

.about-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8B1538;
}

.about-us h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.about-us p {
    font-size: 1rem;
    color: #444;
}

.explore-more-btn {
    background-color: #E08D28;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.explore-more-btn:hover {
    background-color: #c0762d;
    color: white;
}
/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
    .about-us {
        padding: 50px 0; /* Reduced padding */
    }

    .about-us .row {
        flex-direction: column-reverse; /* Move image above text */
        text-align: center; /* Center align text */
    }

    .about-us h2 {
        font-size: 1.6rem; /* Smaller heading */
    }

    .about-us p {
        font-size: 0.95rem; /* Adjusted paragraph size */
    }

    .explore-more-btn {
        padding: 8px 16px; /* Adjusted button size */
        font-size: 0.9rem;
        border-radius: 4px;
    }

    .about-us img {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

/* Small Tablets (576px - 768px) */
@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us h2 {
        font-size: 1.8rem;
    }

    .about-us p {
        font-size: 1rem;
    }

    .explore-more-btn {
        padding: 9px 18px;
        font-size: 1rem;
    }

    .about-us img {
        max-width: 100%;
        margin-top: 15px;
    }
}


/*about section two*/
/*about section two*/
.service-section {
    background-color: #ffffff;
    height: 85vh;
    padding: 50px 0;
}
.custom-section {
    background-color: #8B1538;
    height: 50vh;
    padding: 50px 0;
}


.section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}
.section-subtitle{
    color: #ffffff;   
}

.service-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%; /* Equal height for all cards */
}

.service-icon {
    font-size: 30px;
    color: #E08D28;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #8B1538;
}

.card-text {
    font-size: 14px;
    color: #444;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.read-more .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #8B1538;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c0762d;
    text-decoration: none;
}

.read-more:hover .arrow-circle {
    background-color: #c0762d;
}
@media (max-width: 768px) {
    /* Hide background colors */
    .service-section, .custom-section {
        background-color: transparent !important;
        height: auto;
        padding: 30px 0;
    }

    /* Center heading and text */
    .section-heading {
        text-align: center;
        color: rgb(0, 0, 0) !important;
    }

    .section-subtitle {
        text-align: center;
        color: rgb(0, 0, 0) !important;
    }

    /* Adjust card spacing */
    .rakesh{
        margin-bottom: 25px;
    }
 
}


/*services section*/
/*services section*/
.services-section {
    padding: 60px 0;
}

.services-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8B1538;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.services-section p {
    font-size: 1rem;
    color: #444;
}

.explore-more-btn {
    background-color: #E08D28;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.explore-more-btn:hover {
    background-color: #c0762d;
    color: white;
}
@media (max-width: 768px) {
    /* Adjust section padding */
    .services-section {
        padding: 50px 20px; /* Reduced padding for smaller screens */
        text-align: center; /* Center text */
    }

    /* Reduce heading size */
    .services-section h2 {
        font-size: 1.5rem; /* Smaller heading */
        margin: 10px 0;
    }

    /* Reduce paragraph font size for readability */
    .services-section p {
        font-size: 0.9rem;
    }

    /* Make text and image stack vertically */
    .services-section .row {
        flex-direction: column-reverse; /* Image first, then text */
    }

    /* Adjust image size */
    .services-section img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px; /* Space between image and text */
    }

    /* Center button */
    .explore-more-btn {
        display: inline-block;
        margin-top: 15px;
    }
}


/*our services cards*/
/*our services cards*/
.choose-cards-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.choose-cards-img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
}

.choose-cards-body {
    padding: 15px;
    flex-grow: 1;
}

.choose-cards-title {
    font-size: 1.3rem; /* Reduced from 1.5rem */
    font-weight: bold;
    color: black; /* Changed to black */
}

.choose-cards-text {
    font-size: 0.95rem; /* Reduced from 1rem */
    color: #444;
}

.choose-cards-btn {
    background-color: #E08D28;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
}

.choose-cards-btn:hover {
    background-color: #c0762d;
    color: white;
}
@media (max-width: 768px) {
    /* Add spacing between cards */
    .choose-cards-item {
        margin-bottom: 20px; /* Adds gap between cards */
        padding: 15px; /* Slightly reduce padding */
    }

    /* Adjust image size */
    .choose-cards-img {
        height: 150px; /* Reduce height for better fit */
        border-radius: 8px;
    }

    /* Reduce text size for mobile */
    .choose-cards-title {
        font-size: 1.1rem; /* Slightly smaller */
    }

    .choose-cards-text {
        font-size: 0.85rem; /* Reduce font size for better readability */
    }

    /* Adjust button for mobile */
    .choose-cards-btn {
        padding: 7px 14px;
        font-size: 0.9rem;
    }
}


/*another banner*/
/*another banner*/
.custom-banner {
    background: url('img7.png') no-repeat center center/cover;
    height: 70vh; /* Increased height for better visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.custom-banner-content {
    max-width: 800px;
    padding: 20px;
}

.custom-banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.custom-banner p {
    font-size: 1.1rem;
    margin: 15px 0;
}

.contact-now-btn {
    background-color: #E08D28;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.contact-now-btn:hover {
    background-color: #c0762d;
    color: white;
}

/* Tablet View */
@media (max-width: 1024px) {
    .custom-banner {
        height: 60vh; /* Adjusted for better fit */
    }

    .custom-banner-content {
        max-width: 85%;
    }

    .custom-banner h1 {
        font-size: 2.2rem;
    }

    .custom-banner p {
        font-size: 1rem;
    }

    .contact-now-btn {
        padding: 10px 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .custom-banner {
        height: 55vh; /* Increased height for better visibility */
        padding: 15px;
    }

    .custom-banner-content {
        max-width: 90%;
    }

    .custom-banner h1 {
        font-size: 1.8rem;
    }

    .custom-banner p {
        font-size: 0.95rem;
        margin: 10px 0;
    }

    .contact-now-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .custom-banner {
        height: 65vh; /* Increased height for small screens */
    }

    .custom-banner h1 {
        font-size: 1.5rem;
    }

    .custom-banner p {
        font-size: 0.85rem;
    }

    .contact-now-btn {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
}

/*our clients*/
/*our clients*/

.our-clients {
    padding: 50px 0;
}

.our-clients h2 {
    font-size: 2rem;
    font-weight: bold;
}

.our-clients p {
    font-size: 1.1rem;
}

/* Ensure images are properly sized */
.our-clients img {
    max-width: 100%;
    height: 60px; /* Reduced logo size */
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
}

/* Hover effect */
.our-clients img:hover {
    transform: scale(1.1);
}

/* Marquee Effect */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 40px; /* Space between logos */
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/*testinomials*/
/*testinomials*/


.testimonial-card {
    background-color: #8B1538;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Mobile devices (up to 576px) */
@media (max-width: 576px) {
    .testimonial-card {
        padding: 15px;
        font-size: 14px;
        border-radius: 20px;  /* Adjusting the border radius for smaller screens */
    }
}

/*contact section*/
/*contact section*/
.contact-section {
    background-color: #f4f4f4;
}

.contact-heading {
    font-weight: bold;
    font-size: 24px;
}

.contact-subheading {
    font-size: 18px;
    font-weight: 600;
}

.contact-section i {
    color: #8B1538;
    margin-right: 8px;
}

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 450px;
    margin: auto;
}

.contact-form-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-form-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contact-form-box .form-control {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
    box-shadow: none;
}

.send-btn {
    background-color: #E08D28;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    width: 100%;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #c0762d;
}


/*about page banner*/
/*about page banner*/
.about-banner {
    background-color: #F5F5F5; /* Light background color for about page */
    padding: 80px 20px;
    text-align: center;
}

.about-banner-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #123524; /* Dark green for header */
}

.about-banner-content p {
    font-size: 1rem;
    color: #444444; /* Dark gray for text */
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.code{
    color:#E08D28;
}

.fintech img {
    border-radius: 15px;
}


/*modal antara babu*/
/* Modal Background */
.modal {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex; /* This will be controlled via JavaScript */
    justify-content: center;
    align-items: center;
}

/* Modal Content Box */
.modal-content {
    background: white;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background-color: #E08D28;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #c9781f;
}

/* Style for Navbar Get Quote Button */
.quote-btn {
    background-color: #E08D28;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.quote-btn:hover {
    background-color: #c9781f;
}


/*footer*/
/* Footer Styling */
.footer {
    background-color: #8B1538;
    color: white;
    padding: 3rem 0;
}

/* Footer Logo */
.footer img {
    max-width: 200px;
}

/* Footer Paragraph */
.footer p {
    text-align: justify;
    line-height: 1.6;
    font-size: 14px;
}

/* Footer Headings */
.footer h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Navigation Links */
.footer ul {
    padding-left: 0;
}

.footer ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #FFD700; /* Gold Hover Effect */
}

/* Contact Links */
.footer a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: #FFD700; /* Gold Hover Effect */
}

/* Address Styling */
.footer p {
    margin-bottom: 10px;
}

/* Copyright Section */
.footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
    padding-top: 15px;
    font-size: 14px;
}
.footer p a {
    color: #E39925;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer p a:hover {
    color: #d18a20; /* Slightly darker shade for hover effect */
}


/* Responsive Design */
@media (max-width: 768px) {

    .footer .col-md-3 {
        margin-bottom: 20px;
    }
}

/*company page*/
/*company page*/
/* Company Page */
.company-box {
    border: 2px solid #E08D28;
    border-radius: 10px;
    background-color: #fdf6ec;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Ensures content is evenly spaced */
    height: 100%; /* Ensures all boxes have equal height */
    padding: 20px;
}

.company-box:hover {
    transform: translateY(-5px);
}

.company-logo {
    max-width: 350px;
    height: auto;
}

.company-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #8B1538;
    text-align: center;
}

.company-desc {
    font-size: 1rem;
    color: #444;
    text-align: center;
}
