
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


body{
    overflow-x: hidden;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 0.5s;
}

/* ===== Services Dropdown Improvements ===== */

/* Dropdown container spacing */
.navbar .dropdown-menu {
    padding: 12px 0;
    border-radius: 10px;
}

/* Dropdown item spacing */
.navbar .dropdown-item {
    padding: 12px 22px;        /* GAP */
    margin: 4px 8px;           /* SPACE BETWEEN ITEMS */
    border-radius: 6px;
    transition: all 0.25s ease;
}

/* Hover background */
.navbar .dropdown-item:hover {
    background-color: #107ead; /* Brand color */
    color: #ffffff;
}

/* Optional: little left move on hover (very subtle) */
.navbar .dropdown-item:hover {
    padding-left: 28px;
}


/* LOGO (as you already had) */
.header-logo {
    max-height: 98px !important;
    width: auto;
}
@media (max-width: 991px) {
    .header-logo { max-height: 60px; }
}
@media (max-width: 576px) {
    .header-logo { max-height: 50px; }
}

/* =========================
   DESKTOP – ORIGINAL THEME FIX
========================= */
@media (min-width: 992px) {

    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 12px;
    }

    /* 🔥 THIS IS THE KEY LINE YOU WERE MISSING */
    .navbar .navbar-nav .nav-item {
        padding: 15px 14px;   /* RESTORES SPACE */
        display: flex;
        align-items: center;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #222;
        position: relative;
        transition: 0.3s;
    }

    /* Clean underline hover (original feel) */
    .navbar .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #107ead;
        transition: width 0.3s ease;
    }

    .navbar .navbar-nav .nav-link:hover::after,
    .navbar .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #107ead;
    }

    /* Talk to Experts – ORIGINAL POSITION */
    .navbar .nav-btn {
        margin-left: auto;
        padding-right: 10px;
    }

    .navbar .nav-btn .btn {
        border-radius: 30px;
        padding: 10px 26px;
    }

    .navbar .nav-btn .btn:hover {
        box-shadow: 0 10px 25px rgba(16,126,173,0.35);
        transform: translateY(-2px);
    }
}

/* =========================
   MOBILE – UNCHANGED
========================= */
@media (max-width: 991px) {

    .navbar .navbar-nav {
        margin-top: 20px;
        padding: 20px;
        background: var(--bs-light);
        border-radius: 12px;
    }

    .navbar .navbar-nav .nav-item {
        padding: 15px 0;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        text-transform: uppercase;
    }
}
/*** Navbar End ***/



/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 37, 77, 0.9), rgba(0, 0, 0, 0.459)), url(../img/breadcrumb.png);
    background-position: Top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/




/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: #107ead;
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background-color: #107ead !important;
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: #107ead !important;
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #107ead !important;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}



/* =====================================
   Service Section – Equal Image Height
   (Responsive + Important)
===================================== */

.service-img {
    height: 240px !important;     /* Desktop height */
    overflow: hidden !important;
    position: relative !important;
}

.service-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* No stretch, perfect crop */
    display: block !important;
}

/* Tablet */
@media (max-width: 991px) {
    .service-img {
        height: 220px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .service-img {
        height: 200px !important;
    }
}




















/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: #084d8e;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/















/* Why Choose Us Card Animation */
.why-card {
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #107ead;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Icon styling */
.icon-box {
    width: 60px;
    height: 60px;
    background-color: #107ead;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.4s ease;
}

.why-card:hover .icon-box {
    background-color: #ffffff;
    color: #107ead;
    transform: rotateY(180deg);
}



/* =========================
   CTA SECTION – ENHANCED
========================= */

.cta-section {
    position: relative;
    overflow: hidden;
}

/* Soft animated background glow */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: ctaGlow 8s infinite linear;
}

@keyframes ctaGlow {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(200px) translateY(80px); }
    100% { transform: translateX(0) translateY(0); }
}

