/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
    overflow: auto; /* Allow scrolling */
    font-family: "Raleway", sans-serif !important;
    
}
.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.roboto-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body p{
    font-family: "Raleway", sans-serif !important;
}
/* Menu bar styling */
.menu-bar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    display: flex;
    align-items: center;
    z-index: 1000; /* Ensure it stays on top */
}
.navbar_bottom_border{
    border-bottom: 1px solid #ccc;
}
/*/* Logo styling */
.logo {
    position: absolute;
    top: 0px; /* Adjust to position the logo outside the menu bar */
    left: 20px;
}

.logo img {
    height: 80px;
    width: auto;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.5) !important; /* White with 50% transparency */
    height: 70px;
    backdrop-filter: blur(10px); /* Optional: Adds a subtle blur effect */
}

        /* Logo Styling - Positioned 10px Outside Navbar */
.navbar-brand img {
    height: 60px;
    width: auto;
    position: relative;
    padding:5px;             /* Moves the logo 10px out of the navbar */
}

/* Navbar Link Styling */
.navbar-nav .nav-link {
    color: #3f3f3f !important; /* Black text for contrast */
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #b60404 !important; /* Blue hover effect */
}

/* Mobile menu button color */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Slideshow container */
/* .slideshow {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height 
    overflow: hidden;
} */

/* Individual slide styling */
/* .main_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: zoomEffect 12s infinite; /* 3 slides * 4 seconds each 
} */

/* Slide 1 
.main_slide:nth-child(1) {
    animation-delay: 0s;
}

/* Slide 2 
.main_slide:nth-child(2) {
    animation-delay: 4s;
}

/* Slide 3 
.main_slide:nth-child(3) {
    animation-delay: 8s;
}

/* Zoom-in and zoom-out animation 
@keyframes zoomEffect {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
    }
    30% {
        transform: scale(1.1); 
    }
    40% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale(1); 
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Content below the slideshow */


/* Bounce block styling */

.margin_t_b_10{
    margin: 10px 0px ;
}
.bounce {
opacity: 0;
transform: translateY(50px);
transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Bouncing animation */
@keyframes bounceOnce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* When visible, animate with a delay */
.visible {
    opacity: 1;
    transform: translateY(0);
    animation: bounceOnce 0.3s ease-out;
}

/*counter parts*/

/* Sales Section with Parallax Background */
        .sales-section {
            position: relative;
            padding: 80px 20px;
            text-align: center;
            color: white;
            overflow: hidden;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        /* Parallax Background with Zoom Effect */
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/counter.jpg') no-repeat center right;
            background-size: cover;
            background-attachment: fixed;
            transform: scale(1);
            transition: transform 0.1s ease-out;
            z-index: -1;
        }

        .parallax-bg::before{
            content: "";
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: rgba(0, 0, 0, 0.3); /* Adjust opacity (0.5 = 50% dark) */
        }

        .sales-box {
            background: rgba(0, 0, 0, 0.6);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            text-align: center;
            margin-bottom: 20px;
        }

        .sales-box:hover {
            transform: scale(1.05);
        }

        .sales-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
        }

        .sales-title {
            font-size: 1.2rem;
            margin-top: 10px;
        }

/*        GROWS TOGETHER WITH CUSTOMERS*/
.age_of_company{
    background-color: #C7D9DD;
    height: auto;
    width: 100%;
    align-items: center;

    margin-left: 0px !important;
    margin-right: 0px !important;
    padding: 15px 0 5px 0 !important;

}
.age_of_company h2{
    color: #1b1464 !important;
}

/*for partners logo */
.logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }
        .logo-container img {
            width: auto; /* Adjust size */
            height: 70px;
            filter: grayscale(100%); /* Make image grayscale */
            transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
            margin: 25px 25px 0 25px;
        }
        .logo-container img:hover {
            filter: grayscale(0%); /* Show full color on hover */
            
        }
        @media (max-width: 768px){
           .logo-container img{
             width: auto; /* Adjust size */
            height: 50px;
           } 
        }

