*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;

}
body {
    background: #f1f5f9;
}

.nav_bar{
    display: flex;
      align-items: center;
      justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 50px;
    
    color: white;
    margin: 2%;
    padding: 0.5%;
    padding-right: 2%;
    
    }

header img {
      height: 60px;
      border-radius: 50px;
    }

.nav1 a{
margin:0 15px;
text-decoration: none;
font-weight: bold;
color: black;
}

/* SECTION 1 */

.hero_section{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 9%;
   padding: 3%;
   
   border-radius: 50px;
       background: linear-gradient(135deg, #4e73df, #36b9cc);

}
.hero_section img {
    width: 500px;
    border-radius: 5%;
    box-shadow: 0 10px 205px rgba(0, 0, 0, 0.2);
}
.hero_section h1 {
    color: rgb(255, 255, 255);
    font-size: 36px;
}

.hero_section p {
    color: #e0f2fe;
    margin-top: 15px;
    line-height: 1.6;
}
.hero-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: white;
    color: #6b13c3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    
}

.hero-btn:hover {
    background: #e5e7eb;
}


/* SECTION 2 */

.services-overview {
    text-align: center;
    padding: 60px 20px;
}

.services-overview h2 {
    font-size: 32px;
}

.sub-text {
    color: #777;
    margin: 10px 0 40px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 25px;
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.card a{
  text-decoration: none;
  color:black;
}

.card p {
    color: #666;
    font-size: 14px;
}

.view-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background: red;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}


/* section 3 */

.tech-section {
    text-align: center;
    padding: 60px 20px;
}

.tech-section h2 {
    font-size: 32px;
}

.sub-text {
    color: #777;
    margin: 10px 0 30px;
}

/* Tabs */
.tech-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tech-tabs button {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: 0.3s;
}

.tech-tabs button.active {
    background: #c98a2e;
    color: white;
}

.tech-tabs button:hover {
    background: #ddd;
}

/* Content */
.content-box {
    display: none;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.content-box.active {
    display: block;
}

/* List styling */
.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box li {
    margin: 10px 0;
    font-size: 16px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.tech-card {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
    text-align: left;
    width: 220px;
}

.tech-card:hover {
    border-color: #c98a2e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.tech-card h4 {
    margin-bottom: 5px;
}

.tech-card p {
    color: #666;
    font-size: 14px;
}









.footer {
    background: #494343;
    color: #ccc;
    padding: 50px 20px 20px;
    border-radius: 5px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    max-width: 250px;
}

.footer-col h2,
.footer-col h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: red;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}





/* Media Query      Tablet View  */
@media (max-width: 768px) {

  /* Navbar */
  .nav_bar {
    flex-direction: column;
    gap: 10px;
  }

  .nav1 {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero section */
  .hero_section {
    flex-direction: column;
    text-align: center;
  }

  .hero_section img {
    width: 100%;
  }

  /* Services cards */
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
  }

  /* Tech cards */
  .tech-card {
    width: 45%; /* 2 cards */
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

@media (max-width: 480px) {

  /* Navbar links */
  .nav1 {
    flex-direction: column;
    gap: 8px;
  }

  /* Hero text */
  .hero_section h1 {
    font-size: 24px;
  }

  .hero_section p {
    font-size: 14px;
  }

  /* Services cards */
  .card {
    width: 100%;
  }

  /* Tech tabs */
  .tech-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tech-tabs button {
    width: 90%;
  }

  /* Tech cards */
  .tech-card {
    width: 100%; /* 1 card per row */
  }

}



/* Mobile View */
@media (max-width: 480px) {

  /* Navbar links */
  .nav1 {
    flex-direction: column;
    gap: 8px;
  }

  /* Hero text */
  .hero_section h1 {
    font-size: 24px;
  }

  .hero_section p {
    font-size: 14px;
  }

  /* Services cards */
  .card {
    width: 100%;
  }

  /* Tech tabs */
  .tech-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tech-tabs button {
    width: 90%;
  }

  /* Tech cards */
  .tech-card {
    width: 100%; /* 1 card per row */
  }

}
/* Large Screen */
@media (min-width: 1200px) {

  .content-box {
    max-width: 1200px;
  }

}

/* Contact Page CSS */

.contact-wrapper {
    width: 80%;
    margin: 50px auto;
}

.contact-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Main box */
.contact-box {
    display: flex;
    gap: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.contact-box:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

/* Left */
.contact-info {
    width: 40%;
    color: #4e73df;
    text-decoration: none;
}

/* Right */
.contact-map {
    width: 60%;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    border: none;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
}


     .form-container {
            width: 300px;
            margin: 100px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

input {
width: 100%;
margin-top: 5px;
margin-bottom: 10px;
border: 1px solid #ccc;
border: none;
border-radius: 8px;
padding: 12px;
background: #f1f5f9;
transition: 0.3s;
}
input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px #4e73df;
}

        .error {
            color: red;
            font-size: 12px;
        }

        input[type="submit"] {
            background: #007bff;
            color: white;
            border: none;
            cursor: pointer;
        }







/* Services CSS */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}




/* Heading */
.heading{
    text-align:center;
    margin:50px 0;
}

.heading h1{
    font-size:40px;
}

/* Services Grid */
.services-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:40px;
}

/* Card */
.card{
    background:rgba(255,255,255,0.1);
    border-radius:15px;
    padding:30px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:0.4s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* Icon */
.card i{
    font-size:40px;
    margin-bottom:15px;
    color:#00ffd5;
}

/* Button */
.btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#00ffd5;
    color:black;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:white;
}

/* Modal */
.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
}

.modal-content{
    background:white;
    color:black;
    padding:30px;
    border-radius:10px;
    max-width:400px;
    text-align:center;
}

.close{
    float:right;
    cursor:pointer;
    font-size:20px;
}

