

/* =========================================================
   ROOT COLORS - MATCHING DEEP RELOCATION LOGO
========================================================= */

:root {

    --deep-charcoal: #202c35;
    --deep-charcoal-dark: #172129;

    --deep-gold: #c9974a;
    --deep-gold-light: #e1b86c;

    --deep-white: #ffffff;

    --deep-border: rgba(201,151,74,0.28);

}


/* =========================================================
   MAIN HEADER
========================================================= */

.deep-top-header {

    position: relative;

    width: 100%;

    z-index: 9999;

    background:

        linear-gradient(
            90deg,
            #172129 0%,
            #202c35 50%,
            #172129 100%
        );

    color: #ffffff;

    border-bottom: 1px solid var(--deep-border);

    box-shadow:
        0 4px 18px rgba(0,0,0,0.14);

}


/* =========================================================
   CONTAINER
========================================================= */

.deep-top-container {

    width: 100%;

    min-height: 52px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


/* =========================================================
   LEFT SIDE
========================================================= */

.deep-top-left {

    display: flex;

    align-items: center;

    min-width: 0;

}


.deep-top-location {

    display: flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;

}


/* =========================================================
   ICON
========================================================= */

.deep-icon {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(201,151,74,0.22),
            rgba(201,151,74,0.07)
        );

    border: 1px solid rgba(201,151,74,0.35);

    color: var(--deep-gold-light);

}


.deep-icon i {

    font-size: 17px;

}


/* =========================================================
   LOCATION TEXT
========================================================= */

.deep-location-text {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.deep-location-text .deep-small-label {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.1px;

    color: rgba(255,255,255,0.52);

    margin-bottom: 3px;

}


.deep-location-text strong {

    font-size: 13px;

    font-weight: 600;

    color: rgba(255,255,255,0.94);

    letter-spacing: 0.15px;

}


/* =========================================================
   DIVIDER
========================================================= */

.deep-divider {

    width: 1px;

    height: 25px;

    margin: 0 18px;

    flex-shrink: 0;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

}


/* =========================================================
   SERVICE TEXT
========================================================= */

.deep-top-service {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 400;

    color: rgba(255,255,255,0.65);

    white-space: nowrap;

}


.deep-service-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--deep-gold);

    box-shadow:
        0 0 0 4px rgba(201,151,74,0.10);

}


/* =========================================================
   RIGHT SIDE
========================================================= */

.deep-top-right {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    min-width: 0;

}


/* =========================================================
   CONTACT LINK
========================================================= */

.deep-contact-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.88);

    text-decoration: none !important;

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color .3s ease,
        transform .3s ease;

}


.deep-contact-link:hover {

    color: var(--deep-gold-light);

    transform: translateY(-1px);

}


/* =========================================================
   CONTACT ICON
========================================================= */

.deep-contact-icon {

    width: 29px;

    height: 29px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--deep-gold-light);

    background:
        rgba(201,151,74,0.10);

    border: 1px solid rgba(201,151,74,0.26);

    transition:
        background .3s ease,
        border-color .3s ease;

}


.deep-contact-link:hover .deep-contact-icon {

    background:
        rgba(201,151,74,0.20);

    border-color:
        rgba(201,151,74,0.55);

}


.deep-contact-icon i {

    font-size: 15px;

}


/* =========================================================
   PHONE
========================================================= */

.deep-phone span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.deep-phone small {

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.45);

    margin-bottom: 2px;

}


/* =========================================================
   CTA BUTTON
========================================================= */

.deep-top-cta {

    margin-left: 18px;

    min-height: 36px;

    padding: 0 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #ffffff !important;

    text-decoration: none !important;

    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            #c9974a,
            #dfb667
        );

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .55px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.16);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.deep-top-cta i {

    font-size: 17px;

    transition:
        transform .3s ease;

}


.deep-top-cta:hover {

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0,0,0,0.25);

}


