@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --primary-blue: #0066C5;
    --light-blue: #4a90e2;
    --dark-blue: #01498d;
    --orange: #ff9800;
    --dark-orange: #f57c00;
    --light-gray: #f8f9fa;
}
.navbar-toggler-icon {
    filter: invert(1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

p {
    font-family: "Poppins";
    font-size: 16px;
}

/* Header */
.header-nav {
    /* background: rgba(0, 86, 179, 0.95); */
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    margin: auto;
    width: 100%;
}

.header-nav::before {
    background: rgba(0, 86, 179, 0.95);
    z-index: 2;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    margin: auto;
    width: 100%;
}

.navbar-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 10px;
}


.navbar-brand .brand-text p {
    font-size: 0.65rem;
    color: white;
    opacity: 0.9;
    line-height: 1;
}

.navbar-nav .menu-item a {
    color: white !important;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    transition: opacity 0.3s;
    font-weight: 500;
    font-family: jost;
    text-decoration: none;
}

.navbar-nav .menu-item a:hover {
    opacity: 0.8;
    color: #e6ad22;
}

.navbar-toggler {
    border-color: white;
}

.brand-text img {
    height: 80px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 50px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f7f7;
}

.hero-section::after {
    background: url('../images/Vector\ 36.png');
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
}

.inner-hero-section {
    height: 450px;
    padding-top: 50px;
    background-color: #f1f1f1;
    position: relative;
	display: flex;  
	 align-items: center;
	 justify-content: center; 
	text-align: center;
}



.inner-hero-section h4 {
    color: #000000;
}

.inner-hero-section::after {
    background:#0066C5;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-size: cover;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;

    opacity: 0.1;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-title {
    font-size: 3.9rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2c3e50;
    font-family: 'Merriweather Sans';
	text-align:center;
	align-items:center;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #585858;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    margin: 50px 0;
}

.hero-image {
    position: relative;
    border-radius: 50%;
    /* overflow: hidden; */
    width: 100%;
    /* max-width: 500px; */
    margin: 0 auto;
    aspect-ratio: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-image .mainimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 25px solid rgb(255, 255, 255);
    border-radius: 50%;

}

.hero-badge img {
    height: 150px;
	

}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 100px;
    background: var(--light-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
/*     display: flex; */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
		display:none;
}

.hero-badge i {
    font-size: 2rem;
    color: white;
}

#about {
    padding: 80px 0;
}

#about p {
    font-size: 17px;
    line-height: 2rem;
    color: rgb(124, 124, 124);
    text-align: justify;
}

/* Experts Section */
.experts-section {
    background: white;
}

.expert-image {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-family: "Merriweather Sans";
    text-transform: capitalize;
}

