body {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    /* Keep main direction vertical */
    height: 100vh;
    /* Full viewport height */
    margin: 0;
    /* Remove default margin */
}


#sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: white;
    color: black;
    padding: 20px;
    transition: left 0.3s;
    z-index: 9999;
    /* overflow-y: auto; */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: scroll;
}

#sidebar.active {
    left: 0;
}

#sidebar .close-sidebar {
    cursor: pointer;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 0.5px;
    right: 5px;
}

#sidebar .text-center {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
   
    padding: 15px;
    position: sticky;
    top: 0;
    
    z-index: 1;
    font-weight: 900px;
    
}
.close-sidebar{
    border: 3px solid black;
    padding-left: 11px;
    padding-right: 11px;
    color: white;
    background-color: #000000;

}

#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
}

#sidebar li {
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid rgb(215, 211, 211);
    transition: background-color 0.3s, transform 0.3s;
}

#sidebar li:hover {
    background-color: rgb(255, 255, 255);
    transform: scale(1.02);
    color: #0056b3;
}

#sidebar ul li a {
    color: rgb(17, 10, 10);
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-link i {
    margin-right: 12px;
    margin-left: 10px;
}

.sidebar-link img {
    margin-left: 5px;
}

#sidebar ul li a:hover {
    color: #190c88;
}

#sidebar::-webkit-scrollbar {
    width: 8px;
}

#sidebar::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 10px;
}

#sidebar ul li.active {
    background-color: rgba(247, 247, 247, 0.9);
}

@media (max-width: 768px) {
    #sidebar {
        width: 220px;
    }

    #sidebar.active {
        left: 0;
    }

    body {
        overflow-x: hidden;
    }


}
/* Sidebar and Navigation Styles */
.sidebar-largeview {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin-left: 20px;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin-top: 20px;
    font-size: 18px;
    width: 60%;
}

.sidebar-largeview li {
    position: relative;
    /* Required for positioning the dropdown */
    margin-right: 20px;
    text-decoration: none !important;
}

.sidebar-largeview li a {
    color: black;
    text-decoration: none !important;
}

.sidebar-largeview li a:hover {
    color: darkorange;
}

/* Show dropdown on hover */
.sidebar-largeview li:hover .dropdown-menu {
    display: block;
    /* Show the dropdown */
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1000;
}

.dropdown-menu .dropdown-item {
    padding: 10px;
    color: black;
    text-decoration: none;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

/* Navbar Icon Styles */
.navbar-icons a {
    position: relative;
    font-size: 1.5rem; /* Default icon size */
    color: #25D366 !important; /* WhatsApp green color */
    text-decoration: none;
    margin-top: 5px;
}

.navbar-icons a:hover {
    color: #128C7E; /* Darker green on hover */
}

.navbar-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Responsive Styles */

/* Tablet view and above (Min-width 768px) */
@media (min-width: 768px) {
    .navbar-icons a {
        font-size: 1.5rem;
    }

    .navbar-icons a:last-child {
        margin-right: 0;
    }

    .navbar-icons {
        margin-right: 40px;
        width: auto; /* Adjust for proper alignment */
    }

    .sidebar-largeview {
        display: flex;
    }
}

/* Mobile view (Max-width 767px) */
@media (max-width: 767px) {
    .sidebar-largeview {
        display: none; /* Hide sidebar on smaller screens */
    }

    .navbar {
        display: flex;
        justify-content: space-between; /* Spread out the elements */
        align-items: center;
        width: 100%;
    }

    .navbar .navbar-toggler {
        display: block;
        margin-left: 20px;
    }

    .navbar-brand img {
        height: 50px;
        width: auto; /* Allow width to scale based on height */
        margin-left: 100px !important;/* Adjust spacing */
    }

    .navbar-brand {
        width: auto; /* Make navbar brand flexible */
    }

    .navbar-icons {
        justify-content: flex-end;
        width: auto; /* Ensure icons take only needed space */
        margin-left: 20px; /* Adjust for a cleaner look */
        margin-right: 20px;
    }

    .navbar-icons a {
        font-size: 1.5rem;
        text-decoration: none;
    }
}

/* Small mobile view (Max-width 576px) */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 50px;
        width: auto; /* Ensures logo fits */
        margin-left: 10px !important;

    }

    .navbar-icons {
        display: flex;
        justify-content: space-between;
        width: auto;
        font-size: 1.5rem;
    }
    .navbar-icons a {
        font-size: 1.5rem;
        text-decoration: none;
    }

    .navbar {
        gap: 0; /* Remove gap for a compact view */
    }
}

/* Logo Styles */
.navbar-brand img {
    height: 50px;
    width: 150px;
    margin-left: 30px;
}