.deep-top-cta:hover i {

    transform: translateX(4px);

}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1400px) {

    .deep-top-container {

        padding-left: 40px;

        padding-right: 40px;

    }

    .deep-location-text strong {

        font-size: 13px;

    }

    .deep-contact-link {

        font-size: 13px;

    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .deep-top-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .deep-top-service {

        display: none;

    }


    .deep-divider {

        margin-left: 12px;

        margin-right: 12px;

    }


    .deep-top-cta {

        margin-left: 12px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .deep-top-container {

        min-height: 46px;

    }


    .deep-top-left {

        display: none;

    }


    .deep-top-right {

        width: 100%;

        justify-content: center;

    }


    .deep-email {

        display: inline-flex;

    }


    .deep-top-cta {

        display: none;

    }


    .deep-contact-divider {

        display: block;

    }

}


/* =========================================================
   MOBILE
   EMAIL + PHONE ONLY
========================================================= */

@media (max-width: 767px) {

    .deep-top-header {

        background:
            linear-gradient(
                90deg,
                #172129,
                #202c35,
                #172129
            );

    }


    .deep-top-container {

        min-height: 44px;

        padding:
            0 12px;

        gap: 0;

    }


    .deep-top-right {

        width: 100%;

        justify-content: center;

        gap: 0;

    }


    .deep-email {

        display: inline-flex;

        font-size: 11px;

    }


    .deep-phone {

        display: inline-flex;

        font-size: 12px;

    }


    .deep-contact-icon {

        width: 25px;

        height: 25px;

    }


    .deep-contact-icon i {

        font-size: 13px;

    }


    .deep-phone small {

        display: none;

    }


    .deep-phone span:last-child {

        display: block;

    }


    .deep-contact-divider {

        height: 20px;

        margin:
            0 10px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .deep-top-container {

        padding:
            0 8px;

    }


    .deep-email {

        font-size: 10px;

    }


    .deep-phone {

        font-size: 11px;

    }


    .deep-contact-divider {

        margin:
            0 7px;

    }


    .deep-email .deep-contact-icon {

        width: 23px;

        height: 23px;

    }


    .deep-phone .deep-contact-icon {

        width: 23px;

        height: 23px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .deep-email {

        font-size: 9px;

    }


    .deep-phone {

        font-size: 10px;

    }


    .deep-contact-divider {

        margin:
            0 5px;

    }


    .deep-email .deep-contact-icon,
    .deep-phone .deep-contact-icon {

        display: none;

    }

}





/* =========================================================
   COLOR SYSTEM
========================================================= */

:root {

    --deep-charcoal: #202c35;

    --deep-charcoal-dark: #172129;

    --deep-gold: #c9974a;

    --deep-gold-light: #dfb467;

    --deep-bg-light: #ffffff;

    --deep-text: #202c35;

}


/* =========================================================
   NAVBAR AREA
========================================================= */

.navbar-area {

    position: relative;

    width: 100%;

    z-index: 999;

    background: #ffffff;

    box-shadow:
        0 5px 28px rgba(23,33,41,0.08);

}


.navbar-area .desktop-nav {

    background: #ffffff;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar-area .desktop-nav .navbar {

    min-height: 86px;

    padding-top: 0;

    padding-bottom: 0;

}


/* =========================================================
   LOGO
========================================================= */

.navbar-area .navbar-brand {

    display: flex;

    align-items: center;

    margin-right: 32px;

    padding: 0;

}


.navbar-area .navbar-brand img {

    width: 175px;

    max-width: 175px;

    height: auto;

    display: block;

    transition:
        transform .3s ease;

}


.navbar-area .navbar-brand:hover img {

    transform: scale(1.025);

}


/* =========================================================
   NAV MENU
========================================================= */

.navbar-area .desktop-nav
.navbar .navbar-nav {

    display: flex;

    align-items: center;

    gap: 4px;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item {

    position: relative;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: var(--deep-charcoal);

    font-size: 16px;

    font-weight: 500;

    letter-spacing: .15px;

    padding:
        25px 1px;

    text-decoration: none;

    transition:
        color .3s ease;

}


/* =========================================================
   GOLD UNDERLINE
========================================================= */

.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a::after {

    content: "";

    position: absolute;

    left: 10px;

    right: 10px;

    bottom: 22px;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--deep-gold),
            var(--deep-gold-light)
        );

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform .3s ease;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a:hover::after,

.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a.active::after {

    transform:
        scaleX(1);

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a:hover,

.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a.active {

    color:
        var(--deep-gold);

}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item > a > i {

    margin-left: 4px;

    font-size: 16px;

    transition:
        transform .3s ease;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item:hover > a > i {

    transform:
        rotate(180deg);

}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu {

    display: block;

    min-width: 300px;

    padding: 8px 0;

    margin: 0;

    background: #ffffff;

    border: 0;

    border-top:
        3px solid var(--deep-gold);

    border-radius:
        0 0 10px 10px;

    box-shadow:
        0 18px 45px rgba(23,33,41,0.14);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(12px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item:hover > .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu li {

    margin: 0;

    padding: 0;

    border-bottom:
        1px solid #eeeeee;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu li:last-child {

    border-bottom: 0;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu li a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        12px 18px;

    color:
        var(--deep-charcoal);

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        padding-left .25s ease;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu li a i {

    width: 22px;

    min-width: 22px;

    text-align: center;

    color:
        var(--deep-gold);

    font-size: 15px;

    transition:
        transform .25s ease;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu li a:hover {

    background:
        linear-gradient(
            90deg,
            #fffaf1,
            #ffffff
        );

    color:
        var(--deep-gold);

    padding-left: 24px;

}


.navbar-area .desktop-nav
.navbar .navbar-nav
.nav-item .dropdown-menu li a:hover i {

    transform:
        translateX(2px);

}


/* =========================================================
   GET QUOTE BUTTON
========================================================= */

.deep-nav-quote {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 35px;

    padding:
        0 19px;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            var(--deep-charcoal),
            #2c3b46
        );

    border:
        1px solid rgba(201,151,74,.55);

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;

    text-decoration: none !important;

    box-shadow:
        0 5px 15px rgba(23,33,41,.12);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


.deep-nav-quote i {

    font-size: 17px;

    transition:
        transform .3s ease;

}


.deep-nav-quote:hover {

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            var(--deep-gold),
            var(--deep-gold-light)
        );

    border-color:
        var(--deep-gold);

    transform:
        translateY(-2px);

    box-shadow:
        0 9px 22px rgba(201,151,74,.22);

}


.deep-nav-quote:hover i {

    transform:
        translateX(4px);

}


/* =========================================================
   MOBILE RESPONSIVE NAV
========================================================= */

.mobile-responsive-nav {

    background:
        #ffffff;

    box-shadow:
        0 4px 20px rgba(23,33,41,.08);

}


.mobile-responsive-nav .logo img {

    width: 125px;

    max-width: 125px;

    height: auto;

}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-nav {

    padding:
        15px 20px;

}


.mobile-nav .deep-nav-quote {

    width: 100%;

}


/* =========================================================
   LAPTOP
========================================================= */

@media only screen and (max-width: 1199px) {

    .navbar-area .navbar-brand {

        margin-right: 18px;

    }


    .navbar-area .navbar-brand img {

        width: 125px;

        max-width: 125px;

    }


    .navbar-area .desktop-nav
    .navbar .navbar-nav {

        gap: 0;

    }


    .navbar-area .desktop-nav
    .navbar .navbar-nav
    .nav-item > a {

        font-size: 12px;

        padding:
            32px 7px;

    }


    .deep-nav-quote {

        padding:
            0 5px;

        font-size: 11px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

    .desktop-nav {

        display: none !important;

    }


    .mobile-responsive-nav {

        display: block;

    }


    .mobile-responsive-menu {

        min-height: 74px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 8px;

    }


    .mobile-responsive-menu .logo {

        display: flex;

        align-items: center;

    }


    .mobile-responsive-menu .logo img {

        width: 125px;

        max-width: 125px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 575px) {

    .mobile-responsive-menu {

        min-height: 68px;

        padding:
            0 5px;

    }


    .mobile-responsive-menu .logo img {

        width: 125px;

        max-width: 125px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media only screen and (max-width: 380px) {

    .mobile-responsive-menu .logo img {

        width: 102px;

        max-width: 102px;

    }

}





/* =========================================================
   DEEP RELOCATION FOOTER
   TEAL + ORANGE + CHARCOAL
========================================================= */

.deep-footer {

    position: relative;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #043c48 0%,
            #075968 48%,
            #16252b 100%
        );

}


.deep-footer-container {

    width: 100%;

    max-width: 1240px;

    margin: 0 auto;

    padding-left: 20px;
    padding-right: 20px;

}


/* =========================================================
   MAIN
========================================================= */

.deep-footer-main {

    position: relative;

    padding: 75px 0 60px;

}


.deep-footer-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        1.55fr;

    gap: 45px;

}


/* =========================================================
   LOGO
========================================================= */

.deep-footer-logo {

    display: inline-flex;

    padding: 10px 14px;

    margin-bottom: 14px;

    background: #ffffff;

    border-radius: 10px;

}


.deep-footer-logo img {

    display: block;

    width: 155px;

    height: auto;

}


.deep-footer-tagline {

    display: block;

    margin-bottom: 17px;

    color: #ffad3d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.deep-footer-about {

    max-width: 350px;

    margin: 0 0 13px;

    color: rgba(255,255,255,.70);

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================================
   HEADINGS
========================================================= */

.deep-footer-heading {

    margin-bottom: 22px;

}


.deep-footer-heading span {

    display: block;

    margin-bottom: 7px;

    color: #ffad3d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.deep-footer-heading h3 {

    position: relative;

    margin: 0;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 750;

}


.deep-footer-heading h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 38px;

    height: 3px;

    border-radius: 10px;

    background: #f28a18;

}


/* =========================================================
   NORMAL LINKS
========================================================= */

.deep-footer-links {

    padding: 0;

    margin: 0;

    list-style: none;

}


.deep-footer-links li {

    margin-bottom: 12px;

}


.deep-footer-links a {

    display: inline-flex;

    align-items: center;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none !important;

    transition: .3s ease;

}


.deep-footer-links a::before {

    content: "›";

    margin-right: 8px;

    color: #ffad3d;

    font-size: 17px;

    transition: .3s ease;

}


.deep-footer-links a:hover {

    color: #ffffff;

    transform: translateX(4px);

}


.deep-footer-links a:hover::before {

    color: #f28a18;

}


/* =========================================================
   SOCIAL
========================================================= */

.deep-footer-social {

    display: flex;

    gap: 8px;

    margin-top: 21px;

}


.deep-footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: #ffffff !important;

    text-decoration: none !important;

    transition: .3s ease;

}


.deep-footer-social a:hover {

    background: #f28a18;

    border-color: #f28a18;

    transform: translateY(-4px);

}


/* =========================================================
   TALUKA LINKS
========================================================= */

.deep-footer-location-intro {

    margin: -8px 0 18px;

    color: rgba(255,255,255,.60);

    font-size: 12px;

    line-height: 1.7;

}


.deep-footer-taluka-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 15px;

    row-gap: 8px;

}


.deep-footer-taluka-grid a {

    position: relative;

    display: block;

    padding: 5px 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none !important;

    transition: .3s ease;

}


.deep-footer-taluka-grid a::before {

    content: "";

    display: inline-block;

    width: 5px;

    height: 5px;

    margin-right: 7px;

    vertical-align: middle;

    border-radius: 50%;

    background: #f28a18;

    transition: .3s ease;

}


.deep-footer-taluka-grid a:hover {

    color: #ffffff;

    transform: translateX(3px);

}


.deep-footer-taluka-grid a:hover::before {

    background: #ffad3d;

}


/* =========================================================
   SEO STRIP
========================================================= */

.deep-footer-seo-strip {

    position: relative;

    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    border-bottom: 1px solid rgba(255,255,255,.08);

    background: rgba(0,0,0,.12);

}


.deep-footer-seo-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.deep-footer-seo-title {

    min-width: 270px;

}


.deep-footer-seo-title span {

    display: block;

    margin-bottom: 5px;

    color: #ffad3d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.deep-footer-seo-title h3 {

    margin: 0;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.4;

}


.deep-footer-seo-links {

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 7px;

}


.deep-footer-seo-links a {

    padding: 7px 10px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 7px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    text-decoration: none !important;

    background: rgba(255,255,255,.035);

    transition: .3s ease;

}


.deep-footer-seo-links a:hover {

    color: #ffffff;

    background: #f28a18;

    border-color: #f28a18;

}


/* =========================================================
   CTA
========================================================= */

.deep-footer-cta {

    background:

        linear-gradient(
            90deg,
            rgba(242,138,24,.14),
            rgba(7,89,104,.08)
        );

    border-bottom: 1px solid rgba(255,255,255,.08);

}


.deep-footer-cta-inner {

    min-height: 115px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.deep-footer-cta-inner > div:first-child span {

    display: block;

    margin-bottom: 5px;

    color: #ffad3d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.deep-footer-cta-inner h3 {

    margin: 0;

    color: #ffffff;

    font-size: 22px;

    line-height: 1.4;

}


.deep-footer-cta-buttons {

    display: flex;

    gap: 10px;

}


.deep-footer-call-btn,
.deep-footer-whatsapp-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 13px 18px;

    border-radius: 8px;

    color: #ffffff !important;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none !important;

    white-space: nowrap;

    transition: .3s ease;

}


.deep-footer-call-btn {

    background: #f28a18;

}


.deep-footer-whatsapp-btn {

    background: #075968;

    border: 1px solid rgba(255,255,255,.14);

}


.deep-footer-call-btn:hover {

    background: #ffad3d;

    color: #16252b !important;

    transform: translateY(-2px);

}


.deep-footer-whatsapp-btn:hover {

    background: #0b7180;

    transform: translateY(-2px);

}


/* =========================================================
   CONTACT BAR
========================================================= */

.deep-footer-contact-bar {

    padding: 25px 0;

    background: rgba(0,0,0,.16);

}


.deep-footer-contact-grid {

    display: grid;

    grid-template-columns: 1.8fr 1fr 1fr;

    gap: 25px;

}


.deep-footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.deep-footer-contact-icon {

    width: 35px;

    min-width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: rgba(242,138,24,.14);

    color: #ffad3d;

}


.deep-footer-contact-item span {

    display: block;

    margin-bottom: 4px;

    color: #ffad3d;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.deep-footer-contact-item p {

    max-width: 500px;

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 14px;

    line-height: 1.65;

}


.deep-footer-contact-item a {

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

}


.deep-footer-contact-item a:hover {

    color: #ffad3d;

}


/* =========================================================
   BOTTOM
========================================================= */

.deep-footer-bottom {

    background: #16252b;

}


.deep-footer-bottom-inner {

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.deep-footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 11px;

}


.deep-footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 11px;

}


.deep-footer-bottom-links a {

    color: rgba(255,255,255,.45);

    font-size: 10px;

    text-decoration: none !important;

    transition: .3s ease;

}


.deep-footer-bottom-links a:hover {

    color: #ffad3d;

}


.deep-footer-bottom-links span {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: #f28a18;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .deep-footer-grid {

        grid-template-columns:
            1.2fr
            1fr
            1fr;

    }

    .deep-footer-company {

        grid-column: span 3;

    }

    .deep-footer-about {

        max-width: 700px;

    }

    .deep-footer-seo-inner {

        align-items: flex-start;

        flex-direction: column;

    }

    .deep-footer-seo-links {

        justify-content: flex-start;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .deep-footer-main {

        padding: 45px 0 25px;

    }


    .deep-footer-grid {

        display: flex;

        flex-direction: column;

        gap: 0;

    }


    .deep-footer-column {

        width: 100%;

        padding: 26px 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);

    }


    .deep-footer-column:first-child {

        padding-top: 0;

    }


    .deep-footer-column:last-child {

        border-bottom: none;

    }


    .deep-footer-logo img {

        width: 135px;

    }


    .deep-footer-about {

        max-width: none;

        font-size: 12px;

    }


    .deep-footer-links a {

        font-size: 12px;

    }


    .deep-footer-taluka-grid {

        grid-template-columns: 1fr 1fr;

        column-gap: 14px;

        row-gap: 5px;

    }


    .deep-footer-taluka-grid a {

        font-size: 12px;

    }


    .deep-footer-seo-strip {

        padding: 25px 0;

    }


    .deep-footer-seo-inner {

        display: block;

    }


    .deep-footer-seo-title {

        min-width: 0;

        margin-bottom: 15px;

    }


    .deep-footer-seo-title h3 {

        font-size: 16px;

    }


    .deep-footer-seo-links {

        justify-content: flex-start;

    }


    .deep-footer-seo-links a {

        font-size: 14px;

        padding: 6px 8px;

    }


    .deep-footer-cta-inner {

        padding: 28px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .deep-footer-cta-inner h3 {

        font-size: 19px;

    }


    .deep-footer-cta-buttons {

        width: 100%;

        flex-direction: column;

    }


    .deep-footer-call-btn,
    .deep-footer-whatsapp-btn {

        width: 100%;

    }


    .deep-footer-contact-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .deep-footer-bottom-inner {

        padding: 18px 0;

        flex-direction: column;

        text-align: center;

    }


    .deep-footer-bottom-links {

        flex-wrap: wrap;

        justify-content: center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .deep-footer-container {

        padding-left: 14px;

        padding-right: 14px;

    }


    .deep-footer-taluka-grid {

        gap: 3px 10px;

    }


    .deep-footer-taluka-grid a {

        font-size: 9px;

    }


    .deep-footer-seo-links {

        gap: 5px;

    }

}



/* =========================================================
   DEEP RELOCATION - HEADER COMPATIBILITY FIX
   Ensures the home-page header renders identically on all
   pages even when Bootstrap/theme CSS is not loaded.
========================================================= */

.deep-top-header,
.navbar-area {
    width:100%;
    box-sizing:border-box;
}

.navbar-area .container-fluid {
    width:100%;
    margin:0 auto;
    padding-left:0px;
    padding-right:0px;
}

.navbar-area .navbar {
    width:100%;
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    margin:0;
    border:0;
}

.navbar-area .navbar-brand {
    flex:0 0 auto;
}

.navbar-area .navbar-collapse {
    display:flex;
    align-items:center;
    flex-basis:auto;
    flex-grow:1;
    min-width:0;
}

.navbar-area .navbar-nav {
    list-style:none;
    margin-top:0;
    margin-bottom:0;
    padding-left:0;
}

.navbar-area .navbar-nav .nav-item {
    list-style:none;
}

.navbar-area .desktop-nav .navbar .navbar-nav {
    margin-left:auto !important;
    margin-right:auto !important;
}

.navbar-area .desktop-nav .navbar .nav-link {
    text-decoration:none;
}

.navbar-area .dropdown-menu {
    list-style:none;
    margin:0;
    z-index:10050;
}

.navbar-area .dropdown-menu li {
    list-style:none;
}

.navbar-area .others-options {
    display:flex !important;
    align-items:center;
    flex:0 0 auto;
}

.navbar-area .mobile-nav {
    display:none;
}

.mobile-responsive-nav {
    display:none;
}

@media only screen and (max-width:991px) {
    .navbar-area .desktop-nav {
        display:none !important;
    }

    .navbar-area .mobile-responsive-nav,
    .mobile-responsive-nav {
        display:block !important;
    }

    .navbar-area .mobile-responsive-menu {
        position:relative;
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
    }

    .navbar-area .mobile-responsive-menu::after {
        content:"☰";
        display:flex;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        border-radius:10px;
        background:#202c35;
        color:#ffffff;
        font-size:19px;
        line-height:1;
    }
}

@media only screen and (min-width:992px) {
    .navbar-area .mobile-responsive-nav {
        display:none !important;
    }
}

@media only screen and (max-width:1199px) and (min-width:992px) {
    .navbar-area .container-fluid {
        padding-left:20px;
        padding-right:20px;
    }

    .navbar-area .navbar-brand img {
        width:150px;
        max-width:150px;
    }

    .navbar-area .desktop-nav .navbar .navbar-nav .nav-item > a {
        font-size:13px;
        padding-left:2px;
        padding-right:2px;
    }
}
