.card-custom00 {
    display: flex;
    flex-direction: column; /* Stack icon and text vertically on small screens */
    align-items: center;
    border-radius: 15px;
    height: 90%; /* Ensure the card takes up all available space */
    border: 2px solid var(--border-color);
    padding: 20px;
    transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
    background-color: #ffffff;
    color: inherit;
    max-width: 100%; /* Ensures it doesn't overflow on small screens */
    margin: 0 auto;
}

.card-custom00:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    border-color: var(--hover-border-color);
}

.sales00 {
    --border-color: #cfe4ff;
    --hover-border-color: #004085;
    --hoverbackground-color:#cfe4ff ;
}


.recruiting00 {
    --border-color: #d0f9e5;
    border-color: #15572e41;
}


.marketing00 {
    --border-color: #ffe5d0;
    --hover-border-color: #d07c00;
}

.finance00 {
    --border-color: #e2d0ff;
    --hover-border-color: #6b009c;
}

.icon-box00 {
    width:100px; /* Smaller icon box width */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px; /* Space between icon and text on small screens */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--icon-bg-color);
    transition: background-color 0.2s;
}

.sales00 .icon-box00 {
    --icon-bg-color: #cfe4ff;
}

.recruiting00 .icon-box00 {
    --icon-bg-color: #d0f9e5;
}

.marketing00 .icon-box00 {
    --icon-bg-color: #ffe5d0;
}

.finance00 .icon-box00 {
    --icon-bg-color: #e2d0ff;
}

.card-custom00:hover .icon-box00 {
    background-color: var(--icon-bg-color);
}

.icon-box00 .icon {
    font-size: 3rem;
    width: 80px;
    padding-left: 10px;
    color: inherit; /* Make icon color inherit from its parent class */
}

.sales00 .icon {
    color: #004085;
}

.recruiting00 .icon {
    color: #155724;
}

.marketing00 .icon {
    color: #d07c00;
}

.finance00 .icon {
    color: #9d2cd1;
}

.card-link {
    color: inherit;
    font-weight: bold;
    display: block; /* Make sure the link takes the whole width */
    margin-top: 10px;
}

.card-link:hover {
    text-decoration: none;
}

.card-custom00 h3 {
    text-align: center; /* Center the headings */
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .card-custom00 {
        flex-direction: row; /* Align icon and text horizontally on medium screens and above */
        padding: 30px;
    }

    .icon-box00 {
        width: 120px; /* Slightly larger icon box on larger screens */
        margin-right: 20px; /* Space between icon and text in row layout */
        margin-bottom: 0; /* Remove bottom margin when side-by-side */
    }

    .card-custom00 h3 {
        text-align: left; /* Align text to the left for larger screens */
    }

    .card-link {
        margin-top: 15px;
    }
}


.card-custom00 .par{
    font-size: 15px;
}




















/* Base styles */
.slider-container1 {
    overflow: hidden;
    width: 100%;
}

.slider-wrapper1 {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    transition: transform 0.1s linear;
}

.slide1 {
    flex: 0 0 auto;
    width: 140px;
    margin-right: 10px;
}

/* Responsive: smaller slides for mobile */
@media (max-width: 576px) {
    .slide1 {
        width: 120px;
    }
}

.card1 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.card1:hover {
    transform: scale(1.05);
}


.slider-container2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f9f9f9;

}

.slider-wrapper2 {
    display: flex;
    animation: scroll2 20s linear infinite;
}

.slide2 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 10px;
    box-sizing: border-box;
}

.card2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.card2:hover {
    transform: scale(1.05);
}

.icon-wrapper2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-wrapper2 img {
    max-width: 80px;
}



@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide2 {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media (max-width: 576px) {
    .slide2 {
        flex: 0 0 60%;
        max-width: 60%;
    }
}




/* General Section Styling */
.section-one {
    padding: 3rem 1rem; /* Increased padding for better height */
    background-color: #f8f9fa;
    text-align: center;
    background-image: url('../attachment/background2.png');
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Keeps the image centered */
    background-repeat: no-repeat;
    min-height: 300px; /* Sets a minimum height for the section */
  }
  
  /* Heading and Subheading Styling */
  .heading-one {
    font-size: 2.5rem; /* Increased font size for better visibility */
    font-weight: bold;
    margin-bottom: 1.3rem;
    margin-top:0px;
    color: var(--primary-dark);
  }
  
  .subheading-one {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }
  
  /* General Grid Layout for Logos */
.logos-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid with 6 items per row on wide screens */
    gap: 1rem; /* Reduced gap for a tighter layout */
}

/* Individual Logo Items */
.logo-item {
    background: var(--primary-dark);
    color: white;
    padding: 0.8rem; /* Reduced padding for smaller height */
    border-radius: 8px;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    height: 110px; /* Reduced height */
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Slightly larger shadow on hover */
}

/* Logo Text Styling */
.logo-text {
    font-size: 1rem; /* Smaller font size for compact appearance */
    margin-bottom: 0.5rem; /* Adjusted spacing below the text */
    color: #ffffff;
    line-height: 1.2; /* Tighter line height */
    margin-top:10px;
}

/* Icon Styling */
.logo-item i {
    font-size: 1.2rem; /* Slightly smaller icon size */
    margin-top: 0.2rem; /* Small space above icon */
    color: white;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .logo-item {
        height: 100px; /* Further reduce height for smaller screens */
        padding: 0.6rem; /* Compact padding */
    }

    .logo-text {
        font-size: 0.9rem; /* Adjust font size for small screens */
    }

    .logos-wrapper {
        gap: 0.8rem; /* Reduced gap between items on smaller screens */
    }
}

  .logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Icon Styling */
  .logo-item i {
    font-size: 1.5rem;
    position: absolute;
    top: 0rem;
    right: 1rem;
    color: white;
  }
  
  /* Logo Text Styling */
  .logo-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    
  }
  
  /* Responsive Design for Smaller Screens */
  @media (max-width: 768px) {
    .section-one {
      padding: 3rem 1rem; /* Adjust padding for smaller screens */
      min-height: 350px; /* Reduce height for smaller screens */
    }
  
    .logo-item {
      height: 180px; /* Adjust logo item height for small screens */
    }
  
    .heading-one {
      font-size: 2rem; /* Adjust heading font size */
    }
  
    .subheading-one {
      font-size: 1.1rem; /* Adjust subheading font size */
    }
  }
  
  






















  

.logos-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg,rgba(0,0,0,0) 0,#000 15%,#000 85%,rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg,rgba(0,0,0,0) 0,#000 15%,#000 85%,rgba(0,0,0,0) 100%);
}

.logos-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    animation: slide 30s linear infinite;
   
}

.logos-slider-container img {
  width:130px;
  height:100px;
 max-width: 217px;
}

@keyframes slide {
  0% {
    transform: translate3d(0,0,0)
  }
  100% {
    transform: translate3d(-100%,0,0)
  }
}

li{
    font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 15px;
    line-height: 32px;
    font-weight:600;
    font-style: normal;
    letter-spacing: normal;
    color: var(--primary-color);
    
}

h1 {
  text-align: center;
  /* font-family: 'Lato'; */
  font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: #3D4A54;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0px 2px 8px rgb(61 74 84 / 10%), 0px 3px 12px rgb(61 74 84 / 6%)
}
.card12 {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0px 2px 3px rgb(61 74 84 / 10%), 0px 3px 12px rgb(61 74 84 / 6%)
  }


/* Ensure the icon container aligns to the right */
.d-flex.ms-auto {
    margin-left: auto !important; /* Push it to the right end */
    display: flex !important;     /* Ensure the container uses flexbox */
    align-items: center !important; /* Vertically center the icons */
}

/* Adjust individual icon spacing */
.d-flex.ms-auto .me-4 {
    margin-right: 3px !important;  /* Spacing between icons */
}

/* Ensure the vertical line dividers are spaced out correctly */
.d-flex.ms-auto .vr {
    margin-right: 30px !important;  /* Spacing for vertical dividers */
}


.icon-color {
    color: #3498db; /* Example color from your logo, adjust accordingly */
    transition: color 0.3s ease-in-out; /* Smooth transition for hover effect */
}

/* Adding a hover effect to make the icons more attractive */
.icon-color:hover {
    color: #e74c3c; /* A different color for hover (adjust as per your logo) */
}



