* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.navbar {
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo {
    color: #ffd700;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding: 0 10px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 4px; 
    line-height: 54px;
}

.nav-links li a:hover, .nav-links li a.active {
    background: #ff0000;
    color: #fff;
    box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.5);
}

#nav-check { display: none; }

a{color:#FFFF00; text-decoration:none}

@media (max-width: 992px) {
    .nav-btn {
        display: block;
        cursor: pointer;
    }
    .nav-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px;
        transition: 0.3s;
    }
    .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        height: 0;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 70px;
        left: 0;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #222;
        text-align: center;
    }
    .nav-links li a {
        padding: 20px;
    }
    #nav-check:checked ~ .nav-links {
        height: calc(100vh - 70px);
    }
}

.banner-section {
    background: linear-gradient(to bottom, #000, #0a192f, #000);
    overflow: hidden;
    padding: 40px 0;
}

.banner-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    align-items: center;
}

.banner-left { flex: 1.2; }
.banner-left img { width: 100%; height: auto; object-fit: cover; }

.banner-center {
    flex: 2;
    text-align: center;
    padding: 0 20px;
}

.brand-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    color: #00d4ff;
    text-shadow: 3px 3px 10px #000;
}

.sub-title {
    font-size: 22px;
    letter-spacing: 2px;
    color: #fff;
    border-top: 1px solid #333;
    display: inline-block;
    padding-top: 5px;
}

.call-box {
    margin: 30px 0;
}

