* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  line-height: 1.5;
}

.logo {
  font-weight: 100;
  font-family: cursive;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 16rem 1rem 10rem;
  text-align: left;
  margin-left: 2.5%;
  position: relative;
  max-width: 1500px;
}

.hero h1 {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.hero p {
  margin-top: 3rem;
  font-size: 1.8rem;
  font-weight: 20px;
  color: #ddd;
}

.btn {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.8rem 2.5rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #ccc;
}

/* Video Section */
.video-section {
  margin: 72px;
  padding: 0;
  width: 90vw;
  display: flex;
  justify-content: center;
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.video-thumb::after {
  content: '▶';
  position: absolute;
  font-size: 4rem;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  pointer-events: none;
}

/* Section with text and image side by side */
 .section-row {
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    flex-wrap: wrap;
}

.section-row.reverse {
    flex-direction: row-reverse;
}

.section-image {
    flex: 1;
    padding: 100px;
}

.section-image img {
    width: 100%;
    height: auto;
}

.section-text {
    flex: 1;
    padding: 20px;
    max-width: 500px;
}

.section-text p {
    font-size: 25px;
    line-height: 1.6;
}

.section-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: white;
    color: rgba(22, 21, 21, 0.444);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}


/*project samles*/

.projects-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
}

.project-card {
    flex: 1;
    min-width: 400px;
    max-width: 700px;
    text-align: left;
}

.project-card img {
    width: 100%;
    margin-bottom: 20px;
}

.project-card h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-weight: bold;
    opacity: 0.85;
}


/* Footer */
footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
}


.custom-footer {
  color: #fff;
  padding: 60px 40px;
  font-family: 'Courier New', monospace;
  display: flex;
  margin-top: 10%;
  flex-direction: column;
  gap: 40px;
}

.footer-links {
  display: flex;
  justify-content: flex-start; 
  gap: 40px; 
}

.footer-column {
  min-width: 140px; 
}


.footer-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
}

.newsletter-btn {
  padding: 15px 25px;
  background: none;
  color: white;
  border: 1px solid #444;
  border-radius: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: white;
  color: black;
}

.social-icons i {
  font-size: 24px;
  margin-left: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-icons i:hover {
  transform: scale(1.1);
}