/* -------------------------------------------------- footer --------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    /* Allow the main content to take up available space */
    overflow-y: auto;
    /* Allow vertical scrolling for main content */
}

/* Footer styles */
.footer {
    background-color: black;
    /* Background color for footer */
    padding: 20px;
    /* Padding for the footer */

    color: white;
}


/* Flexbox for footer content */
.footer-content {
    display: flex;
    justify-content: space-evenly;
    /* Space between footer items on larger screens */
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
    /* align-items: center; Center items vertically */
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-evenly;
    /* Space between left and right items */
    margin-top: 10px;
    /* Allow vertical scrolling for footer bottom if needed */
    flex-direction: column;
    /* Stack items vertically for mobile */
    align-items: center;
    /* Center items */
    text-align: center;
    /* Center text for better readability */
    gap: 400px;

}

.footer-logo img {
    height: 70px !important;
    width: 200px;
    margin-top: 70px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .footer-content {
        display: none;
        /* Hide footer content on mobile */
    }

    .footer-bottom {
        max-height: 150px;
        /* Set a max height for the footer bottom */
        padding: 10px;
        /* Add some padding */
        /* overflow-y: auto; Allow scrolling if content exceeds height */
        padding-bottom: 60px;
        gap: 0px
    }

    .footer {
        padding: 10px;
    }

    .footer-left,
    .footer-right {
        margin-bottom: 5px;
        /* Space between items */
    }


}

/* Styles for larger screens */
@media (min-width: 769px) {
    .footer-bottom {
        display: flex;
        /* Set as a flex container */
        justify-content: space-evenly;
        /* Center items horizontally */
        align-items: center;
        /* Center items vertically */
        flex-direction: row;
        /* Keep items in a row */
        margin-top: 10px;
        /* Maintain space above */
        width: 100%;
        /* Full width */

        gap: 300px;
    }

    /* Remove margin and ensure consistent height */
    .footer-left,
    .footer-right {
        margin: 0 5px;
        /* Add horizontal margin for spacing */
        text-align: center;
        /* Center text within each section */
        padding: 0;
        /* Remove any padding */
        line-height: 1.5;
        /* Adjust line-height for better alignment */
    }

    .footer-left p {
        margin-bottom: 0px !important;
    }

}

/* ---------------------------------------------------------Home_ page------------------------------------ */
.carousel-container {
    position: relative;
    width: 100%; /* Set to full width */
    max-width: 100%; /* Allow it to take the full width */
    margin: auto;
    overflow: hidden;
    margin-top: 90px;
    
}
.backgroun-blue{
    background-color:#1a0889!important;
}
.back-blue
{
    background-color:#23128e!important;
}
.back-blue:hover{
    background-color:#8e8ca0!important;
    color: #000000;
    font-weight: bold;
}
.txt-blue{
    color:#1a0889!important;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%; /* Each slide takes the full width of the container */
}

.carousel-slide img {
    width: 100%;  /* Ensure the image scales with the width of the slide */
    height: 350px;
    object-fit: content; /* Ensure image covers the area without stretching */
   
}

/* Carousel Button Styling */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-slide img {
        height: 350px;
      
    }
}

@media (max-width: 992px) {
    .carousel-slide img {
        height: 300px;
        
    }

    .carousel-prev,
    .carousel-next {
        padding: 10px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 250px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .carousel-slide img {
        height: 150px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 6px;
        font-size: 12px;
    }
}


/* Section Title Styling */

.section-title {
    position: relative;
    padding-bottom: 10px;
}

/* Main underline before the title */
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background:#1a0889 !important; /* Bootstrap primary color */
    border-radius: 2px;
}

/* Center-aligned section title */
.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

/* Small section title line */
.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

/* Animated dot after the title */
.section-title::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 6px; /* Added a small circle instead of a line */
    bottom: 0px; /* Adjusted bottom position */
    background: #ffffff; /* Animation color */
    border-radius: 50%;
    animation: section-title-run 5s infinite linear;
}



/* Small section title with smaller animated dot */
.section-title.section-title-sm::after {
    width: 4px;
    height: 4px; /* Smaller dot */
    animation: section-title-run-sm 5s infinite linear;
}

/* Center-aligned title with dot animation */
.section-title.text-center::after {
    animation: section-title-run-center 5s infinite linear;
}

/* Keyframes for the general animation */
@keyframes section-title-run {
    0% {
        left: 0;
    }
    50% {
        left: 145px;
    }
    100% {
        left: 0;
    }
}

/* Keyframes for the center-aligned title animation */
@keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }
    50% {
        left: 50%;
        margin-left: 45px;
    }
    100% {
        left: 50%;
        margin-left: -75px;
    }
}

