/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
header .logo img {
  height: 50px;
}

header nav a {
  color: white;
  margin: 0 10px;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
}

.hero .btn {
  padding: 12px 24px;
  font-size: 1rem;
  margin-top: 20px;
}

/* Section Headings */
h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #003366;
}

/* Cards */
.card {
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-8px);
}

/* Newsletter */
.newsletter input[type="email"] {
  border: none;
  padding: 12px;
  border-radius: 6px;
}

.newsletter .btn {
  padding: 12px 20px;
}

/* Contact */
.contact a {
  color: #ff6600;
  font-weight: 500;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.social-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-sidebar li {
  width: 44px;
  margin: 5px 0;
  overflow: hidden;
  transition: width 0.3s;
  background-color: #444;
  border-radius: 0 30px 30px 0;
}

.social-sidebar li:hover {
  width: 180px;
}

.social-sidebar li a {
  display: flex;
  align-items: center;
  color: white;
  padding: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.social-sidebar li a i {
  font-size: 18px;
  margin-right: 10px;
}

.social-sidebar .wp a { background-color: #25d366; }
.social-sidebar .fb a { background-color: #3b5998; }
.social-sidebar .ins a { background-color: #e4405f; }
.social-sidebar .linke a { background-color: #0077b5; }
.social-sidebar .yt a { background-color: #cd201f; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  header .contact-info {
    display: none;
  }

  .social-sidebar li:hover {
    width: 140px;
  }
  .card {
  transition: transform 0.2s ease;
}
.card:hover {
  transform: scale(1.01);
}
}