* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* ===== Top Header ===== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
}

.top-header .contact span {
  margin-right: 15px;
}

.top-header .social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.top-header .social a:hover {
  color: #f39c12;
}

/* ===== Navigation ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

nav .nav-links {
  display: flex;
  list-style: none;
}

nav .nav-links li {
  margin-left: 25px;
}

nav .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}
nav .nav-links a:hover {
  color: #f39c12;
}

.about-section {
    padding: 50px;
    background-color: #f4f4f4;
    
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 1200px;
    height: 330px;
    border-radius: 5px;
    padding-right: 50px;
    padding-left: 70px;
}

.about-text {
    text-align: center;
    flex: 1;
    padding-left: 30px;
           
}

.about-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body */
body {
  background: #f9f9f9;
  color: #333;
}

/* Container */
.section-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  gap: 20px;
  padding: 0 15px;
}

/* Card */
.card {
  flex: 1;
  min-width: 320px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Image */
.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #1a237e;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
  }
}


/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #4CAF50, #00BCD4);
  color: white;
  padding: 15px 30px;
  font-size: 14px;
}

/* Left section */
.footer-left a {
  color: white;
  text-decoration: underline;
}

/* Center social icons */
.footer-center {
  display: flex;
  gap: 15px;
}

.footer-center a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-center a:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Right section */
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right span {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