/* Small badge */
.cta-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* CTA Button */
.cta-btn {
    font-size: 17px;
    font-weight: 600;
    transition: all 0.35s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Phone link */
.cta-phone {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-phone:hover {
    opacity: 0.8;
}




/* ==============================
   RKS WHY SECTION – PREMIUM
============================== */

.rks-why-section {
    background: linear-gradient(135deg, #f5fbff, #ffffff);
    padding: 90px 0;
}

.rks-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.rks-heading h5 {
    color: #107ead;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.rks-heading h2 {
    font-size: 42px;
    margin: 15px 0;
}

.rks-heading h2 span {
    color: #107ead;
}

.rks-heading p {
    font-size: 18px;
    line-height: 1.7;
}

/* Grid */
.rks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rks-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.rks-box i {
    font-size: 36px;
    color: #107ead;
    margin-bottom: 15px;
}

.rks-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(16,126,173,0.25);
}

/* Leadership */
.rks-leadership {
    margin-top: 90px;
    text-align: center;
}

.rks-leadership h3 {
    margin-bottom: 40px;
}

.rks-leaders {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.leader-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.leader-card span {
    color: #107ead;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.rks-team-note {
    margin-top: 25px;
    font-size: 17px;
}

/* Promise */
.rks-promise {
    margin-top: 80px;
    text-align: center;
}

.promise-flow {
    background: #107ead;
    color: #fff;
    padding: 14px 24px;
    border-radius: 30px;
    display: inline-block;
    margin: 20px 0;
    font-weight: 600;
}

.rks-promise blockquote {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
}

.rks-tagline {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #107ead;
}

/* Responsive */
@media (max-width: 991px) {
    .rks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rks-heading h2 {
        font-size: 30px;
    }
    .rks-grid {
        grid-template-columns: 1fr;
    }
}



/* ==============================
   ABOUT PURPOSE – CUSTOM STYLE
============================== */

.rks-about-purpose {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f3f9fc);
}

/* LEFT PANEL */
.about-panel {
    padding-right: 40px;
}

.about-tag {
    display: inline-block;
    background: rgba(16,126,173,0.12);
    color: #107ead;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-panel h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-panel h2 span {
    color: #107ead;
}

.about-panel .lead {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* RIGHT FLOW */
.about-flow {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}

.flow-step {
    background: #ffffff;
    padding: 24px 26px 24px 80px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.flow-step span {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 44px;
    height: 44px;
    background: #107ead;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 28px 60px rgba(16,126,173,0.25);
}

/* Responsive */
@media (max-width: 991px) {

    .rks-about-purpose {
        padding: 70px 0;
    }

    .about-panel {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .about-panel h2 {
        font-size: 32px;
    }

    .about-flow {
        gap: 18px;
    }

    .flow-step {
        padding-left: 70px;
    }
}

@media (max-width: 576px) {
    .about-panel h2 {
        font-size: 28px;
    }
}








/* ==============================
   RKS SERVICES – TEXT LED STYLE
============================== */

.rks-services {
    padding: 100px 0;
    background: #f9fbfd;
}

.rks-services-head {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.rks-services-head h5 {
    color: #107ead;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.rks-services-head h2 {
    font-size: 42px;
    margin: 15px 0;
}

.rks-services-head p {
    font-size: 18px;
    line-height: 1.7;
}

/* Service List */
.rks-service-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Service Block */
.rks-service-block {
    display: flex;
    gap: 30px;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.rks-service-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(16,126,173,0.18);
}

/* Icon */
.service-icon {
    min-width: 70px;
    height: 70px;
    background: rgba(16,126,173,0.12);
    color: #107ead;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Content */
.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 15px;
}

.service-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.service-content ul li {
    margin-bottom: 6px;
}

.service-note {
    font-style: italic;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .rks-service-block {
        flex-direction: column;
    }

    .service-icon {
        margin-bottom: 10px;
    }

    .rks-services-head h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .rks-services {
        padding: 70px 0;
    }

    .rks-services-head h2 {
        font-size: 28px;
    }
}





/* ==============================
   SERVICE HERO
============================== */
.rks-service-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(16,126,173,0.12);
    color: #107ead;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 18px 0 12px;
    color: #0b2c44;
}

.hero-content p {
    font-size: 18px;
    max-width: 780px;
    margin: 0 auto;
    color: #5c6f82;
    line-height: 1.7;
}

/* ==============================
   SERVICE DETAILS
============================== */
.rks-service-details {
    padding: 90px 0;
    background: #ffffff;
}

.detail-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    margin-bottom: 45px;
    transition: all 0.4s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
}

.detail-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0b2c44;
}

.detail-card p {
    color: #5c6f82;
    line-height: 1.8;
}

/* ==============================
   FEATURE GRID
============================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-box {
    background: #f9fbfd;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    transition: 0.45s;
    border: 1px solid #eef3f8;
}

.feature-box i {
    font-size: 34px;
    color: #107ead;
    margin-bottom: 12px;
}

.feature-box h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0b2c44;
}

.feature-box p {
    font-size: 15px;
    color: #5c6f82;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 25px 45px rgba(16,126,173,0.15);
}

/* ==============================
   CHANNEL LIST
============================== */
.channel-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.channel-list li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2d3e50;
}

/* ==============================
   SERVICE CTA
============================== */
.service-cta {
    background: linear-gradient(135deg, #eef7fc, #f9fcff);
    padding: 50px;
    border-radius: 25px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.service-cta::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(16,126,173,0.12);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.service-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0b2c44;
}

.service-cta p {
    color: #5c6f82;
    margin-bottom: 20px;
}

/* ==============================
   SIDEBAR
============================== */
.rks-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.sidebar-card h5 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #0b2c44;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    margin-bottom: 14px;
    font-weight: 500;
}

.sidebar-card ul li a {
    color: #5c6f82;
    transition: 0.3s;
}

.sidebar-card ul li a:hover {
    color: #107ead;
}

.sidebar-card ul li.active {
    color: #107ead;
    font-weight: 600;
}

/* Pulse animation */
.pulse-box {
    animation: pulseGlow 2.8s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(16,126,173,0.25); }
    50% { box-shadow: 0 0 30px rgba(16,126,173,0.35); }
    100% { box-shadow: 0 0 0 rgba(16,126,173,0.25); }
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 991px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .rks-sidebar {
        position: relative;
        top: 0;
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .rks-service-hero img,
    .service-banner img,
    .service-main-image img {
        height: 300px !important;
    }

    .detail-card img,
    .service-detail-img img {
        height: 260px !important;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .detail-card {
        padding: 28px;
    }

    .service-cta {
        padding: 35px;
    }

    .rks-service-hero img,
    .service-banner img,
    .service-main-image img {
        height: 220px !important;
    }

    .detail-card img,
    .service-detail-img img {
        height: 200px !important;
        border-radius: 12px;
    }
}



/* ==============================
   FULL WIDTH FIXED HEIGHT IMAGE
============================== */

/* Hero / Service Image Wrapper */
.rks-service-hero img,
.service-banner img,
.service-main-image img {
    width: 100% !important;
    height: 420px !important;   /* Desktop height */
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block;
}

/* Inside content images (like sales team meeting image) */
.detail-card img,
.service-detail-img img {
    width: 100% !important;
    height: 360px !important;
    object-fit: cover !important;
    border-radius: 16px;
}

/* Sidebar images if any */
.rks-sidebar img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 14px;
}

/* Footer Contact Row */
.footer-contact-row {
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Icon */
.contact-box .icon-box {
    min-width: 64px;
    height: 64px;
    background: #107ead;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Text */
.contact-box .content-box h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 18px;
}

.contact-box .content-box p {
    color: #fff;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .contact-box {
        align-items: center;
        text-align: left;
    }
}

/* .fa-2x {
    font-size: 1em!important;
    color: #107ead!important;
} */


.rks-whatsapp-float {
    position: fixed;
    width: 68px;
    height: 68px;
    bottom: 135px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whatsappPulse 2.2s infinite;
    transition: all 0.3s ease;
}

.rks-whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    color: #fff;
}

/* Pulse animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile safe spacing */
@media (max-width: 576px) {
    .rks-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}



.rks-gallery {
    padding: 80px 0;
    background: #f9f9f9;
}

rks-gallery-head {
    text-align: center;
    margin-bottom: 50px;
}

.rks-gallery-head h5 {
    color: #107ead;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rks-gallery-head h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.rks-gallery-head {
    text-align: center;
    margin-bottom: 50px;
}

.rks-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 380px;   /* Increased height */
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.rks-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.rks-lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.rks-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

.rks-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 55px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.rks-prev { left: 30px; }
.rks-next { right: 30px; }

@media (max-width: 768px) {
    .gallery-item {
        height: 280px;
    }
}