
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    background-color: #0d0d0d;
    color: #eaeaea;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Navbar */
  header.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  header.navbar h1 {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: bold;
  }
  
  header.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  header.navbar a {
    color: #eaeaea;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
  }
  
  header.navbar a:hover {
    color: #ff6347;
  }
  
  /* General Hero Section Styles */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d0d0d;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  /* Hero Content Layout */
  .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  /* Button Styling */
  .btn-view-work {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background-color: #ff6347;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  /* Hover and Focus Effects */
  .btn-view-work:hover {
    background-color: #ff7a5a;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px); /* Subtle lift effect */
  }
  
  .btn-view-work:active {
    transform: translateY(0); /* Reset lift effect when clicked */
  }
  
  /* Responsive Text Alignment */
  .hero-text {
    max-width: 500px;
    text-align: left;
  }
  
  /* Title Styling */
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
  }
  
  .highlight-name {
    color: #ff6347;
  }
  
  .hero-subtitle {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 400;
    color: #e0e0e0;
  }
  
  .highlight-role {
    font-weight: 600;
    color: #b0b0b0;
  }
  
  /* Image Styling */
  .hero-photo img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
  }
  
  .hero-photo img:hover {
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  }
  
  
  
  /* About Section */
  .about {
    padding: 80px 50px;
    text-align: center;
    background-color: #1a1a1a;
  }
  
  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6347;
  }
  
  .about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
    color: #dcdcdc;
  }
  
  .skills {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
  }
  
  .skills p {
    font-size: 1rem;
    background-color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    color: #ff6347;
  }
  
 /* Portfolio Section Styles */
.portfolio {
  padding: 50px 5%;
  background-color: #0d0d0d; /* Dark theme for sleek style */
  color: #ff6347;
  text-align: center;
}

/* Portfolio Heading */
.portfolio-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff6347;
}

/* Video Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch; /* Ensures uniform height */
}

/* Video Container */
.video-container {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-container:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Iframe for YouTube Video */
.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
  display: block;
}

/* Project Title */
.project-title {
  padding: 10px;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 0 0 10px 10px;
  margin: 0;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .portfolio-heading {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

  /* Contact Section Styling (Black Theme) */
  .contact-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .contact-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  /* Left Side: Form Styling */
  .form-container {
    background-color: #2b2b2b;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    flex: 1;
    min-width: 350px;
  }
  
  .form-container h2 {
    margin-bottom: 60px;
    font-size: 39px;
    font-weight: 700;
    color: #ff6347;
  }
  
  .form-container form input,
  .form-container form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 16px;
    background-color: #1a1a1a;
    color: #fff;
  }
  
  .form-container form input::placeholder,
  .form-container form textarea::placeholder {
    color: #888;
  }
  
  .form-container form button {
    width: 100%;
    padding: 14px;
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .form-container form button:hover {
    background-color: #ff7a5a;
  }
  
  /* Right Side: Info and Social Media */
  .info-container {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
  }
  
  .info-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ff6347;
    margin-bottom: 10px;
  }
  
  /* Align Social Circles to Start at 'R' in "Reach us at" */
  .social-circles {
    display: flex;
    gap: 20px;
    margin: 0; /* Remove extra margins */
    padding-left: 4px; /* Align to start with the "R" */
  }
  
  /* Circular Icons Styling */
  .circle {
    margin-top: 30px; /* Adjust this value as needed */
    transition: margin 0.3s ease-in-out;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .circle:hover {
    transform: scale(1.1);
    background-color: #ff6347;
  }
  
  .circle img {
    width: 40px;
    height: 40px;
  }
  
  .info-container p {
    margin-top: 20px;
    font-size: 16px;
    color: #ccc;
  }
  
  /* Map Styling */
  .map iframe {
    margin-top: 70px;
    transition: margin 0.3s ease-in-out;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .form-container,
    .info-container {
      width: 100%;
    }
  
    .social-circles {
      justify-content: flex-start;
      padding-left: 0;
    }
  }
  
  
  
  /* Footer */
  footer {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  /* Scroll Animation */
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  section {
    animation: fadeIn 1s ease-in-out;
  }
  