/* SERVICES SECTION */
/* HERO SECTION */

.services-hero{
position:relative;
width:100%;
height:60vh;
min-height:420px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* BACKGROUND IMAGE */
.services-video {   /* You can rename to .services-bg if you like */
  position: relative;   /* relative so overlay works correctly */
  width: 100%;
  height: 100vh;        /* full viewport height */
  background-image: url('/assets/images/conference-event-management-goa.webp');
  background-size: cover;     /* cover ensures the image fills container */
  background-position: center; /* center the image nicely */
  background-repeat: no-repeat;
  z-index: 0;
}

/* OVERLAY */
.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* keeps the dark overlay effect */
  z-index: 1;
}

/* RESPONSIVE SPACING FOR CONTENT INSIDE */
.services-content {
  position: relative;
  z-index: 2;             /* above overlay */
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* OPTIONAL: adjust height on smaller screens */
@media (max-width: 768px) {
  .services-video {
    height: 60vh;   /* smaller height for tablets/phones */
  }
  .services-content {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .services-video {
    height: 50vh;   /* smaller height for mobile */
  }
  .services-content {
    padding: 10px;
  }
}

/* TEXT CONTENT */

.services-hero-content{
position:relative;
z-index:2;
}

/* SMALL TEXT */

.hero-small{
font-family:'Montserrat', sans-serif;
letter-spacing:6px;
font-size:13px;
margin-bottom:10px;
}

/* MAIN TITLE */

.services-hero-content h1{
font-family:'Playfair Display', serif;
font-size:70px;
font-weight:300;
letter-spacing:10px;
margin:0;
}

.services-section{
padding:80px 6%;
background:#fff;
}

/* CONTAINER */

.services-container{
display:grid;
grid-template-columns:repeat(1,1fr);
gap:50px;
max-width:1300px;
margin:0 auto;
}

/* CARD */

.service-card{
text-align:center;
}

/* IMAGE */

.service-card img{
width:100%;
height:260px;
object-fit:cover;
margin-bottom:20px;
}

/* TAG */

.service-tag{
font-family:'Montserrat', sans-serif;
font-size:12px;
letter-spacing:3px;
color:#777;
margin-bottom:10px;
}

/* TITLE */

.service-card h3{
font-family:'Playfair Display', serif;
font-size:26px;
margin-bottom:12px;
}

/* DESCRIPTION */

.service-desc{
font-family:'Montserrat', sans-serif;
font-size:14px;
line-height:1.6;
color:#555;
max-width:300px;
margin:0 auto 10px;
}

/* FEATURES */

.service-features{
list-style:none;
padding:0;
margin:10px 0 25px;
font-family:'Montserrat', sans-serif;
font-size:13px;
color:#555;
}

.service-features li{
margin-bottom:6px;
}

/* BUTTON */

.service-btn{
display:inline-block;
padding:12px 28px;
border:1px solid black;
text-decoration:none;
font-family:'Montserrat', sans-serif;
font-size:12px;
letter-spacing:2px;
color:black;
transition:0.3s;
}

.service-btn:hover{
background:black;
color:white;
}


@media (min-width:768px){

.services-container{
grid-template-columns:repeat(2,1fr);
}

.service-card img{
height:300px;
}

}

@media (min-width:1200px){

.services-container{
grid-template-columns:repeat(4,1fr);
gap:60px;
}

.service-card img{
height:240px;
}

}

/* HERO SECTION */

.services-hero{
position:relative;
width:100%;
height:60vh;
min-height:420px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* VIDEO */

.services-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
}

/* OVERLAY */

.services-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:1;
}

/* TEXT CONTENT */

.services-hero-content{
position:relative;
z-index:2;
}

/* SMALL TEXT */

.hero-small{
font-family:'Montserrat', sans-serif;
letter-spacing:6px;
font-size:13px;
margin-bottom:10px;
}

/* MAIN TITLE */

.services-hero-content h1{
font-family:'Playfair Display', serif;
font-size:70px;
font-weight:300;
letter-spacing:10px;
margin:0;
}

@media (max-width:900px){

.services-hero{
height:50vh;
}

.services-hero-content h1{
font-size:50px;
letter-spacing:6px;
}

}

@media (max-width:600px){

.services-hero{
height:45vh;
}

.services-hero-content h1{
font-size:36px;
letter-spacing:4px;
}

.hero-small{
font-size:11px;
letter-spacing:4px;
}

}