body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: CornflowerBlue;
background-color: #4CAF50;
  color: white;
}



#frm {
	border: solid gray 1px;
	width: 20%;
	border-radius: 5px;
	margin: 100px auto;
	background: lightblue;
	padding: 50px;
}
label, input {
    
    display: inline-block;
}

#btn {
	color: #fff;
	background: #337ab7;
	padding: 5px;
	margin-center: 50%;
}

button {
    margin: auto;
    width: 30%;
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    color: aliceblue;
    background-color: #d6a844;
    text-align: center;
}

btn1 {
	color: #fff;
	background: #337ab7;
	padding: 5px;
	margin-right: 80%;
}



#mybg {
    border: 2px solid black;
    padding: 25px;
    background: url(compLogo.png);
    background-repeat: no-repeat;
    background-size: auto;
}

viewport{
  width: device-width;
}

/* Reset */
* { margin:0; padding:0; box-sizing:border-box; font-family:Poppins, Arial, sans-serif; }

body {
  background: #eef3f7;
  padding-bottom: 40px;
}

/* NAVIGATION */
.topnav {
  background: #009999;
  padding: 15px;
  text-align: center;
}

.topnav a {
  color: white;
  padding: 12px 18px;
  margin: 0 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 6px;
}

.topnav a:hover {
  background: #007f7f;
}

.topnav .active {
  background: #006b6b;
}

/* LOGIN FORM */
#frm {
  width: 350px;
  margin: 70px auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

fieldset {
  border: 2px solid #009999;
  border-radius: 8px;
  padding: 20px;
}

legend {
  padding: 0 8px;
  color: #009999;
  font-weight: 700;
  font-size: 18px;
}

p { margin: 15px 0; }

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 15px;
}

#btn {
  width: 100%;
  padding: 10px;
  background: #009999;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

#btn:hover { background: #007f7f; }

/* DATE TEXT */
.date {
  text-align: center;
  margin-top: 20px;
  color: #333;
  font-size: 15px;
}

/* RESPONSIVE */
@media(max-width:400px){
  #frm { width: 90%; padding: 20px; }
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, Arial, sans-serif;
}

body {
    background: #f7fafa;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 2px solid #33cccc;
    text-align: center;
    padding: 20px 10px;
}

.site-header .logo {
    color: #33cccc;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info {
    color: #33cccc;
    font-size: 16px;
}

/* NAV */
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    background: #fdfdfd;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.navbar a:hover {
    background: #33cccc;
    color: white;
}

.navbar .alert {
    color: #e60000;
}

/* MAIN CONTENT */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info-section,
.contact-form-section {
    flex: 1 1 400px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #009999;
    margin-bottom: 15px;
}

.contact-info-section p a {
    color: #33cccc;
    text-decoration: none;
}

/* FORM */
form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #33cccc;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #009999;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 28px 10px;
    background: #222;
    color: #ddd;
    margin-top: 40px;
}

.site-footer .socials {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.site-footer .socials a {
    text-decoration: none;
    color: #33cccc;
    font-weight: 500;
}

.site-footer .socials a:hover {
    color: white;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }
}
/* SERVICES PAGE */
.services-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Intro Section */
.services-intro {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
}

.services-intro h2 {
    font-size: 28px;
    color: #009999;
}

/* Service Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    flex: 2 1 700px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
    padding-bottom: 15px;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: #009999;
    margin: 12px 0;
}

.service-card p {
    font-size: 15px;
    padding: 0 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Sidebar */
.services-sidebar {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    color: #009999;
    margin-bottom: 10px;
}

.sidebar-card ul {
    list-style: disc inside;
}

.dev-img {
    width: 70px;
    border-radius: 50%;
    margin: 10px 0;
}

/* RESPONSIVE */
@media(max-width:900px){
    .services-content {
        flex-direction: column;
    }
    .services-sidebar {
        flex-direction: row;
        justify-content: space-between;
    }
}
