/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


 body {
/* Light blue background */
      font-family: Arial, sans-serif;
      margin: 0; /* Remove default body margin */
      padding: 0;
    }



site-header {
background: transparent;

  position: absolute;        /* optional */
  top: 0;
  width: 100%;
 /* background: #ffffff;*/
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
 height: 80px;   
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;


           /* FIXED HEADER HEIGHT */
 

}

/* Logo */
.logo img {
  height: 155px;
  width: auto;
}

/* Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 0px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

body {
  background: #f4f6f9;
  color: #333;
}

/* =======================
   NAVBAR
======================= */
header {
  background: #111;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.nav-links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* =======================
   HERO SLIDER
======================= */
.hero-slider {
  
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide h1 {
 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
}

/* =======================
   WELCOME SECTION
======================= */


#welcome-section {
  text-align: center;
  padding: 60px 20px;
  background:  #FFFFFF;

  border-radius: 15px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

#welcome-section h2 {
  font-size: 3rem;
  color: #d63384;
  margin-bottom: 20px;
  font-weight: 800;
}
#welcome-section h1 {
  font-size: 3rem;
  color: #d63384;
  margin-bottom: 20px;
  font-weight: 800;
}

#welcome-section h1cards {
  font-size: 3rem;
  color: #d63384;
  margin-bottom: 20px;
  font-weight: 800;
}





#welcome-section p {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* about us page css  */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F5F5DC ;
}

/* ABOUT US -  BANNER SECTION */

/* Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Banner Section */
.about-banner {
    width: 100%;
    height: 70vh;
    background: url("images/aboutuspagebanner.png") no-repeat center center/cover;
    position: relative;
}

/* Dark overlay for better text visibility */
.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Text Content */
.banner-content h1 {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 20px;
    color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* Glass effect */

/* Reset */





/* Text Styling */
.glass-box h1 {
    font-size: 60px;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}

/* end of glass effect *//* Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Gradient Background (No Image) */
.banner {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
position: absolute;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

/* Glass Effect Box */
.glass-box {

    position:absolute;
   width:400px;
    border-radius: 25px;
    padding-left: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    text-align: center;
}

/* Glass Text */
.glass-box h1 {
    width:200px;
    font-size: 65px;
    letter-spacing: 6px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

/*SPECIAL GLASS EFFECTS */
.banner {
 height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #53354a);
    background-size: 400% 400%;
    /*animation: gradientAnimation 20s ease infinite;*/
    position: relative;
}

@keyframes gradientAnimation {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}



/* Gradient Glowing Text */
/*.glass-box h1 {
    font-size: 65px;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: linear-gradient(90deg, #FFD700, #FF69B4, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FF69B4, 0 0 20px #8A2BE2;
    margin-bottom: 20px;
}*/

/* Description Text */
.glass-box p {
    font-size: 22px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-box h1 {
        font-size: 45px;
    }
    .glass-box p {
        font-size: 16px;
        padding: 0 20px;
    }
}







.what-we-do {
    padding: 80px 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: #FDF9F3;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.container h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: #FFD700;
}

.container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    .container h2 {
        font-size: 28px;
    }

    .container p {
        font-size: 16px;
    }
}


/* TESTIMONIAL SECTION */

.contact-testimonial-section{
padding:0px 20px;
}

.container{
max-width:1100px;
margin:auto;
display:flex;
gap:40px;
align-items:center;
}

/* TESTIMONIALS */

.testimonials{
width:50%;
}

.testimonials h2{
margin-bottom:90px;
margin-top: -100px;
color:#d63384;
}

.testimonial-wrapper{
height:170px;
overflow:hidden;
}

.testimonial-track{
display:flex;
flex-direction:column;
animation:scrollTestimonial 9s infinite;
}

.testimonial-box{
background:white;
border-left:5px solid #ff4da6;
padding:20px;
margin-bottom:20px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-box h4{
margin-top:30px;
color:#ff4da6;
}


/* CONTACT FORM */

.contact-form{
width:50%;
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.contact-form h2{
margin-bottom:20px;
color:#d63384;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.contact-form textarea{
height:100px;
resize:none;
}

.contact-form button{
background:#ff4da6;
color:white;
border:none;
padding:12px;
border-radius:6px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#e60073;
}


/* LOOP ANIMATION */

@keyframes scrollTestimonial{

0%{transform:translateY(0);}
33%{transform:translateY(-190px);}
66%{transform:translateY(-380px);}
100%{transform:translateY(0);}

}


/* MOBILE */

@media(max-width:768px){

.container{
flex-direction:column;
}

.testimonials,
.contact-form{
width:100%;
}

}















/* HOME PAGE Our Signature Event Highlights */



.welcome-section {
  padding: 200px 20px;
  background: #FFFFFF;
}

.welcome-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.welcome-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);  
}

.welcome-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: #FFFFFF;

}

.welcome-content h3 {
  color: #e63946;
  margin-bottom: 20px;
}

.welcome-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.welcome-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
}




