/* -------------------- Global Styles -------------------- */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #f76ab1, #c858ea);
    color: white;
}

h2 {
    color: #880e4f;
    text-align: center;
    margin-bottom: 30px;
}

/* -------------------- Header & Title -------------------- */

.separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ffcd00, #ff0080);
    margin: 40px auto;
    border-radius: 2px;
}
/* Header Section */
.header-section {
  text-align: center;
  padding: 60px 20px;  /* space around content */
  background: linear-gradient(135deg, #8e2de2, #4a00e0); /* gradient background */
  color: white;
}

/* Logo Image */
.header-section .logo {
 width: 60%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
}

/* Title */
.header-section .title {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
  -webkit-font-smoothing: antialiased; /* sharp text on Chrome/Safari */
  -moz-osx-font-smoothing: grayscale;  /* sharp text on Firefox/Mac */
}

/* Subtitle */
.header-section .subtitle {
  font-size: 18px;
  font-style: italic;
  margin-top: 5px;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .header-section .logo {
    width: 140px;  /* smaller logo on mobile */
  }
  .header-section .title {
    font-size: 28px;  /* smaller title on mobile */
  }
  .header-section .subtitle {
    font-size: 16px;
  }
}


   
   
/* -------------------- Navigation -------------------- */
nav {
    background-color: #880e4f;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffcc80;
}

/* -------------------- About -------------------- */
.about {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    background: rgba(255,255,255,0.05) url('https://www.transparenttextures.com/patterns/arabesque.png') repeat;
    border-radius: 20px;
}

/* -------------------- Services -------------------- */
.services {
    text-align: center;
    padding: 40px 20px;
}

.service-box {
    background-color: white;
    color: black;
    display: inline-block;
    width: 200px;
    margin: 15px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: popUp 0.8s ease forwards;
}

.service-box:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
}

.service-box img {
    width: 50%;
    border-radius: 15px;
}

/* -------------------- Gallery -------------------- */
.gallery {
    text-align: center;
    padding: 40px 20px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-images img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: popUp 0.8s ease forwards;
}

.gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
}

/* -------------------- Video -------------------- */
.video-section {
    text-align: center;
    padding: 40px 20px;
}

.video-section iframe {
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    max-width: 100%;
}

/* -------------------- Testimonials -------------------- */
.testimonials {
    text-align: center;
    padding: 40px 20px;
}

.testimonial-box {
    background: rgba(255,255,255,0.9);
    color: black;
    max-width: 600px;
    margin: 15px auto;
    padding: 20px;
    border-radius: 15px;
    font-style: italic;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    animation: popUp 0.8s ease forwards;
}

/* -------------------- Pricing -------------------- */
.pricing {
    text-align: center;
    padding: 40px 20px;
}

.pricing-box {
    background: rgba(255,255,255,0.9);
    color: black;
    display: inline-block;
    width: 200px;
    margin: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

/* -------------------- Contact -------------------- */
.contact {
    text-align: center;
    background-color: #880e4f;
    color: white;
    padding: 40px 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 20px auto 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

.contact-form button {
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background-color: #ff0080;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #ffcd00;
    color: black;
}

/* -------------------- Footer -------------------- */
footer {
    text-align: center;
    padding: 15px;
    background-color: #4a0033;
}

/* -------------------- Animations -------------------- */
@keyframes popUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-box:nth-child(1) { animation-delay: 0s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.4s; }
.service-box:nth-child(4) { animation-delay: 0.6s; }

.gallery-images img:nth-child(1) { animation-delay: 0s; }
.gallery-images img:nth-child(2) { animation-delay: 0.2s;}
/* -------------------- Responsive -------------------- */
@media screen and (max-width: 768px) {
    .title-section { height: 220px; padding-left: 20px; }
    .title-section h1 { font-size: 50px; } /* <-- your new line */
    .title-section p { font-size: 18px; }
    .service-box, .pricing-box { width: 45%; margin: 10px; }
    .gallery-images img { width: 45%; height: auto; }
    nav ul li { display: block; margin: 10px 0; }
}

@media screen and (max-width: 480px) {
    .title-section h1 { font-size: 36px; } /* <-- your new line */
    .title-section p { font-size: 16px; }
    .service-box, .pricing-box { width: 100%; margin: 10px 0; }
    .gallery-images { flex-direction: column; align-items: center; }
}







