/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Apply Poppins font globally */
    box-sizing: border-box;
    background: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: url('img/bg.jpg') no-repeat center center;
    padding: 60px 0;
    text-align: center;
    color: #fff;
   
     background-size: cover;
    
}

header h1 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
}

header p {
    font-size: 16px;
    font-weight: 300;
}


/* Clients Section */
.clients {
    background: #111;
    padding: 20px 0;
    text-align: center;
    
}

.clients h2 {
    color: #ffff;
    
    
}

.clients img {
    margin: 30 30px;
    max-width: 200px;
}

/* Portfolio Section */
.portfolio {
    padding: 60px 0;
    text-align: center;
}

.portfolio h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.portfolio-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.service {
    max-width: 200px;
}

.service img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    background: #2B2929;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    background-color: #00c3ff;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .clients img {
        margin: 10px;
        max-width: 100px;
    }

    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 9px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .service-list {
        gap: 20px;
    }

    .service {
        max-width: 180px;
    }
}


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Button Styles */
.custom-button {
    background-color: #0043FB;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 300;
    margin: 40px;
}

.custom-button:hover {
    transform: scale(1.05);
}

.custom-button .arrow {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.custom-button:hover .arrow {
    margin-left: 20px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    
    align-items: center;
    padding: 20px;
    justify-content: center;
  
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: lighter;
}

.navbar ul li a:hover {
    color: #00c3ff;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    width: 50px;
    height: auto;
}

.navbar .logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.logo h4{
    font-size: 16px;
    font-weight: 200;
    
}