* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: transparent;
    color: #333;
}

header {
    background: transparent;
    padding: 15px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    
}

.logo img {
    width: 50px;
    height: auto;
}

.logo a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.logo h4 {
    color: white;
    font-size: 24px;
    margin: 0;
    display: inline-flex;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.nav-links li {
    margin: 0 15px;
    
}

.nav-links a {
    color:black ;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    
}

.nav-links a:hover {
    color: #ffcc00;
}

.top {
    text-align: center;
    padding: 100px 20px;
    background: url('img/street.png') no-repeat center center/cover;
    color: white;
}

.top h1 {
    font-size: 50px;
    
}

.top p {
    font-size: 20px;
    margin: 20px 0;
    
}

.button {
    display: inline-block;
    background: #ffcc00;
    color: #1e3a5f;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.button:hover {
    background: #e0b800;
}

.services, .testimonials, .blog {
    padding: 60px 10%;
    text-align: center;
    background: white;
}

.service-boxes, .testimonial-boxes, .blog-posts {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    
}

.service-boxes :hover {
    background-color: #e0b800;
    color: white;
    transition: 0.3s;
}

.service, .testimonial-box, .blog-post {
    background: #f9f9f9;
    padding: 20px;
    flex: 1;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: 0.3s;
    
}

.service:hover, .testimonial-box:hover, .blog-post:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.service-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-container img {
    width: 50%  ;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    border-radius: 10px;
}


 .section {
            background: white;
            margin: 20px 0;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .team-member {
            display: inline-block;
            margin: 20px;
            text-align: center;
        }
        
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid #0056b3;
        }

footer {
    text-align: center;
    padding: 20px;
    background: #1e3a5f;
    color: white;
    margin-top: 20px;
}

.button1 {
   padding: 5px;
    background-color: navy;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
}


.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}
.text-content {
    max-width: 50%;
}
h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}
h2 {
    font-size: 20px;
    color: orange;
}
.service p {
    font-size: 16px;
    line-height: 1.6;
    color: gray;
}
.btn {
    background-color: #290beb;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    border-radius: 5px;
}
.btn:hover {
    background-color: red;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    background-color: white; /* Dark Blue Background */
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Left Section (Text) */
.text-section {
    width: 40%;
    color: white;
}

.text-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.text-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Grid Section */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 50%;
    position: relative;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-card .title {
    padding: 15px;
    color: white;
    font-size: 16px;
}

/* Staggered Effect */
.service-card:nth-child(odd) {
    transform: translateY(-10px);
}

.service-card:nth-child(even) {
    transform: translateY(10px);
}

.service-card:hover {
    transform: scale(1.05);
}

.cta {
    background-color: whitesmoke ;
    color: #333;
    padding: 50px 20px;
    text-align: center;
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    color: #e0b800;
    background-color: white;
  }

  .cta .btn { min-width: max-content; }

  .cta .section-title {
    max-width: 30ch;
    margin-block-end: 0;
  }

.cta .section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta .section-title p {
    font-size: 18px;
    color: #ccc;
}

.cta .btn {
    background-color: red;
    color: #1e3a5f;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #e0b800;
}


.container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.image-section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.image-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bordered-corner {
  position: relative;
  padding-top: 40px; /* space for the border design */
}

.bordered-corner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: rgb(78, 78, 184); /* green color */
}

.bordered-corner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 30px;
  background-color: rgb(78, 78, 184); /* green color */
}

.text-section {
  flex: 2;
  padding: 20px;
}

.text-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
}

.text-section h2 {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
}

.text-section p {
  line-height: 1.6;
  margin-bottom: 15px;
    color: #333;
}
.text-section p:last-child {
  margin-bottom: 0;
}

.text-section a {
  display: inline-block;
  background-color: #1e3a5f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.text-section a:hover {
  background-color: #ffcc00;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer {
  background-color: #2d3748;
  color: #f1f1f1;
  padding: 60px 40px 30px;
}

.cta-section {
  text-align: left;
  color: white;
  margin-bottom: 40px;
  justify-content: center;
    display: flex left;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
    font-weight: bold;
    color: white;
}

.cta-button {
  background-color: #7b8df1;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
    transition: background-color 0.3s ease;
  display: inline-flex;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
  
}

.footer-col {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  padding: 20px;
  color: #f1f1f1;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  transition: color 0.3s ease;

}

.logo-col {
  max-width: 260px;
}

.footer-logo {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-weight: 600;
  text-decoration: none;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  text-decoration: none;
  margin: 6px 0;
  display: block;
  font-size: 14px;
  transition: color 0.3s ease;

}

.footer-col a:hover {
  text-decoration: none;
  color: #7b8df1;
  
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 16px;
    transition: color 0.3s ease;
    justify-content: center;
    display: inline-flex;
}

.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  flex: 1;
  border-radius: 6px 0 0 6px;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #7b8df1;
  border: none;
  color: white;
  border-radius: 0 6px 6px 0;
  font-weight: bold;
  cursor: pointer;
}

hr {
  border: none;
  height: 1px;
  background-color: #444;
  margin: 40px 0;
}
