
/* Reset and Base Styles */
:root {
    /*--primary-color: #1a5f9c; /* Darker blue */
    --primary-color: #011e58; /* ROYAL blue */
    --primary-alt-color: #1a5f9c; /* ROYAL blue */
    
    --secondary-color: #bd0b25; /* Brighter red */
    --underline-color: #c90012;
    --dark-color: #222;
    --light-color: #f9f9f9;
    --text-color: #333;
    --text-grey: #BBB;
    --text-light: #777;
    --logo-blue: #1a5f9c;
    --logo-red: #d62d20;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-accent {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--secondary-color);
}
.btn-center {
  text-align: center;
  margin-top: 20px;
}
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2.blue {
    color: var(--primary-color);
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--underline-color);
}

.section-title p {
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    color: var(--logo-blue);
    font-size: 24px;
    font-weight: 800;
}

.logo h1 span {
    color: var(--logo-red);
}

/* Navigation */
/*
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

nav ul {
    display: flex;
}

nav ul li {
    position: relative;
    margin-left: 25px;
}

nav ul li a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    display: block;
    font-size: 15px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li.has-submenu a:hover:after {
  width: auto;
}


/* Submenu 
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 250px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
    transform: translateY(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--secondary-color);
}

nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li ul li {
    margin: 0;
    padding: 0;
}

nav ul li ul li a {
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    color: var(--text-color);
}

nav ul li ul li a:hover {
    color: var(--secondary-color);
    padding-left: 25px;
    background-color: rgba(214, 45, 32, 0.05);
}*/
.new-demands{
  background-color:#f7d51d;
  padding: 5px 5px 5px 5px;
  margin-top: 5px;
}

/* Hero Banner Slider - Reduced Height */
.hero-slider {
    position: relative;
    height: 50vh; /* Reduced from 100vh */
    min-height: 400px; /* Reduced from 600px */
    overflow: hidden;
    margin-top: 80px; /* Added to account for fixed header */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Lighter overlay */
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding-top: 80px; /* Reduced padding */
    color: white;
}

.slide-content h2 {
    font-size: 36px; /* Reduced from 48px */
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 16px; /* Reduced from 18px */
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Stats Counter */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0; /* Reduced padding */
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px; /* Reduced from 48px */
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px; /* Reduced from 18px */
    opacity: 0.9;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* About Section with Parallax */
.about {
    /*background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') fixed;
    background-size: cover;*/
    position: relative;
    color: white;
    padding: 100px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.column-image img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.column-image:hover img {
    transform: scale(1.05);
}

.column-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.column-text p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a7fc9 100%);
    color: white;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    margin-bottom: -50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Process Section */
.process {
    background-color: var(--light-color);
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    z-index: -1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.process-step h3 {
    margin-bottom: 15px;
}

/* Clients Section */
.clients {
    padding: 100px 0;
    text-align: center;
}

.client-logos {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.client-logos img {
    height: 150px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 0 20px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
}

.testimonial-text:before {
    top: -30px;
    left: -20px;
}

.testimonial-text:after {
    bottom: -60px;
    right: -20px;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-position {
    opacity: 0.8;
    font-size: 14px;
}

/* Categories Section with Parallax */
.categories {
    /*background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') fixed;
    background-size: cover;*/
    position: relative;
    color: white;
    padding: 100px 0;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.categories-content {
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.category-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.category-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.category-card h3 {
    margin-bottom: 15px;
}

/* Countries Section */
.countries {
    padding: 100px 0;
    background-color: var(--light-color);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.country-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.country-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
    color: white;
    padding:0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-contact li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.footer-contact i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    background-color: #222;
    color: white;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #004080;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    color: #777;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .column-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2):after {
        display: none;
    }
    
    .process-step:nth-child(odd):after {
        right: -30px;
        top: 50%;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color);
    }
    
    .process-step:nth-child(even):after {
        left: -30px;
        top: initial;
        bottom: -30px;
        width: 2px;
        height: 30px;
        background-color: var(--primary-color);
    }
}

@media (max-width: 768px) {
   /* .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        padding: 80px 30px 30px;
        transition: all 0.5s ease;
        z-index: 1000;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        color: var(--primary-color);
    }
    
    nav ul li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        width: auto;
        padding: 0;
        margin: 10px 0 0 15px;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
    }
    
    nav ul li.has-submenu > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    nav ul li.has-submenu > a:after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    nav ul li.has-submenu.active > a:after {
        transform: rotate(180deg);
    }*/
    
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    
    .slide-content {
        padding-top: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step:after {
        display: none !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .parallax-section {
        height: 50vh;
        min-height: 350px;
    }
    .parallax-section {
        height: 90vh;
        min-height: 1090px;
        background-image:  url("https://images.unsplash.com/photo-1580420832496-de48689556ee?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .services {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
        margin-bottom: -30px;
    }
    
    .hero-slider {
        height: 70vh;
    }
}
.back-to-top {
  position: fixed;
  right: 36px;
  bottom: 42px;
  width: 42px;
  height: 42px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  font-size: 22px;
  cursor: pointer;
  background-color: linear-gradient(45deg, #FF5733, #C70039) !important;
  -webkit-animation: white-shadow .8s infinite, red-shadow .8s infinite;
  animation: white-shadow .8s infinite, red-shadow .8s infinite;
  -webkit-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  display: none;
}

@keyframes white-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-transition: box-shadow .3s ease-in-out;
    -webkit-transition: -webkit-box-shadow .3s ease-in-out;
    -o-transition: box-shadow .3s ease-in-out;
    transition: box-shadow .3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
    box-shadow: 0 0 0 30px transparent;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: box-shadow .4s ease-in-out;
    -webkit-transition: -webkit-box-shadow .4s ease-in-out;
    -o-transition: box-shadow .4s ease-in-out;
    transition: box-shadow .4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out;
  }
}
@-webkit-keyframes red-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(31, 100, 188, 0.4);
    box-shadow: 0 0 0 0 rgba(31, 100, 188, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
    box-shadow: 0 0 0 30px transparent;
  }
}
@keyframes red-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(31, 100, 188, 0.4);
    box-shadow: 0 0 0 0 rgba(31, 100, 188, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
    box-shadow: 0 0 0 30px transparent;
  }
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.svg);
  background-size: 90px;
}
.page-title-content{
    height: 320px;
    display: flex;
    align-items: center;
    position: relative;
}
.page-title-content .title {
  font-size: 54px;
  letter-spacing: 1px;
}
.text-white {
    color: #fff !important;
}
#responsediv {
    margin: 60px;
    display: none;
}
@media (max-width: 576px) {
    #responsediv {
        margin: 40px;
    }
}

#image-gallery .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 106px; /* Optional: space between columns */
}