/* Keyframes for the small section title animation */
@keyframes section-title-run-sm {
    0% {
        left: 0;
    }
    50% {
        left: 85px;
    }
    100% {
        left: 0;
    }
}
/*** Service ***/
/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    background-color: #EEF9FF !important; /* Set background color of service item */
    transition: 0.5s ease;
    overflow: visible; /* Allow the button to float outside the container */
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#1a0889 ; /* Set background color of service icon */
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -40px; /* Initially hidden below the service card */
    left: 50%;
    transform: translateX(-50%); /* Centers the button horizontally */
    opacity: 0; /* Initially hidden */
    z-index: 10; /* Ensure the button is on top */
    transition: bottom 0.3s ease, opacity 0.3s ease; /* Smooth transition for bottom and opacity */
}

.service-item:hover a.btn {
    bottom: -24px; /* Moves the button slightly up, revealing it below the service card */
    opacity: 1; /* Button becomes fully visible */
}
/* Button styling to match input fields */
.btn-primary {
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#a89df3 ;
  }

  .btn-primary:hover{
    background-color:#1a0889 ;
  }
  
  /* Remove any margin and padding that could cause layout issues */
  form input, form select, form textarea {
    height: 55px;
    padding: 10px;
  }

  /* -----------------------------------------------------testimonials ------------------------------ */
  .testimonial-carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.review-container {
    display: flex;
    transition: transform 0.3s ease;
}

.review {
    padding: 20px;
    margin-right: 20px; /* Space between reviews */
    background-color: #f9f9f9;
    border-radius: 8px;
    width: 400px; /* Increased width for the cards */
    height: 250px; /* Increased height for the cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.client-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.rating {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.prev-btn, .next-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Large screens - 3 reviews visible */
@media (min-width: 1200px) {
    .review {
        width: calc(33.33% - 20px); /* Display 3 reviews per row */
        height: 250px; /* Increased height */
        width: 400px;
    }
}

/* Tablet screens - 3 reviews visible */
@media (max-width: 1199px) and (min-width: 768px) {
    .review {
        width: calc(33.33% - 20px); /* Display 3 reviews per row */
        height: 250px; /* Increased height */
        width:  400px;
    }
}

/* Mobile screens - 1 review visible */
@media (max-width: 767px) {
    .testimonial-carousel-container {
        padding: 10px;
    }

    .review {
        width: calc(100% - 20px); /* Display 1 review per row */
      width: 400px; /* Ensures max-width for each review */
        height: 250px; /* Adjusted height for better mobile view */
        margin: 10px auto; /* Centering the card */
    }

    .prev-btn, .next-btn {
        font-size: 18px;
    }
}

@media (max-width: 756px) {
    .testimonial-carousel-container {
        padding: 10px;
    }

    .section-title h1 {
        font-size: 1.5rem;
    }

    .section-title h5 {
        font-size: 1rem;
    }
}

/* Extra small mobile screens - 1 review visible */
@media (max-width: 576px) {
    .testimonial-carousel-container {
        display: flex; /* Ensure flexbox layout for the carousel */
        flex-direction: row;
        overflow-x: auto; /* Enable horizontal scrolling */
        padding: 0;
    }

    .review {
        width: 300px !important; /* Set a fixed width for the review card */
        height: 250px; /* Set the height to match the width (square shape) */
        margin: 10px; /* Center the card */
        flex-shrink: 0; /* Prevent cards from shrinking */
        padding-left: 50px;
        padding-right: 50px;
    }

    .prev-btn, .next-btn {
        font-size: 18px;
    }

    .section-title h1 {
        font-size: 1.2rem;
    }

    /* Optional: Hide the scrollbar if you don't want it visible */
    .testimonial-carousel-container::-webkit-scrollbar {
        display: none;
    }
    .testimonial-carousel-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}


/* ----------------------------------------------vendor---------------------------------------- */
.vendor-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.vendor-carousel {
    display: flex;
    animation: marquee 5s linear infinite;
}

.vendor-images {
    display: flex;
}

.vendor-carousel img {
    width: 200px;
    height: auto;
    margin-right: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
  /* ---------------------------------------------About Us----------------------------------- */
/* ===================== About Us Section ===================== */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: box-shadow 0.3s ease;
    margin-top: 90px !important;
}

.about-us:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.about-text {
    width: 50%;
    padding-right: 30px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ===================== Team Section ===================== */
.team {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px !important;
}

.team h3 {
    font-size: 36px;
    color: #1a0889;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    width: 30%;
    text-align: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #1a0889;
}

.team-member h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 18px;
    color: #777;
}

.bio {
    font-size: 16px;
    color: #777;
    margin-top: 10px;
}

/* ===================== Timeline Section ===================== */
.timeline {
    background-color: #fafafa;
    padding: 80px 0;
    text-align: center;
 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top:10px !important ;
    padding-bottom: 10px;
}

.timeline h3 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #2c3e50;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 80px;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-date {
    background-color: #2c3e50;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-date {
    background-color: #1a0889;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background-color: #fff;
    padding: 25px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.7;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50px;
}