/* Table styling */


.custom-table {
  width: 80%;
  border-collapse: collapse;
margin-left: auto;  /* Pushes table from left */
  margin-right: auto; /* Pushes table from right */

}

.custom-table td {
  vertical-align: top;
  padding: 85px;
padding-left: 0px;
}

/* Image wrappers */
.images-cell .images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.images-cell .img-small {
  display: flex;
  gap: 10px;
}

.images-cell .img-small img,
.images-cell .img-large img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Small images width */
.images-cell .img-small img {
  width: 300px;
  height: 260px;
}

/* Large image width */
.images-cell .img-large img {
  width: 610px;
  height: 300px;
}

/* Zoom effect on hover */
.images-cell img:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Content column */
.content-cell h3 {
  margin-bottom: 10px;
  color: #d63384;
padding-left: 0px;
}

.content-cell p {
  margin-bottom: 15px;
  color: #555;
}

.content-cell button {
  padding: 5px 18px;
  background: #d63384;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.content-cell button:hover {
  background: #ff99cc;
}


/* Images Column */
.images-cell .img-wrapper {
  overflow: hidden;
  display: inline-block;
  margin-right: 10px;
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.images-cell .img-wrapper.large {
  width: 170px;
  height: 120px;
}

.images-cell .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.images-cell .img-wrapper img:hover {
  transform: scale(1.2);
}

/* Content Column */
.content-cell h3 {
  margin-bottom: 10px;
  color: #d63384;
font-family: 'Arial', sans-serif;
}

.content-cell p {
  margin-bottom: 35px;
  color: #555;
font-family: 'Arial', sans-serif;
}

.content-cell button {
  padding: 10px 18px;
  background: #d63384;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.content-cell button:hover {
  background: #ff99cc;
}



/* Ne wsmooth effect*/
/* Common image effects */
.images-cell img {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hover Effect: zoom + glow */
.images-cell img:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 15px 25px rgba(214, 51, 132, 0.5);
}

/* Optional: slight floating animation */
@keyframes floatEffect {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.images-cell img {
  animation: floatEffect 3s ease-in-out infinite;
}

                                                                  
/* =======================
   GALLERY SECTION
======================= */
.event-gallery-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
  display: flex;
  justify-content: center;
}

.event-gallery-card {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.gallery-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(90deg, #e63946, #111);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.full-width {
  grid-column: span 2;
  display: flex;
  justify-content: center;
}

.full-width img {
  width: 60%;
}

/* =======================
   SERVICES
======================= */



.signature-heading {
  font-family: 'Arial', sans-serif; /* Replace Arial with your preferred font */
  font-size: 16px;
  color: #ff5722;
  text-align: center;
}









#services {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;

}

.flip-card {
  width: 320px;
  height: 420px;
  perspective: 1200px;
  
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
}

.flip-card-front {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.flip-card-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  
}

.card-content p {
  flex-grow: 1;
}

.card-content a {
  padding: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.flip-card-back {
  background: pink;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}

/* Flip Animation */
.flip-animation {
  animation: flipEffect 2s ease forwards;
}

@keyframes flipEffect {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(0); }
}


/* GALLERY */

/* GALLERY SECTION */
#gallery-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-title {
  font-size: 2.5rem;
  color: #d63384;
  margin-bottom: 40px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  opacity: 0;              /* Start hidden */
  transform: translateY(50px); /* Start slightly below */
  transition: transform 0.8s ease, opacity 0.8s ease;
  cursor: pointer;
}

/* When scrolled into view */
.gallery-item.active img {
  opacity: 1;
  transform: translateY(0);
}

/* Hover zoom effect */
.gallery-item img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}










/* =======================
   CONTACT
======================= */
#contact {
  padding: 80px 20px;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
}

/* =======================
   FOOTER
======================= */
footer {
  background: #3E2C1C;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
  .welcome-container {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .full-width img {
    width: 100%;
  }

  .flip-card {
    width: 100%;
  }
}



/* Footer */
#footer {
  background: #3E2C1C;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95rem;
}

#footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

#footer .footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

#footer .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#footer .footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