#image-gallery .image {
  flex: 0 0 auto;
  width:  150px;
  height: 150px;
  box-sizing: border-box;
  margin-bottom: 54px; 
}

#image-gallery .image img {
  width: 100%;
  height: 150px;
  display: block;
}

.img-overlay {
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

.responsediv li {
    padding-left: 20px !important;
    font-size: 15px !important;
    margin: 13px 0 !important;
    color: #222 !important;
    line-height: 1.6em !important;
    background: url(../images/double-arrow.png) no-repeat left 7px !important;
}

/* Make .row a flex container */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Handle column widths */
.col-lg-6 {
  width: 48%;
}

.col-lg-12,
.col-lg-8 {
  width: 100%;
}

/* Form group spacing */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

/* Style for all inputs and textarea */
.form-control {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #007bff;
}

/* Adjust spacing */
.mrb-25 {
  margin-bottom: 25px;
}

/* Button styling */
.cs-btn-one {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cs-btn-one:hover {
  background-color: #0056b3;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .col-lg-6,
  .col-lg-8,
  .col-lg-12 {
    width: 100%;
  }
}

#scrollUp {
  right: 36px;
  bottom: 42px;
  width: 42px;
  height: 42px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  font-size: 22px;
  cursor: pointer;
  background-color: var(--primary-color);
  -webkit-animation: white-shadow .8s infinite, red-shadow .8s infinite;
  animation: white-shadow .8s infinite, red-shadow .8s infinite;
  -webkit-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
}

.cta {
    display: flex;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Map section (left) */
.map-section {
    flex: 1;
    min-height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA section (right) */
.cta-section {
    flex: 1;
    padding: 40px;
    /*background: #2c3e50;*/
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-section a{
    width: 240px;
    margin: 0 auto;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cta {
        flex-direction: column;
    }
    
    .map-section {
        min-height: 300px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    .map-section iframe {
        height: 300px;
    }
}

.swiper-button-next,.swiper-button-prev {
  color:#5f7994 !important;    
}

.client-logos.swiper-partner {
  position: relative; 
  overflow: hidden;
}

/* Base Styles */
#hotjob {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    color: #333;
    line-height: 1.6;
    /*padding: 20px 15px !important;*/
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
.head1 {
    color: #2c3e50 !important;
    font-size: 1.5rem !important;
    padding: 10px !important;
    border-bottom: 2px solid #e74c3c;
    margin-bottom: 15px !important;
}

.jobdetails {
    font-size: 1rem !important;
    padding: 5px 15px !important;
    vertical-align: top !important;
}

/* Tables */
table.design {
    width: 100% !important;
    border-collapse: collapse;
}

table.table-bordered {
    width: 100% !important;
    border: 1px solid #ddd !important;
    border-radius: 8px;
    overflow: hidden;
}

/* Links & Buttons */
.jobdetails a, .linkpage {
    color: #e74c3c !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.jobdetails a:hover, .linkpage:hover {
    color: #c0392b !important;
    text-decoration: underline !important;
}

.button {
    padding: 20px 0 !important;
    text-align: center !important;
}
.jobCompany{
    flex:  0 0 50%;
}

/* Responsive Table Layout */
@media (max-width: 768px) {
    .jobCompany{
        flex:  0 0 100%;
    }
    #hotjob {
        /*padding: 15px 10px !important;*/
    }
    
    .head1 {
        font-size: 1.3rem !important;
    }
    
    .jobdetails {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
        padding: 5px !important;
    }
    
    table.table-bordered tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 5px;
    }
    
    table.table-bordered td {
        width: 100% !important;
        display: block;
    }
    
    table.table-bordered td:first-child {
        font-weight: bold;
        background-color: #f8f9fa;
    }
    
    .button {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* Color Enhancements */
.tablebarfrontt {
    background-color: #f8f9fa !important;
}

/* Back Link Styling */
.jobdetails > font[color="#550000"] {
    color: #7f8c8d !important;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
    position: relative;
}

/* Hover Effects */
tr:hover td.jobdetails {
    background-color: #f8f9fa !important;
}

/* Print Styles */
@media print {
    #hotjob {
        padding: 0 !important;
    }
    
    .linkpage {
        display: none !important;
    }
    
    .jobdetails {
        font-size: 12pt !important;
        padding: 8px !important;
    }
}