/* Button with logo-based colors */
.logo-btn {
   /* Use the primary color from your logo */
    border: none; /* Remove the default border */
    color: var(--text-color); /* Use the text color from your logo */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Hover effect */
.logo-btn:hover {
    background-color: var(--primary-dark);  /* Use the dark primary color for hover */
    color: var(--text-color);  /* Keep text color consistent */
    transform: scale(1.05); /* Slight scaling effect on hover */
}



.dropdown:hover .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    margin-top: 0;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed) ease;
    border-top: 1px solid var(--border-color);
}

.mega-menu h5 {
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.mega-menu ul li {
    margin-bottom: 0.8rem;
}

.mega-menu ul li a {
    color:blac;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    font-size: 0.95rem;
    opacity: 0.8;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Active/Hover states */
.nav-link:hover {
    color: #0176d3 !important;
}

.fw-bold{
    color: #032d60;

}
.display-6{

}
.nav-link-2{
    color: #032d60;
    font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 15px;
    line-height: 32px;
    font-weight:600;
    font-style: normal;
    letter-spacing: normal;

}



.nav-link{
color: #032d60;
    /* font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; */
    font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 15px;
    line-height: 32px;
    font-weight:600;
    font-style: normal;
    letter-spacing: normal;
   
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
  
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}


/* Responsive adjustments for mobile and tablet */
@media (max-width: 992px) {
    /* Adjusting navbar padding on smaller screens */
    .navbar {
        padding: 0.5rem 1rem;
    }

    /* Adjust mega-menu for mobile screens */
    .mega-menu {
        position: static !important;
        padding: 1rem 0;
        max-height: 40vh; /* Limit height to a percentage of the viewport height */
        overflow-y: auto; /* Add vertical scrolling if the content exceeds the height */
        overflow-x: hidden; /* Disable horizontal scrolling */
    }

    /* Adjust mega-menu content layout */
    .mega-menu .row > div {
        margin-bottom: 1.5rem;
    }

    /* Ensure submenu links have adequate spacing and padding */
    .nav-link {
        padding: 1rem !important;
        font-size: 1rem; /* Adjust font size for better readability on mobile */
    }

    /* Adjust mega-menu items for better alignment */
    .mega-menu ul li a {
        font-size: 1rem; /* Make the font size a bit larger for touch devices */
        padding: 0.8rem 1rem;
        line-height: 1.4;
    }

    /* Allow submenus to scroll if they are overflowing */
    .mega-menu ul {
        max-height: 50vh; /* Set maximum height for the submenu */
        overflow-y: auto; /* Enable vertical scrolling */
    }

    /* Make sure the links in the mega-menu are visually clear */
    .mega-menu ul li a:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }
}


.mega-menu ul li {
    border-radius: 10px; /* Rounded corners for list items */
    overflow: hidden; /* Ensure content respects the rounded corners */
    transition: all 0.6s ease; /* Smooth transition for hover effects */
}

.mega-menu ul li:hover {
    box-shadow: 0px 8px 30px rgb(253, 255, 255); /* Larger and more pronounced shadow */
    transform: translateY(-8px); /* Bigger lift effect */
    background-color: #f8f9fa; /* Light background on hover */
    border-radius: 10px; /* Ensure rounded shadow matches the item */
    transition: all 0.6s ease; /* Smooth and slower transition */
}




/* Ensure content doesn't break or overflow horizontally */
body, html {
    overflow-x: hidden;
}


/* Enhanced Custom styles */

@media (max-width: 767px) {
    .tagline {
        font-size: 1rem;
    }
    .demo-heading {
        font-size: 1.5rem;
    }
}

.demo-heading {
    background: linear-gradient(to right, #ff7e5f, #feb47b); /*  gradient colors */
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1.4rem; /* Adjust font size */
    font-weight: bold; /* Make the text bold */
    line-height: 1.2;
}



.heading-line {
            background-color: #003366; /* Dark blue s */
            color: white; /* White text color for contrast */
            padding: 12px;
            margin-top: 0px; /* Adds space above the section */

        }
        

.logo {
    height: 52px;   /* Set desired height */
    width: 206px;    /* Maintain aspect ratio */
    /* max-width: 80px; Optional to limit the width */
}


:root {
    --primary-color: #005f8d;       /* Blue from the logo */
    --primary-dark: #004f73;        /* Darker blue for contrast */
    --accent-color: #1e1af4;        /* Orange from the eye */
    --secondary-color: #007b2f;     /* Green from the outline */
    --text-color: #ffffff;          /* White for text on dark backgrounds */
    --gradient-start: #005f8d;      /* Blue start of gradient */
    --gradient-end: #f4a61a;        /* Orange end of gradient */
}

/* :root {
    --primary-color: #28A745;      /* Primary Green 
    --primary-dark: #1C7430;       /* Darker Green 
    --text-dark: #155724;          /* Dark Green for Text 
    --gradient-start: #85E085;     /* Light Green Start of Gradient *
    --gradient-end: #FFD700;       /* Yellow End of Gradient */
 
/* :root {
    --primary-color: #0176D3;
    --primary-dark: #014486;
    --text-dark: #032D60;
    --gradient-start: #1B96FF;
    --gradient-end: #0B5CAB;
}  */

li{
    font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';

}

body {
    padding-top: 76px;
    /* font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif; */
    /* font-family: 'Merriweather', Georgia, 'Times New Roman', serif; */
    /* font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; */
    font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    /* font-family: 'Source Sans Pro', 'Lucida Grande', Verdana, sans-serif; */
    /* font-family: 'Quicksand', 'Arial', sans-serif; */
}




/* Enhanced Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); */
    /* background: linear-gradient(90deg, rgba(250,250,252,1) 0%, rgba(190,230,251,0.8465511204481793) 35%, rgba(113,230,255,1) 100%); */
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(218,242,255,0.8465511204481793) 35%, rgb(209, 247, 255) 100%);
    
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    
}



.hero-section img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Buttons */
.btn {
    padding: 0.8rem 1.5rem; 
    /*font-weight: 600;*/
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(1, 118, 211, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 118, 211, 0.3);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #ffffff, #f5f8ff);
    padding: 1.5rem;
}

.card:hover {
  
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Enhanced Features Section */
.features {
    background-color: #f8faff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, white, transparent);
}





/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8faff 0%, #edf2ff 100%);
    position: relative;
    overflow: hidden;
    border-radius:20px;
    width:100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    top: -150px;
   
    border-radius: 50%;
}



/* Enhanced Footer */
footer {
    background:var(--primary-dark);
    color:var(--text-color);
    width: 100%;
   bottom : 0;
   
  
}

footer img {
    width: 125px;
    height: auto;
  
}

footer h6 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer h6:hover {
    color: #f5871f;
}

footer a {
    text-decoration: none;
    color:var(--text-color);
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f5871f;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
 
}

/* Footer Column Styling */
.footer-col {
    flex: 1;
    min-width: 200px;
   
    text-align: left; /* Default alignment for larger screens */
}

.footer-col img {
    width: 150px; /* Adjust the size of the image */
    height: 150px; /* Same as width to maintain a perfect circle */
    margin-top: -10px; /* Adjust to move the circle upwards */
    max-width: 100%; /* Prevents the image from stretching */
    display: inline-block; /* Keeps the image inline */
    margin-left: -40px; /* Moves the image further to the left */
    margin-right: auto; /* Prevents extra spacing to the right */
    margin-bottom: -20px; /* Adjust for spacing below */
    object-fit: cover; /* Ensures the image scales well inside the circle */
    border-radius: 50%; /* Makes the image circular */
    background-color: #ffffff; /* Sets the white circle background */
    border: 5px solid #ffffff; /* Optional border for the circle */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}




/* Mobile view: Center the logo */
@media (max-width: 480px) {
    .footer-col {
        text-align: center; /* Center the content of the footer column */
    }

    .footer-col img {
        margin-left: auto;  /* Center the image horizontally */
        margin-right: auto; /* Center the image horizontally */
     /* Ensure the bottom margin is still applied */
    }

    .social {
        justify-content: center; /* Center the social icons */
    }
}


.footer-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: block; /* Always display the lists on desktop */
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    font-size: 0.95rem;
    padding-left: 15px;
    position: relative;
}