#footer .footer-links a:hover {
  color: #ff99cc;
}

#footer .footer-social {
  display: flex;
  gap: 15px;
}

#footer .footer-social img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
}

#footer .footer-social img:hover {
  transform: scale(1.2);
}

#footer .footer-copy {
  font-size: 0.85rem;
  color: #ffe0f0;
}

/* Responsive Footer */
@media (max-width: 600px) {
  #footer .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  #footer .footer-social {
    gap: 10px;
  }
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.about-section {
    padding: 20px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }
}

/* CONTACT PAGE */

/* Banner Section */
.banner {
  position: relative;
  background: url('images/newsparkdigi.png') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}

/* Overlay */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /*background: rgba(214, 51, 108, 0.7); *//* pink overlay */
 background: rgba(150, 36, 76, 0.7); /* pink overlay */
 /* background: linear-gradient(to right, rgba(138, 43, 226, 0.8), rgba(255, 105, 180, 0.8));*/
  z-index: 1;
}

/* Banner Text */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Button */
.banner-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}













/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

/* Contact Section */



/* GOOGLE MAP CONTAINER */

.map-section {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 400px;
}

.map-left { flex:1; border-radius:10px; overflow:hidden; }
.content-right { flex:1; padding:20px; background:#f9f9f9; border-radius:10px; }
/* END OF GOOGLE MAP */




.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #fff;
  position: relative;
}

/* Left Side with overlay */
.contact-left {
  flex: 1 1 400px;
  position: relative;
/*  background: url('images/stage2.jpg') center/cover no-repeat; */
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.contact-left .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(150, 51, 120, 0.7); /* pink overlay */
 /*background: linear-gradient(to right, rgba(138, 43, 226, 0.8), rgba(255, 105, 180, 0.8));*/

  z-index: 1;
  border-radius: inherit;
}

.contact-left h2,
.contact-left p {
  position: relative;
  z-index: 2; /* above overlay */
}

.contact-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Right Side */
.contact-right {
  flex: 1 1 400px;
  padding: 50px 30px;
  background: #fff;
}

.contact-right h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #111;
}

.contact-right form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-right form input,
.contact-right form select,
.contact-right form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.contact-right form textarea {
  resize: none;
}

.contact-right form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to right, #d6336c, #e87abc);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right form button:hover {
  background: linear-gradient(to right, #e87abc, #d6336c);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    padding: 40px 20px;
  }
}

/* contact page banner with three boxes */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== Banner Section ===== */
.banner {
    height: 320px;
    /*background: linear-gradient(to right, #4e73dfcc, #1cc88acc),*/
             /*   url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80');*/

  background: rgba(150, 51, 120, 0.7),
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80');


    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.banner-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
}

/* ===== Contact Section ===== */
.contact-section {
    background: transparent;

    margin-top: -70px;
    padding:  80px;
}

.contact-container {
   

    max-width: 1100px;
    margin: auto;
    display: flex;
   align-items: stretch;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===== Contact Boxes ===== */
.contact-box {
    background: #ffffff;
    border: 2px solid pink;

/* TO REMOVE OVERLAY ON THE BOXES */
	
	position: relative;
  	z-index: 2;



   margin: 0 30px;
transform: translateY(-10px);
flex: 1;                /* Makes all boxes equal width */
    display: flex;
    flex-direction: column;
    justify-content: center;
 
  height: 250px;
 margin-top: 0px;
    padding:  80px;


    width: 100%;
    max-width: 320px;
    padding: -80px 25px;
    text-align: center;
    border-radius:10px;
 box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateX(10px);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-box h3 {
  margin-bottom: -10 px;
    font-size: 15px;
    color: #333;
}

.contact-box p {
    font-size: 15px;
    color: #666;
}

.contact-box a {
    color: #4e73df;
    text-decoration: none;
    font-weight: bold;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 28px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}

/* SERVICES PAGE */

/* Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Banner Section */
.banner {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url("images/servicespagebanner.jpg") no-repeat center center/cover; /* Replace with your image */
  position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for text readability */
.banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    top: 0;
    left: 0;
}

/* Text Content */
.banner-content {
    position: relative; /* To appear above overlay */
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.banner-content p {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /*.banner-content h1 {*/
       /* font-size: 40px;*/
   /* }
    .banner-content p {*/
     /*   font-size: 16px;
        padding: 0 20px;*/
   /* }*/
   
   .banner {
        height: 250px;
        /* mobile fixed height */
    padding-top: 160px;
    margin-top:100px;
       
   }
   
   
}


