body {
    font-family: 'Segoe UI', sans-serif;
    background: #fafafa;
    color: #222;
    margin: 0;
    padding-top: 72px; /* adjust if header height changes */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 9999;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.brand img {
    height: 42px;
}

nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.footer-section {
    background: #000 !important;
    color: #fff !important;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4,
.footer-col h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
}

.footer-col ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none !important;
    color: #bbb !important;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff4f81 !important;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-section {
        padding: 40px 20px;
    }

    .footer-col {
        margin-bottom: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 52px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        display: none;
        padding: 20px 0;
    }

    nav a {
        padding: 12px 0;
    }

    .menu-toggle {
        display: block;
    }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
}

.navbar nav {
    float: right;
}

.navbar nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.navbar nav a.btn {
    background: #e91e63;
    padding: 8px 15px;
    border-radius: 25px;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.hero {
    padding: 120px 0;
    text-align: center;
    background: #111;
    color: #fff;
}

.page-hero{
    height: 80vh;
    min-height: 500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    position:relative;
    background-size:cover;
    background-position:center;
}

.hero-title,
.hero-subtitle{
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.page-hero::after{
    content:'';
    position:absolute;
    inset:0;
    /*background:rgba(0,0,0,0.65);*/
}

.page-hero .content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:0 20px;
}


.section {
    padding: 20px 0;
}

.btn-main {
    background: #e91e63;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

.footer {
    background: #111;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  transform: translateY(-4px);
  color: #fff;
}

.social-icons a:nth-child(1):hover {
  background: #1877f2; /* Facebook */
}

.social-icons a:nth-child(2):hover {
  background: #e4405f; /* Instagram */
}

.social-icons a:nth-child(3):hover {
  background: #ff0000; /* YouTube */
}

.dream-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.dream-overlay {
  max-width: 900px;
}

.dream-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.dream-subtitle {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ddd;
}

.dream-subtitle span {
  color: #ff2e63;
  font-weight: 600;
}

.dream-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #bbb;
}

.dream-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ff2e63;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
}

.dream-btn:hover {
  background: #e02555;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .dream-content h2 {
    font-size: 30px;
  }

  .dream-subtitle {
    font-size: 18px;
  }

  .dream-description {
    font-size: 16px;
  }
}

/* Active menu link */
#mainMenu a.active {
    color: #ff4f81;
    font-weight: 600;
    position: relative;
}

#mainMenu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ff4f81;
}

/* Active button style */
#mainMenu a.active-btn {
    background: #ff4f81;
    color: #fff !important;
}

.service-gallery{
padding:60px 20px;
background:#f9f9f9;
}

.gallery-grid{
column-count:4;
column-gap:20px;
max-width:1200px;
margin:auto;
}

.gallery-item{
break-inside:avoid;
margin-bottom:20px;
}

.gallery-item img{
width:100%;
border-radius:10px;
transition:0.3s;
}

.gallery-item img:hover{
transform:scale(1.05);
}

@media(max-width:900px){
.gallery-grid{column-count:2;}
}

@media(max-width:500px){
.gallery-grid{column-count:1;}
}



/* PREMIUM HERO FORM */
.hero-form-wrapper{
    margin-top:5px;
    display:flex;
    justify-content:center;
}

.hero-form{
    display:flex;
    gap:5px;
    padding:5px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius:0px;
    border:1px solid rgba(255,255,255,0.2);
}

/* Inputs */
.hero-form input,
.hero-form select{
    padding:5px 10px;
    border-radius:0px;
    border:none;
    outline:none;
    font-size:14px;
    background:#fff;
    min-width:180px;
}

/* Button */
.hero-form button{
    background:#ff2e63;
    color:#fff;
    border:none;
    padding:8px 10px;
    border-radius:0px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.hero-form button:hover{
    background:#e61c53;
    transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){
    .hero-form{
        flex-direction:column;
        border-radius:0px;
        width:100%;
        max-width:320px;
    }

    .hero-form input,
    .hero-form select,
    .hero-form button{
        width:100%;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;

    padding: 14px 32px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;
    font-size: 16px;

    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;

    position: relative;
    overflow: hidden;
}

/* ================================
   CLIENT SECTION (PREMIUM)
================================ */
.clients-section{
    padding:70px 20px;
    text-align:center;
    background:#fff;
}

.clients-section h2{
    font-size:30px;
    margin-bottom:10px;
}

.client-subtitle{
    color:#666;
    margin-bottom:40px;
}

/* GRID */
.clients-grid{
    display:grid;
    grid-template-columns: repeat(6,1fr);
    gap:25px;
    align-items:center;
}

/* CARD */
/* CLIENT CARD FIX */
.client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;              /* ✅ fixed height */
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* LOGO FIX */
.client-card img {
    max-width: 100%;
    max-height: 60px;          /* ✅ uniform size */
    width: auto;
    height: auto;
    object-fit: contain;       /* ✅ keeps ratio */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}
/* HOVER EFFECT */
.client-card:hover{
    transform: translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.client-card:hover img{
    filter: grayscale(0%);
    opacity:1;
}

/* RESPONSIVE */
@media(max-width:992px){
    .clients-grid{
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:576px){
    .clients-grid{
        grid-template-columns: repeat(2,1fr);
    }
}