:root {
    --primary: #00A0E3;
    --primary-hover: #1d4ed8;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
  
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}


/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    width: 150px; /* Logo width */
}

.logo img {
    width: 150px; /* Logo image width */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

/* Hover effect */
.nav-links a:hover {
    color: var(--primary);
}

/* Active menu item */
.nav-links a.active {
    color: var(--primary);
    font-weight: bold;
    border-bottom: 2px solid var(--primary);
}


/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    text-align: left;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
}


.hero h1 {
    font-size: 3rem;
    max-width: 40rem;
    margin-bottom: 1rem;
    
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 30rem;
    
   
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    margin-top: 1rem; /* Adjust this value as needed */
}

.container { 
    text-align: left; /* Ensures the button stays left-aligned within a container */
}

.cta-button:hover {
    background: var(--primary-hover);
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.cta-button1 {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border-color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    
}

.cta-button1:hover {
    background: var(--gray);
}

/* Features Section */
    .features-container {
        display: flex;
        text-align: center;
    }
    .features-header {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .features-header p {
        margin-top: 0;
        font-size: 16px;
        color: #555;
    }
    .features-image {
        flex: 1;
        max-width: 50%;
        height: auto;
        display: flex;
        align-items: stretch;
        margin-top: -3%;
    }
    .feature-image {
        height: 100%;
    }
    .features-content {
        flex: 1;
        max-width: 50%;
        text-align: left;
        margin-top: 2%;
    }
    .features-wrapper {
        display: flex;
        flex-direction: column;
    }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        text-align: left;
    }
    .feature-icon i {
        color: #00A0E3;
    }
    .feature-divider {
        border: none;
        height: 1px;
        background: #ccc;
        margin: 10px 0;
    }
    .cta-container {
        text-align: center;
        margin-top: 20px;
    }

/* solutions Section */

.solutions {
        padding: 5rem 0;
}

.solutions h2 {
    text-align: center;
    font-size: 2rem;
    
}

.solutions p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 3rem;
}

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

.solutions-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.solutions-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solutions-card .icon {
    margin-bottom: 1rem;
}

.solutions-card h3 {
    margin-bottom: 0.5rem;
}

.solutions-card p {
    color: var(--text-secondary);
    text-align: left;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features-grid,
    .solutions-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us Section */
.about {
    padding: 5rem 0;
    background: var(--bg-light);
    
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    
}

.about p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 3rem;
}

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

.about-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    text-align: center;
}

.about-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
}


.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-layout {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.contact-info,
.contact-form {
    flex: 1; /* Ensures equal width */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    justify-content: space-between; /* Spaces out contact items and map */
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-info .map {
    flex-grow: 1;
    height: 100%; /* Ensures full height */
    margin-top: 1rem;
}

.contact-info .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%; /* Ensures the form fills its column height */
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }
}


/* Footer */
footer {
    background: #111827;
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    margin: 0;
    flex: 1;
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 1rem;
    text-align: right;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Policy Section */
.policy {
    padding: 5rem 0;
    background: var(--bg-light);
}

.policy h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.policy h3 {
    color: var(--primary);
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.policy p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.row h1 {
  width: 100%;
  text-align: center;
  font-size: 3.75em;
  margin: 0.6em 0;
  font-weight: 600;
  color: #070024;
}
.column {
  padding: 1em;
}
.card {
  padding: 3.1em 1.25em;
  text-align: center;
  background: linear-gradient(0deg, #397ef6 10px, transparent 10px);
  background-repeat: no-repeat;
  background-position: 0 0.62em;
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
  border-radius: 0.5em;
  transition: 0.5s;
  cursor: pointer;
}
.card .icon {
  font-size: 2.5em;
  height: 2em;
  width: 2em;
  margin: auto;
  background-color: #397ef6;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
}
.icon:before {
  position: absolute;
  content: "";
  height: 1.5em;
  width: 1.5em;
  border: 0.12em solid #397ef6;
  border-radius: 50%;
  transition: 0.5s;
}
.card h3 {
  font-size: 1.3em;
  margin: 1em 0 1.4em 0;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #070024;
}
.card p {
  line-height: 2em;
  color: #625a71;
}
.card:hover {
  background-position: 0;
}
.card:hover .icon:before {
  height: 2.25em;
  width: 2.25em;
}
@media screen and (min-width: 768px) {
  section {
    padding: 1em 7em;
  }
}
@media screen and (min-width: 992px) {
  section {
    padding: 1em;
  }
  .card {
    padding: 5em 2em;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1em;
  }
}

.technology-section {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.technology-section h2 {
    text-align: center;
    font-size: 2rem;
    
}

.technology-section p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 2rem;
}

.technology-list-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.technology-item {
    flex: 1;
    max-width: 300px;
}

.technology-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.technology-item p {
    font-size: 16px;
}

.divider {
    width: 1px;
    height: 60px;
    background: var(--white);
}

.cta-container {
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.cta-button:hover {
    background: var(--primary-hover);
    color: var(--white);
}

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

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