.footer-col ul li a i {
    margin-right: 8px;
}

/* Social Icons Styling */
.social {
    display: flex;
    gap: 19px;
    justify-content: start; /* Align icons to the left by default */
    margin-top: 0;
     margin-left:20px;
}

.social i {
    color: #ffff;
    font-size: 1rem;
    transition: color 0.3s ease;
   
}

.social i:hover {
    color: #f5871f;
}

/* Mobile view: Center social icons */
@media (max-width: 480px) {
    .social {
        justify-content: center; /* Center the icons on mobile */
    }

    .social i {
        font-size: 1rem; /* Optional: Increase icon size on mobile */
    }
}


.copyright {
    background-color: var(--primary-dark);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Mobile view: Only display the list when 'show' class is added */
@media (max-width: 480px) {
    footer h6 {
        font-size: 1rem;
    }

    footer a {
        font-size: 0.9rem;
    }

    .social i {
        font-size: 1rem;
        margin-left:0px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .footer-col ul {
        display: none; /* Hide the lists by default on mobile */
    }

    .footer-col ul.show {
        display: block; /* Show the list when 'show' class is added */
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }

    .hero-section img {
        margin-top: 2rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .card {
        margin-bottom: 1.5rem;
    }
}


/* Animations */
.fade-in {
    animation: fadeIn 3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}




/* Button Style for navigation */
.slider-btn1 {
    position: absolute;
    top: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.prev1 {
    left: 10px;
}

.next1 {
    right: 10px;
}

/* Hover effect for the navigation buttons */
.slider-btn1:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Dot Navigation */
.dots1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dots1 button {
    background-color: #bbb;
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dots1 button.active {
    background-color: #717171;
}

.dots1 button:hover {
    background-color: #717171;
}




/* Default Layout: Show one slide per view */
.slide1 {
    min-width: 100%;  /* On small screens, each slide takes 100% of the width */
    flex: 0 0 100%;
}

@media (min-width: 576px) {
    .slide1 {
        min-width: calc(50% - 1rem); /* 2 slides per view on small devices */
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 768px) {
    .slide1 {
        min-width: calc(33.33% - 1rem); /* 3 slides per view on medium devices */
        flex: 0 0 calc(33.33% - 1rem);
    }
}

@media (min-width: 992px) {
    .slide1 {
        min-width: calc(25% - 1rem); /* 4 slides per view on larger screens */
        flex: 0 0 calc(25% - 1rem);
    }
}

/* Card Style */
.card1 {
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 89%;
}

/* Decorative background for cards */
.card1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    border-radius: 1rem 1rem 0 0;
    opacity: 0.6;
    
}



/* Icon Wrapper Styles */
.icon-wrapper1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: 60px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
    background-color: rgb(255, 255, 255);
}

.icon-wrapper1 img {
    width: 40px;
    height: 40px;
    opacity: 100;
    z-index: 1;
}

/* Icon Color Variations */
.blue { border: 2px solid #007bff; }
.green { border: 2px solid #00d1b2; }
.pink { border: 2px solid #ff4081; }
.orange { border: 2px solid #ff9100; }

/* Text Styling */
h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

p {
    color: #2f4873;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dot for navigation */
.dots1 {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2c3e50;
}

/* Slider Navigation Button Styles */
.slider-btn1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 18px;
    color: #2c3e50;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn1:hover {
    background: #2c3e50;
    color: white;
}

.prev1 {
    left: 20px;
}

.next1 {
    right: 20px;
}

/* Adjustments for mobile-first design */
@media (max-width: 575px) {
    /* On small screens, show one card per row */
    .slide1 {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .slider-container1 {
        padding: 1rem;
    }

    /* .slider-btn1 {
        display: none; /* Optionally hide slider buttons on small screens 
    } */
}
.footer-logo{
    background-color: white;
    border-radius: 500px;
    
}



.hero-section2{
    background: linear-gradient(90deg, #4a148c, #1e88e5);
    color: white;
    
    text-align: center;
    border-radius: 20px; /* Rounded corners */
  }
  .highlight2 {
    color: #198754;
    font-weight: bold;
    display: block;
   
    transition: opacity 0.6s ease, transform 0.6s ease; /* Fade and tilt effect */
  }
  .highlight2.tilt {
    opacity: 0; /* Fades out */
    transform: rotateX(90deg); /* Tilts the text backward */
  }




  .dropdown {
    position: relative;
    display: inline-block;
}



/* Show dropdown on hover */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-icon {
    cursor: pointer;
    text-align: center;
    font-size: 17px;
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 105%; /* Positioned slightly below the icon */
    left: 50%; /* Center aligned */
    
    transform: translate(-40%, 0); /* Adjust to shift slightly to the right */
    background-color: #ffffff; /* Clean white background */
    min-width: 210px; /* Wider for proper layout */
    border: 1px solid #ddd; /* Subtle border for clarity */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Softer shadow for modern look */
    border-radius: 8px; /* Smooth rounded corners */
    z-index: 10; /* Ensure it appears above other elements */
    overflow: hidden; /* Rounded corners */
    padding: 15px; /* Add padding for better spacing */
    opacity: 0; /* Make invisible initially */
    transition: all 0.3s ease; /* Smooth transition effect */
    word-wrap: break-word; /* Break long words to fit within the box */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1; /* Make visible */
}

/* Dropdown item container */
.dropdown-item {
    display: flex; /* Align icon and text horizontally */
    align-items: flex-start; /* Align text and icon at the top */
    margin-bottom: 15px; /* Space between items */
}

/* Icon styling */
.dropdown-item i {
    font-size: 20px; /* Icon size */
    color: #007bff; /* Blue icon color */
    margin-right: 15px; /* Space between icon and text */
}

/* Text container */
.dropdown-text h3 {
    margin: 0;
    font-size: 16px; /* Slightly larger heading */
    font-weight: bold; /* Bold heading for clarity */
    color: #333; /* Neutral dark text */
    line-height: 1.4; /* Add spacing between lines */
}

.dropdown-text p {
    margin: 5px 0 0; /* Space below the heading */
    font-size: 14px; /* Standard paragraph size */
    color: #555; /* Neutral gray text */
    line-height: 1.5; /* Ensure text lines have enough space */
    overflow-wrap: break-word; /* Prevent long words from overflowing */
    word-wrap: break-word; /* Ensure compatibility with older browsers */
    text-overflow: ellipsis; /* Adds '...' if the text is too long */
    white-space: normal; /* Ensure text wraps */
}



/* Fade-in animation */

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-image: url('../attachment/r.jpg');
    border-radius: 0% 0% 50% 50%;
    padding: 20px;
    margin: 50px auto;
    width: 100%;
    height: 400px;
}

.stat-item {
    text-align: center;
    background: #198754; /* Inner box color */
    padding: 20px;
    border-radius: 15px;
    width: 20%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item h2 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
}

.stat-item h2 span {
    font-size: 1.5rem;
}

.stat-item p {
    color: #fff;
    font-size: 1rem;
    margin-top: 10px;
}

.stat-item:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 30px 10px;
    }

    .stat-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .stat-item h2 {
        font-size: 2rem;
    }

    .stat-item h2 span {
        font-size: 1rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stat-item h2 {
        font-size: 1.5rem;
    }

    .stat-item h2 span {
        font-size: 0.8rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }
}


/* Promo Banner Styling */
/* Promo Banner Styling */
/* Promo Banner Styling */
.promo-banner {
    /* font-family: 'Roboto', sans-serif; Modern, professional font */
    font-family: 'DM Sans', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    background: linear-gradient(135deg, #0066cc, #004494); /* Smooth gradient */
    border-radius: 12px; /* Subtle rounded corners for a clean look */
    padding: 50px 30px;
    max-width: 90%;
    margin: 50px auto; /* Centered on the page with a gap above */
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    overflow: hidden;
    position: relative;
}

/* Optional decorative effect */
.promo-banner:before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: 0;
    transform: rotate(30deg);
}

/* Content Styling */
.promo-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 20px;
}

.promo-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.4;
}

.promo-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Button Styling */
.promo-button {
    display: inline-block;
    padding: 12px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.promo-button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px); /* Lift effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-banner {
        padding: 40px 20px;
    }

    .promo-content h1 {
        font-size: 1.6rem;
    }

    .promo-content p {
        font-size: 0.9rem;
    }

    .promo-button {
        font-size: 0.9rem;
        padding: 10px 28px;
    }
}



.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
}

.text-section {
    max-width: 50%;
}

.text-section h1 {
    font-size: 2rem;
    color: #002e6d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-left: 100px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.primary-button {
    background-color: #005f8d;
    color: #fff;
    font-weight: bold;
    align-items: center;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: #005bb5;
}

.secondary-button {
    background-color: #fff;
    color: #0070d2;
    border: 2px solid #0070d2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.secondary-button span {
    font-size: 0.8rem;
}

.secondary-button:hover {
    background-color: #f0f8ff;
}

.image-section {
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}











.promo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.promo-text {
    flex: 1;
    max-width: 600px;
    margin-bottom: 20px;
}

.promo-text h1 {
    font-size: 2rem;
    color: #002e6d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.promo-btn-primary {
    background-color: #005f8d;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.promo-btn-primary:hover {
    background-color: #005bb5;
}

.promo-btn-secondary {
    background-color: #fff;
    color: #0070d2;
    border: 2px solid #0070d2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-btn-secondary span {
    font-size: 0.8rem;
}

.promo-btn-secondary:hover {
    background-color: #f0f8ff;
}

.promo-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.promo-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .promo-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .promo-text h1 {
        font-size: 1.5rem;
    }

    .promo-buttons {
        justify-content: center;
    }
}


.button-container {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-btn {
    
    white-space: nowrap;
}

.explore-btn {
    border-color: black;
    white-space: nowrap;
    
}

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

    .contact-btn {
        margin-left: 0; /* Remove large margin for small screens */
        width: 90%; /* Full width for better appearance */
    }

    .explore-btn {
        
        width: 90%; /* Full width for better appearance */
    }
}

@media (max-width: 480px) {
    .contact-btn, .explore-btn {
        font-size: 0.9rem; /* Adjust font size for smaller devices */
        padding: 20px 20px; /* Reduce padding */
    }
}





.nowrap-text {
    white-space: nowrap; /* Prevents the text from breaking into multiple lines */
}

.highlight2 {
    color: #198754; /* Customize color */
    font-weight: bold;
    display: inline; /* Ensures it stays on the same line as preceding text */
}

.text-start {
    text-align: start; /* Ensures left alignment */
}

.button-container button {
    transition: transform 0.3s ease;
}

.button-container button:hover {
    transform: scale(1.05);
}






.slider-wrapper2 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
    padding: 0 0.5rem;
    width: 100%;
}

.slide2 {
    min-width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 576px) {
    .slide2 {
        min-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 768px) {
    .slide2 {
        min-width: calc(33.33% - 1rem);
        flex: 0 0 calc(33.33% - 1rem);
    }
}

@media (min-width: 992px) {
    .slide2 {
        min-width: calc(25% - 1rem);
        flex: 0 0 calc(25% - 1rem);
    }
}

.card2 {
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 89%;
}

.card2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    border-radius: 1rem 1rem 0 0;
    opacity: 0.6;
}

.slide2:nth-child(1) .card2::before {
    background-image: url('../attachment/1.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}
.slide2:nth-child(2) .card2::before {
    background-image: url('../attachment/3.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}
.slide2:nth-child(3) .card2::before {
    background-image: url('../attachment/2.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}
.slide2:nth-child(4) .card2::before {
    background-image: url('../attachment/4.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}
.slide2:nth-child(5) .card2::before {
    background-image: url('../attachment/5.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}
.slide2:nth-child(6) .card2::before {
    background-image: url('../attachment/6.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}
.slide2:nth-child(7) .card2::before {
    background-image: url('../attachment/7.jpg');
    height: 100px;
    border-radius: 0% 0% 50% 50%;
}

.icon-wrapper2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: 60px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
    background-color: rgb(255, 255, 255);
}

.icon-wrapper2 img {
    width: 40px;
    height: 40px;
    opacity: 100;
    z-index: 1;
}

.slider-btn2.prev2,
.slider-btn2.next2 {
  display: none;
}

/* WhatsApp Chat Icon Styling */
/* WhatsApp Chat Icon Styling */
.whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it's on top of other content */
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Size of the button */
    height: 60px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    font-size: 1.8rem; /* Icon size */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add shadow */
    transition: background-color 0.3s ease;
    border: none; /* Ensures no border is applied */
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Darker green on hover */
}

.whatsapp-button i {
    margin: 0;
}
.icon{
    border: none !important;
}



/* About Us Page */
.vision-section {
    display: flex;
    flex-direction: column; /* Stack text and image vertically */
    align-items: center; /* Center align content */
    justify-content: flex-start; /* Ensure content starts at the top */
    text-align: center;
    padding: 50px;
    color: var(--primary-dark);
    background: rgb(209, 247, 255);
    
}

.vision-section .content {
    max-width: 800px; /* Optional: limit the width of the content */
    padding: 20px;
}

.vision-section h1 {
    color: var(--primary-dark);
    font-size: 3.5rem; /* Adjust heading size */
    margin-bottom: 20px;
    font-weight: bold;
}

.vision-section p {
    color: var(--primary-dark);
    font-size: 1.3rem;
    line-height: 1.5;

}

.vision-section img {
    max-width: 70%; /* Scale image to 50% of container width */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px; /* Space between text and image */
    border-radius: 10px; /* Optional: add rounded corners */
    margin-bottom: 0;
}

  
  /* Section Styling */
.section4 {
    text-align: center;
    padding: 2rem;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

.section4-title {
    color: var(--primary-dark);
    font-size: 2rem; /* Slightly larger title font for emphasis */
    margin-bottom: 10px;
    font-weight: bold;
}

.section4-subtitle {
    font-size: 1.8rem; /* Adjusted for better hierarchy */
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.section4-description {
    color: var(--gradient-end);
    margin-bottom: 2rem;
    font-size: 1.1rem; /* Larger description text for readability */
    line-height: 1.6;
}

/* Card Container */
.section4-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Adjusted spacing for better aesthetics */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 1rem 0;
}

/* Individual Card */
.card4 {
    background-color: #ffffff;
    border-radius: 50%; /* Circular shape */
    padding: 1rem;
    text-align: center;
    width: 160px; /* Slightly larger for better visibility */
    height: 160px; /* Equal width and height for perfect circles */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Indicates interactable element */
}

.card4-icon {
    font-size: 2.5rem; /* Larger icons for better focus */
    margin-bottom: 0.5rem;
    color: var(--primary-dark); /* Consistent color scheme */
}

.card4-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #333; /* Neutral text color */
}

/* Hover Effect */
.card4:hover {
    transform: scale(1.1); /* Slight scaling effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    background-color: #f0f8fc; /* Subtle background color change */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section4-card-container {
        gap: 1rem; /* Reduced gap for smaller screens */
        justify-content: space-evenly; /* Align cards neatly */
    }

    .card4 {
        width: 45%; /* Two cards in a row */
        height: auto; /* Maintain aspect ratio */
        padding: 1.5rem; /* Adjust padding for readability */
        border-radius: 50%; /* Keep circular shape */
    }
}

@media (max-width: 480px) {
    .section4-card-container {
        gap: 1rem;
        flex-wrap: wrap; /* Wrap fully for narrow devices */
    }

    .card4 {
        width: 100%; /* Full-width cards for very small screens */
        height: auto;
        border-radius: 9%; /* Preserve the circle design */
    }
}

/* Section3 */



/* Section 3 Styling */
.section3 {
    position: relative;
    padding: 80px 20px; /* Reduced padding for better spacing on smaller screens */
    background-color: #f4f4f9;
    color: var(--text-color);
}

/* Content Column */
.section3 .content-column3 {
    position: relative;
    margin-bottom: 40px;
    text-align: left;
}

.section3 .content-column3 .inner-column3 {
    padding: 20px; /* Adjusted padding for responsiveness */
}

.section3 .content-column3 .text3 {
    font-size: 16px; /* Slightly smaller for readability */
    line-height: 1.8em;
    color: black;
    margin-bottom: 30px;
}

.section3 .content-column3 .email3 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.section3 .btn-style-three3 {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    background-color: var(--primary-dark);
    text-transform: capitalize;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section3 .btn-style-three3:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* Image Column */
.section3 .image-column3 {
    position: relative;
    margin-bottom: 30px;
}

.section3 .image-column3 .inner-column3 {
    margin: 0 auto; /* Centers the image column */
    padding: 20px;
}

.section3 .image-column3 .image3 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section3 .image-column3 .overlay-box3 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.section3 .image-column3 .overlay-box3 .year-box3 {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.section3 .image-column3 .overlay-box3 .year-box3 .number3 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-dark);
    line-height: 1;
    text-align: center;
    background-color: var(--gradient-end);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

/* Section Title */
.sec-title3 {
    text-align: left;
    margin-bottom: 20px;
}

.sec-title3 .title3 {
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title3 h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 10px 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section3 {
        padding: 60px 10px; /* Reduced padding for smaller screens */
    }

    .content-column3, .image-column3 {
        width: 100%; /* Stack columns */
        text-align: center;
    }

    .section3 .content-column3 .inner-column3 {
        padding-right: 0; /* Remove padding for full-width text */
    }

    .sec-title3 h2 {
        font-size: 1.5rem; /* Slightly smaller for readability */
    }

    .text3 {
        font-size: 14px;
    }

    .email3 {
        font-size: 14px;
    }

    .btn-style-three3 {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .sec-title3 h2 {
        font-size: 1.3rem; /* Adjusted for very small screens */
    }

    .text3, .email3 {
        font-size: 13px;
    }

    .btn-style-three3 {
        font-size: 13px;
        padding: 8px 15px;
    }

    .image-column3 .overlay-box3 {
        padding: 5px 10px; /* Reduce overlay padding */
    }

    .number3 {
        width: 70px;
        height: 70px; /* Smaller number circle */
        font-size: 2rem;
    }
}


/* <!---Section5--> */
.section5 {
    background-color: #e9f5fa;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Adds space between child elements */
}

.heading5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; /* Adds space between heading elements in case of wrapping */
}

.text5 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin: 0;
    text-align: left;
    flex: 1;
}

.buttons5 {
    display: flex;
    gap: 15px; /* Adds more space between buttons */
}

.button5 {
    background-color: var(--primary-dark);
    color: var(--text-color);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s ease;
}

.button5:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05); /* Slight scaling effect on hover */
}

.subtext5 {
    font-size: 1.2rem;
    color: var(--primary-dark); /* Use primary-dark for consistency */
    margin-top: 0px;
    text-align: left; /* Align subtext in the center */
}

.stats5 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds gap between stats */
    justify-content: center; /* Centers the stats */
}

.stat5 {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 25px;
    width: calc(25% - 20px); /* Adjusted to account for gap */
    min-width: 250px; /* Ensures minimum size for smaller screens */
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stat5:hover {
    transform: translateY(-10px); /* Moves the section slightly up */
    background-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Adds shadow for effect */
}

.stat5 .number5 {
    font-size: 2.2rem; /* Slightly larger font for numbers */
    font-weight: bold;
    color: var(--text-color);
}

.stat5 .label5 {
    font-size: 1.1rem; /* Slightly larger label text */
    margin-top: 10px;
}

.stat5 p {
    font-size: 1rem; /* Larger for better readability */
    margin-top: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stat5 {
        width: calc(50% - 20px); /* Adjust to 2 columns for smaller screens */
    }
}

@media (max-width: 480px) {
    .stat5 {
        width: 100%; /* Full width for very small screens */
    }
    .heading5 {
        flex-direction: column;
        align-items: center; /* Centers heading content */
        text-align: center;
    }
    .buttons5 {
        justify-content: center; /* Center buttons */
    }
    .text5 {
        /* Center the heading text */
    }
}


/* section6 */


/* <!-- Section6 --> */
.section6 {
    background-color: #f7f9fc; /* Soft background */
    /* padding: 60px 20px; */
}

.container6 {
    max-width: 1200px;
    margin: 0 auto;
}

.row6 {
    display: flex;
    flex-wrap: wrap; /* Makes it responsive */
    /* align-items: center; */
}

.image-column6,
.content-column6 {
    flex: 1;
    padding: 15px;
}

.image6 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;

     /* Slight shadow for the image */
}

.image6 img {
    width: 90%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

.overlay-box6 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 79, 115, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image6:hover .overlay-box6 {
    opacity: 1; /* Show overlay on hover */
}

.year-box6 {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.content-column6 {
    text-align: left;
}

.sec-title6 {
    margin-bottom: 20px;
}

.title6 {
    font-size: 2.2rem;
    font-weight: bold;
    color:var(--gradient-end);/* Highlighted color */
    margin-bottom: 10px;
    margin-top: 0;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #004f73;
}

.text6 {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}

.email6 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.email6 .theme_color {
    color: var(--gradient-end);
    font-weight: bold;
}

.btn-style-three6 {
    display: inline-block;
    background-color: #004f73;
    color: #fff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s ease;
}

.btn-style-three6:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05); /* Slight scaling on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .row6 {
        flex-direction: column; /* Stack columns for smaller screens */
    }
    .image-column6,
    .content-column6 {
        text-align: center; /* Center content for better alignment */
    }
    h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .email6 {
        font-size: 1rem;
    }
    .btn-style-three6 {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}





/* -----------
    ------------
        --------------
        --------------
            --------------
        Service Page Css 
              ------------
        --------------
        --------------
        --------------
*/





/* Section 8 */

/* Container for the cards */
.container9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Flexible grid */
    gap: 30px; /* Space between cards */
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.card9 {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(218, 242, 255, 0.85) 35%, rgb(209, 247, 255) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card9:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.icon-wrapper9 {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.icon9 {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card9 h3 {
    font-size: 1.3rem;
    margin-top: 50px; /* Ensure proper spacing from icon */
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: bold;
}

.card9 p {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.4;
}

.card9 a {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.card9 a:hover {
    color: var(--primary-dark);
}

/* Section9: Responsive Adjustments */
@media (max-width: 900px) {
    .container9 {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }

    .card9 {
        max-width: 90%; /* Allow more flexibility for smaller screens */
    }
}

@media (max-width: 600px) {
    .container9 {
        grid-template-columns: 1fr; /* 1 card per row */
    }

    .card9 {
        padding: 40px 20px;
        max-width: 90%;
    }

    .icon-wrapper9 {
        width: 60px;
        height: 60px;
    }

    .icon9 {
        width: 30px;
        height: 30px;
    }

    .card9 h3 {
        font-size: 1.2rem;
        margin-top: 40px;
    }

    .card9 p {
        font-size: 0.9rem;
    }

    .card9 a {
        font-size: 0.85rem;
    }
}




/* Blue Collar verification Page Starts */
/* Section10 Starts */
.section10{
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(218, 242, 255, 0.85) 35%, rgb(209, 247, 255) 100%);
}

.section10-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: left;
    
  }
  
  .section10-description {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-top: 20px;
    line-height: 1.6;
    text-align: left;
  }
  
  .section10-btn {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .section10-btn:hover {
    background-color: var(--secondary-color);
  }
  
  .section10-image-container {
    position: relative;
    transform: translateX(-30px); /* Moves the image to the left for larger screens */
  }
  
  .section10-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Responsive Design for Better Mobile View */
  @media (max-width: 768px) {
    .section10-title {
      font-size: 1.8rem;
      text-align: center;
    }
  
    .section10-description {
      font-size: 1rem;
      text-align: center;
      margin-top: 15px;
    }
  
    .section10-btn {
      margin-top: 20px;
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  
    .section10-image-container {
      transform: translateX(0); /* Center the image for mobile */
      margin-bottom: 20px; /* Add spacing below the image */
      text-align: center;
    }
  
    .section10-checklist {
      position: static;
      margin-top: 20px;
      transform: none;
    }
  }
  
  @media (max-width: 576px) {
    .section10-title {
      font-size: 1.6rem;
      text-align: center;
    }
  
    .section10-description {
      font-size: 0.95rem;
    }
  
    .section10-btn {
      font-size: 0.85rem;
      padding: 7px 14px;
    }
  
    .section10-checklist {
      padding: 10px;
    }
  
    .section10-checklist li {
      font-size: 0.9rem;
    }
  }
  

  /* section11 */

  .container11 {
    max-width: 1054px;
    margin: 50px auto;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   border-radius: 80px;
   background-color: #f4f4f9;

  }

  .container11> h1 {
   
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 50px;
color:var(--primary-dark)
  }

  .class11-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 70px;
    justify-items: center;
  }

  .class11-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 330px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .class11-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .class11-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    gap: 10px;
  }

  .class11-icon i {
    height: 64px;
    width: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }

  .fa-id-card {
    background: linear-gradient(to bottom right, #e8e8df, #f1d4ff);
  }

  .fa-user-shield {
    background: linear-gradient(to bottom right, #fbbbda, #ffd4d4);
  }

  .fa-users-rectangle {
    background: linear-gradient(to bottom right, #bbebfb, #efd4ff);
  }

  

  .class11-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  /* Default state for .class11-count (not selected) */
  .class11-count,
  .class11-count:visited {
    display: block;
    text-decoration: none;
    color: #1e2246;
    border: 1px solid #c2c5e2;
    border-radius: 8px;
    padding: 10px 30px;
    margin-top: 40px;
    transition: background-color 0.3s ease;
  }

  /* Hover state */
  .class11-count:hover {
    background-color: #f1f5fe;
  }

  /* Selected state */
  .class11-count.selected {
    background-color: #1e2246;
    color: #fff;
    border: 2px solid #c2c5e2;
    transform: scale(1.05);
    transition: all 0.3s ease;
  }

  .class11-footer {
    max-width: 845px;
    width: 100%;
    margin-bottom: -30px;
  }

  /* Responsive Design for Medium Screens (980px) */
  @media (max-width: 980px) {
    .class11-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .class11-card {
      padding: 30px;
      max-width: 280px;
    }

    .class11-icon {
      font-size: 2rem;
      gap: 8px;
    }

    .class11-title {
      font-size: 1.1rem;
    }

    .class11-count {
      font-size: 0.9rem;
    }
  }

  /* Responsive Design for Smaller Screens (768px and below) */
  @media (max-width: 768px) {
    .class11-cards {
      grid-template-columns: 1fr;
    }

    .class11-card {
      padding: 20px;
    }
  }

  /* Extra Small Screen Adjustments */
  @media (max-width: 480px) {
    .container11 {
      padding: 30px;
    }

    h1 {
      font-size: 28px;
    }

    .class11-card {
      padding: 15px;
    }

    .class11-title {
      font-size: 1rem;
    }

    .class11-count {
      padding: 8px 20px;
      font-size: 0.8rem;
    }
  }


  /* section12 */


  /* section12 */

.container12 {
    max-width: 1054px;
    margin: 50px auto;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    background-color: #f4f4f9;
  }
  
  .container12 > h1 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-dark);
  }
  
  .class12-sections {
    display: flex; /* Use flexbox for row layout */
    justify-content: space-between; /* Distribute the sections evenly */
    gap: 20px; /* Space between the sections */
    margin-bottom: 70px;
  }
  
  .class12-section {
    text-align: center;
    max-width: 330px;
    width: 100%;
  }
  
  .class12-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    gap: 10px;
  }
  
  .class12-icon i {
    height: 64px;
    width: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }
  
  .fa-id-card {
    background: linear-gradient(to bottom right, #e8e8df, #f1d4ff);
  }
  
  .fa-user-shield {
    background: linear-gradient(to bottom right, #fbbbda, #ffd4d4);
  }
  
  .fa-users-rectangle {
    background: linear-gradient(to bottom right, #bbebfb, #efd4ff);
  }
  
  .fa-tools
  {
    background: linear-gradient(to bottom right, #bbebfb, #efd4ff);
  }
  .class12-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  /* Default state for .class12-count (not selected) */
  .class12-count,
  .class12-count:visited {
    display: block;
    text-decoration: none;
    color: #1e2246;
    border: 1px solid #c2c5e2;
    border-radius: 8px;
    padding: 10px 30px;
    margin-top: 40px;
    transition: background-color 0.3s ease;
  }
  
  /* Hover state */
  .class12-count:hover {
    background-color: #f1f5fe;
  }
  
  /* Selected state */
  .class12-count.selected {
    background-color: #1e2246;
    color: #fff;
    border: 2px solid #c2c5e2;
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  
  .class12-footer {
    max-width: 845px;
    width: 100%;
    margin-bottom: -30px;
  }
  
  /* Responsive Design for Medium Screens (980px) */
  @media (max-width: 980px) {
    .class12-sections {
      flex-wrap: wrap; /* Allow wrapping for smaller screens */
      gap: 15px;
    }
  
    .class12-section {
      padding: 30px;
      max-width: 280px;
    }
  
    .class12-icon {
      font-size: 2rem;
      gap: 8px;
    }
  
    .class12-title {
      font-size: 1.1rem;
    }
  
    .class12-count {
      font-size: 0.9rem;
    }
  }
  
  /* Responsive Design for Smaller Screens (768px and below) */
  @media (max-width: 768px) {
    .class12-sections {
      flex-direction: column; /* Stack the sections vertically on very small screens */
    }
  
    .class12-section {
      padding: 20px;
    }
  }
  
  /* Extra Small Screen Adjustments */
  @media (max-width: 480px) {
    .container12 {
      padding: 30px;
    }
  
    h1 {
      font-size: 28px;
    }
  
    .class12-section {
      padding: 15px;
    }
  
    .class12-title {
      font-size: 1rem;
    }
  
    .class12-count {
      padding: 8px 20px;
      font-size: 0.8rem;
    }
  }
  

/* section 13 */
/* Background Verification Checks */
.section13 {
    padding: 50px 0;
}

.title13 {
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 20px; /* Add spacing below the title */
    font-size: 1.8rem; /* Adjust font size for better emphasis */
    line-height: 1.4; /* Improve line spacing for readability */
}

.card13 {
    background-color: var(--background-color); /* Light gray */
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth animation for hover effects */
}

.card13:hover {
    transform: translateY(-10px); /* Moves the card slightly upward */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increases the shadow on hover */
    /* Changes background color */
    color: var(--primary-dark); /* Ensures text remains readable */
}

.card13 i {
    font-size: 2rem;
    color: var(--primary-color); /* Icon color */
    margin-bottom: 10px;
    transition: color 0.3s; /* Smooth animation for icon color */
}

.card13:hover i {
    color: var(--primary-dark); /* Change icon color on hover */
}

.btn13 {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 25px;
    padding: 10px 30px;
    transition: background-color 0.3s;
}

.btn13:hover {
    background-color: var(--secondary-color);
}




/* sction14 */
.section14 {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 20px;
    padding: 50px 30px;
}

.title14 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.description14 {
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

.logos14 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
  
}

.logo14 {
    background-color: var(--text-color);
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    color: var(--primary-dark);
    font-weight: bold;
}

.logo14:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.view-all14 {
    margin-top: 20px;
    color: var(--text-color);
    text-decoration: underline;
    cursor: pointer;
}

.view-all14:hover {
    text-decoration: none;
}



/* Recover Vehicle Page*/

/* Section 18 */
/* Section18 Class Styling */
.section18 {
    background: linear-gradient(135deg, #005f8d, #f4a61a);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px; /* Added padding for better responsiveness */
    overflow: hidden;
    font-size: 0.9rem;
}
/* .section18 input{
    height: 30px;
    

} */

/* Form Container Style */
.class18-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    transition: transform 0.3s ease-in-out; /* Added subtle animation */
}

.class18-container:hover {
    transform: translateY(-5px);
}

/* Tabs Styling */
.class18-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.class18-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    cursor: pointer;
    color: #004f73;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    user-select: none; /* Prevent text selection */
}

.class18-tab.active {
    color: var(--secondary-color);
    border-bottom: 3px solid var(--primary-dark);
    background-color: #f4f8ff; /* Subtle background for active tab */
}

/* Input Styling */
/* Input Styling */
.class18-input {
    border: none;                  /* Removes all borders */
    border-bottom: 2px solid #ccc; /* Adds only the bottom border */
    padding: 10px 0;               /* Adds padding to top and bottom, no left/right padding */
    width: 100%;                   /* Makes input full width */
    background-color: transparent; /* Keeps the background transparent */
    box-shadow: none;              /* Removes any default shadow */
}

/* Focused input styling */
.class18-input:focus {
    border-bottom-color: #1e1af4;  /* Changes the bottom border color on focus */
    outline: none;                  /* Removes the default outline */
}


/* Label Style */
.class18-label {
    font-weight: bold;
    color: #004f73;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

/* Button Style */
.class18-button {
    border-radius: 18px;
    font-size: 1.1rem;
    padding: 12px;
    color: #ffffff;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.class18-button:hover {
    transform: scale(1.02);
}

.class18-primary {
    background-color: #005f8d;
}

.class18-primary:hover {
    background-color: #004f73;
}

.class18-success {
    background-color: #007b3c;
}

.class18-success:hover {
    background-color: #00552d;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .class18-container {
        padding: 20px;
    }

    .class18-tab {
        font-size: 0.9rem;
    }

    .class18-button {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .class18-tabs {
        flex-direction: column;
    }

    .class18-tab {
        padding: 8px 0;
    }
}

.error-message {
    color: red;
    display: none;
    font-size: 0.rem;
}



/* Section Styling */
.section19 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  /* Header Circles and Line Styling */
  .header-container1 {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin-bottom: 30px;
  }

  .line1-container1 {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    top: 50%;
    left: 0;
  }

  .line1 {
    background-color: var(--secondary-color);
    height: 4px;
    width: 18%;
    transition: width 0.3s ease-in-out;
  }

  .header-circles {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  .circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-color);
    transition: background-color 0.3s ease;
    border: 2px solid #ccc;
  }

  .circle.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--gradient-end);
  }

  /* Form Containers */
  .form-container1 {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
  }

  .form-container1.active {
    display: block;
  }

  h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: var(--primary-dark);
    font-weight: bold;
  }

  /* Form Styling */
  .form-container1 form {
    display: flex;
    flex-direction: column;
  }
  .form-container1 label{
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: bold;
  }
  .form-control1 {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 0.9em;
  }


  .btn.next-btn {
    background-color: var(--primary-dark);
    color: white;
  }

  .btn.prev-btn {
    background-color: #6c757d;
    color: white;
  }

  .btn:hover {
    opacity: 0.9;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .circle {
      width: 35px;
      height: 35px;
      font-size: 0.9em;
    }

    h3 {
      font-size: 1.2em;
    }

    .form-container1 {
      padding: 15px;
      max-width: 90%;
    }

    .btn {
      font-size: 0.9em;
    }
  }

  @media (max-width: 480px) {
    .circle {
      width: 30px;
      height: 30px;
      font-size: 0.8em;
    }

    .form-container1 {
      padding: 10px;
    }

    .btn {
      font-size: 0.8em;
      padding: 8px;
    }
  }

  .button-container0 {
    display: flex;
    justify-content: space-between; /* Optional: To add space between buttons */
    gap: 10px; /* Adds space between buttons */
  }

  .scrollable-table {
    height: 399px !important;
    overflow-y: auto;
}
.scrollable-table .header {
    position: sticky;
    top: 0;
}
/* Adjust height for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
    .scrollable-table {
        height: 580px !important; /* Adjust this value as needed */
    }
}

/* Further adjustments for extra small screens */
@media (max-width: 480px) {
    .scrollable-table {
        height: 400px !important; /* Adjust this value as needed */
    }
}

/* Custom CSS for small devices */
@media (max-width: 576px) {
    #statusFilter, #serviceFilter {
        font-size: 10px; /* Reduce font size on smaller devices */
        height: auto; /* Let the height adjust automatically */
        padding: 0.25rem 0.5rem; /* Adjust padding */
    }
}

/* Adjust the dropdown height for larger devices if necessary */
@media (min-width: 768px) {
    #statusFilter, #serviceFilter {
        height: calc(2.5rem + 2px); /* Larger height for medium and up */
    }
}

#searchInput::placeholder
{
    font-size: 12px;
}
.input-group-text
{
    background-color: transparent;
   
}
.search_inp
{
    border-right:none;
}

/* background verification  */




/* Add styles to make input boxes smaller */
.accordion-container input[type='text'] {
    width: 60%; /* Reduce width */
    height: 40px; /* Adjust height */
    /* Reduce padding for compact size */
    font-size: 14px; /* Adjust font size */
    border: 1px solid #ccc; /* Optional: Border style */
    border-radius: 10px; /* Optional: Rounded corners */
    box-sizing: border-box;
     /* Add spacing between label and input */
}
.accordion-container label{
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-dark);
}



.upload-btn-verification-back {
    padding: 5px 10px !important; /* Enforce smaller padding */
    font-size: 12px !important; /* Enforce smaller font size */
    background-color:var(--primary-dark);
    color: #fff !important;
    border: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    width:80px;
    height:40px;
    margin-top: 0px;
}



.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .accordion {
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
  }

  .accordion-container label{

    font-size: 17px;
    color: var(--primary-dark);
    font-weight: bold;
  }
  



  .accordion-header {
    display: flex;
    justify-content: space-between; /* Aligns content to both ends */
    align-items: center;
    padding: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
  }

  .accordion-header .left-section {
    display: flex;
    align-items: center;
  }

  .accordion-header .left-section input[type="checkbox"] {
    margin-right: 10px;
  }

  .accordion-header .right-section {
    font-weight: bold;
  }

  .accordion-content {
    display: none;
    padding: 8px;
    background-color: #ffffff;
    margin: 30px;
  }

  .accordion-content input[type="checkbox"] {
    display: block;
    margin:5px0;
}

.upload-btn-verification-back {
    padding: 5px 10px !important; /* Enforce smaller padding */
    font-size: 12px !important; /* Enforce smaller font size */
    background-color:var(--primary-dark);
    color: #fff !important;
    border: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    width:80px;
    height:40px;
    margin-top: 0px;
}






  /* user details */
  
/* General profile header styling */
.profile-header01 {
    background: url('../attachment/bg111.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    gap: 20px;
}

/* Profile picture styling */
.profile-picture01 {
    position: relative;
    width: 100px;
    height: 100px; /* Adjust to a more mobile-friendly size */
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Center the image on mobile */
    align-items: center;
}

/* Profile picture image styling */
.profile-picture01 img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

/* Hover effect for the camera icon */
.profile-picture01:hover .camera-icon {
    opacity: 1;
}

/* Camera icon styling */
.camera-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 24px;
    pointer-events: none; /* Prevent interference */
}

/* Profile name and description */
.profile-header01 .profile-details {
    display: flex;
    flex-direction: column;
}

.profile-header01 .profile-name {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

.profile-header01 .profile-description {
    font-size: 1em;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

/* Heading */
.profile_header_heading {
    font-size: 24px;
    padding-left: 40px;
    margin-bottom: 30px;
}

/* Card styling */
.details-card01 {
    margin-top: -50px;
}

.details-card01 .card-header {
    font-weight: bold;
    background-color: #f8f9fa;
}

/* Form input styling */
.profile-header01 input {
    width: 80px;
    height: 10px;
    padding: 0;
}

.card-input {
    width: 300px;
    height: 35px;
}

/* Responsive Adjustments for screens <= 768px */
@media (max-width: 768px) {
    /* Make the profile header flex in column direction on small screens */
    .profile-header01 {
        flex-direction: column;
        align-items: center; /* Center the items */
        justify-content: center;
        gap: 20px; /* Add some space between elements */
    }

    /* Profile picture is centered and resized for mobile */
    .profile-picture01 {
        width: 120px;
        height: 120px;
        margin-top: 10px; /* Adjust the margin for smaller screens */
    }

    /* Profile picture image is centered and appropriately sized */
    .profile-picture01 img {
        margin-top: 0; /* Remove top margin for better alignment */
    }

    /* The details card should come down below the profile picture on mobile */
    .details-card01 {
        margin-top: 20px; /* Add space between profile picture and card */
        width: 100%; /* Full width for card */
        display: flex;
        justify-content: center; /* Center the card */
    }

    /* Adjust form input width for mobile */
    .card-input {
        width: 80%; /* Make form inputs more flexible */
        max-width: 300px; /* Ensure inputs are not too wide */
    }

    /* Buttons should also be flexible */
    .btn {
        width: 100%; /* Make buttons responsive */
        max-width: 200px; /* Set a max width */
    }
}


.contact-section13 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.left-section12 {
    max-width: 50%;
}

.left-section12 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.left-section12 p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.checklist12 {
    list-style: none;
    padding: 0;
}

.checklist12 li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.checklist12 li::before {
    content: '✔️';
    color: #007bff;
    font-size: 1.1rem;
}

.form-container12 {
    background-color: #f8fbff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.form-container12 h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}


.form-section12 {
    display: none;
}

.form-section12.active {
    display: block;
}

.service-enquiry-container12 {
    background-color: #f8fbff; /* Soft background color for better visibility */
    padding: 40px 20px; /* Add padding for spacing */
    border-radius: 10px; /* Rounded corners */
}

.service-enquiry-container12 .display-6 {
    font-size: 2.5rem; /* Larger text for emphasis */
    color: #004f73; /* Use the primary dark color */
}

.service-enquiry-container12 p {
    font-size: 1.1rem; /* Slightly smaller font for better balance */
    line-height: 1.8; /* Increase line height for better readability */
    color: #004f73; /* Keep it consistent with the heading */
}
/* Ensure Toastr has relative or fixed positioning */
.toast {
    position: relative !important;
}

/* Customize the success toast */
.toast-success {
    background-color: #198754 !important; /* Green background */
    margin-top: 30% !important; /* Adjust the top margin */
    color: #fff !important; /* Ensure text is white */
}

/* Additional styles for the toast message */
.toast-title {
    font-weight: bold !important;
}

.toast-message {
    font-size: 14px !important;
}
/* Request Detail Page  */

.progress-steps {
    width: 100%; /* Ensure the container spans the full width */
}

.progress-container20 {
    display: flex;
    justify-content: space-between; /* Even spacing between steps */
    align-items: center;
    flex-wrap: wrap; /* Wrap steps on smaller screens */
    padding: 10px 20px;
    background-color: #f4f4f4;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.progress-step20 {
    flex: 1 1 calc(33.33% - 20px); /* Default: 3 items per row */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border-radius: 20px;
    background-color: #004f73; /* Default color */
    color: #fff;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    cursor: pointer;
}

/* Active state styling */
.progress-step20.active {
    background-color: #007b1b; /* Green for active state */
}

/* Hover effect */
.progress-step20:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-step20 {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 576px) {
    .progress-step20 {
        flex: 1 1 100%; /* Full width for each step on extra-small screens */
    }
}

.arrow-steps21 .step {
    font-size: 14px;
    text-align: center;
    color: var(--text-color);
    cursor: pointer;
    margin: 0 5px; /* Increased spacing between steps */
    padding: 10px 10px 10px 30px;
    min-width: 180px;
    float: left;
    position: relative;
    background-color: var(--primary-dark);
    border-radius: 4px; /* Added slight rounding */
    transition: all 0.3s ease;
}



.arrow-steps21 .step:after,
.arrow-steps21 .step:before {
    content: " ";
    position: absolute;
    top: 0;
    right: -15.9px;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid var(--primary-dark);
    z-index: 2;
    transition: all 0.3s ease;
}

.arrow-steps21 #step-0:after, .arrow-steps21 .step:before
{
    border-left: 17px solid --primary-dark;
}
.arrow-steps21 .step:after, .arrow-steps21 .step:before
{
    border-left: 17px solid rgb(52, 206, 206);
}
.arrow-steps21 .step:before {
    right: auto;
    left: 0;
    border-left: 17px solid #fff;
    z-index: 0;
}

.arrow-steps21 .step.active {
    background-color: rgb(52, 206, 206); /* Green background */
    color: #fff; /* White text */
}

.arrow-steps21 .step.active:after {
    border-left: 17px solid rgb(52, 206, 206) /* Green arrow */
}


.arrow-steps21 .step:after, .arrow-steps21 .step:after
{
    border-left: 17px solid #004f73; /* Green arrow */
}

.nav21 {
    display: flex;
    justify-content: space-between; /* Positions elements at start and end */
    align-items: center; /* Aligns elements vertically */
    margin-top: 20px; /* Adds spacing above */
    padding: 0 10px; /* Optional: Adds padding inside the container */
}

.nav21 .prev,
.nav21 .next {
    text-decoration: none;
    padding: 10px 20px;

 
}


.arrow-steps21 a
{
    color:white !important;
    text-decoration: none;
}
.arrow-steps21 .step .check-icon {
    
    color: white !important; /* Set the checkmark color to white */


}

/* Navbar dropdown icon  */
/* Initially display the down arrow icon */
.toggle-icon {
    transition: transform 0.3s ease; /* Add smooth transition */
}

/* Change the icon to up arrow on hover */
#navbarDropdownServices:hover .toggle-icon {
    transform: rotate(180deg); /* Rotate the icon to make it point upwards */
}

/* Change the icon to up arrow on hover */
#navbarDropdownHome:hover .toggle-icon {
    transform: rotate(180deg); /* Rotate the icon to make it point upwards */
}

/* industry Page  & about us  */
.hero-section22 {
    padding: 100px 15px; /* Space around the content */
    text-align: center;
}
.hero-title22 {
    font-size: 2.5rem; /* Large font size for title */
    font-weight: 700; /* Bold font for the title */
    color: #1a73e8; /* Blue text color */
}
.hero-subtitle22 {
    font-size: 1.1rem; /* Medium font size for subtitle */
    color: #6c757d; /* Gray text color */
    margin-bottom: 30px; /* Space below the subtitle */
}
.btn-primary22 {
    padding: 10px 30px; /* Spacing for the button */
    font-size: 1rem; /* Button text size */
    border-radius: 5px; /* Slightly rounded edges */
}


.card-section22 {
    padding: 50px 15px; /* Space around card23 section */
   border-radius: 20px;
   background-color: #f4f4f98b;
   margin-top: 20px;
}
.card23  {
    border: none; /* Remove default card23 borders */
    border-radius: 10px; /* Rounded corners for cards */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for cards */
    text-align: center; /* Center align the content */
    height: 200px; /* Fixed height for small cards */
}
.card-title22 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}
.card-text22 {
    color: #555;
    font-size: 0.9rem;
}
.card-icon22 {
    font-size: 2.5rem;
    color: #004f73;/* Blue icon color */
    margin-bottom: 10px;
}


    /*--------------------------------------------------------------
# Global section111 s
--------------------------------------------------------------*/
section,
.section111 {
  color: var(--default-color);
  background-color: var(--background-color);

  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section111 {
    scroll-margin-top: 66px;
  }
}



/*--------------------------------------------------------------
# hero111 Section
--------------------------------------------------------------*/
.hero111 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;

  margin-bottom: 1.5rem;
  color: black;
  margin-right: -20px;
}

.hero111 .hero-content h2 {
    font-size: 3.0rem;
    font-weight: 700;
  
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    margin-right: -20px;
  }


  .hero111 .hero-content h2 .accent-text {
    color: var(--secondary-color);
  }
.hero111 .hero-content h1 .accent-text {
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  .hero111 .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero111 .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero111 .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero111 .hero-content h1 {
    font-size: 2rem;
  }
}

.hero111 .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--primary-dark), transparent 92%);
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 500;
}


.hero111 .btn-primary {
  background-color: var(--primary-dark);
  border-color: var(--border-color);
  color: var(--text-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero111 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--secondary-color), black 20%);

}




.hero111 p{
    font-size: 1.1rem;
    color:black;
}

/* req service detail  file card */
.scrollable-container {
    height: 497px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 7px;
 
}


.addFileLink {
    color: #007bff;
    text-decoration: none;
}





/*----------------------------*
            Carrer Page Start
*------------------------------*/



.career-form-container {
    position: relative;
    z-index: 2;
    display: flex;
 
    width: 100%;
    background: white;
  
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.career-form-image {
    flex: 1;
    background: url('../attachment/carrer2.avif') no-repeat center center/cover;
}
.career-form-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.career-form-content h2 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 50px;
color:var(--primary-dark);
}
.career-form-content input,
.career-form-content select,
.career-form-content textarea {
    width: 100%;
    padding: 7px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.career-form-content input::placeholder {
    font-size: 14px; /* Change size as needed */
    color: #888; /* Optional: Change placeholder color */
}
.career-form-content button {
    background: var(--gradient-start);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.career-form-content button:hover {
    background: var(--secondary-color);
}
@media (max-width: 768px) {
    .career-form-container {
        flex-direction: column;
    }
    .career-form-image {
        height: 200px;
    }
}

/*----------------------------*
            Carrer Page End
*------------------------------*/