/* Workflow Section */
.workflow-section {
    background: linear-gradient(135deg, #235588 0%, #2d649b 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Group\ 467.png') center/cover;
    opacity: 0.2;
}

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

.section-label {
    color:#FBBC41;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: "Arimo Hebrew Subset";
}

.workflow-steps {
    position: relative;
    z-index: 2;
}

.workflow-line {
    display: none;
}

@media (min-width: 768px) {
    .workflow-line {
        display: block;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 4px;
        background: #FBBC41;
        z-index: 0;
    }

}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.workflow-number {
    width: 60px;
    height: 60px;
    background: #FBBC41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workflow-number h2 {
    font-size: 24px;
    font-weight: bold;
}

/* .workflow-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.workflow-icon i {
    font-size: 2.5rem;
    color: white;
} */
.workflow-icon img {
    width: 50px;
    height: 50px;
}

.workflow-step p {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Industry Section */
.industry-section {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    padding: 80px 0;
}

.carousel-control-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-control-custom:hover {
    background: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-custom i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.industry-card {
    background: rgb(248, 248, 248);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    height: 100%;
}

.industry-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon i {
    font-size: 3rem;
    color: white;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    font-family: "Poppins";
}

.industry-card p {
    text-align: center;
    color: #666;
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 48px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion details {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 24px rgba(10, 20, 40, 0.06);
}

.faq-accordion summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion .chev {
    transition: transform 0.22s ease;
    color: var(--primary-blue);
}

.faq-accordion details[open] .chev {
    transform: rotate(180deg);
}

.faq-accordion .faq-answer {
    margin-top: 0.75rem;
    color: #495057;
}

@media (max-width: 767px) {
    .faq-accordion {
        padding: 0 1rem;
    }

    .hero-section::after {
        height: 4% !important;
    }
	.navbar-nav .menu-item {
		padding:25px;
	}
/*     .scrollmenu .col-md-3 {
        width: 200px !important;
    } */
	.workflow-number{
		margin:5px 0;
}
    .hero-content {
        padding-top: 40px;
    }
	.why-mission, .faq-section{
		padding:0 !important;
	}

}

/* Work Process Steps */
.workprocess-section {
    background: linear-gradient(180deg, #fcfafa, #fbf9f9);
	padding:50px 0;
}


.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.steps-grid .step-col {
  flex: 1 1 calc(25% - 1.5rem); 
}

@media (max-width: 991px) {
  .steps-grid .step-col {
    flex: 1 1 calc(50% - 1.5rem); 
}
}
@media (max-width: 575px) {
  .steps-grid .step-col {
    flex: 1 1 100%; 
  }
}

.process-step {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 50px 20px 20px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  min-height: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.process-step h5 {
  margin-top: 30px;
  font-weight: 600;
  color: #222;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  margin-top: auto;
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
/*  box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
/*   z-index: -1; */
}

.workprocess-img img{
	width:50px;
	height:50px;
	background:#0066C5;
	border-radius:50%;
	padding:5px;
	
}
.process-step:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}




/* .process-step {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 32px rgba(10, 20, 40, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
} */

/* .process-step h5 {
    font-weight: 600;
} */

/* .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(10, 20, 40, 0.12);
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: var(--primary-blue);
    color: white;
    font-weight: 700;
}

.process-step .step-icon {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
} */

/* .process-step h5 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #555;
    font-size: 0.95rem;
}

@media (max-width: 575px) {
    .process-step {
        padding: 1rem;
    }
} */

/* Why Us Section Styles */
#why-us .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding: 20px;
}

#why-us .benefit {
    align-items: flex-start;
}

.benefit h5 {
    font-weight: 600;
    font-family: "Poppins";
    font-size: 18px;

}

#why-us .why-stats-card {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    padding: 1.5rem;
    border-radius: 8px;
}

#why-us .why-stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-family: "Poppins";
}

/* Why page additional sections */
.why-mission {
    padding: 60px 0;
}

.why-mission .mission-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(20, 30, 60, 0.06);
}

.why-mission li {
    font-family: "Poppins";
    font-size: 16px;
}

.approach-section {
    padding: 60px 0;
}

.approach-step {
    background: linear-gradient(180deg, var(--light-gray), #ffffff);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 30px rgba(20, 30, 60, 0.04);
}

.approach-step h5 {
    font-family: "Poppins";
}

.approach-step .step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    border-radius: 10px;
    background: white;
    /* box-shadow: 0 10px 30px rgba(10, 20, 40, 0.06); */
}

.testimonial-card p {
    color: #4b5563;
}

.testimonial-meta {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.testimonial-meta img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.faq-section {
    padding: 60px 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.faq-item button {
    width: 100%;
    text-align: left;
    font-weight: 600;
    background: transparent;
    border: 0;
    padding: 0.5rem 0;
}

.faq-answer {
    color: #555;
    padding: 0.5rem 0 0 0;
}

.cta-section {
    padding: 48px 0;
    text-align: center;
}

.cta-section h3 {
    font-family: "Merriweather Sans";
}

.cta-section .btn {
    padding: 0.85rem 1.6rem;
    font-size: 1.05rem;
}

#contactForm .btn {
    background-color: #e6ad22;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .approach-step {
        padding: 1rem;
    }
}


/* Driven Section */
.driven-section {
    background: rgb(248, 248, 248);
    padding: 80px 0;
}

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

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 15px;

    font-family: "Poppins";
}

.benefits-list i {
    color: #28a745;
    margin-right: 0.75rem;
    margin-top: 3px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.driven-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #235588 0%, #2d649b 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3184416/pexels-photo-3184416.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
    opacity: 0.1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.testimonial-card {
    background: white;
    border-radius: 15px;

    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    padding: 2rem;
    position: relative;
}

.testimonial-text::after {
    position: absolute;
    content: '';
    height: 100px;
    width: 100px;
    left: 0;
    bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #4a90e2;
    padding: 2rem;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    color: #ffffff;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #ffffff;
}

.testimonial-author h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    font-family: "Poppins";
}

.testimonial-author p {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
}

/* Franchise Section */
.franchise-section {
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    padding: 80px 0;
}

.franchise-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.franchise-image img {
    width: 100%;
}


.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
    padding: 1.25rem 1.5rem;
    font-family: "Poppins";
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.accordion-body {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    font-family: "Poppins";
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    background: url('../images/Group\ 466.png');
	
    position: relative;
    overflow: hidden;
    background-size: cover;
/*     background-attachment: fixed; */
    padding: 80px 0;
}

