﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
 }

 html,
 body {
    height: 100%;
    width: 100%;
    overflow-x: clip;
      margin: 0;
      padding: 0;
  }
.logo {
    color: #000;
 }
.nimz {
    color: #004aad;
 }

 .liot {
    color: #0cc0df;
 }

 .nimz {
    color: #004aad;
 }

 .liot {
    color: #0cc0df;
 }

 .whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 998;
 }

 .chat-popup {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 320px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
 }

 .chat-popup header {
    background: #25D366;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 .chat-popup header .close-btn {
    cursor: pointer;
    font-size: 20px;
 }

 .chat-body {
    padding: 20px;
    font-size: 14px;
 }

 .chat-body p {
    margin-top: 30px;
    margin-bottom: 10px;
 }

 .chat-body .contact-card {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
 }

 .chat-body .contact-card:hover {
    background: #e0e0e0;
 }

 .contact-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
 }

 .contact-card .contact-info {
    flex: 1;
 }

 .contact-card .contact-info .name {
    font-weight: bold;
 }

 .contact-card .contact-info .role {
    font-size: 12px;
    color: gray;
 }
 @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
 }

 .footer {
   background-color: #ffffff;
   color: #ffffff;
   padding: 50px 20px;
   margin-top: 50px;
}

.footer-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1200px;
   margin: auto;
   gap: 30px;
}

.footer-about {
   flex: 1;
   min-width: 250px;
}

.footer-about h2 {
   font-size: 24px;
   font-weight: bold;
   margin-bottom: 15px;
}

.footer-about p {
   font-size: 14px;
   line-height: 1.6;
   color: gray;
}

.footer-links, .footer-follow, .footer-legal {
   flex: 1;
   min-width: 200px;
}

.footer h3 {
   font-size: 18px;
   margin-bottom: 15px;
   color: #000000;
}

.footer ul {
   list-style: none;
   padding: 0;
}

.footer ul li {
   margin-bottom: 10px;
}

.footer ul li a {
   color: gray;
   text-decoration: none;
   font-size: 14px;
   transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
   display: inline-block;
}

.footer ul li a:hover {
   color: #0CC0DF;
   transform: translateX(5px);
}

.social-icons {
   display: flex;
   gap: 15px;
   padding: 0;
}

.social-icons li {
   list-style: none;
}

.social-icons a {
   color: #b3d9ff;
   font-size: 18px;
   transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.social-icons a:hover {
   color: #0CC0DF;
   transform: scale(1.1);
}

.footer-bottom {
   text-align: center;
   border-top: 1px solid #0a3b80;
   padding-top: 10px;
   margin-top: 20px;
}

.footer-bottom p {
   font-size: 12px;
   color: gray;
   margin: 0;
}
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 65px;
    height: 65px;
    background:#25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.7);
    transition: 0.3s ease;
    z-index: 999;
    animation: waFloat 3s infinite ease-in-out;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

.whatsapp-btn:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

@keyframes waFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

:root {
    --nimz-blue: #004aad;
    --nimz-cyan: #0cc0df;
    --text-gray: #555;
    --bg-white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 74, 173, 0.08);
}

.web-development-services {
    padding: 110px 10% 70px;
    margin-top: 0;
    background-color: #fcfcfc;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.section-intro h1 {
    font-size: 3rem;
    color: var(--nimz-blue);
    margin-bottom: 20px;
}

.section-intro p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-intro p span {
    color: var(--nimz-cyan);
    font-weight: bold;
}

.web-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.web-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: left;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 192, 223, 0.1);
}

.web-card:hover {
    transform: translateY(-5px);
    border-color: var(--nimz-cyan);
}

.icon-header {
    color: var(--nimz-cyan);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.web-card h3 {
    font-size: 1.5rem;
    color: var(--nimz-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.web-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.service-contact-strip {
    width: min(1100px, 92%);
    margin: 10px auto 20px;
    padding: 26px 22px;
    border-radius: 14px;
    background: linear-gradient(120deg, #004aad, #0cc0df);
    color: #fff;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 74, 173, 0.24);
}

.service-contact-strip h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-contact-strip p {
    max-width: 760px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.service-contact-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-contact-actions a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.service-contact-actions .primary {
    background: #fff;
    color: #004aad;
}

.service-contact-actions .secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .web-grid {
        grid-template-columns: 1fr;
    }
    .section-intro h1 {
        font-size: 2.2rem;
    }
}
 
 @media screen and (max-width: 768px){
.container {
      padding: 50px;
      width: 100%;
  }

  .left-section,
  .right-section {
      width: 90%;
      padding: 20px;
  }

  .content h1 {
      font-size: 30px;
  }

  .content p {
      font-size: 16px;
  }

  input,
  textarea {
      font-size: 16px;
  }

  button.submit {
.popup {
   width: 300px;
   padding: 16px;
}
.popup button {
   width: 85px;
   height: 40px;
   font-size: 14px;
}
.footer-container {
   flex-direction: column;
   text-align: center;
}

.social-icons {
   justify-content: center;
}

.footer ul li a {
   display: block;
}
}

 

@media (max-width: 768px) {
    .web-development-services {
        padding: 95px 5% 40px;
    }

    .section-intro p {
        margin: 0 auto 35px;
        font-size: 1rem;
    }

    .web-card {
        padding: 28px 22px;
    }

    .chat-popup {
        width: min(92vw, 320px);
        right: 4vw;
        bottom: 95px;
    }

    .whatsapp-btn {
        width: 58px;
        height: 58px;
        bottom: 24px;
        right: 16px;
    }

    .service-contact-strip {
        padding: 22px 14px;
    }

    .service-contact-strip h2 {
        font-size: 1.45rem;
    }
}