/*for the news events*/
.event-section {
            
            padding: 40px 0;
        }
        .carousel-caption {
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            width: 100%;
            text-align: left;
            right: 0px !important;
            left: 0px !important;
        }
        .carousel-caption h5 {
            font-weight: bold;
            color: #fff;
        }
        .carousel-caption p {
            color: #ddd;
        }
        .event-list .event-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .event-list .event-item:hover {
            transform: scale(1.05);
        }
        .event-list .event-item img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
            border-radius: 5px;
        }
        .event-list .event-item h6 {
            font-weight: bold;
            margin: 0;
        }
        .event-list .event-item span {
            color: #888;
            font-size: 14px;
        }

        /* Initial visibility */
        #featuredImage, #featuredTitle, #featuredDesc {
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }

/*for employee section*/

.employee img{
    max-height: 225px;
    width: auto;
    margin-bottom: 5px !important;

}

.employee img:hover{
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  
}

/*.boss img{
    max-height: auto;
    width: auto;
}*/
.employee{
    margin: 30px 0px;
}
.boss{
      margin: 30px 20px;
}
.force_margin-top{
margin-top: 100px !important;
}
.force_margin-top_half{
margin-top: 50px !important;
}

h3, h4{
    color: #656564 !important;
    font-family: "Raleway", sans-serif;
    font-weight: 800 !important;
    font-size: 1.5re;
}
h2{
    font-size: 2.3rem !important;
    color: white !important;
    font-weight:700 !important;
}
 h6{
    font-size: 1.5re;
    color: white !important;
    font-weight:700 !important;
 }
 
 h5{
    color: #656564 !important;
    font-family: "Raleway", sans-serif;
    font-weight: 400 !important;
    font-size: 1.2re;
}
.contact-form {

padding: 20px;
border-radius: 10px;

}
.contact_form_row{
margin-top: 20px !important;
}

.contact-form img{
    width: 15%;
    height: auto;
} 

input{
    border: 1px solid #959595 !important;
}
.section_title{
    padding: 30px 0;
}
/*for contact form */
@media (max-width: 768px) {
.contact-form img {width: 40px; }
.contact_form_row {flex-direction: column;}
.employer img {height: auto !important;  max-width: 70% !important; }
}

/*for the gallery*/

.gmap-container iframe {
    width: 100%;
    height: 300px;
    }

.employer img{
    height: auto;
    max-width: 80%;
    }

.gallery-grid {
            column-count: 4;
            column-gap: 15px;
        }
        
        .gallery-grid-item {
            break-inside: avoid;
            margin-bottom: 15px;
        }
        
        .gallery img {
            width: 100%;
            display: block;
            border-radius: 8px;
        }
        
        @media (max-width: 1024px) {
            .gallery-grid {
                column-count: 3;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                column-count: 2;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid {
                column-count: 1;
            }
        }

/*fot the footer*/

.footer {
    background-color: #212331; /* Dark background */
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
}
.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    
    display: inline-block;
    text-decoration: none;
}
.social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
}
.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.back-to-top a {
    display: inline-block;
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.back-to-top a:hover {
    background: rgba(255, 255, 255, 0.2);
}
.footer p{
    font-size: 13px;
    margin-left: 10px;
}
.call_us a{
    color: #656564;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.4em !important;
}
.call_us a:hover{
    color: #b60404;
    
}

.card_body_extra
{
    padding: 15px 0 5px 0 !important;
}
.card_body_extra p{
    text-align: justify !important;
    hyphens: auto;

}
.card_body_extra h5{
    text-align: center !important;

}

.card-text a{
    color: #1b1464;
    text-decoration: none;
    
}
.card-text :hover{
    color:#b60404;
    
}

.tab_header h7{
    color: #1b1464 !important;
    font-size: 1.5rem;
    font-weight: 400;
}

.news_events_details{
    padding: 40px !important;
}

.event_card{
    background-color: #f1f1f1;
}
.event_card h7{
    font-weight: bold;
    color: #656564;
}

#modalImage {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Increase modal size */
.modal-dialog {
    max-width: 75%; /* Adjust modal width */
}

.modal-body {
    text-align: center; /* Center the image */
}

.button_team{
    width: 50% !important ;
    color: white !important;
    font-size: 1.5rem !important;
}
.zoom-hover {
    overflow: hidden;
}

.zoom-hover img {
    transition: transform 0.3s ease;
}

.zoom-hover:hover img {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .button_team {
        width: 80% !important ;
    }
    .news_events_details{
    padding: 0 !important;
    }
    .news_events_details img{
        padding-bottom:35px;
    }
}
@media (max-width: 480px) {
    .button_team {
        width: 100% !important ;
    }
}