.form-control-lg {
    font-size: 1.2rem;
    font-weight: 500;
    color: #28a745;
    background-color: #f7f7f7;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*     background: url('https://images.pexels.com/photos/7709189/pexels-photo-7709189.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover; */
    opacity: 0.2;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .form-control {
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
}

.contact-section .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Stats Section */
.stats-section {
    background: white;
}
.blogcard1 img{
	width:100%;
	object-fit:cover;
}
.stat-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.dateshape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
    background: rgb(28, 81, 255);
    color: #ffffff;
    padding: 15px;
    margin: 20px;

}

.footer-brand-logo imf {
    width: 100%;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

/* .blogcard1{
    padding: 10px;
} */
.dateshape span {
    display: block;
    font-weight: 600;
    margin-top: 5px;
}

.stat-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-image i {
    font-size: 4rem;
    color: white;
}

.stat-content {
    padding: 1.5rem;
    font-family: "Poppins";
}

.stat-content h3 {
    font-size: 1.2rem;

    margin-bottom: 0.5rem;

}

.stat-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.stat-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.stat-link:hover {
    color: var(--light-blue);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 80px 0 20px 0;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 10px;
}

.footer-brand-text h5 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.footer-brand-text p {
    font-size: 0.65rem;
    opacity: 0.9;
    line-height: 1;
}

.footer-text {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e6ad22;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 20px 0;
    font-weight: 500;
    font-family: "jost";
}

.footer-links a:hover {
    color: #e6ad22;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    font-family: "jost";
}

.footer-contact i {
    margin-right: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #666666;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #ffffff;
    /* font-size: 0.95rem; */
    margin: 0;
}

.footer-link {
    color: #f3f3f3;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 16px;
    transition: color 0.3s;
    font-family: "Poppins";
}

.footer-link:hover {
    color: white;
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 0.95rem 2.2rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: "Poppins";
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.btn-warning {
    background: #FBBC41;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-warning:hover {
    background:#e6ad22;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

   

    /* .hero-content {
        padding-top: 100px;
    } */

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .industry-section .section-title {
        font-size: 1.25rem !important;
    }

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

    .workflow-icon i {
        font-size: 1.5rem;
    }

    .industry-icon {
        width: 80px;
        height: 80px;
    }

    .industry-icon i {
        font-size: 2.5rem;
    }

    .js-carousel-control {
        display: none !important;
    }
.inner-hero-section::after{
    display:none;
}
}


/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}






.scrollmenu {
    overflow: auto;
    white-space: nowrap;
}

.scrollmenu .col-md-3 {
    display: inline-flex;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    width: 350px;
}

/* Industry page UI improvements */
.industry-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.industry-section .lead {
    color: #555;
    margin-bottom: 2rem;
}

.industry-tile {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 30px rgba(20, 20, 40, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-tile img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.industry-tile h3 {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    color: var(--dark-blue, #003d82);
    font-family: "Poppins";
}

.industry-tile p {
    color: #666;
    margin-top: 0.5rem;
    flex-grow: 1;
}

.industry-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(20, 20, 40, 0.12);
}

.industry-section .industry-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.industry-detail h4 {
    margin-bottom: 0.5rem;
}

.industry-section .btn {
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .industry-tile img {
        height: 180px;
    }
}

/* Carousel tweaks for consistent card heights and spacing */
/* Carousel (JS implementation) */
.js-carousel {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.js-carousel-viewport {
    overflow: hidden;
    flex: 1 1 auto;
}

.js-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 450ms ease;
    will-change: transform;
}

.js-carousel-item {
    flex: 0 0 auto;
    width: 33.3333%;
    /* default 3-per-row */
}

.js-carousel .industry-card {
    min-height: 260px;
}

.js-carousel-control {
    background: #0066C5;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 25px;
    color: #ffffff;
}

.js-carousel-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.js-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
}

.js-carousel-indicators button.active {
    background: var(--primary-blue);
}


.testimonials-section .js-carousel-item {
    width: 100%;
}
.testimonials-section .js-carousel-control{
	display:none;
}
/* 5 visible */


@media (min-width: 992px) and (max-width: 1199px) {
    .js-carousel-item {
        width: 33.3333%;
    }

    /* 3 visible */
}

@media (min-width: 768px) and (max-width: 991px) {
    .js-carousel-item {
        width: 95% !important;
    }

    /* 2 visible */
}

@media (max-width: 767px) {
    .js-carousel-item {
        width: 100%;
    }

    /* 1 visible */
}

.featured-article img {
    height: 300px;
    object-fit: cover;
}

.card-body h2 {
    font-size: 20px;
    font-family: 'Poppins';
}

.news-list article h4 {
    font-size: 18px;
    font-family: "Poppins";
}

.bailogo {
    width: 200px;
}

#popmake-271 {
	border: 2px solid black;
    border-radius: 10px;
}

#popmake-271 #pum_popup_title_271 {
	font-family: 'Poppins';
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 30px;
}





