/* General Styling */
@font-face {
    font-family: 'Code Pro';
    src: url('../fonts/CodePro-Black.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Code Pro', sans-serif;
    color: #767676;
}
/*.top-bar{

}*/
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff; /* Add background if needed */
        width: 100%;
    height: 35px;
}
.top-bar2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Ensures it stays above other elements */
    background-color: #fff; /* Optional to avoid transparency */
}


/* Navbar Styling */
/*.navbar {
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}*/
/*
.navbar-brand img {
    height: 65px;
}*/
.footer-brand img {
    height: 90px;
}

.navbar-nav .nav-link {
    color: black !important;
    font-size: 18px;
    margin: 0 15px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #767676 !important;
}

.dropdown-menu {
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Make Navbar Sticky */
.navbar {
    position: sticky;
    top: 35px;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0 5px;
    transition: all 0.3s ease-in-out;

    

}

/* When Scrolling - Optional Shrink Effect */
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

/* Adjust Navbar Brand Logo */
.navbar-brand img {
    height: 65px;
    transition: height 0.3s ease-in-out;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}


.contact-btn {
    background: #37a954;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}
.contact-btn2 {
    background: #ea4336;
    color: #fff;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 0.3s;
    margin: 30px auto;
    display: table;

}

.contact-btn:hover {
    background: #767676;
    color: #fff;
}
.banner-section {
    background: url('https://webkic.com/images/logo/header.webp') no-repeat center center;
    background-size: cover;
    height: 650px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    color: white; /* Ensuring visibility */
    position: relative;
}
@media (max-width: 768px) {  /* Adjusts for tablets and smaller screens */
    .banner-section {
        background: none !important;  /* Removes the background image */
        height: auto; /* Adjusts height dynamically */
        color: black; /* Ensures text remains visible */
        padding: 50px 0; /* Adds spacing */
    }
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Adding overlay for better text visibility */
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Code Pro', sans-serif;
    position: relative;
    z-index: 1;
    color: #000;
}

.banner-description {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    color: #767676;
}

.banner-btn {
    background: #ea4336;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.banner-btn:hover {
    background: #c00d0d;
    color: #fff;
}

.features-section {
    padding: 60px 0;
    background: #f8f9fa; /* Light background */
    text-align: center;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
    color: #ea4336; /* Highlight color */
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.feature-box p {
    font-size: 14px;
    color: #767676;
}
.about-section {
    padding: 60px 0;
    background: #fff;
    background: url('https://webkic.com/images/logo/wave.png') no-repeat center center;
    background-size: cover;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.about-description {
    font-size: 1.2rem;
    color: #767676;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 1rem;
    color: #767676;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: #ea4336;
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-btn {
    background: #ea4336;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.about-btn:hover {
    background: #c00d0d;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        padding-top: 25px;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-btn {
        padding: 10px 20px;
    }
    .navbar {
    position: sticky;
    top: 10px;
 
}
}


.process-section {
    text-align: center;
    padding: 80px 0 100px;
    background: #f9f9f9;
}

.section-heading .sub-title {
    color: #ea4336;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
}

/* Roadmap */
.process-roadmap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    width: 150px;
}

/* Adjust positions for zig-zag effect */
.step-up {
    transform: translateY(-40px);
}

.step-down {
    transform: translateY(40px);
}

.process-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
}

.process-icon img {
    width: 50%;
}

.process-step p {
    font-size: 16px;
    color: #222;
    font-weight: bold;
}

/* Dotted Line */
.process-line {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right, #ccc, #ccc 5px, transparent 5px, transparent 10px);
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .process-roadmap {
        flex-direction: column;
        align-items: center;
    }

    .step-up, .step-down {
        transform: none;
    }

    .process-line {
        width: 2px;
        height: 40px;
        margin: 10px auto;
        background: repeating-linear-gradient(to bottom, #ccc, #ccc 5px, transparent 5px, transparent 10px);
    }
}





.services-section {
    text-align: center;
    padding: 60px 0 80px;
    background: #fff;
}

.section-heading .sub-title {
    color: #ea4336;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-tab {
    background: #f2f2f2;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    min-width: 200px;
}

.service-tab img {
    width: 50px;
    margin-bottom: 10px;
    padding-top: 15px;
}

.service-tab p {
    font-size: 17px;
    font-weight: bold;
    color: #333;
}

.service-tab.active {
    background: #ea4336;
    color: #fff;
}

.service-tab.active p {
    color: #fff;
}

/* Service Content */
.service-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 85%;
    margin: 0 auto;
}
.service-item {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin: auto;
    gap: 20px;
}

.service-item.active {
    display: flex;
}

.service-item img {
    width: 50%;
    max-width: 300px;
    object-fit: contain;
}

.service-item div {
    width: 50%;
    text-align: left;
}

.service-item h3 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.service-item p {
    font-size: 16px;
    color: #555;
    padding-top: 10px;
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item img,
    .service-item div {
        width: 100%;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }

    
}

.counter-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
/*    background: linear-gradient(45deg, #ff6347, #ff4c4c);*/
background: #408dd9;
    padding: 20px;
    color: white;
    text-align: center;
    border-radius: 10px;
    gap: 20px; /* Adds spacing between items */
}

.counter-box {
    text-align: center;
    min-width: 150px; /* Ensures counters do not shrink too much */
    flex: 1; /* Helps distribute space evenly */
    padding-top: 5px;
}

.counter {
    font-size: 30px;
    font-weight: bold;
}

.counter-box p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counter-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .counter-box {
        width: 100%; /* Takes full width on smaller screens */
        max-width: 300px; /* Limits width for readability */
    }
}


