* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Contact Row */
.contact-row {
    background: #1a237e;
    color: #fff;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.contact-info a {
    color: #00acc1;
    text-decoration: none;
}

.quote-btn {
    background: #00796b;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.quote-btn:hover {
    background: #005f5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quote-btn:active {
    transform: translateY(0);
,    box-shadow: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 40px;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #00796b;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

nav ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul.menu li .cta-btn {
    background: #00796b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #00acc1;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    font-size: 20px;
}

.stat span {
    font-size: 32px;
    font-weight: 700;
    color: #00acc1;
}

.hero-buttons .btn {
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    color: #fff;
}

.hero-buttons .btn {
    background: #424242;
}

.hero-buttons .primary {
    background: #1a237e;
}

.hero-buttons .primary:hover {
    background: #005f5f;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 1;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.nav-dot:hover {
    opacity: 1;
}

input[name="slider"] {
    display: none;
}

#slide1:checked ~ .slides {
    transform: translateX(0);
}

#slide2:checked ~ .slides {
    transform: translateX(-25%);
}

#slide3:checked ~ .slides {
    transform: translateX(-50%);
}

#slide4:checked ~ .slides {
    transform: translateX(-75%);
}

input[name="slider"]:checked + .navigation .nav-dot:nth-child(1),
#slide1:checked ~ .navigation .nav-dot:nth-child(1) {
    opacity: 1;
    background: #00acc1;
}

input[name="slider"]:checked + .navigation .nav-dot:nth-child(2),
#slide2:checked ~ .navigation .nav-dot:nth-child(2) {
    opacity: 1;
    background: #00acc1;
}

input[name="slider"]:checked + .navigation .nav-dot:nth-child(3),
#slide3:checked ~ .navigation .nav-dot:nth-child(3) {
    opacity: 1;
    background: #00acc1;
}

input[name="slider"]:checked + .navigation .nav-dot:nth-child(4),
#slide4:checked ~ .navigation .nav-dot:nth-child(4) {
    opacity: 1;
    background: #00acc1;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a237e;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    color: #00796b;
}

.case-study {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a237e;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Founders Section */
.founders {
    padding: 50px 20px;
    text-align: center;
    background: #f5f5f5;
}

.founders h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a237e;
}

.founders p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-member h3 {
    margin: 10px 0;
}

/* Procurement Highlight */
.procurement-highlight {
    padding: 50px 20px;
    text-align: center;
    background: #e0f7fa;
}

.procurement-highlight h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a237e;
}

.procurement-highlight p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a237e;
}

.contact p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    max-width: 400px;
    width: 100%;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info .socials a {
    color: #00796b;
    margin: 0 5px;
    text-decoration: none;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background: #005f5f;
}

.contact-form .form-message {
    font-size: 14px;
    color: #00796b;
    text-align: center;
    margin-top: 10px;
}

/* Blog Section */
.blog {
    padding: 50px 20px;
    text-align: center;
}

.blog h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a237e;
}

.blog p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.blog-posts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-post {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
}

.blog-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-post h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-post p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-post .btn {
    background: #1a237e;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.quote-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-modal:hover {
    color: #00796b;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: #00796b;
    outline: none;
}

.quote-form textarea {
    height: 120px;
    resize: vertical;
}

.quote-form .btn {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.quote-form .btn:hover {
    background: #005f5f;
    transform: translateY(-2px);
}

.form-message {
    font-size: 14px;
    color: #00796b;
    text-align: center;
    margin-top: 10px;
}

/* Animation for Modal */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
footer {
    background: #1a237e;
    color: #fff;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #fff;
}

.footer-links a {
    color: #00acc1;
    margin: 0 10px;
    text-decoration: none;
}

.live-chat {
    background: #00796b;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        text-align: center;
        padding: 10px 20px;
    }

    .contact-row .contact-info,
    .contact-row .quote-btn {
        margin: 5px 0;
    }

    .menu-toggle {
        display: block;
    }

    nav ul.menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.menu.active {
        display: flex;
    }

    nav ul.menu li {
        margin: 10px 0;
    }

    nav ul.menu li a {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .stats {
        flex-direction: column;
        gap: 10px;
    }

    .service-cards, .team, .contact-content, .blog-posts {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        margin-top: 80px;
    }

    .quote-modal-content {
        width: 95%;
        padding: 20px;
    }

    .quote-form input,
    .quote-form textarea,
    .quote-form select {
        font-size: 14px;
    }

    .quote-form .btn {
        font-size: 14px;
    }
}


/* Solutions Section */
.solutions {
    padding: 50px 20px;
    text-align: center;
    background: #f5f5f5;
}

.solutions h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a237e;
}

.solution-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.solution-cards .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.solution-cards .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.solution-cards .card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a237e;
}

.solution-cards .card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.solution-cards .card .btn {
    background: #1a237e;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.solution-cards .card .btn:hover {
    background: #005f5f;
    transform: translateY(-2px);
}

/* Why Choose ANS Section */
.why-ans {
    padding: 50px 20px;
    text-align: center;
}

.why-ans h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a237e;
}

.why-ans p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.why-ans p a {
    color: #00796b;
    text-decoration: none;
}

.why-ans p a:hover {
    text-decoration: underline;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-cards .why-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
}

.why-cards .why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a237e;
}

.why-cards .why-card p {
    font-size: 14px;
    color: #666;
}

.why-ans .btn {
    background: #1a237e;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s, transform 0.2s;
}

.why-ans .btn:hover {
    background: #005f5f;
    transform: translateY(-2px);
}

/* Responsive Design for Solutions and Why ANS */
@media (max-width: 768px) {
    .solution-cards, .why-cards {
        flex-direction: column;
        align-items: center;
    }

    .solution-cards .card, .why-cards .why-card {
        width: 100%;
        max-width: 400px;
    }

    .solution-cards .card img {
        height: 150px;
    }
}

.allmodals

/* Modal background overlay */
.modal {
  display: flexbox; /* hidden by default */
  position:relative
  top: 0; left: 100%;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;

  display: flex;             /* flexbox centers the card */
  justify-content: center;
  align-items: center;
  padding: 20px;             /* space on small screens */
}

/* Modal card */
.modal-content {
  width: 80%;                /* 80% of page width */
  max-width: 800px;          /* don’t get too wide on big screens */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 20px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;          /* prevents overflow on smaller screens */
}

/* Close button */
.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #444;
}

/* Partners Section */
.partners {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.partners h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.partner-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-cards .card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.partner-cards .card:hover {
    transform: translateY(-5px);
}

.partner-cards .card .partner-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    object-fit: contain;
}

.partner-cards .card h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.partner-cards .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-cards {
        flex-direction: column;
        align-items: center;
    }

    .partner-cards .card {
        max-width: 100%;
    }

    .partners h2 {
        font-size: 2rem;
    }

    .partner-cards .card .partner-logo {
        max-width: 120px;
    }
}