/* ****terms,privacy**** */
/*   .terms{
    background-image: url('../image/ai-cybersecurity-virus-protection-machine-learning-min.jpg');
    background:#000;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  } */
  .terms-heading h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
    text-align: center;
    z-index: 2;
    font-family: "Jost";
    font-weight: 600;
    text-transform: uppercase;
  }
  .inner-conditions{
    padding: 50px 0;
  }
  .inner-conditions ul li{
    font-family: "Poppins";
    font-size: 15px;

}
.inner-conditions h4, .inner-conditions h5{
	font-family:"Poppins";
}
/*   .privacy{
	  background:#000;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  } */











/* responsive code */

@media only screen and (max-width: 480px) {
    /* .header-nav {
        padding: 0px 10px;
    } */

    .navbar {
        background-color:rgb(1, 44, 184);
		justify-content:space-around;
    }

    .header-nav .container {
        padding: 0;
    }

    .navbar-collapse {
        padding: 20px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .testimonials-section .js-carousel-item {
        width: 98.333%;
    }

    .featured-article img {
        height: auto;
    }

    .bailogo {
        width: 200px;
    }
	.blog .innerhero-title {
	font-size: 38px;
        font-weight: 600;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	.blog .innerhero-title {
	font-size: 38px;
        font-weight: 600;
	}
    /* .header-nav {
        padding: 0px 10px;
    } */
	#blog .innerhero-title {
	font-size: 30px;
	}

    .navbar {
        background-color:rgb(1, 44, 184);
    }

    .header-nav .container {
        padding: 0;
    }

    .navbar-collapse {
        padding: 20px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .scrollmenu .col-md-3 {
        width: 250px;
    }

    .industry-section .section-title {
        font-size: 1.7rem;
    }

    .testimonials-section .js-carousel-item {
        width: 98.333%;
    }

    .navbarNav {
        background-color: #0066C5;
    }

    .featured-article img {
        height: auto;
    }

    .bailogo {
        width: 200px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {

    /* .header-nav{
        padding: 0px 10px;
    } */
    .navbar {
        background-color:#0066C5;
    }

    .header-nav .container {
        padding: 0;
    }

    .navbar-collapse {
        padding: 20px;
        text-align: center;
    }
.navbar-nav .menu-item {
        padding: 25px;
    }
    .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .bailogo {
        width: 100%;
    }
	.hero-section::after{
		display:none;
	}
	.header-nav{
		background-color: #0066C5
	}
}

/* @media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 100%;
    }
} */


/* ==single page=== */
.inner-blog-img img {
    width: 100%;
}

.inner-blog {
    padding: 50px 0px;
}
.inner-blog h3{
	color:#2c3e50;
	font-family: Arimo Hebrew Subset;
	font-weight: 600;
	 font-size: 40px;
}
.inner-page-title{
	text-align:center;
	color:#2c3e50;
	font-family: Merriweather Sans;
}


    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
	 margin-bottom: 10px;
    }

    th, td {
      border: 1px solid #333;
      padding: 12px 16px;
      vertical-align: middle;
    }

    th {
      background-color: #f2f2f2;
      font-weight: bold;
    }

    tr:nth-child(even) {
      background-color: #fafafa;
    }

    caption {
      caption-side: top;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: left;
    }

  @media (max-width: 600px) {
    
      th, td {
        padding: 10px;
        font-size: 14px;
      }
    }
/* ==home page contact== */
.wpcf7-submit {
    background-color: #e6ad22;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
}
.innerhero-title{
	color: #2c3e50;
    font-family: 'Merriweather Sans';
	font-size: 3.9rem;
    font-weight: 600;
}
/* .inner-page-title {

    color: #fff;

    font-size: 40px;
} */

/* .inner-about-section {
    background-image: url('../images/about-banner.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

} */

/* .inner-contact-section {
    background-image: url('../images/contact-us-customer-support-hotline-600nw-2561218445-min.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-page-industrynews {
    background-image: url('../images/visual-contents-concept-social-networking-600nw-1896527446-min.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-page-industry {
    background-image: url('../images/images-min.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-page-whyus {
    background-image: url('../images/Quality-Assurance-Satisfaction.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-page-work {
    background-image: url('../images/download-min.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.innerr-page-banner {
    background-image: url('../images/download-min.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */

