/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;

  }

  input[type=number] {   
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

  body, h3, a, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* General Reset */

html {
    font-family: 'Roboto', sans-serif;
    background-color: #191919;
    color: #fff;
    box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #191919;
  color: #191919;    
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure the body takes the full viewport height */
    line-height: 1.6;  
}

header {
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

nav {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.section-box {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .event-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
  }
  
  .contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
  }



  .contact-info i {
    color: #f7d42f;
}
  
  .contact-item a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: #f7d42f;
  }
  
  
.logo h3 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
}

.contact-mail {
    margin-top: 5px;
}

.email a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.email i {
    margin-right: 8px;
    color: #3498db;
}

/* Menu List */
.menu-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    padding: 10px 20px;
  }

.main-menu {
    display: flex;
    gap: 20px;
}

.main-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: #f7d42f;
}

.toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }

  
  .main-menu.active {
    display: block; /* Show the menu when "active" class is added */
  }



/* Mobile View: Menu Toggles */
@media (max-width: 768px) {
    .section-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .topbar {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 10px;
      border-bottom: 1px solid #e0e0e0;
    }

    .menu-list {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
      }

      .toggle {
        display: block;
      }

      .main-menu {
        display: none;
        background-color: #191919;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
        padding: 15px 0;
        border-radius: 8px;
      }

      .main-menu.active {
        display: flex;
      }   

    .main-menu.active {
        display: flex;
    }
}

/* Tablet and Laptop: Adjust Spacing */
@media (min-width: 769px) and (max-width: 1200px) {
    .section-box {
        padding: 0 10px;
    }

    .contact-info a {
        font-size: 0.8rem;
    }

    .main-menu a {
        font-size: 0.9rem;
    }
}

  
  /* Hero Section */
  
  /* General Styles */


/* Hero Section */
.hero-section {
    padding: 50px 20px;
    text-align: center;
    background: #191919;
    color: #fff;
}

/* Hero Content */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c; /* Vibrant red for the title */
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Content Layout */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

/* Image Gallery */
.image-gallery {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.image-gallery img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Ring Image */
.ring-image {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.ring-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ring-image img:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.4rem;
    }

    .content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .ring-image img {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .header h1 {
        font-size: 2.8rem;
    }

    .content {
        gap: 20px;
    }
}


  /* About Us Section Styles */
  .about-us-section {
    display: flex; /* Enable flex layout */
    flex-direction: row; /* Arrange content side by side */
    align-items: center; /* Align items vertically */ 
    justify-content: center;    
    padding: 20px;
    width: 100%; /* Make it responsive */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for visual effect */
  }
  
  .about-us-content {
    display: flex; /* Enable flex layout for content */
    flex-direction: row; /* Arrange image-gallery and text-content horizontally */
    gap: 20px; /* Add space between the items */
  }

  .image-gallery {
    flex: 1; /* Allow the image-gallery to take up available space */
  }
  
  .text-content {
    flex: 1; /* Allow the text-content to take up available space */
  }

  .image-gallery .large-image,
  .image-gallery .small-image {
    margin-bottom: 10px; /* Space between images */
  }
  
  .image-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .large-image img {
    width: 400px;
    height: auto;
    border: 10px solid #f9f9f9;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
  }
  
  .small-image img {
    position: absolute;
    top: 20%;
    left: -50px;
    width: 200px;
    height: auto;
    border: 5px solid #f9f9f9;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    border-radius: 5px;
  }

.text-content h1 {
    color: #fff;
  margin-bottom: 10px;
  font-size: 2rem;
}

.text-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}
  
  .text-content {
    max-width: 600px;
    margin-left: auto;
  }
  
 
  
  /* Background Sparks */
  .about-us-section::before,
  .about-us-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: #191919;
    border-radius: 50%;
    filter: blur(10px);
  }
  
  .about-us-section::before {
    top: 10%;
    left: 5%;
  }
  
  .about-us-section::after {
    bottom: 15%;
    right: 10%;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .about-us-content {
      flex-direction: column;
      align-items: center;
    }
  
    .large-image img,
    .small-image img {
      width: 300px;
    }
  
    .small-image img {
      position: relative;
      top: 0;
      left: 0;
      transform: none;
      margin: 10px 0;
    }
  
    .text-content h1 {
      font-size: 2rem;
    }
  
    .text-content p {
      font-size: 0.9rem;
    }
  }


  .contact-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
  }
  
  
  
  .contact-details {
    flex: 1;
    text-align: right;
  }
  
  .contact-details p {
    font-size: 18px;
    margin: 10px 0;
  }
  
  .contact-details i {
    margin-right: 10px;
    color: #f7d42f;
  }
  
  .picture-grid {
    position: relative;
  }
  
  .image-stack {
    position: relative;
  }
  
  .image-stack .main-img {
    width: 100%;
    border: 5px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .image-stack .overlay-img {
    position: absolute;
    bottom: -80px;
    left: 125px;
    width: 60%;
    border: 5px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

  /* service-section */

  /* General Styles */

  
  .services-section {
    padding: 2rem;
    background: #191919;
  }
  
  .services-header h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
  }
  
  .services-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  /* Service List Styles */
  .services-list {
    flex: 1 1 60%;
    background: #191919;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .service-box {
    margin-bottom: 2rem;
  }
  
  .service-box h3 {
    font-size: 1.8rem;
    color: #f7d419;
    margin-bottom: 0.5rem;
  }
  
  .service-box p {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1abc9c;
  }
  
  .service-box ul {
    padding: 0;
    list-style: none;
  }
  
  .service-box ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #fff;
  }
  
  .service-box ul li:before {
    content: '•';
    font-size: 1rem;
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Gallery Styles */
  .services-gallery {
    flex: 1 1 35%;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-image img:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .services-content {
      flex-wrap: wrap;
    }
  
    .services-list,
    .services-gallery {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .services-header h1 {
      font-size: 2rem;
    }
  
    .service-box h3 {
      font-size: 1.5rem;
    }
  
    .service-box p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .services-header h1 {
      font-size: 1.8rem;
    }
  
    .service-box h3 {
      font-size: 1.3rem;
    }
  
    .services-gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }
  
    .service-box ul li {
      font-size: 0.9rem;
    }
  }
  




  /* container-section */


  /* General Styles */

  
  .container {
    padding: 2rem;
    background: #191919;
    color: #333;
    text-align: center;
  }
  
  h1.project {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    color: #fff;
  }
  
  /* Image Grid */
  .image-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .image-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1.project {
      font-size: 2rem;
    }
  
    p {
      font-size: 0.9rem;
      color: #fff;
    }
  
    .image-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
  }
  
  @media (max-width: 480px) {
    h1.project {
      font-size: 1.8rem;
    }
  
    p {
      font-size: 0.85rem;
      text-align: justify;
    }
  
    .image-grid {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }
  
    .image-grid img {
      border-radius: 5px;
    }
  }
  

  


  /* vision section */

  
  /* General Styles */

.vision-section {
    padding: 50px 20px;
    background-color: #191919;
    text-align: center;
    color: #fff;
}

/* Section Title */
.vision-section h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #fff; /* Vibrant blue */
    font-weight: bold;
}

/* Vision Container */
.vision-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Vision Boxes */
.vision-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 2px solid #d5d8dc;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vision-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #f7d419; /* Vibrant red */
}

.vision-box p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff; /* Deep gray */
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-section h1 {
        font-size: 2.2rem;
    }

    .vision-box {
        min-width: 90%; /* Take full width in smaller screens */
        margin: 0 auto;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .vision-section h1 {
        font-size: 2.5rem;
    }

    .vision-box {
        min-width: 45%; /* Adjust for tablets and smaller laptops */
        margin: 0 auto;
    }
}

second-main {
    padding: 40px 20px;
    text-align: center;
    background-color: #191919;
}

/* Mission Title */
.mission {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff; /* Deep gray */
    font-weight: bold;
}

/* Picture Grid */
.pic-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.big-grid img, .small-grid img {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}


 .small-grid img {
    width: 70%;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.big-grid {
    flex: 2; /* Larger image takes more space */
    min-width: 400px;
}

.small-grid {
    flex: 1; /* Smaller image takes less space */
    min-width: 250px;
}

.big-grid img:hover, .small-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Mission Container */
.mission-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.mission-box {
    flex: 1;
    max-width: 45%;
    background-color: #191919;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.mission-box:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.mission-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #f7d419; /* Bright red */
}

.mission-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff; /* Deep gray */
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission {
        font-size: 2rem;
    }

    .pic-grid {
        flex-direction: column;
        gap: 15px;
    }

    .big-grid img, .small-grid img {
        max-width: 90%;
        margin: 0 auto;
    }

    .mission-container {
        flex-direction: column;
        gap: 20px;
    }

    .mission-box {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .mission {
        font-size: 2.2rem;
    }

    .mission-container {
        gap: 15px;
    }

    .mission-box {
        max-width: 48%;
    }
}

.portfolio {
    padding: 40px 20px;
    background-color: #191919; /* Subtle background */
    color: #2c3e50;
    text-align: center;
}

/* Header Section */
.wedding-portfolio h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #c0392b; /* Elegant red */
}

.wedding-portfolio h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1abc9c; /* Soft gray */
    margin-bottom: 30px;
}

/* What We Offer Section */
.what-we-offer {
    max-width: 800px;
    margin: 0 auto 40px;
}

.what-we-offer h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff; /* Vibrant blue */
}

.what-we-offer p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    text-align: justify;
}

/* Photo Gallery Section */
.photo-grid {
    padding-top: 20px;
}

.photo-grid h2 {
    font-size: 2rem;
    color: #8e44ad; /* Rich purple */
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-items: center;
}

.grid-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio {
        padding: 30px 15px;
    }

    .wedding-portfolio h1 {
        font-size: 2rem;
    }

    .wedding-portfolio h2 {
        font-size: 1.3rem;
    }

    .what-we-offer h2 {
        font-size: 1.8rem;
    }

    .what-we-offer p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .photo-grid h2 {
        font-size: 1.8rem;
    }

    .grid-container {
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .wedding-portfolio h1 {
        font-size: 2.3rem;
    }

    .what-we-offer h2 {
        font-size: 1.9rem;
    }

    .photo-grid h2 {
        font-size: 1.9rem;
    }

    .grid-container {
        gap: 20px;
    }
}

.contact-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 20px;
    text-align: center;
    background: #191919; /* Gradient background */
    color: black;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

/* Contact Header */
.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* Contact Info */
.contact-us p {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

/* Highlight specific text */
.contact-us p span {
    color: #fff; /* Golden yellow for accents */
}

/* Image Grid Section */
.contact-section h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #ffffff;
}

/* Image Grid */
.picture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px auto;
}

.picture-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.picture-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 15px;
        margin-top:60px;
    }

    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-us p {
        font-size: 1rem;
    }

    .picture-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .contact-us{
      margin-top:100px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .contact-section h1 {
        font-size: 2.3rem;
    }

    .picture-grid {
        gap: 20px;
    }
}

.footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #191919; /* Attractive footer background */
    color: white;
}

/* Header Section */
.footer .footer .h1 {
    font-size: 2rem;
    color: #f39c12; /* Golden-yellow highlight color */
    margin-bottom: 20px;
}

/* Picture Grid */
.picture-grid-2 .row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.picture-grid-2 .column img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.picture-grid-2 .column img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-group{
  margin: 5px 15px;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Client Form Section */
.client-form {
    background-color: #191919;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.client-form:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.client-form h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.client-form .form-group {
    margin-bottom: 15px;
}

.client-form .form-group label {
    display: block;
    font-weight: bold;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.client-form .form-group input,
.client-form .form-group select textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    font-size: 1rem;
    background: #ecf0f1;
    color: #34495e;
    transition: border-color 0.3s;
}

.client-form .form-group input:focus,
.client-form .form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    text-decoration: none;
}

.client-form button {
    display: inline-block;
    padding: 12px;
    margin-top: 30px;
    background-color: #3498db; /* Bright blue for button */
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.client-form button:hover {
    background-color: #1abc9c; /* Slightly darker blue */
}



.footer footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ecf0f1;
}

.responsive-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .picture-grid-2 .row {
        flex-direction: column;
    }

    .picture-grid-2 .column img {
        max-width: 90%;
        margin: 0 auto;
    }

    

    .footer .footer-2 .h1 {
        font-size: 1.6rem;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .footer .footer-2 .h1 {
        font-size: 1.8rem;
    }

  
}