@media (max-width: 768px) {
 .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff; /* Add background if needed */
        width: 100%;
    height: 10px;
}
    .banner-section {
        height: 400px; /* Reduce height for mobile */
        background-position: center top;
        text-align: center; /* Center align text */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-title {
        font-size: 2rem; /* Reduce font size */
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-btn {
        padding: 10px 20px;
    }
      .feature-box {
        margin-bottom: 30px;
    }
}

.contact-section {
    padding: 40px;
    background: #f8f9fa;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 15px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #ff4c4c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #d43f3f;
}

/* Contact Info Card */
.contact-info {
    flex: 1;
    min-width: 320px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    margin: 5px 0;
    font-size: 16px;
}

.info-card i {
    color: #ff4c4c;
    margin-right: 8px;
}

/* Google Map */
.google-map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
/* Footer Styling */
.footer {
    background: #f9f9f9;
    color: #333;
    padding: 50px 20px 0px;
    border-top: 3px solid #ff4c4c;
/*    margin-top: 90px;*/
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff4c4c;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.5;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff4c4c;
}

/* Footer Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ff4c4c;
}

/* Contact Info */
.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-column i {
    color: #ff4c4c;
    margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    padding-bottom: 40px;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons a {
        margin: 5px;
    }
    #points{
        padding-right: 0px!important;
    }
    #emp{
        padding: 0px!important;

    }
    .footer-bottom {
  
    padding-bottom: 15px;
}
}

.section-title{
    color: #000;
}
.contact-line{
    color: #000;
}
.contact-line2{
    color: #000;
    font-size: 20px;
}
#trafic{
    margin: 0 auto;
}


/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ccc;
}

.contact-form .btn-primary {
    background-color: #ea4336;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-form .btn-primary:hover {
    background-color: #c00d0d;
}

/* Contact Info Card */
.contact-info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #ea4336;
    margin-right: 10px;
    font-size: 18px;
}

/* Google Map */
.google-map iframe {
    border-radius: 10px;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, #767676, #000);
    color: white;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: bold;
}

.hero-section p {
    font-size: 18px;
    margin-top: 10px;
}

/* About Content */
.about-content img {
    border-radius: 10px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8f9fa;
    padding: 60px 0;
}

.why-choose-us h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ea4336;
}

.choose-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.choose-box i {
    font-size: 40px;
    color: #767676;
    margin-bottom: 10px;
}

.choose-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}
/* Hero Section with Breadcrumb */
.hero-section {
    background: #333;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ddd;
}
.vision-values-section {
    padding: 60px 0;
    background: #fff;
}

.vision-values-section h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.vision-values-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.vision-values-section ul {
    list-style: none;
    padding: 0;
}

.vision-values-section ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.vision-values-section .btn {
    background: #ea4336;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
}

.vision-values-section .btn:hover {
    background: #c32b24;
}
.fw-bold{
    color: #ea4336;
}
.service-p{
    color: #000;
}