/* ===================== Responsive Styles ===================== */
@media screen and (max-width: 1024px) {
    /* For Laptop */
    .about-us {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .team-members {
        justify-content: center;
    }

    .team-member {
        width: 45%;
    }

    /* Timeline updates */
    .timeline-item {
        flex-direction: column; /* Stack the timeline items vertically */
        margin-bottom: 40px; /* Reduce space between items */
    }

    .timeline-date {
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 20px; /* Adjust space between date and content */
    }

    .timeline-content {
        width: 90%; /* Adjust width to allow more space */
        margin: 0 auto; /* Center the content */
    }
}

@media screen and (max-width: 768px) {
    /* For Tablet */
    .about-us {
        flex-direction: column;
        padding: 20px;
    }

    .about-text, .about-image {
        width: 100%;
        padding-right: 0;
    }

    .team-member {
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-content {
        width: 100%; /* Ensure content takes up more width */
    }

    .team h3, .timeline h3 {
        font-size: 28px;
    }

    /* Timeline updates */
    .timeline-item {
        flex-direction: column; /* Stack timeline items vertically */
        align-items: center; /* Center items */
        margin-bottom: 40px;
    }

    .timeline-date {
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 20px; /* Adjust space between date and content */
    }

    .timeline-content {
        width: 90%; /* Ensure content takes up more width */
        margin: 0 auto; /* Center content */
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 50px;
    }
}

@media screen and (max-width: 480px) {
    /* For Mobile */
    .about-us {
        padding: 15px;
    }

    .about-text h2 {
        font-size: 30px;
    }
    .about-image img {
      
        margin-top: 50px;
    }
    .team h3, .timeline h3 {
        font-size: 28px;
    }
.team{
    padding: 20px 0;
}
    .team-member img {
        width: 120px;
        height: 120px;
    }

    .team-member h4 {
        font-size: 22px;
    }

    /* Timeline updates */
    .timeline-item {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        margin-bottom: 40px; /* Adjust space between items */
    }

    .timeline-date {
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 20px;
    }

    .timeline-content {
        width: 90%; /* Increase content width */
        margin: 0 auto; /* Center content */
    }

    .timeline h3 {
        font-size: 20px; /* Reduce font size for smaller screens */
    }

    .timeline-content h4 {
        font-size: 22px; /* Adjust title size */
    }

    .timeline-content p {
        font-size: 16px; /* Adjust paragraph size */
    }
    
}


/* --------------------------------------contact us page------------------------------------- */

/* Contact Banner Section */
.contact-banner {
    background: linear-gradient(135deg, #0a3d62, #1e5788); /* Gradient background */
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-size: 400% 400%; /* Animated gradient */
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.contact-banner h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-banner p {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-style: italic;
}

.contact-banner .cta-button {
    display: inline-block;
    background-color: #ff9900;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid white;
}

.contact-banner .cta-button:hover {
    background-color: #ff7f00;
    transform: translateY(-5px);
}

.contact-banner .cta-button:focus {
    outline: none;
}

.contact-banner .cta-button:active {
    transform: translateY(2px);
}

/* Contact Container Section */
.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information Section */
.contact-info {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info a {
    color: #0a3d62;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1e5788;
    outline: none;
    background-color: #fff;
}

.contact-form .btn-submit {
    background-color: #0a3d62;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background-color: #1e5788;
}

/* Google Map Section */
.google-map {
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 8px;
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.google-map h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Make sure iframe takes up full width of the container */
.google-map-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* This is the aspect ratio (16:9) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.google-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design for Contact Banner */
@media (max-width: 768px) {
    .contact-banner h1 {
        font-size: 36px;
    }

    .contact-banner p {
        font-size: 16px;
    }

    .contact-banner .cta-button {
        font-size: 18px;
        padding: 12px 24px;
    }

    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 20px;
    }

    /* Adjust iframe height for tablet */
    .google-map-wrapper {
        padding-bottom: 60%; /* Adjust aspect ratio for tablets */
    }
}

@media (max-width: 480px) {
    .contact-banner h1 {
        font-size: 28px;
    }

    .contact-banner p {
        font-size: 14px;
    }

    .contact-banner .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    /* Further adjust iframe height for smaller screens */
    .google-map-wrapper {
        padding-bottom: 50%; /* Further adjust for mobile screens */
     
    }
}

/* ----------------------------------------blog page --------------------------- */
.blog-top{
    margin-top: 100px !important;
}

/* ------------------------------------------------------------services page---------------------------------- */

#services {
    padding: 60px 20px;
    background-color: #fafafa;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

#services h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    flex: 1;
    min-width: 270px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-top: 20px;
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background: #1a0889;
}



/* Call to Action Section */
.cta {
    padding: 60px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.15);
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 2.2em;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.cta-btn {
    padding: 18px 35px;
    background: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background: #ff3d00;
}

/* Responsive Design */

/* Tablet view (768px and below) */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        margin-bottom: 30px;
        width: 100%;
    }

    .service-btn,.cta-btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    #services h2, .cta h2 {
        font-size: 2em;
    }

    .cta {
        padding: 40px 20px;
    }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
    #services h2, .cta h2 {
        font-size: 1.8em;
    }

    .service-btn, .pricing-btn, .cta-btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .service-card {
        padding: 20px;
        min-width: 100%;
    }

    .service-cards {
        gap: 15px;
    }

    .cta p {
        font-size: 1em;
    }
}
/* ------------------------------------------------------ Carrier--------------------------------------- */
/* General Section Styling */
section {
    padding: 30px 0;
}

