.navbar-logo {
    height: 60px;
    width: auto;
}

/* Core Section Styling */
.premium-advantage-section {
    background-color: #fafbfd; /* A much softer off-white than default bg-light */
}

/* Typography refinements */
.premium-subtitle {
    color: #ff6b00; /* Assuming your brand orange based on the screenshot */
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.premium-title {
    color: #1a202c; /* Deep slate, much more elegant than pure black */
}

/* Image Wrapper and Floating Badge */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background-color: #e2e8f0;
    border-radius: 1rem;
    z-index: 0;
}

.premium-image {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Soft, expansive shadow */
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: 0px;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8); /* Glass effect border */
}

.badge-icon {
    color: #ff6b00; 
}

/* Premium Feature Cards */
.premium-feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Remove harsh default borders */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Barely-there default shadow */
}

.premium-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Shadow deepens smoothly on hover */
    border-color: rgba(0, 0, 0, 0.03);
}

/* Custom Icon Boxes */
.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 0, 0.1); /* Soft transparent tint of brand color */
    color: #ff6b00;
}

.bg-top{
background: linear-gradient(135deg, #0a0f1f 0%, #111827 100%);
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-logo {
        height: 55px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-logo {
        height: 50px;
    }
}

.feature-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #fff;
}


/* CARD STRUCTURE */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

/* BODY FLEX */
.service-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TEXT SAME HEIGHT */
.service-card p {
    min-height: 90px;
}

.service-card .btn {
    margin-top: auto;
    padding: 10px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/*----------------contact-----------*/
.bt-contact-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

/* Contact Info List */
.bt-contact-content ul {
    list-style: none; /* Removes the default black bullets */
    padding-left: 0;
    margin-top: 30px;
}

.bt-contact-content ul li {
    display: flex; /* Aligns the icon and text horizontally */
    align-items: flex-start;
    margin-bottom: 25px;
}

.bt-contact-content ul li .icon {
    font-size: 20px;
    color: #f28b00; /* Orange accent */
    margin-right: 20px;
    background: #fff4e6;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bt-contact-content ul li .content h5 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #0d2346; /* Dark blue matching the logo */
}

.bt-contact-content ul li .content a, 
.bt-contact-content ul li .content {
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.bt-contact-content ul li .content a:hover {
    color: #f28b00;
}

/* Social Icons */
.social-links {
    display: flex; /* Forces them into a horizontal row */
    gap: 12px;
    margin-top: 35px;
}

.social-links .btn-square {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2f6;
    color: #0d2346;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links .btn-square:hover {
    background: #f28b00;
    color: #fff;
    transform: translateY(-3px); /* Slight hover lift */
}

/* Form Container */
.contact-form-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Form Inputs */
.contact-form-box .input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    color: #f28b00;
}

.contact-form-box .form-control {
    padding: 12px 15px;
    font-size: 15px;
}

.contact-form-box .form-control:focus {
    box-shadow: none;
    border-color: #f28b00;
}

.contact-form-box .input-group:focus-within .input-group-text {
    border-color: #f28b00;
}

/* Theme Button */
.theme-btn {
    background-color: #0d2346;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s all ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.theme-btn:hover {
    background-color: #f28b00;
}

.theme-btn i {
    transition: transform 0.3s ease;
}

.theme-btn:hover i {
    transform: translateX(5px); /* Arrow moves slightly on hover */
}

/* Fix Captcha Layout */
#captcha-image {
    border-radius: 4px;
    border: 1px solid #ced4da;
    max-width: 100%;
}

/*-------------------------cta-banner--------------------------*/
.premium-stats-container {
    margin-top: -60px; 
    margin-bottom: 60px;
}

.premium-stats-bar {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-stats-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.06), 0 10px 20px rgba(0, 0, 0, 0.03);
}

.text-dark-slate {
    color: #1a202c !important;
    letter-spacing: -1px;
}

.text-brand-orange {
    color: #ff6b00;
    font-weight: 300;
}

.premium-stat-label {
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.stat-block {
    padding: 15px 0;
}

.stat-content {
    transition: transform 0.3s ease;
}

.stat-block:hover .stat-content {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .stats-divider-row .stat-block:not(:last-child) {
        border-right: 1px solid #f1f5f9; 
    }
}

/*-----------------slider------------------*/

.rsk-hero-section{
    position: relative;
    overflow: hidden;
    background: #020b24;
}

.rsk-hero-section .carousel-item{
    position: relative;
    height: 35rem;
}

.rsk-hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.rsk-overlay{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,12,45,0.72) 45%,
        rgba(0,0,0,0.45) 100%
    );
    z-index: 1;
}

