/* static/css/contact.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;

    /* Adjust according to header height */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/* Main Content Styles */
.main-content {
    padding: 40px 20px;
    max-width: 100%;
    margin: auto;

    border-radius: 8px;

}

.section {
    margin-bottom: 40px;
    padding: 20px;
}

.section h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #0078d7;
    margin-bottom: 20px;
    text-align: left;
    font-size: 28px;
}

/* Feature Box */
.feature-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 20px;
    background-color: white;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    gap: 20px;
}


/* Text content inside feature box */
.feature-box p {
    font-family: sans-serif;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

/* Image styling */
.feature-box img {
    width: 200px;
    max-width: 50%;
    height: auto;
    border-radius: 5px;
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-box p {
        text-align: center;
    }

    .section h2 {
        text-align: center;
    }

    .feature-box img {
        width: 200px;
    }
}

.customers {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    /* full viewport height */
}

.cs_header {
    text-align: center;
    padding: 20px;
}

.cs_header p {
    margin: 0;
    font-size: 18px;
    color: #000204;
}

.intro {
    text-align: center;
    padding: 40px 20px;
}

.intro .hed h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(6, 94, 149);
    font-size: 50px;
    margin-bottom: 20px;
}

.intro .hed p {
    color: black;
    font-size: 25px;
    line-height: 1.6;
}

.intro .btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.intro .btn li {
    display: inline;
}

.intro .btn .ct-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.intro .btn .c-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #1c55c0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-color: #007bff;
}


.intro .btn .ct-btn:hover {
    background-color: #0056b3;
}

.intro .btn .c-btn:hover {
    background-color: #0056b3;
    color: white;
}

.cnt-header {
    text-align: center;
    padding: 90px;
    border: 2px solid #ccc;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto 20px auto;
    /* center the header container */
}

.cnt-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    /* center the flex container */
    flex-wrap: wrap;
    /* optional: allows buttons to wrap on smaller screens */
}

.cnt-btn a {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.cnt-btn .cnt-Contact {
    background-color: #007bff;
    color: white;
}

.cnt-btn .cnt-Contact:hover {
    background-color: #0056b3;
}

.cnt-btn .cnt-Pricing {
    background-color: white;
    color: #007bff;
}

.cnt-btn .cnt-Pricing:hover {
    background-color: #e6f0ff;
}

.cta {
    padding: 40px;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 98%;
    margin: 0 auto;
    flex-wrap: wrap;
    border: 2px solid rgb(208, 204, 204);
    border-radius: 15px;
    padding: 90px;
    box-sizing: border-box;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    color: rgb(6, 94, 149);
}

.cta-text p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background-color: #e6f0ff;
}

.cta-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


.sol {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}


.sol h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(6, 94, 149);
    font-size: 40px;
    margin-bottom: 10px;
}

.sol p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
}

.sol-class {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.sol-list {
    display: flex;
    /* Makes the list items appear side by side */
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    gap: 60px;
    /* Space between items */
    list-style: none;
    /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.sol-list li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.sol-list li a:hover {
    background-color: #b6b7b7;
    color: #0056b3;
}


.img_txt {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen section */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bg-img {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.img_content {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 700px;
    color: white;
}

.img_content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.img_content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.img-but {
    display: flex;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.img-but li a {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 20px;
}

.img-but li a:hover {
    background-color: #0056b3;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  display: flex;                /* ✅ FLEX LAYOUT */
  align-items: center;          /* vertical center */
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 8%;
  box-sizing: border-box;
}

/* LEFT SIDE CONTENT */
.slide-content {
  max-width: 520px;
  color: #0e0e0e;
}

/* RIGHT SIDE IMAGE */
.slide-img {
  width: 45%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

/* BUTTONS */
.img-but {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.img-but li a {
  padding: 12px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
}

.img-but li a:hover {
  background-color: #0056b3;
}
