/* -------------------------------------------
   GSITEGY - AI & Cloud Consulting Website
   ------------------------------------------- */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: white;
  color: blue;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  height: 20vh;
}

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

.logo-img {
  width: 200px;
  height: 200px;
  border-radius: 200%;
  
}

.logo-text {
  font-weight: 800;
  font-size: 2em;
}

.nav-links a {
  color: blue;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 1000;
  font-size: large;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #536c8a, #617d93);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  text-align: center;
  padding: 0 10px;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: white;
  color: #0d47a1;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #e3f2fd;
}

/* Section Styling */
.section {
  padding: 60px 80px;
  text-align: center;
}

.section h2 {
  margin-bottom: 30px;
  color: #0d47a1;
}

.alt-bg {
  background-color: #f4f6f8;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* About Section (Flexbox) */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.about-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
  font-size: 1em;
  color: #333;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.contact-form button {
  align-self: center;
  width: 50%;
}

/* Footer */
.footer {
  background-color: #0d47a1;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 40px 20px;
  }
  .hero-content h1 {
    font-size: 1.8em;
  }
}
