/* GLOBAL */
a, b {
    font-weight: 500;
    color: gold;
    text-decoration: none;
    transition: color .3s ease;
}

a:hover {
    color: #fff;
}

/* NAVBAR */
.navbar {
    background: #000; /* changed to black */
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: .75rem 1rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: gold;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: color .3s ease;
}

.navbar-brand:hover {
    color: #fff;
}

.navbar-nav .nav-link {
    color: #f1f1f1;
    font-weight: 500;
    padding: .5rem 1rem;
    transition: all .3s ease;
    margin-right: 15px;
    font-size: 19px;
}

.navbar-nav .nav-link:hover {
    color: gold;
}



/* OFFCANVAS MENU */
.offcanvas {
    background: #000; /* updated */
    color: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.offcanvas-title {
    color: gold;
    font-weight: 700;
}

.offcanvas-body a {
    color: #fff;
    display: block;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-weight: 500;
    transition: all .3s ease;
}

.offcanvas-body a:hover {
    color: gold;
}

/* FOOTER */
footer {
    background: #000; /* updated */
    color: #fff6f8;
    padding: 20px 0;
    text-align: center;
    font-size: .9rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

footer a {
    color: gold;
}

footer a:hover {
    color: #fff;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
    color: gold;
    text-shadow: 0 2px 4px rgba(255,215,0,0.2);
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1rem;
    }
}
/* ---------- NEW SEARCH SECTION LOOK ---------- */
.search-section {
  background: linear-gradient(135deg, #240046, #bf00ff, #930504);
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating Glow Elements */
.search-section::before,
.search-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(100px);
}

.search-section::before {
  top: -100px;
  left: -50px;
}

.search-section::after {
  bottom: -120px;
  right: -40px;
}

/* ---------- TITLE ---------- */
.search-section .search-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffe89c;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
  margin-bottom: 15px;
}

/* ---------- SEARCH BOX ---------- */
.search-box form {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto 10px;
  transition: 0.3s;
}

.search-box form:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 35px rgba(0,0,0,0.35);
}

/* Select Box */
.city-select {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border-radius: 50px 0 0 50px;
  color: #333;
  appearance: none;
}

/* Styled Options */
.city-select option {
  background: #fff;
  color: #000;
}



.search-box select {
    background: #000;
    color: #fff;
}

/* Search Button */
.search-btn {
  background: linear-gradient(135deg, #ff0084, #ffcc00);
  padding: 12px 20px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1.2rem;
}

.search-btn:hover {
  background: linear-gradient(135deg, #ffcc00, #ff0084);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
}

/* ---------- EMAIL INFO ---------- */
.email-info {
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}

.email-info a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.email-info a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .search-section .search-title {
    font-size: 1.6rem;
  }
  .city-select {
    padding: 12px;
    font-size: 0.9rem;
  }
  .search-btn{padding: 9px 20px;}
}


/* Outer Wrapper */
.video-sec-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Video */
.video-sec-new .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.video-sec-new .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.video-sec-new .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 2;
}

/* CONTENT BOX (GLASS + GLOW) */
.video-content-new {
    position: relative;
    z-index: 3;
    padding: 40px 50px;
    max-width: 900px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0px 0px 25px rgba(255, 0, 255, 0.25);
    animation: borderGlow 5s infinite linear;
}

/* PREMIUM HEADING */
.video-content-new h1 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff00e0, #ffe25c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 25px rgba(255, 0, 255, 0.4);
}

/* GLOW BORDER ANIMATION */
@keyframes borderGlow {
    0% {
        box-shadow: 0px 0px 25px rgba(255, 0, 255, 0.25);
    }
    50% {
        box-shadow: 0px 0px 45px rgba(255, 0, 255, 0.45);
    }
    100% {
        box-shadow: 0px 0px 25px rgba(255, 0, 255, 0.25);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-content-new {
        padding: 25px;
        margin: 20px;
    }
    .video-content-new h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .video-content-new {
        padding: 20px;
    }
    .video-content-new h1 {
        font-size: 1.3rem;
    }
}


/* ===========================
   SECTION BACKGROUND
=========================== */
.modern-hyd-section {
    background: #111;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.modern-hyd-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff0077, #110011);
    opacity: 0.45;
    filter: blur(120px);
    z-index: 0;
}


/* ===========================
   TITLE
=========================== */
.modern-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(90deg,#ff1f7a,#ffcf00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255,0,120,0.4);
    position: relative;
    z-index: 3;
}


/* ===========================
   TEXT BOX (GLASS STYLE)
=========================== */
.modern-text-box {
    background: rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255,0,140,0.1);
    position: relative;
    z-index: 2;
}

.modern-text-box p {
    color: #e2e2e2;
    font-size: 17px;
    line-height: 1.8;
}


/* ===========================
   IMAGE WRAPPER (2:3 FALLBACK FIX)
=========================== */