/* Hero Section */
#hero {
    background: #1f1056;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem; /* Large screen */
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #f0ad4e;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

/* Responsive Font Sizes for Hero Section */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem; /* Laptop */
    }

    .hero .btn {
        font-size: 1.3rem; /* Laptop */
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.2rem; /* Tablet */
    }

    #hero {
       margin-top: 90px !important;
    }
    .hero .btn {
        font-size: 1.1rem; /* Tablet */
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem; /* Mobile */
    }

    .hero .btn {
        font-size: 1rem; /* Mobile */
        padding: 10px 20px;
    }
    #hero {
        margin-top: 90px !important;
     }
}

/* About Us Section */
#about-us {
    background-color: #fff;
}

#about-us h2 {
    font-size: 2.2rem; /* Large screen */
    margin-bottom: 20px;
}

/* Responsive Font Sizes for About Us Section */
@media (max-width: 1024px) {
    #about-us h2 {
        font-size: 2.5rem; /* Laptop */
    }
}

@media (max-width: 768px) {
    #about-us h2 {
        font-size: 2rem; /* Tablet */
    }
}

@media (max-width: 480px) {
    #about-us h2 {
        font-size: 1.8rem; /* Mobile */
    }
}

/* Open Positions Section */
/* Open Positions Section */
#open-positions {
    background-color: #f8f9fa;
}
.openings{
    margin-top:3px;
        padding-bottom: 30px;

    }
    .job-listings {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.job {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%; /* Large screen (3 items per row) */
    text-align: center;
}
.job .btn{
    border: 2px solid black ;
    background-color:#d5d1ef  ;
}
.resume{
    margin-top: 50px;
    
}
.job h3 {
    color: #1a0889 ;
}

/* Responsive Layout for Job Listings */

/* Laptop and Larger Screens */
@media (min-width: 1024px) {
    .job {
        width: 30%; /* 3 items per row on large screens */
    }
}

/* Tablet (768px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .job {
        width: 45%; /* 2 items per row on tablets */
    }
}

/* Mobile (Below 768px) */
@media (max-width: 768px) {
    .job {
        width: 100%; /* 1 item per row on mobile */
    }
}


/* Employee Testimonials Section */
#testimonials {
    background-color: #f9f9f9;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 1.2rem; /* Large screen */
}

/* Responsive Font Sizes for Testimonials Section */
@media (max-width: 1024px) {
    .testimonial-card p {
        font-size: 1.3rem; /* Laptop */
    }
}

@media (max-width: 768px) {
    .testimonial-card p {
        font-size: 1.1rem; /* Tablet */
    }
}

@media (max-width: 480px) {
    .testimonial-card p {
        font-size: 1rem; /* Mobile */
    }
}

/* Perks and Benefits Section */
#perks {
    background-color: #fff;
    padding: 60px 0;
    border-top: 4px solid #1a0889 ;
}

#perks h2 {
    font-size: 2.5rem; /* Large screen */
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

#perks ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

#perks ul li {
    font-size: 1.4rem; /* Large screen */
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#perks ul li:hover {
    transform: translateY(-5px);
}

#perks ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #1a0889 !important ;
    font-size: 1.6rem;
}
.res{
    margin-top: 50px;
    font-weight: bold;
}

/* Responsive Font Sizes for Perks Section */
@media (max-width: 1024px) {
    #perks h2 {
        font-size: 2.8rem; /* Laptop */
    }

    #perks ul li {
        font-size: 1.3rem; /* Laptop */
    }
    .res{
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    #perks h2 {
        font-size: 2.2rem; /* Tablet */
    }

    #perks ul li {
        font-size: 1.2rem; /* Tablet */
    }
}