.call-icon { font-size: 40px; color: #fff; }
.phone-num { 
    font-size: 65px; 
    font-weight: bold; 
    color: #ffd700; 
    margin-left: 10px;
}

.dummy-para {
    color: #ccc;
    font-size: 15px;
    max-width: 85%;
    margin: auto;
    line-height: 1.6;
}

.firm-name {
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #b21f1f;
    letter-spacing: 3px;
}

.banner-right {
    flex: 1.5;
    text-align: center;
}

.highlight-gold { color: #ffd700; font-size: 35px; margin-bottom: 5px; }
.highlight-cyan { color: #00d4ff; font-size: 32px; margin-top: 20px; }

.dream-msg { font-size: 14px; margin-top: 10px; opacity: 0.8; }

.car-image { margin-top: 30px; }
.car-image img { width: 100%; height: auto; }

@media (max-width: 992px) {
    .banner-container { flex-direction: column; }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .hamburger span { width: 30px; height: 3px; background: #fff; }
    #nav-toggle:checked ~ .nav-menu { display: flex; }
    
    .brand-title { font-size: 40px; }
    .phone-num { font-size: 45px; }
}

.main-layout-holder {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-primary-zone {
    flex: 2;
    min-width: 320px;
}

.info-primary-zone h1 {
    color: #ffcc00; 
    font-size: 32px;
    text-transform:capitalize;
    margin-bottom: 15px;
}

.info-primary-zone h3 {
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.info-primary-zone p {
    color: #d1d1d1;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.info-primary-zone .highlight-accent {
    color: #ffcc00;
    font-weight: bold;
}

.visual-media-frame {
    border: 2px solid #ff0000;
    border-radius: 4px;
    overflow: hidden;
    margin: 30px 0;
    background: #050505;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}

.visual-media-frame video {
    width: 100%;
    display: block;
}

.action-trigger-area {
    text-align: center;
    margin-top: 30px;
}

.btn-contact-style {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 12px 35px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-contact-style:hover {
    background: #fff;
    color: #000;
}

.btn-contact-style img {
    width: 35px;
    margin-right: 12px;
}

.btn-contact-style span {
    font-size: 22px;
    font-weight: bold;
    text-align: left;
}

.btn-contact-style small {
    display: block;
    font-size: 11px;
    color: #25d366;
}

.sidebar-secondary-zone {
    flex: 1;
    background: #0a0a0a;
    padding: 25px;
    border: 1px solid #1a1a1a;
    min-width: 300px;
}

.sidebar-heading {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.update-row-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #151515;
}

.update-row-item img {
    width: 75px;
    height: 75px;
    border: 1px solid #222;
    object-fit: cover;
}

.update-text-content h4 {
    font-size: 15px;
    color: #f0f0f0;
}

.update-text-content p {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .main-layout-holder {
        flex-direction: column;
        padding: 20px;
    }
}

.premium-gallery {
    background-color: #000; 
    padding: 60px 20px;
    color: #fff;
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    margin-bottom: 40px;
    text-align: left;
}

.gallery-header h2 {
    color: #FFD700; 
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.gallery-header p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    border-bottom: 3px solid #FFD700;
}

.img-container {
    position: relative;
    width: 100%;
    height: 320px; 
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.vip { background-color: #FFD700; color: #000; }
.verified { background-color: #FF0000; color: #fff; }

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #111;
}

.red-bg {
    background: linear-gradient(to top, #660000, #111);
}

.meta h3 {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.meta p {
    font-size: 14px;
    color: #bbb;
    margin-top: 2px;
}

.stats {
    text-align: center;
}

.stats .icon {
    display: block;
    font-size: 18px;
    color: #555;
}

.stats .count {
    font-size: 12px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .img-container {
        height: 250px;
    }
}

.browse-types-section {
    background-color: #000; 
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    color: #FFD700; 
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.button-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.type-btn {
    display: inline-block;
    padding: 12px 23px;
    background: linear-gradient(to bottom, #ffcc33 0%, #ff9900 100%);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    border-radius: 4px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    border: none;
}

.type-btn:hover {
    background: linear-gradient(to top, #ffcc33 0%, #ff9900 100%);
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(255, 153, 0, 0.4);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
    .button-grid {
        justify-content: center;
    }
    .type-btn {
        width: 100%;
        max-width: 250px;
    }
}

.monsoon-offer {
    background-color: #0f0f0f; 
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.offer-title {
    color: #d32f2f; 
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.offer-title span {
    color: #ffd700;
}

.offer-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.offer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 30px;
}

.offer-btn {
    display: inline-block;
    background-color: #d32f2f;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.offer-btn:hover {
    background-color: #ffd700;
    color: #000;
}

.offer-image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .offer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .offer-title {
        font-size: 1.8rem;
    }
}

.category-section {
    background-color: #000; 
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    color: #ffcc00; 
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.main-title span {
    color: #ffffff;
    display: block;
    font-size: 24px;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cat-item {
    background: linear-gradient(145deg, #ffcc00, #d4ac0d);
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.cat-item:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cat-item.highlight-red {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cat-item.highlight-red:hover {
    background: #fff;
    color: #c0392b;
    border-color: #c0392b;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 24px;
    }
    .cat-item {
        font-size: 13px;
        padding: 8px 15px;
    }
}

.section-22 {
    width: 100%;
    padding: 40px 0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.s22-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.s22-main-title {
    color: #d32f2f;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.s22-sub-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.s22-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.s22-brand {
    color: #d32f2f;
}

.s22-highlight {
    color: #d32f2f;
}

.s22-feature-box {
    margin: 30px 0;
}

.s22-box-title {
    font-size: 20px;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .s22-main-title {
        font-size: 24px;
    }
    .s22-text {
        font-size: 14px;
    }
}

.cc-content-block {
    width: 100%;
    padding: 70px 0;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: block;
    clear: both;
    overflow: hidden;
}

.cc-inner-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cc-hero-title {
    color: #b71c1c;
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.cc-hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 35px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-main-desc {
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.cc-brand-mark {
    color: #ff3d00;
    font-weight: 600;
}

.cc-accent-text {
    color: #ff3d00;
    font-weight: 700;
}

.cc-info-segment {
    margin: 45px 0;
    display: block;
}

.cc-segment-title {
    font-size: clamp(22px, 4vw, 34px);
    color: #b71c1c;
    font-weight: 800;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.cc-segment-tagline {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cc-content-block {
        padding: 40px 0;
    }
    .cc-main-desc {
        font-size: 15px;
        text-align: left;
    }
}

.cc-gallery-block {
    background-color: #000000;
    padding: 60px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
}

.cc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cc-gallery-title {
    color: #ffcc00;
    font-size: 32px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cc-gallery-subtitle {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
}

.cc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cc-profile-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #333;
}

.cc-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    border-color: #ffcc00;
}

.cc-image-box {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.cc-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cc-profile-card:hover .cc-image-box img {
    transform: scale(1.1);
}

.cc-heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffcc00;
    font-size: 18px;
}

.cc-info-box {
    padding: 15px;
    background: #111;
}

.cc-model-name {
    color: #ffcc00;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-model-loc {
    color: #cccccc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .cc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cc-gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .cc-gallery-title {
        font-size: 24px;
    }
}

.explore-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

.explore-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.explore-main-title {
    color: #facc15;
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.explore-sub-title {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.explore-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
}

.highlight-link {
    color: #facc15;
    font-weight: bold;
    text-decoration: underline;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.location-item {
    width: 150px;
    transition: transform 0.3s ease;
}

.img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid #facc15;
    padding: 5px;
    overflow: hidden;
    background: #ffffff;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.location-item:hover {
    transform: translateY(-10px);
}

.location-item:hover img {
    transform: scale(1.1);
}

.loc-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.show-more-btn {
    background-color: #ffffff;
    color: #0f172a;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background-color: #facc15;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .location-item {
        width: 40%;
    }
    .img-wrapper {
        width: 110px;
        height: 110px;
    }
}

.premium-services {
    width: 100%;
    padding: 80px 0;
    background:#900;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-main-title {
    color: #ffd700;
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
}

.services-sub-title {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: 1px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-title {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 10px;
}

.img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .img-container img {
    transform: scale(1.1);
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: center;
}

@media (max-width: 1024px) {
    .services-grid {
        justify-content: center;
    }
    .service-card {
        flex: none;
        width: 45%;
    }
}

@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }
    .services-main-title {
        text-align: center;
    }
    .services-sub-title {
        text-align: center;
    }
}

.escort-services {
    background-color: #151515;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 40px;
}

.escort-services h1 {
    font-family: 'Montserrat', sans-serif;
    color: #ffcc00;
    font-size: 36px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.escort-services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.escort-services p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .escort-services h1 {
        font-size: 28px;
    }
    .sub-headline {
        font-size: 14px;
    }
    .escort-services p {
        text-align: left;
    }
}

.content-section {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 40px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.dark-block {
    background-color: #800000;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.dark-block h1 {
    color: #ffcc00;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dark-block .sub-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.dark-block h3 {
    font-size: 22px;
    color: #ffffff;
    margin-top: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.dark-block p {
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: justify;
}

.light-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.red-title {
    color: #d00000;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.red-title span {
    color: #333;
    font-size: 24px;
}

.dark-title {
    color: #444;
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    text-transform: uppercase;
}

.highlight-red {
    color: #d00000;
    font-weight: 600;
}

.light-block p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .dark-block, .light-block {
        padding: 20px;
    }
    .red-title {
        font-size: 28px;
    }
}

.footer-section {
    background-color: #800000;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-column ul li a:hover {
    color: #ffcc00;
    opacity: 1;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffcc00;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 28px;
    vertical-align: middle;
    margin: 0 5px;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #FFFFCC;
    padding-top: 30px;
    text-align: center;
	margin-bottom:40px;

}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.dmca-badge img {
    max-width: 100px;
    filter: grayscale(100%) brightness(200%);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #ffcc00;
        margin: 8px auto;
    }
}


		.nowcalling
{display:block;position:fixed;bottom:0;width:100%;z-index:9999}
.lcol,.rcol,.ccol
{float:left;width:50%}
.lcol{background-color:#E822A9}
.rcol{background-color:#058937}
.lcol a,.rcol a,.ccol a{display:block;padding:10px 0;text-align:center;text-decoration:none;color:#fff}	
		