.rsk-caption{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.rsk-mini-badge{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
}

.rsk-caption h1{
    color: #fff;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -2px;
    text-shadow: 0 8px 35px rgba(0,0,0,0.4);
}

.rsk-caption p{
    max-width: 820px;
    margin: auto;
    color: rgba(255,255,255,0.88);
    font-size: 20px;
    line-height: 1.7;
}


.rsk-btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 42px;
    border-radius: 60px;
    background: linear-gradient(135deg,#ff7b00,#ff5200);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(255,98,0,0.28);
    transition: 0.35s;
}

.rsk-btn-primary:hover{
    transform: translateY(-4px);
    color: #fff;
}

.rsk-btn-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 40px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 16px;
    transition: 0.35s;
}

.rsk-btn-secondary:hover{
    background: rgba(255,255,255,0.14);
    color: #fff;
}

/* Arrows */
.rsk-arrow{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: #fff;

    transition: 0.3s;
}

.rsk-arrow:hover{
    background: rgba(255,255,255,0.18);
}

.carousel-control-prev,
.carousel-control-next{
    width: 8%;
    z-index: 10;
}

/* ========================= TABLET========================= */

@media(max-width:991px){

    .rsk-hero-section .carousel-item{
        height: 700px;
    }

    .rsk-caption h1{
        font-size: 52px;
        line-height: 1.15;
    }

    .rsk-caption p{
        font-size: 17px;
        line-height: 1.8;
    }

}

/* =========================MOBILE========================= */

@media(max-width:576px){
    
    .rsk-hero-section .carousel-item{
        height: 420px;
    }

    .rsk-caption{
        padding: 0 15px;
    }

    .rsk-mini-badge{
        font-size: 10px;
        padding: 9px 16px;
        margin-bottom: 20px;
    }

    .rsk-caption h1{
        font-size: 34px;
        line-height: 1.25;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .rsk-caption p{
        font-size: 14px;
        line-height: 1.7;
    }

    .rsk-btn-primary,
    .rsk-btn-secondary{
        width: 100%;
        margin: 0 0 14px 0;
        padding: 14px 20px;
        font-size: 14px;
    }

    .rsk-arrow{
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
}
/*--------------------------------------about-us-section--------------------*/
.dwarka-premium-about-section { 
    background-color: #ffffff; 
    overflow: hidden; 
}
.dwarka-premium-img-container {
    padding-right: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.dwarka-premium-img-backdrop {
    position: absolute;
    top: 30px; right: 0; bottom: 0; left: 30px;
    background-color: #f8fafc; 
    border-radius: 24px;
    z-index: -1;
}

.dwarka-premium-main-img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    position: relative;
    z-index: 2;
}

.dwarka-premium-badge {
    position: absolute;
    bottom: -15px; 
    left: -15px;   
    background-color: #0f172a; 
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.05); 
}

.dwarka-premium-badge-icon {
    width: 45px; 
    height: 45px;
    background-color: rgba(255,107,0,0.1); 
    color: #ff6b00;
    border-radius: 12px;
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 1.2rem;
}

.dwarka-premium-badge-value {
    color: #ffffff; 
    font-size: 1.5rem; 
    font-weight: 800; 
    line-height: 1;
}

.dwarka-premium-badge-label {
    color: #ff6b00; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600; 
    margin-top: 4px;
}

/* --- Typography & Content --- */
.dwarka-premium-line { 
    width: 40px; 
    height: 2px; 
    background-color: #ff6b00; 
    display: inline-block; 
}

.dwarka-premium-subtitle { 
    color: #ff6b00; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.85rem; 
    font-weight: 700; 
}

.dwarka-premium-title { 
    color: #0f172a; 
    letter-spacing: -1px; 
}

.dwarka-premium-desc { 
    color: #64748b; 
    line-height: 1.8; 
    font-size: 1.05rem; 
}

.dwarka-premium-btn {
    background-color: #ff6b00; 
    color: #ffffff !important;
    padding: 14px 32px; 
    border-radius: 50px;
    font-weight: 600; 
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255,107,0,0.2);
}