@media (max-width: 480px) {
    #perks h2 {
        font-size: 1.8rem; /* Mobile */
    }

    #perks ul li {
        font-size: 1rem; /* Mobile */
    }
    .res{
        margin-top:50px;
    }
}

/* Company Culture Section */
#culture {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#culture .container {
    max-width: 1200px;
    margin: 0 auto;
}

#culture h2 {
    font-size: 2.5rem; /* Large screen */
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

#culture p {
    font-size: 1.2rem; /* Large screen */
    color: #555;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

#culture .image-gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

#culture img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Font Sizes for Culture Section */
@media (max-width: 1024px) {
    #culture h2 {
        font-size: 2.8rem; /* Laptop */
    }

    #culture p {
        font-size: 1.3rem; /* Laptop */
    }
}

@media (max-width: 768px) {
    #culture h2 {
        font-size: 2.2rem; /* Tablet */
    }

    #culture p {
        font-size: 1.1rem; /* Tablet */
    }
}

@media (max-width: 480px) {
    #culture h2 {
        font-size: 2rem; /* Mobile */
    }

    #culture p {
        font-size: 1rem; /* Mobile */
    }
}


/* -------------------------------------------------technology page------------------------------------- */
/* Hero Section */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   background-color:#000000 ;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

/* Hero text styling */
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.technobtn {
    padding: 10px 20px;
    background-color: #ff5733;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
}

.technobtn:hover {
    background-color: #e74c3c;
}

/* Responsive design */