/* Prevent Bootstrap row stretch issue */
.modern-hyd-section .row {
    align-items: flex-start !important;
}

/* Perfect 2:3 ratio box */
.modern-img-box {
 width: 100%;
    max-width: 400px;   /* maximum width */
    aspect-ratio: 2 / 3;
    max-height: 600px;  /* maximum height */
    border-radius: 18px;
    padding: 4px;
    background: linear-gradient(45deg,#ff007f,#ffb900);
    overflow: hidden;
    
   
    margin: 0 auto;     /* center in column layout (optional) */
}

/* Image fills box perfectly */
.modern-img-box img {
    width: 100%;
  
    object-fit: cover;   /* ALWAYS perfect crop */
    border-radius: 14px;
    display: block;
    transition: 0.4s ease;
}

/* Hover effect */
.modern-img-box:hover {
    transform: perspective(1000px) rotateX(1deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(255,0,80,0.4);
}


/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:768px){
    .modern-title {
        font-size: 30px;
    }
    .modern-text-box {
        padding: 18px;
    }
}





/* ===========================
   SECTION BACKGROUND
=========================== */
.reverse-premium-section {
    background: linear-gradient(135deg, #1a002e, #430045, #6b0059);
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.reverse-premium-section::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,#ff00d0,#ff9100);
    opacity: 0.35;
    filter: blur(120px);
    z-index: 0;
}

/* ===========================
   THE FIX → STOP STRETCHING
=========================== */
.reverse-premium-section .row {
    align-items: flex-start !important;
}


/* ===========================
   IMAGE CONTAINER 2:3 RATIO
=========================== */
.rev-img-box {
    width: 100%;
    max-width: 400px;   /* maximum width */
    aspect-ratio: 2 / 3;
    max-height: 600px;  /* maximum height */
    border-radius: 18px;
    padding: 4px;
    background: linear-gradient(45deg,#ff007f,#ffb900);
    box-shadow: 0 15px 45px rgba(0,0,0,0.65);
    overflow: hidden;
    margin: 0 auto;     /* center in column layout (optional) */
}



.rev-img-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 22px 60px rgba(0,0,0,0.8);
}

.rev-img-box img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.rev-img-box:hover img {
    transform: scale(1.08);
}


/* ===========================
   TITLE
=========================== */
.rev-title {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(90deg,#ff3cb3,#ffe15a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255,0,130,0.4);
    position: relative;
    z-index: 3;
}

/* ===========================
   TEXT BOX (GLASS STYLE)
=========================== */
.rev-text-box {
    background: rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255,0,130,0.15);
    position: relative;
    z-index: 3;
}

.rev-text-box p {
    color: #f2f2f2;
    font-size: 17px;
    line-height: 1.8;
}


/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:768px){
    .rev-title {
        font-size: 28px;
    }
    .rev-text-box {
        padding: 18px;
    }
}



.content-section{background-color:#ff006f;color:#f5e8e9;padding:60px 20px}
.content-section .content-wrapper{max-width:1100px;margin:0 auto}
.content-section h2{color:#ffd700;font-weight:800;font-size:2.4rem;margin-bottom:2rem;letter-spacing:.5px;text-shadow:0 3px 8px rgba(0,0,0,.3)}
.content-section h3{color:#fff;font-weight:700;font-size:2rem;margin-bottom:15px;letter-spacing:.5px}
.content-section p{font-size:1.1rem;line-height:1.6;color:#f3d9db;margin-bottom:1rem}
.content-section b{color:#ffd700}
@media (max-width:1.69px){
.content-section h2{font-size:2.1rem}
.content-section h3{font-size:1.6rem}
.content-section p{font-size:1.15rem}
}
@media (max-width:991px){
.content-section{padding:50px 10px}
.content-section h2{font-size:1.6rem}
.content-section h3{font-size:1.6rem}
.content-section p{font-size:1.1rem;line-height:1.8}
}
@media (max-width:767px){
.content-section{padding:40px 10px}
.content-section h2{font-size:1.7rem;text-align:center}
.content-section h3{font-size:1.5rem}
.content-section p{font-size:1rem;line-height:1.7}
}
@media (max-width:480px){
.content-section h2{font-size:1.5rem}
.content-section h3{font-size:1.2rem}
.content-section p{font-size:.95rem}
}

/* MAIN */
.new-profile-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a002e, #32004f, #70005f);
    position: relative;
    overflow: hidden;
}

.new-profile-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(90deg,#ff4c9b,#ffe35c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

/* GRID WRAPPER */
.new-profile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

/* DESKTOP → 6 ITEMS */
.new-profile-box {
    flex: 0 0 calc(16.66% - 1.2rem);
    max-width: calc(16.66% - 1.2rem);
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.3s;
}

.new-profile-box:hover {
    transform: translateY(-8px);
}

/* IMAGE RATIO 120 × 180  (2:3) */
.new-profile-image {
    position: relative;
    aspect-ratio: 2 / 3;  
    overflow: hidden;
    border-radius: 14px;
}

.new-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.3s ease;
}

.new-profile-box:hover img {
    transform: scale(1.07);
}

/* OVERLAY */
.new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.7),transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

.new-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffe35c;
}

.new-age {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ACTION BUTTONS */
.new-actions {
    display: flex;
    gap: 10px;
}

.new-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size: 1.2rem;
}

.new-btn.call { background: #ff0079; }
.new-btn.wa { background: #25d366; }

/* TABLET → 4 ITEMS */
@media(max-width:1200px){
    .new-profile-box {
        flex: 0 0 calc(25% - 1.2rem);
        max-width: calc(25% - 1.2rem);
    }
}

/* TABLET → 3 ITEMS */
@media(max-width:991px){
    .new-profile-box {
        flex: 0 0 calc(33.33% - 1.2rem);
        max-width: calc(33.33% - 1.2rem);
    }
}

/* MOBILE → 2 ITEMS (True Fix) */
@media(max-width:767px){
    .new-profile-box {
        flex: 0 0 calc(50% - 1.2rem) !important;
        max-width: calc(50% - 1.2rem) !important;
    }
}

/* SMALL MOBILE → ALSO 2 ITEMS (Fix) */
@media(max-width:480px){
    .new-profile-box {
        flex: 0 0 50% !important;
        max-width: 45% !important;
    }
    .new-profile-section {
    padding: 80px 0px;}
}


/* --------------------------------------- */
/*               HEADINGS                  */
/* --------------------------------------- */
.city-section h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

/* --------------------------------------- */
/*         SECTION BACKGROUND              */
/* --------------------------------------- */
.city-section {
    background: #111;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.city-section.new-style {
    background: linear-gradient(135deg, #1a002e, #430045, #6b0059);
    padding: 80px 0;
}

/* --------------------------------------- */
/*        GRID LAYOUT: TAGS                */
/* --------------------------------------- */
.city-tags {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

/* Tablet — 4 per row */
@media (max-width: 992px) {
    .city-tags {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile — 3 per row */
@media (max-width: 768px) {
    .city-tags {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small mobile — 2 per row */
@media (max-width: 480px) {
    .city-tags {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------- */
/*           TAG PILL BUTTONS              */
/* --------------------------------------- */
.tag-pill {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
    border: none;
    transition: 0.25s ease-in-out;
}

/* 5 Color Rotation — High Contrast */
.tag-pill:nth-child(5n+1) { background: #004AAD; }
.tag-pill:nth-child(5n+2) { background: #007F5F; }
.tag-pill:nth-child(5n+3) { background: #E7B700; color: #000; }
.tag-pill:nth-child(5n+4) { background: #9A1BFF; }
.tag-pill:nth-child(5n+5) { background: #112240; }

/* Hover Effect */
.tag-pill:hover {
    transform: translateY(-4px);
    opacity: 0.92;
}

/* --------------------------------------- */
/*           RECTANGLE TAG BOXES           */
/* --------------------------------------- */
.tag-box {
    display: block;
    width: 100%;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

/* Left stripe */
.tag-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 6px 0 0 6px;
}

/* BLUE TAG */
.tag-box.blue {
    background: #0d6efd;      /* COMPLIANT */
    color: #fff;
}
.tag-box.blue::before {
    background: #084298;
}

/* GREEN TAG (FIXED CONTRAST) */
.tag-box.green {
    background: #0B7A34;      /* DARKER GREEN → PASS */
    color: #fff;              /* WHITE OK */
}
.tag-box.green::before {
    background: #064e21;
}

/* Hover */
.tag-box:hover {
    opacity: 0.9;
}


/* ----------------------- */
/* RESPONSIVE BREAKPOINTS  */
/* ----------------------- */

/* Tablet → 4 per row */
@media (max-width: 992px) {
    .city-tags {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile → 3 per row */
@media (max-width: 768px) {
    .city-tags {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra small → 2 per row */
@media (max-width: 480px) {
    .city-tags {
        grid-template-columns: repeat(2, 1fr);
    }
}


.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 -3px 10px rgba(0,0,0,.25);
}

.lcol, .rcol {
    float: left;
    width: 50%;
    transition: all .3s ease;
}

/* Text always full white for contrast */
.lcol a, .rcol a {
    display: block;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 16px;
}

/* BLACK button – OK */
.lcol {
    background: #000000;
}
.lcol:hover {
    background: #000000;
}

/* FIXED RED button (accessible contrast) */
.rcol {
    background: #B80000; /* Darker red for WCAG pass */
}
.rcol:hover {
    background: #A50000;
}

@media (max-width:768px) {
    .lcol a, .rcol a {
        font-size: 14px;
        padding: 10px 0;
    }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