.dwarka-premium-btn:hover {
    background-color: #e65c00; 
    transform: translateY(-3px); 
    box-shadow: 0 12px 25px rgba(255,107,0,0.3);
}

.dwarka-premium-contact-icon {
    width: 50px; 
    height: 50px;
    border: 2px solid #e2e8f0; 
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    color: #ff6b00; 
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dwarka-premium-contact:hover .dwarka-premium-contact-icon {
    background-color: #ff6b00; 
    color: #ffffff; 
    border-color: #ff6b00;
}

.dwarka-premium-contact-label { 
    color: #94a3b8; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600; 
}

.dwarka-premium-contact-number { 
    color: #0f172a; 
    font-size: 1.25rem; 
    font-weight: 800; 
    text-decoration: none; 
    transition: color 0.3s ease;
}

.dwarka-premium-contact-number:hover {
    color: #ff6b00;
}

/*-----------------------------------------why-choose-us-------------------*/
.dark-advantage-section {
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.text-brand-orange {
    color: #ff6b00;
}

.tracking-wide {
    letter-spacing: 1.5px;
}

.glass-feature-card {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 1.25rem;
    transition: all 0.4s ease;
}

.glass-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px); 
    border-color: rgba(255, 107, 0, 0.3); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.glass-feature-card:hover .glass-icon-box {
    background: #ff6b00;
    color: #ffffff;
    transform: rotate(5deg) scale(1.1);
}

.advantage-img-wrapper {
    padding: 20px;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0) 70%);
    filter: blur(40px);
    z-index: 0;
}

.dark-floating-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background: rgba(15, 23, 42, 0.9); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.badge-icon-glow {
    color: #ff6b00;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}

/*-------------------------------services-----------------------------*/
.cinematic-service-section {
    background-color: #fafbfd; 
}

.text-brand-orange {
    color: #ff6b00;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.text-dark-slate {
    color: #111827 !important;
}

.cinematic-card {
    display: block;
    position: relative;
    border-radius: 20px; 
    overflow: hidden;
    height: 420px; 
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateZ(0); 
}

.cinematic-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cinematic-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.4s ease;
}

.cinematic-content {
    transform: translateY(35px); 
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cinematic-content p {
    line-height: 1.6;
}

.cinematic-btn {
    display: inline-flex;
    align-items: center;
    color: #ff6b00;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0; /* Invisible by default */
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.cinematic-card:hover .cinematic-img {
    transform: scale(1.08);
}

.cinematic-card:hover .cinematic-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(0,0,0,0.1) 100%);
}

.cinematic-card:hover .cinematic-content {
    transform: translateY(0);
}

.cinematic-card:hover .cinematic-btn {
    opacity: 1;
    transform: translateY(0);
}  

/*----------------------faq----------------------*/
  .faq-section .accordion-item {
        border: none;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
    }
    .faq-section .accordion-button {
        font-weight: 600;
        font-size: 1.05rem;
        color: #0d2346; /* Brand Dark Blue */
        background-color: #ffffff;
        padding: 20px;
    }
    .faq-section .accordion-button:not(.collapsed) {
        color: #f28b00; /* Brand Orange */
        background-color: #fff4e6; /* Light Orange Tint */
        box-shadow: none;
    }
    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    .faq-section .accordion-body {
        color: #6c757d;
        line-height: 1.7;
        padding: 20px;
        background-color: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.03);
    }
/*--------------footer------------*/
.advanced-dark-footer {
    background-color: #0f172a; 
    color: #94a3b8; 
    position: relative;
}

.advanced-dark-footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.text-light-slate {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-heading {
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00 0%, rgba(255, 107, 0, 0) 100%);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #cbd5e1;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.footer-icon {
    color: #ff6b00; 
    margin-right: 10px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Link Hover Effects */
.footer-links a:hover {
    color: #ffffff;
    transform: translateX(6px); 
}

.footer-links a:hover .footer-icon {
    transform: scale(1.2);
}

.contact-item:hover .text-light-slate {
    color: #ffffff;
}

.contact-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 107, 0, 0.1); 
    color: #ff6b00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05); 
    color: #ffffff;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background-color: #ff6b00;
    color: #ffffff;
    transform: translateY(-4px);
    border-color: #ff6b00;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3); 
}

.footer-bottom {
    background-color: #0b1120; 
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.brand-hover:hover {
    color: #ff6b00 !important;
}


@media(max-width:768px){
    .dwarka-premium-badge{
        display: none;
    }
}