/* For laptops and tablets */
@media (max-width: 1024px) {
    .hero {
        height: 80vh; /* Reduce height for smaller screens */
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1em;
    }

    .technobtn {
        font-size: 1em;
        padding: 8px 16px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Adjust height for mobile */
        padding: 0 20px; /* Add some padding to prevent text from touching edges */
    }
    
    .hero h1 {
        font-size: 1.6em;
    }
    
    .hero p {
        font-size: 0.9em;
    }
    
    .technobtn {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}

/* Technology Overview Section */
.technology-overview {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.technology-overview h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Add space between items */
}

.tech-item {
    width: calc(25% - 20px); /* Display 4 items per row on large screens */
    text-align: center;
    padding: 20px;
    background-color: white;
    border: 2px solid #ddd; /* Add a light border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.tech-item:hover {
    transform: translateY(-10px); /* Slightly lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.tech-item i {
    font-size: 50px;  /* Adjust icon size */
    margin-bottom: 15px; /* Space between icon and text */
    color: #1a0889 ; /* Icon color */
}

.tech-item p {
    font-size: 18px;
    color: #333;
}

/* Responsive Design for smaller screens */

/* For medium-sized screens (Tablets and Laptops) */
@media (max-width: 1024px) {
    .tech-item {
        width: calc(50% - 20px); /* 2 items per row on tablets and laptops */
    }
}

/* For small screens (Mobile Phones) */
@media (max-width: 768px) {
    .tech-item {
        width: calc(25% - 20px); /* 2 items per row on mobile phones */
    }
}

/* For very small screens (Mobile Phones in Portrait Mode) */
@media (max-width: 480px) {
    .tech-item {
        width: calc(100% - 10px); /* 1 item per row on small mobile screens */
    }
}
/* Features Section */
.features {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

/* Heading Style */
.features h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Feature List Layout */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Feature Item Style */
.feature-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Feature Title */
.feature-item h3 {
    font-size: 1.8rem;
    color: #1a0889 ;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Feature Description */
.feature-item p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */

/* Large Screens (Desktops and Laptops) */
@media (min-width: 1024px) {
    .features h2 {
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.8rem;
    }

    .feature-item p {
        font-size: 1rem;
    }

    .feature-list {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}

/* Tablet Screens (Medium Screens) */
@media (max-width: 1024px) and (min-width: 768px) {
    .features h2 {
        font-size: 2.2rem;
    }

    .feature-item h3 {
        font-size: 1.7rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .feature-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

/* Mobile Screens (Small Screens) */
@media (max-width: 768px) {
    .features h2 {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1.6rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .feature-list {
        grid-template-columns: 1fr; /* 1 column */
    }

    .feature-item {
        padding: 20px;
    }
}
/* General Styles */
.body-text {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.heading-2, .heading-3 {
    font-family: 'Helvetica Neue', sans-serif;
    color: #222;
    margin-bottom: 10px;
}

.text-paragraph {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Scalability & Security Section */
.scalability-security {
    background: linear-gradient(to right, #1a0889 , #e68d9f); /* Colorful gradient */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.scalability-security .heading-2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.scalability-security .text-paragraph {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Call to Action Section */
.cta {
    background-color: #244754;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    margin-top: 90px;
    margin-bottom: 30px;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.cta-content .heading-3 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-content .text-paragraph {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #fff;
    color: #1a0889 ;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #1a0889 ;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e68d9f;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive Design */

/* Laptops (1024px and up) */
@media (max-width: 1024px) {
    .scalability-security {
        padding: 50px 20px;
    }

    .scalability-security .heading-2 {
        font-size: 2.2em;
    }

    .scalability-security .text-paragraph {
        font-size: 1.05em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .cta-content {
        padding: 25px;
    }
}

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .scalability-security {
        padding: 40px 15px;
    }

    .scalability-security .heading-2 {
        font-size: 2em;
    }

    .scalability-security .text-paragraph {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 22px;
    }

    .cta-content {
        padding: 20px;
    }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
    .body-text {
        padding: 10px;
    }

    .scalability-security {
        padding: 30px 15px;
    }

    .scalability-security .heading-2 {
        font-size: 1.8em;
    }

    .scalability-security .text-paragraph {
        font-size: 1em;
        max-width: 90%;
    }

    .cta-content {
        padding: 15px;
    }

    .cta-content .heading-3 {
        font-size: 1.6em;
    }

    .cta-content .text-paragraph {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* --------------------------------------------industry page -------------------------------------------- */
/* Main Section (industry-main-section) */
.industry-main-section {
    background: linear-gradient(45deg, #4e73df, #1cc88a);
    color: white;
    text-align: center;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #ff7f50;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.industry-main-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.industry-main-section p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-btn {
    background-color: #ff7f50;
    padding: 15px 35px;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}



.cta-btn:hover {
    background-color: #ff5722;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Industry Content */
.industry-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.industry-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.industry-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #555;
}

/* Key Benefit Card */
.key-benefit-card {
    background: #fff;
    border: 2px solid #f1f1f1;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.key-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.key-benefit-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.key-benefit-card p {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.5;
}

/* Industry Testimonials Section */
.industry-testimonials {
    background-color: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.key-benefit-card {
    background: #fff;
    border: 2px solid #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.key-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.key-benefit-card p {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
}

.key-benefit-card strong {
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    color: #333;
}

/* Industry Overview */
.industry-overview {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.industry-overview h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.industry-overview p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

/* Your Solutions */
.solutions {
    padding: 80px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.solution-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.solution-cards .key-benefit-card {
    max-width: 30%;
    transition: all 0.3s ease;
}

.solution-cards .key-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .solution-cards .key-benefit-card {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .solution-cards .key-benefit-card {
        max-width: 90%;
    }
    .industry-main-section {
        background: linear-gradient(45deg, #4e73df, #1cc88a);
        color: white;
        text-align: center;
        padding: 120px 0px;
        background-size: cover;
        background-position: center;
        border-bottom: 5px solid #ff7f50;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Key Benefits */
.key-benefits {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.benefit-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-cards .key-benefit-card {
    max-width: 30%;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .benefit-cards .key-benefit-card {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .benefit-cards .key-benefit-card {
        max-width: 90%;
    }
    .solutions{
        padding-top: 10px;
        
    }
    .industry-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #ffffff;
        font-weight: 600;
    }

}

/* Product Demo Section */
.product-demo {
    background: #303335;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.product-demo h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-demo p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-demo .cta-btn {
    background-color: #ff7f50;
    padding: 15px 35px;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.product-demo .cta-btn:hover {
    background-color: #ff5722;
    transform: translateY(-5px);
}


/* CTA Section */
.cta {
    background-color: #1a0889 ;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta .cta-btn {
    background-color: #ff7f50;
    padding: 15px 35px;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta .cta-btn:hover {
    background-color: #ff5722;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solution-cards,
    .benefit-cards {
        flex-direction: column;
        align-items: center;
    }

    .solution-cards .key-benefit-card,
    .benefit-cards .key-benefit-card {
        max-width: 90%;
    }

    .cta-btn {
        padding: 12px 25px;
    }
}
/* -----------------------------------------industrysub------------------------------------------------------ */
/* Global Box-Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 80px; /* Adjusted margin for a more balanced look */
}

.page-header h1 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Industry Cards Container */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Show 3 cards in a row by default */
    gap: 30px;
    margin-bottom: 40px; /* Added some bottom margin for spacing */
}

/* Individual Industry Cards */
.industry-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
    border-left: 5px solid transparent; /* Default border */
}

.industry-card h2 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center; /* Align icon and text */
    justify-content: center; /* Center the icon and text */
    gap: 10px; /* Space between icon and text */
}

.industry-card ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    color: #7f8c8d;
}

.industry-card ul li {
    margin: 8px 0;
}

/* Icon Styling */
.industry-card i {
    font-size: 28px; /* Icon size */
    color: #2c3e50; /* Icon color matching text color */
}

/* Hover Effect */
.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #ecf0f1;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Industry Colors */
.healthcare {
    border-left: 5px solid #e74c3c;
}

.finance {
    border-left: 5px solid #3498db;
}

.retail {
    border-left: 5px solid #2ecc71;
}

.education {
    border-left: 5px solid #f39c12;
}

.logistics {
    border-left: 5px solid #9b59b6;
}

.real-estate {
    border-left: 5px solid #1abc9c;
}

.manufacturing {
    border-left: 5px solid #16a085;
}

.entertainment {
    border-left: 5px solid #f10f0f;
}

/* New Industry - Telecommunications */
.telecommunications {
    border-left: 5px solid #24c4e2; /* Unique color for Telecommunications */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .industry-cards {
        grid-template-columns: repeat(2, 1fr); /* Show 2 cards in a row on tablets and smaller laptops */
        gap: 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 17px;
    }

    .industry-card {
        padding: 18px;
    }

    .industry-card h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .industry-cards {
        grid-template-columns: repeat(1, 1fr); /* Show 1 card in a row on small tablets */
        gap: 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    .industry-card {
        padding: 15px;
    }

    .industry-card h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .industry-cards {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 10px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 14px;
    }

    .industry-card {
        padding: 12px;
        margin-bottom: 40px;
    }

    .industry-card h2 {
        font-size: 18px;
    }
}


/* --------------------------------------------- all services pages------------------------------------- */
/* Custom Header */
.custom-header {
    background: linear-gradient(135deg, #0056b3, #fc7bc6); /* Gradient background */
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-top: 80px;
    border-bottom: 5px solid #d0deed;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}

.custom-header h1 {
    font-size: 3em;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase; /* Added text-transform for style */
}

.custom-header p {
    font-size: 1.2em;
    margin-top: 10px;
    line-height: 1.5;
}

/* Container Layout */
.custom-container-fluid {
    margin: 0;
    padding: 0;
}

.custom-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 70px;
    padding: 50px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Serve Cards */
.custom-serve-card {
    background-color: #ffffff;
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    height: 100%;
    border: none; /* Remove border */
    background: linear-gradient(145deg, #f0f7ff, #e1e8f0); /* Soft gradient background */
    position: relative;
    padding: 20px;
}

/* Hover Effect */
.custom-serve-card:hover {
    transform: translateY(-10px) scale(1.05); /* Slight zoom and elevate effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
    background-color: #f4f8fc; /* Light background change on hover */
}

/* Image Styling */
.custom-serve-card img {
    width: 100%;
    height: 250px; /* Increased height for a larger image */
    object-fit: cover;
    border-radius: 10px; /* Rounded corners for image */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Image Hover Zoom Effect */
.custom-serve-card img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
    opacity: 0.8; /* Slight opacity change */
}

/* Card Content */
.custom-content {
    padding: 15px 20px;
    text-align: center;
}

/* Heading */
.custom-serve-card h3 {
    margin-top: 20px;
    color: #000000;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Heading Hover Effect */
.custom-serve-card:hover h3 {
    color: #0066cc; /* Heading color changes on hover */
    transform: translateY(-5px); /* Slight upwards movement on hover */
}

/* Paragraph */
.custom-serve-card p {
    color: #000000;
    line-height: 1.6;
    font-size: 1.1em;
    margin-top: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Paragraph Hover Effect */
.custom-serve-card:hover p {
    color: #555; /* Darker text color on hover */
    transform: translateY(5px); /* Slight downward movement for paragraph on hover */
}

/* Icon Styling */
.custom-icon {
    font-size: 50px;
    color: #0066cc;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Icon Hover Effect */
.custom-serve-card:hover .custom-icon {
    transform: scale(1.2); /* Enlarging icon on hover */
    color: #004a99; /* Darker color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-header h1 {
        font-size: 2.5em;
    }

    .custom-header p {
        font-size: 1.1em;
    }

    .custom-container {
        padding: 40px 20px;
    }

    .custom-serve-card h3 {
        font-size: 1.6em;
    }

    .custom-serve-card p {
        font-size: 1em;
    }

    .custom-icon {
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .custom-header {
        padding: 20px 0;
    }

    .custom-header h1 {
        font-size: 1.8em;
    }

    .custom-header p {
        font-size: 1em;
    }

    .custom-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .custom-serve-card {
        padding: 15px;
    }

    .custom-serve-card h3 {
        font-size: 1.4em;
    }

    .custom-serve-card p {
        font-size: 0.9em;
    }

    .custom-icon {
        font-size: 40px;
    }
}
