/********** Template CSS **********/
:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.top-bar {
    height: 75px;
    padding: 0 4rem;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.png) center center no-repeat;
    background-size: cover;
}


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}
/* edit css */

/* Container Section */
.mess-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.mess-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Badge featuring your #0d6efd color accent */
.top-badge {
    display: inline-block;
    background-color: rgba(13, 110, 253, 0.1); 
    color: #0d6efd; 
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: sans-serif;
    margin-bottom: 40px;
}

/* Grid setup for 4 columns */
.mess-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Base Card Styles mapped with your edit- identifiers */
.mess-card {
    background-color: #EDF1FC; 
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 165px;
    box-sizing: border-box;
    grid-column: span 3; /* Default: 4 cards per row (12 / 3 = 4) */
}

/* Center-aligning the bottom 3 items on wide monitors */
.mess-grid .mess-card:nth-child(5) {
    grid-column: 2 / span 3;
}
.mess-grid .mess-card:nth-child(6) {
    grid-column: 5 / span 3;
}
.mess-grid .mess-card:nth-child(7) {
    grid-column: 8 / span 3;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    font-family: sans-serif;
    line-height: 1.2;
    margin: 0;
}

/* Interactive elements matching #0d6efd */
.view-link {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    border-bottom: 1.5px solid #0d6efd;
    padding-bottom: 2px;
    display: inline-block;
    align-self: flex-start;
}

.card-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Responsive Media Queries --- */

/* Tablets / Medium Screens (2 Columns layout) */
@media (max-width: 992px) {
    .mess-grid {
        gap: 16px;
    }
    .mess-card,
    .mess-grid .mess-card:nth-child(5),
    .mess-grid .mess-card:nth-child(6),
    .mess-grid .mess-card:nth-child(7) {
        grid-column: span 6; /* 2 cards per row */
    }
}

/* Mobile Screens (1 Column stacked layout) */
@media (max-width: 576px) {
    .mess-section {
        padding: 40px 16px;
    }
    .main-heading {
        font-size: 32px;
        margin-bottom: 28px;
    }
    .mess-card,
    .mess-grid .mess-card:nth-child(5),
    .mess-grid .mess-card:nth-child(6),
    .mess-grid .mess-card:nth-child(7) {
        grid-column: span 12; /* Full width */
        height: 140px;
        padding: 20px;
    }
    .card-content h3 {
        font-size: 19px;
    }
}

/* section second */
/* Container and Section Outer Wrapper */
.different-section {
    width: 100%;
    padding: 60px 24px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.different-container {
    max-width: 1200px;
    width: 100%;
    background-color: #ecf9e6; /* Soft green background from the image */
    padding: 60px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Layout Split for Text Content vs Image Illustration */
.different-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.different-text-block {
    max-width: 55%;
}

.different-heading {
    font-size: 44px;
    font-weight: 700;
    color: #111111;
    font-family: sans-serif;
    margin-bottom: 18px;
}

.different-subheading {
    font-size: 20px;
    color: #333333;
    line-height: 1.4;
    font-family: sans-serif;
}

.different-illustration {
    position: absolute;
    right: 20px;
    bottom: -40px; /* Standard overlap positioning */
    z-index: 2;
}

.different-illustration img {
    max-width: 240px;
    height: auto;
    display: block;
}

/* Bottom Features Row Panel */
.features-bar {
    background-color: #daedd2; /* Darker green badge accent row */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 10px;
    z-index: 1;
    margin-top: 40px;
}

/* Feature elements using edit- prefix */
.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Column inner divider borders */
.feature-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Font Awesome Icon Customization */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px; 
    color: #4a7c59; /* Matching brand contrast tone */
    width: 32px;
    height: 32px;
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    font-family: sans-serif;
    line-height: 1.25;
}

/* --- Media Queries (Responsiveness) --- */

/* Tablets & Small Desktop Displays */
@media (max-width: 992px) {
    .different-container {
        padding: 40px;
    }
    .different-heading {
        font-size: 34px;
    }
    .different-subheading {
        font-size: 18px;
    }
    .different-illustration {
        bottom: -20px;
    }
    .different-illustration img {
        max-width: 180px;
    }
    .features-bar {
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .feature-item {
        flex: unset;
        width: 33.33%;
    }
    .feature-item:nth-child(3) {
        border-right: none;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .different-section {
        padding: 20px 12px;
    }
    .different-container {
        padding: 30px 20px;
    }
    .different-top-row {
        flex-direction: column-reverse;
        align-items: flex-start;
        text-align: left;
    }
    .different-text-block {
        max-width: 100%;
        margin-top: 20px;
    }
    .different-illustration {
        position: relative;
        right: auto;
        bottom: auto;
        align-self: center;
        margin-bottom: 10px;
    }
    .features-bar {
        margin-top: 24px;
        padding: 20px;
    }
    .feature-item {
        width: 100%;
        justify-content: flex-start;
        border-right: none !important;
        padding: 10px 0;
    }
    .feature-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
}
.ee-product-card{
    background:#fff;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all .4s ease;
    height:100%;
}

.ee-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.ee-product-card img{
    width:100%;
    height:320px;
        object-fit: contain;
    transition:0.4s;
}

.ee-product-card:hover img{
    transform:scale(1.05);
}

.ee-product-content{
    padding:25px;
}

.ee-product-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.ee-product-content p{
    color:#666;
    margin-bottom:0;
    line-height:1.7;
}

@media (max-width:991px){
    .ee-product-card img{
        height:280px;
    }
}

@media (max-width:767px){
    .ee-product-card img{
        height:250px;
    }
}

.vrs-card-left,
.vrs-card-right{
    
    padding:50px;
    height:100%;
    overflow:hidden;
}

.vrs-card-left{
    background:#eaf6ee;
}

.vrs-card-right{
    background:#f8f5ea;
}

.vrs-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
}

.vrs-card-left p,
.vrs-card-right p{
    color:#555;
    line-height:1.9;
    font-size:16px;
    text-align: justify;
}

.vrs-card-left img{
    max-height:350px;
    transition:.4s;
}

.vrs-card-left:hover img{
    transform:scale(1.05);
}

.vrs-founder-img{
    max-height:350px;
    object-fit:contain;
}

.vrs-founder-box{
    background:#0d6efd; /* use your primary color */
    color:#fff;
    padding:18px;
    border-radius:15px;
    margin-top:15px;
}

.vrs-founder-box h4{
    margin-bottom:5px;
    font-weight:700;
}

.vrs-founder-box p{
    color:#fff;
    margin:0;
}

@media(max-width:991px){

    .vrs-card-left,
    .vrs-card-right{
        padding:30px;
    }

    .vrs-title{
        font-size:34px;
    }

    .vrs-founder-img{
        margin-top:25px;
    }
}

@media(max-width:576px){

    .vrs-title{
        font-size:28px;
    }

    .vrs-card-left,
    .vrs-card-right{
        padding:25px;
    }
}
.qna .accordion-item{
    border:0;
    border-bottom:1px solid #e5e5e5;
    background:#fff;
}

.qna .accordion-button{
    background:#fff;
    color:#111;
    font-size:22px;
    font-weight:600;
    padding:25px 10px;
    box-shadow:none;
}

.qna .accordion-button:not(.collapsed){
    background:#fff;
    color:#0d6efd; /* apna primary color */
}

.qna .accordion-button:focus{
    box-shadow:none;
    border:none;
}

.qna .accordion-body{
    padding:0 10px 25px;
    font-size:16px;
    line-height:1.8;
    color:#666;
}

@media(max-width:768px){

    .qna .accordion-button{
        font-size:18px;
        padding:20px 10px;
    }

    .qna .accordion-body{
        font-size:15px;
    }

}
.q-before-after{
    position:relative;
    width:100%;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    border-radius:30px;
}

.q-before-after img{
    width:100%;
    display:block;
    height:500px;
    object-fit:cover;
}

.q-before-img{
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    overflow:hidden;
}

.q-before-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.q-slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:ew-resize;
    z-index:5;
}

.q-slider-line{
    position:absolute;
    top:0;
    left:50%;
    width:4px;
    height:100%;
    background:#fff;
    transform:translateX(-50%);
    z-index:4;
}

.q-slider-line::before{
    content:"❮❯";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    background:#fff;
    color:blue;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.q-label-before,
.q-label-after{
    position:absolute;
    top:20px;
    padding:8px 20px;
    background:rgba(0,0,0,.7);
    color:#fff;
    border-radius:30px;
    font-weight:600;
    z-index:4;
}

.q-label-before{
    left:20px;
}

.q-label-after{
    right:20px;
}

@media(max-width:768px){

    .q-before-after img{
        height:300px;
    }

    .q-slider-line::before{
        width:45px;
        height:45px;
        font-size:14px;
    }

    .q-label-before,
    .q-label-after{
        font-size:12px;
        padding:6px 12px;
    }
}
/* edit css */

/* =========================================
   GRUHLAXMI ABOUT HIGHLIGHTS
========================================= */

:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}


/* Main Section */
.ee-about-section {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* Container */
.ee-about-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   TOP INFORMATION CARDS
========================================= */

.ee-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}


.ee-info-card {
    background: #ffffff;
    border: 1px solid rgba(30, 96, 170, 0.14);


    padding: 40px 35px;

    text-align: center;

    min-height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    box-shadow: 0 10px 35px rgba(23, 34, 77, 0.06);

    transition: all 0.35s ease;
}


/* Card Hover */
.ee-info-card:hover {
    transform: translateY(-10px);

    border-color: var(--primary);

    box-shadow: 0 18px 45px rgba(30, 96, 170, 0.15);
}


/* =========================================
   FONT AWESOME ICON
========================================= */

.ee-icon {
    width: 88px;
    height: 88px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--light);
    color: var(--primary);

    font-size: 36px;

    margin-bottom: 32px;

    transition: all 0.3s ease;
}


.ee-info-card:hover .ee-icon {
    background: var(--primary);
    color: #ffffff;

    transform: scale(1.08);
}


/* Card Heading */
.ee-info-card h3 {
    color: var(--dark);

    font-size: 25px;
    font-weight: 700;

    margin: 0 0 22px;
}


/* Card Text */
.ee-info-card p {
    color: #4d6282;

    font-size: 18px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   MISSION / VISION
========================================= */

.ee-mission-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}


.ee-mission-card {
    background: #ffffff;

    padding: 48px;



    box-shadow: 0 12px 35px rgba(23, 34, 77, 0.08);

    position: relative;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* Mission Border */
.ee-mission {
    border-top: 6px solid var(--primary);
}


/* Vision Border */
.ee-vision {
    border-top: 6px solid var(--secondary);
}


/* Card Hover */
.ee-mission-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(23, 34, 77, 0.13);
}


/* =========================================
   MISSION / VISION HEADING
========================================= */

.ee-heading {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 30px;
}


/* Heading Icon */
.ee-heading-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;

    flex-shrink: 0;
}


/* Mission Icon */
.ee-mission .ee-heading-icon {
    background: rgba(30, 96, 170, 0.10);

    color: var(--primary);
}


/* Vision Icon */
.ee-vision .ee-heading-icon {
    background: rgba(255, 73, 23, 0.10);

    color: var(--secondary);
}


/* Heading */
.ee-heading h2 {
    margin: 0;

    color: var(--dark);

    font-size: 30px;

    font-weight: 700;
}


/* Mission / Vision Text */
.ee-mission-card p {
    margin: 0;

    color: #4d6282;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .ee-about-section {
        padding: 55px 20px;
    }


    .ee-info-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

        margin-bottom: 50px;
    }


    .ee-info-card {
        min-height: 320px;

        padding: 35px 25px;
    }


    .ee-info-card h3 {
        font-size: 22px;
    }


    .ee-info-card p {
        font-size: 16px;
    }


    .ee-mission-grid {
        gap: 25px;
    }


    .ee-mission-card {
        padding: 35px;
    }


    .ee-heading h2 {
        font-size: 26px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .ee-about-section {
        padding: 45px 15px;
    }


    .ee-info-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }


    .ee-info-card {
        min-height: auto;

        padding: 35px 25px;
    }


    .ee-icon {
        width: 75px;
        height: 75px;

        font-size: 30px;

        margin-bottom: 22px;
    }


    .ee-info-card h3 {
        font-size: 21px;

        margin-bottom: 15px;
    }


    .ee-info-card p {
        font-size: 16px;

        line-height: 1.65;
    }


    .ee-mission-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .ee-mission-card {
        padding: 30px 25px;

        border-radius: 18px;
    }


    .ee-heading {
        gap: 15px;

        margin-bottom: 20px;
    }


    .ee-heading-icon {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }


    .ee-heading h2 {
        font-size: 23px;
    }


    .ee-mission-card p {
        font-size: 16px;

        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .ee-about-section {
        padding: 35px 12px;
    }


    .ee-info-card {
        padding: 28px 20px;
    }


    .ee-info-card h3 {
        font-size: 20px;
    }


    .ee-info-card p {
        font-size: 15px;
    }


    .ee-mission-card {
        padding: 25px 20px;
    }


    .ee-heading h2 {
        font-size: 21px;
    }

}
/* ==========================================
   GRUHLAXMI JOURNEY / FOUNDER SECTION
========================================== */

:root {
    --rr-primary: #1E60AA;
    --rr-secondary: #FF4917;
    --rr-light: #EDF1FC;
    --rr-dark: #17224D;
    --rr-text: #53627A;
}


/* Main Section */
.rr-journey-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* Decorative Background */
.rr-journey-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    background: var(--rr-light);

    border-radius: 50%;

    top: -180px;
    left: -180px;

    opacity: 0.7;
}


.rr-journey-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border: 70px solid rgba(255, 73, 23, 0.05);

    border-radius: 50%;

    right: -150px;
    bottom: -130px;
}


/* Container */
.rr-journey-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* ==========================================
   SECTION HEADING
========================================== */

.rr-section-heading {
    max-width: 750px;
    margin: 0 auto 65px;

    text-align: center;
}


.rr-section-tag {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: var(--rr-primary);

    background: var(--rr-light);

    padding: 9px 18px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 18px;
}


.rr-section-tag i {
    font-size: 14px;
}


.rr-section-heading h2 {
    color: var(--rr-dark);

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    margin: 0 0 20px;
}


.rr-section-heading h2 span {
    color: var(--rr-primary);
}


.rr-section-heading p {
    color: var(--rr-text);

    font-size: 18px;

    line-height: 1.8;

    margin: 0;
}


/* ==========================================
   MAIN JOURNEY
========================================== */

.rr-journey-wrapper {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 75px;

    align-items: center;
}


/* ==========================================
   FOUNDER IMAGE
========================================== */

.rr-founder-image-area {
    position: relative;

    padding: 25px 20px 85px;
}


.rr-founder-image-box {
    position: relative;

    z-index: 2;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(23, 34, 77, 0.18);

    background: var(--rr-light);
}


.rr-founder-image {
    display: block;

    width: 100%;

    height: 520px;

    object-fit: cover;

    object-position: center;

    transition: transform 0.6s ease;
}


.rr-founder-image-box:hover .rr-founder-image {
    transform: scale(1.05);
}


/* Image Decorations */
.rr-image-decoration {
    position: absolute;

    border-radius: 25px;

    z-index: 1;
}


.rr-decoration-one {
    width: 180px;
    height: 180px;

    background: var(--rr-primary);

    top: 0;
    left: 0;

    opacity: 0.9;
}


.rr-decoration-two {
    width: 180px;
    height: 180px;

    background: var(--rr-secondary);

    right: 0;
    bottom: 50px;

    opacity: 0.9;
}


/* ==========================================
   EXPERIENCE BADGE
========================================== */

.rr-experience-badge {
    position: absolute;

    right: 25px;
    top: 25px;

    z-index: 4;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: var(--rr-secondary);

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 7px solid #ffffff;

    box-shadow: 0 12px 30px rgba(255, 73, 23, 0.25);
}


.rr-experience-badge strong {
    font-size: 32px;

    line-height: 1;

    font-weight: 800;
}


.rr-experience-badge span {
    font-size: 12px;

    line-height: 1.3;

    margin-top: 6px;

    font-weight: 600;
}


/* ==========================================
   FOUNDER NAME
========================================== */

.rr-founder-name {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #ffffff;

    padding: 20px 25px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(23, 34, 77, 0.13);
}


.rr-founder-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rr-light);

    color: var(--rr-primary);

    font-size: 21px;
}


.rr-founder-name h3 {
    color: var(--rr-dark);

    font-size: 19px;

    margin: 0 0 5px;

    font-weight: 700;
}


.rr-founder-name p {
    color: var(--rr-secondary);

    font-size: 14px;

    margin: 0;

    font-weight: 600;
}


/* ==========================================
   RIGHT CONTENT
========================================== */

.rr-founder-content {
    padding: 10px 0;
}


.rr-small-title {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--rr-secondary);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}


.rr-founder-content h2 {
    color: var(--rr-dark);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 800;

    margin: 0 0 25px;
}


.rr-founder-content h2 span {
    color: var(--rr-primary);
}


.rr-founder-description {
    color: var(--rr-text);

    font-size: 18px;

    line-height: 1.8;

    margin: 0 0 28px;
}


/* ==========================================
   QUOTE
========================================== */

.rr-founder-quote {
    position: relative;

    background: var(--rr-light);

    border-left: 5px solid var(--rr-primary);

    padding: 24px 25px 24px 60px;

    border-radius: 0 15px 15px 0;

    margin-bottom: 35px;
}


.rr-quote-icon {
    position: absolute;

    left: 20px;
    top: 24px;

    color: var(--rr-secondary);

    font-size: 25px;
}


.rr-founder-quote p {
    color: var(--rr-dark);

    font-size: 17px;

    line-height: 1.7;

    font-style: italic;

    font-weight: 600;

    margin: 0;
}


/* ==========================================
   VALUES
========================================== */

.rr-values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}


.rr-value-card {
    padding: 20px 16px;

    border: 1px solid rgba(30, 96, 170, 0.12);



    background: #ffffff;

    transition: all 0.3s ease;
}


.rr-value-card:hover {
    transform: translateY(-6px);

    border-color: var(--rr-primary);

    box-shadow: 0 12px 30px rgba(30, 96, 170, 0.12);
}


.rr-value-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--rr-light);

    color: var(--rr-primary);

    font-size: 19px;

    margin-bottom: 14px;
}


.rr-value-card h4 {
    color: var(--rr-dark);

    font-size: 15px;

    line-height: 1.3;

    margin: 0 0 7px;

    font-weight: 700;
}


.rr-value-card p {
    color: var(--rr-text);

    font-size: 13px;

    line-height: 1.5;

    margin: 0;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .rr-journey-section {
        padding: 75px 20px;
    }


    .rr-section-heading {
        margin-bottom: 50px;
    }


    .rr-journey-wrapper {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .rr-founder-image-area {
        max-width: 650px;

        width: 100%;

        margin: 0 auto;
    }


    .rr-founder-content {
        max-width: 700px;

        margin: 0 auto;
    }


    .rr-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .rr-journey-section {
        padding: 55px 15px;
    }


    .rr-section-heading {
        margin-bottom: 40px;
    }


    .rr-section-heading h2 {
        font-size: 36px;
    }


    .rr-section-heading p {
        font-size: 16px;
    }


    .rr-journey-wrapper {
        gap: 45px;
    }


    .rr-founder-image-area {
        padding: 15px 10px 80px;
    }


    .rr-founder-image {
        height: 420px;
    }


    .rr-decoration-one {
        width: 100px;
        height: 100px;
    }


    .rr-decoration-two {
        width: 100px;
        height: 100px;

        bottom: 45px;
    }


    .rr-experience-badge {
        width: 100px;
        height: 100px;

        right: 15px;
        top: 15px;

        border-width: 5px;
    }


    .rr-experience-badge strong {
        font-size: 26px;
    }


    .rr-experience-badge span {
        font-size: 10px;
    }


    .rr-founder-name {
        padding: 17px;

        gap: 12px;
    }


    .rr-founder-icon {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }


    .rr-founder-name h3 {
        font-size: 16px;
    }


    .rr-founder-name p {
        font-size: 12px;
    }


    .rr-founder-content h2 {
        font-size: 34px;
    }


    .rr-founder-description {
        font-size: 16px;
    }


    .rr-founder-quote {
        padding: 20px 20px 20px 52px;
    }


    .rr-founder-quote p {
        font-size: 15px;
    }


    .rr-values-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .rr-value-card {
        display: flex;

        align-items: center;

        gap: 15px;

        padding: 16px;
    }


    .rr-value-icon {
        margin: 0;

        flex-shrink: 0;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .rr-section-heading h2 {
        font-size: 31px;
    }


    .rr-founder-image {
        height: 350px;
    }


    .rr-founder-content h2 {
        font-size: 30px;
    }


    .rr-founder-name {
        left: 5px;
        right: 5px;
    }

}
/* =========================================
   GRUHLAXMI COMPANY PROFILE
   ========================================= */

.rr-company-profile {
    width: 100%;
    padding: 90px 20px;
    background: #f8f9fc;
    overflow: hidden;
}

.rr-profile-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Heading */

.rr-profile-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.rr-profile-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #FF4917;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rr-profile-heading h2 {
    margin: 0 0 15px;
    color: #17224D;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 800;
}

.rr-profile-heading h2 span {
    color: #1E60AA;
}

.rr-profile-heading p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}


/* Main Grid */

.rr-profile-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 45px;
    align-items: stretch;
}


/* Content */

.rr-profile-content {
    background: #ffffff;
    padding: 40px;

    box-shadow: 0 15px 45px rgba(23, 34, 77, 0.08);
    border: 1px solid rgba(30, 96, 170, 0.08);
}

.rr-profile-content p {
    margin: 0 0 18px;
    color: #596273;
    font-size: 16px;
    line-height: 1.8;
}

.rr-profile-content strong {
    color: #17224D;
}


/* Intro */

.rr-profile-intro {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf1fc;
}

.rr-profile-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E60AA;
    color: #ffffff;
    border-radius: 14px;
    font-size: 22px;
}

.rr-profile-intro h3 {
    margin: 0 0 7px;
    color: #17224D;
    font-size: 23px;
    font-weight: 750;
}

.rr-profile-intro p {
    margin: 0;
}


/* Leadership */

.rr-profile-leadership {
    display: flex;
}

.rr-leader-card {
    width: 100%;
    padding: 40px;
  
    background: linear-gradient(
        145deg,
        #1E60AA,
        #17224D
    );
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(23, 34, 77, 0.18);
}

.rr-leader-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    font-size: 24px;
}

.rr-leader-card h3 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 27px;
}


/* Leader Item */

.rr-leader-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.rr-leader-symbol {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4917;
    border-radius: 50%;
    font-size: 17px;
}

.rr-leader-item h4 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 16px;
}

.rr-leader-item p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}


/* Leader Quote */

.rr-leader-message {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.08);
  
}

.rr-leader-message i {
    margin-bottom: 10px;
    color: #FF4917;
    font-size: 20px;
}

.rr-leader-message p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.7;
}


/* Statistics */

.rr-profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.rr-stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: #ffffff;

    border: 1px solid #edf1fc;
    box-shadow: 0 10px 30px rgba(23, 34, 77, 0.06);
    transition: 0.3s ease;
}

.rr-stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(23, 34, 77, 0.12);
}

.rr-stat-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf1fc;
    color: #1E60AA;
    border-radius: 12px;
    font-size: 19px;
}

.rr-stat-box strong {
    display: block;
    color: #17224D;
    font-size: 22px;
    font-weight: 800;
}

.rr-stat-box span {
    display: block;
    margin-top: 2px;
    color: #596273;
    font-size: 13px;
    line-height: 1.4;
}

.rr-stat-box small {
    display: block;
    margin-top: 2px;
    color: #FF4917;
    font-size: 12px;
    font-weight: 600;
}


/* Bottom Commitment */

.rr-profile-bottom {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-top: 25px;
    padding: 35px 40px;
    background: #edf1fc;
    border-left: 5px solid #FF4917;

}

.rr-bottom-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4917;
    color: #ffffff;
    border-radius: 14px;
    font-size: 21px;
}

.rr-profile-bottom h3 {
    margin: 0 0 10px;
    color: #17224D;
    font-size: 24px;
}

.rr-profile-bottom p {
    margin: 0 0 10px;
    color: #596273;
    font-size: 15px;
    line-height: 1.75;
}

.rr-profile-bottom p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {

    .rr-company-profile {
        padding: 70px 20px;
    }

    .rr-profile-grid {
        grid-template-columns: 1fr;
    }

    .rr-profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .rr-company-profile {
        padding: 55px 15px;
    }

    .rr-profile-heading {
        margin-bottom: 35px;
    }

    .rr-profile-heading p {
        font-size: 15px;
    }

    .rr-profile-content,
    .rr-leader-card {
        padding: 28px 22px;
    }

    .rr-profile-intro {
        align-items: flex-start;
    }

    .rr-profile-intro h3 {
        font-size: 20px;
    }

    .rr-profile-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rr-profile-stats {
        grid-template-columns: 1fr;
    }

    .rr-stat-box {
        padding: 20px;
    }

    .rr-profile-bottom {
        padding: 28px 22px;
        gap: 15px;
    }

}


@media (max-width: 480px) {

    .rr-profile-heading h2 {
        font-size: 31px;
    }

    .rr-profile-subtitle {
        font-size: 12px;
    }

    .rr-profile-intro {
        flex-direction: column;
    }

    .rr-profile-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .rr-leader-card {
        padding: 25px 18px;
    }

    .rr-leader-card h3 {
        font-size: 23px;
    }

    .rr-profile-bottom {
        flex-direction: column;
    }

}
/* =========================================
   GRUHLAXMI LEADERSHIP SECTION
   ========================================= */

.rr-leadership-section {
    width: 100%;
    padding: 95px 20px;
    background: #f8f9fc;
    overflow: hidden;
}

.rr-leadership-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* -----------------------------------------
   Heading
   ----------------------------------------- */

.rr-leadership-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.rr-leadership-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;

    color: #FF4917;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rr-leadership-heading h2 {
    margin: 0 0 16px;

    color: #17224D;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 800;
}

.rr-leadership-heading h2 span {
    color: #1E60AA;
}

.rr-leadership-heading p {
    margin: 0;

    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}


/* -----------------------------------------
   Grid
   ----------------------------------------- */

.rr-leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* -----------------------------------------
   Profile Card
   ----------------------------------------- */

.rr-leader-profile {
    position: relative;
    overflow: hidden;

    background: #ffffff;
   

    border: 1px solid rgba(30, 96, 170, 0.08);

    box-shadow:
        0 12px 40px rgba(23, 34, 77, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.rr-leader-profile:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(23, 34, 77, 0.16);
}


/* -----------------------------------------
   Image
   ----------------------------------------- */

.rr-leader-image-box {
    position: relative;
    height: 340px;
    overflow: hidden;

    background: #edf1fc;
}

.rr-leader-image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.rr-leader-profile:hover .rr-leader-image-box img {
    transform: scale(1.07);
}


/* Image Overlay */

.rr-leader-image-box::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(23, 34, 77, 0.75),
        transparent 60%
    );
}


/* Image Label */

.rr-leader-image-overlay {
    position: absolute;
    z-index: 2;

    left: 20px;
    bottom: 18px;
}

.rr-leader-image-overlay span {
    display: inline-block;

    padding: 8px 14px;

    color: #ffffff;
    background: #FF4917;


    font-size: 12px;
    font-weight: 700;
}


/* Number / Icon */

.rr-leader-number {
    position: absolute;
    z-index: 3;

    top: 18px;
    right: 18px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #1E60AA;

    border-radius: 50%;

    font-size: 17px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* -----------------------------------------
   Content
   ----------------------------------------- */

.rr-leader-content {
    padding: 28px;
}

.rr-leader-role {
    display: inline-block;

    margin-bottom: 9px;

    color: #FF4917;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.rr-leader-content h3 {
    margin: 0 0 10px;

    color: #17224D;

    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}


/* Phone */

.rr-leader-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: #1E60AA;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.rr-leader-phone:hover {
    color: #FF4917;
}

.rr-leader-phone i {
    font-size: 12px;
}


/* Description */

.rr-leader-content > p {
    margin: 0 0 20px;

    color: #667085;

    font-size: 14px;
    line-height: 1.75;
}


/* -----------------------------------------
   Expertise
   ----------------------------------------- */

.rr-leader-expertise {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 23px;
    padding: 13px;

    background: #edf1fc;

    border-left: 3px solid #1E60AA;
    border-radius: 8px;

    color: #17224D;

    font-size: 13px;
    font-weight: 700;
}

.rr-leader-expertise i {
    color: #FF4917;
    font-size: 16px;
}


/* -----------------------------------------
   Achievements
   ----------------------------------------- */

.rr-achievement-title {
    margin: 0 0 12px;

    color: #17224D;

    font-size: 15px;
    font-weight: 800;
}

.rr-achievement-list {
    list-style: none;

    margin: 0 0 22px;
    padding: 0;
}

.rr-achievement-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-bottom: 9px;

    color: #667085;

    font-size: 13px;
    line-height: 1.5;
}

.rr-achievement-list li i {
    flex-shrink: 0;
    margin-top: 3px;

    color: #1E60AA;
}


/* -----------------------------------------
   Values
   ----------------------------------------- */

.rr-leader-values {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    padding-top: 18px;

    border-top: 1px solid #edf1fc;
}

.rr-leader-values span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 7px 9px;

    background: #f8f9fc;

    border-radius: 20px;

    color: #17224D;

    font-size: 10px;
    font-weight: 700;
}

.rr-leader-values i {
    color: #FF4917;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .rr-leadership-section {
        padding: 75px 20px;
    }

    .rr-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rr-leader-profile:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin: auto;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .rr-leadership-section {
        padding: 60px 15px;
    }

    .rr-leadership-heading {
        margin-bottom: 40px;
    }

    .rr-leadership-heading p {
        font-size: 15px;
    }

    .rr-leadership-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rr-leader-profile:last-child {
        grid-column: auto;
        max-width: none;
    }

    .rr-leader-image-box {
        height: 360px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .rr-leadership-section {
        padding: 50px 12px;
    }

    .rr-leadership-heading h2 {
        font-size: 31px;
    }

    .rr-leader-image-box {
        height: 330px;
    }

    .rr-leader-content {
        padding: 24px 20px;
    }

    .rr-leader-content h3 {
        font-size: 21px;
    }

    .rr-leader-values span {
        font-size: 9px;
    }

}
/* =========================================
   GRUHLAXMI - OUR TEAM VALUES
========================================= */

.rr-values-section {
    position: relative;
    padding: 90px 0;
    background: #f8f9fc;
    overflow: hidden;
}

/* Decorative background */
.rr-values-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(30, 96, 170, 0.06);
    top: -180px;
    left: -180px;
}

.rr-values-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 73, 23, 0.05);
    bottom: -170px;
    right: -150px;
}

/* Heading */
.rr-values-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.rr-values-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF4917;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.rr-values-heading h2 {
    color: #17224D;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
}

.rr-values-heading h2 span {
    color: #1E60AA;
}

.rr-values-heading p {
    color: #687080;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Cards */
.rr-value-card {
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 38px 30px;
    background: #ffffff;
  
    overflow: hidden;
    border: 1px solid rgba(30, 96, 170, 0.08);
    box-shadow: 0 12px 35px rgba(23, 34, 77, 0.07);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Top accent */
.rr-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #1E60AA,
        #FF4917
    );
}

/* Hover */
.rr-value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(23, 34, 77, 0.15);
}

/* Number */
.rr-value-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 55px;
    font-weight: 900;
    color: rgba(30, 96, 170, 0.06);
    line-height: 1;
}

/* Icon */
.rr-value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #EDF1FC;
    color: #1E60AA;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.rr-value-card:hover .rr-value-icon {
    background: #1E60AA;
    color: #ffffff;
    transform: rotate(-5deg) scale(1.08);
}

/* Title */
.rr-value-card h4 {
    color: #17224D;
    font-size: 22px;
    font-weight: 750;
    margin-bottom: 15px;
}

/* Description */
.rr-value-card p {
    color: #687080;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Line */
.rr-value-line {
    width: 45px;
    height: 3px;
    background: #FF4917;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: width 0.4s ease;
}

.rr-value-card:hover .rr-value-line {
    width: 85px;
}

/* Label */
.rr-value-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1E60AA;
    font-size: 13px;
    font-weight: 700;
}

.rr-value-label i {
    color: #FF4917;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rr-values-section {
        padding: 70px 0;
    }

    .rr-values-heading h2 {
        font-size: 38px;
    }

    .rr-value-card {
        min-height: 360px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .rr-values-section {
        padding: 55px 15px;
    }

    .rr-values-heading h2 {
        font-size: 31px;
    }

    .rr-values-heading p {
        font-size: 14px;
    }

    .rr-value-card {
        min-height: auto;
        padding: 30px 25px;
        border-radius: 16px;
    }

    .rr-value-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .rr-value-card h4 {
        font-size: 20px;
    }

    .rr-value-card p {
        font-size: 14px;
    }

    .rr-value-number {
        font-size: 45px;
    }
}
/* =========================================
   GRUHLAXMI - WHY CHOOSE US
========================================= */

.tt-why-section {
    position: relative;
    padding: 95px 0;
    background: #ffffff;
    overflow: hidden;
}

.tt-why-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(30, 96, 170, 0.05);
    top: -200px;
    right: -180px;
}

.tt-why-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 73, 23, 0.04);
    bottom: -160px;
    left: -150px;
}


/* =========================================
   IMAGE
========================================= */

.tt-why-image-wrap {
    position: relative;
    padding: 15px 15px 55px 0;
}

.tt-why-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    box-shadow: 0 20px 50px rgba(23, 34, 77, 0.15);
}

.tt-why-image-wrap::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 5px solid #FF4917;
    border-radius: 20px;
    top: -10px;
    left: -10px;
    z-index: -1;
}


/* =========================================
   EXPERIENCE BOX
========================================= */

.tt-experience-box {
    position: absolute;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1E60AA;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(30, 96, 170, 0.3);
}

.tt-experience-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #FF4917;
    border-radius: 50%;
    font-size: 23px;
}

.tt-experience-box strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.tt-experience-box span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}


/* =========================================
   HEADING
========================================= */

.tt-section-heading {
    position: relative;
    z-index: 2;
}

.tt-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF4917;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.tt-section-heading h2 {
    color: #17224D;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.tt-section-heading h2 span {
    color: #1E60AA;
}

.tt-section-heading > p {
    color: #687080;
    font-size: 16px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 0;
}


/* =========================================
   FEATURE BOX
========================================= */

.tt-feature-box {
    display: flex;
    gap: 17px;
    height: 100%;
    padding: 22px;
    background: #EDF1FC;
    border-radius: 16px;
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
}

.tt-feature-box:hover {
    background: #ffffff;
    border-left-color: #FF4917;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(23, 34, 77, 0.09);
}

.tt-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    color: #1E60AA;
    font-size: 21px;
    transition: all 0.4s ease;
}

.tt-feature-box:hover .tt-feature-icon {
    background: #1E60AA;
    color: #ffffff;
    transform: rotate(5deg);
}

.tt-feature-box h4 {
    color: #17224D;
    font-size: 18px;
    font-weight: 750;
    margin: 0 0 8px;
}

.tt-feature-box p {
    color: #687080;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   BOTTOM HIGHLIGHT
========================================= */

.tt-bottom-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 18px 22px;
    background: #17224D;
    border-radius: 14px;
    color: #ffffff;
}

.tt-highlight-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4917;
    border-radius: 50%;
    font-size: 17px;
}

.tt-bottom-highlight strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.tt-bottom-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .tt-why-section {
        padding: 70px 0;
    }

    .tt-why-image {
        height: 500px;
    }

    .tt-section-heading h2 {
        font-size: 38px;
    }

    .tt-feature-box {
        padding: 20px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .tt-why-section {
        padding: 55px 15px;
    }

    .tt-why-image-wrap {
        padding: 10px 5px 55px 5px;
    }

    .tt-why-image {
        height: 390px;
        border-radius: 18px;
    }

    .tt-experience-box {
        right: 0;
        bottom: 15px;
        padding: 15px 18px;
        gap: 10px;
    }

    .tt-experience-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .tt-experience-box strong {
        font-size: 24px;
    }

    .tt-experience-box span {
        font-size: 11px;
    }

    .tt-section-heading h2 {
        font-size: 31px;
    }

    .tt-section-heading > p {
        font-size: 14px;
    }

    .tt-feature-box {
        padding: 18px;
    }

    .tt-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .tt-feature-box h4 {
        font-size: 16px;
    }

    .tt-feature-box p {
        font-size: 12px;
    }

    .tt-bottom-highlight {
        padding: 15px;
    }
}
/* =========================================
   GruhLaxmi Highlights Section
========================================= */

.dd-highlights-section {
    padding: 90px 0;
    background: #fffaf3;
    position: relative;
    overflow: hidden;
}

.dd-highlights-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(230, 150, 50, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.dd-highlights-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(120, 70, 20, 0.06);
    border-radius: 50%;
    bottom: -120px;
    right: -80px;
}

.dd-highlights-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.dd-section-heading {
    max-width: 750px;
    margin: auto;
}

.dd-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b06b20;
    margin-bottom: 12px;
}

.dd-section-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #3d2415;
    margin-bottom: 15px;
}

.dd-section-heading p {
    color: #74665d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Cards */

.dd-highlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 25px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(176, 107, 32, 0.12);
    box-shadow: 0 12px 35px rgba(61, 36, 21, 0.08);
    transition: all 0.4s ease;
}

.dd-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(61, 36, 21, 0.15);
}

.dd-highlight-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(176, 107, 32, 0.06);
    top: -35px;
    right: -35px;
}

/* Icon */

.dd-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0df;
    color: #b06b20;
    font-size: 27px;
    transition: all 0.4s ease;
}

.dd-highlight-card:hover .dd-icon {
    background: #b06b20;
    color: #ffffff;
    transform: rotateY(180deg);
}

.dd-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #3d2415;
    line-height: 1;
    margin-bottom: 12px;
}

.dd-highlight-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3d2415;
    margin-bottom: 12px;
}

.dd-highlight-card p {
    color: #756960;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.dd-card-line {
    width: 45px;
    height: 3px;
    background: #b06b20;
    margin: auto;
    border-radius: 10px;
}

/* Active Card */

.dd-highlight-active {
    background: #b06b20;
    border-color: #b06b20;
    transform: translateY(-8px);
}

.dd-highlight-active .dd-icon {
    background: #ffffff;
    color: #b06b20;
}

.dd-highlight-active .dd-number,
.dd-highlight-active h4,
.dd-highlight-active p {
    color: #ffffff;
}

.dd-highlight-active .dd-card-line {
    background: #ffffff;
}

.dd-highlight-active:hover {
    transform: translateY(-15px);
}

/* Bottom CTA */

.dd-highlight-bottom {
    margin-top: 45px;
    padding: 25px 30px;
    background: #3d2415;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(61, 36, 21, 0.15);
}

.dd-bottom-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dd-bottom-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #b06b20;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.dd-bottom-content span {
    color: #e6a65b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.dd-bottom-content h3 {
    color: #ffffff;
    font-size: 22px;
    margin: 4px 0 0;
    font-weight: 700;
}

.dd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #3d2415;
    padding: 14px 23px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dd-cta-btn:hover {
    background: #b06b20;
    color: #ffffff;
}

.dd-cta-btn i {
    transition: transform 0.3s ease;
}

.dd-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */

@media (max-width: 991px) {

    .dd-highlights-section {
        padding: 70px 0;
    }

    .dd-section-heading h2 {
        font-size: 34px;
    }

    .dd-highlight-active {
        transform: none;
    }

    .dd-highlight-active:hover {
        transform: translateY(-10px);
    }

    .dd-highlight-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .dd-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {

    .dd-highlights-section {
        padding: 55px 0;
    }

    .dd-section-heading h2 {
        font-size: 29px;
    }

    .dd-section-heading p {
        font-size: 14px;
    }

    .dd-highlight-card {
        padding: 28px 20px;
    }

    .dd-number {
        font-size: 34px;
    }

    .dd-highlight-bottom {
        padding: 22px 20px;
    }

    .dd-bottom-content {
        align-items: flex-start;
    }

    .dd-bottom-content h3 {
        font-size: 18px;
        line-height: 1.4;
    }
}
/* =========================================
   GruhLaxmi Tradition Journey
========================================= */

.gg-tradition-section {
    padding: 100px 0;
    background: #fffdf8;
    position: relative;
    overflow: hidden;
}

.gg-tradition-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(190, 120, 45, 0.06);
    top: -220px;
    right: -150px;
}

.gg-tradition-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(190, 120, 45, 0.05);
    bottom: -170px;
    left: -130px;
}

.gg-tradition-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.gg-heading {
    max-width: 760px;
    margin: 0 auto 75px;
}

.gg-subtitle {
    color: #b66b25;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gg-heading h2 {
    margin: 12px 0 15px;
    font-size: 44px;
    font-weight: 800;
    color: #3d2618;
}

.gg-heading h2 span {
    color: #b66b25;
}

.gg-heading p {
    margin: 0;
    color: #75675e;
    line-height: 1.8;
}

/* Journey */

.gg-journey {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.gg-journey::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e7c9a7;
    transform: translateX(-50%);
}

/* Item */

.gg-journey-item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
}

.gg-journey-item:last-child {
    margin-bottom: 0;
}

.gg-journey-item:nth-child(odd) {
    justify-content: flex-start;
}

.gg-journey-item:nth-child(even) {
    justify-content: flex-end;
}

/* Number */

.gg-journey-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #b66b25;
    border: 6px solid #fffdf8;
    box-shadow: 0 5px 20px rgba(80, 45, 20, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.gg-journey-number span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

/* Content */

.gg-journey-content {
    width: 44%;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(182, 107, 37, 0.12);
    box-shadow: 0 12px 35px rgba(60, 35, 20, 0.08);
    transition: all 0.4s ease;
}

.gg-journey-content:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(60, 35, 20, 0.14);
}

/* Reverse */

.gg-journey-reverse .gg-journey-content {
    text-align: left;
}

/* Icon */

.gg-journey-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #fff1df;
    color: #b66b25;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

/* Text */

.gg-small-title {
    color: #b66b25;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.gg-journey-content h3 {
    margin: 5px 0 10px;
    color: #3d2618;
    font-size: 21px;
    font-weight: 750;
}

.gg-journey-content p {
    color: #746960;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* Bottom */

.gg-bottom-message {
    max-width: 900px;
    margin: 70px auto 0;
    padding: 30px 35px;
    background: #3d2618;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 18px 45px rgba(60, 35, 20, 0.15);
}

.gg-bottom-icon {
    width: 65px;
    min-width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #b66b25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.gg-bottom-message span {
    color: #e7a35e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.gg-bottom-message h3 {
    color: #ffffff;
    font-size: 24px;
    margin: 5px 0;
    font-weight: 700;
}

.gg-bottom-message p {
    color: #e7d9ce;
    margin: 0;
    font-size: 14px;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {

    .gg-tradition-section {
        padding: 75px 0;
    }

    .gg-heading h2 {
        font-size: 36px;
    }

    .gg-journey::before {
        left: 29px;
        transform: none;
    }

    .gg-journey-item,
    .gg-journey-item:nth-child(even),
    .gg-journey-item:nth-child(odd) {
        justify-content: flex-start;
        padding-left: 75px;
    }

    .gg-journey-number {
        left: 29px;
        transform: translate(-50%, -50%);
    }

    .gg-journey-content {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .gg-tradition-section {
        padding: 60px 0;
    }

    .gg-heading {
        margin-bottom: 50px;
    }

    .gg-heading h2 {
        font-size: 29px;
    }

    .gg-heading p {
        font-size: 14px;
    }

    .gg-journey-item,
    .gg-journey-item:nth-child(even),
    .gg-journey-item:nth-child(odd) {
        padding-left: 55px;
        margin-bottom: 35px;
    }

    .gg-journey::before {
        left: 21px;
    }

    .gg-journey-number {
        left: 21px;
        width: 44px;
        height: 44px;
        border-width: 4px;
    }

    .gg-journey-number span {
        font-size: 11px;
    }

    .gg-journey-content {
        padding: 22px;
        display: block;
    }

    .gg-journey-icon {
        margin-bottom: 16px;
    }

    .gg-journey-content h3 {
        font-size: 19px;
    }

    .gg-bottom-message {
        padding: 25px 20px;
        align-items: flex-start;
    }

    .gg-bottom-icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
        font-size: 17px;
    }

    .gg-bottom-message h3 {
        font-size: 19px;
    }
}
/* =========================================
   GruhLaxmi About Story Section
========================================= */

.dd-story-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.dd-story-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.dd-story-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(30, 96, 170, 0.08);
    color: #1E60AA;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.dd-story-header h2 {
    margin: 0 0 18px;
    color: #17224D;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
}

.dd-story-header h2 span {
    color: #FF4917;
}

.dd-story-header p {
    margin: 0;
    color: #687086;
    font-size: 17px;
    line-height: 1.8;
}


/* Timeline */

.dd-story-timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.dd-story-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #1E60AA,
        #FF4917,
        transparent
    );
    transform: translateX(-50%);
}

.dd-story-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 190px;
    margin-bottom: 25px;
}

.dd-story-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 52%;
}

.dd-story-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 52%;
}


/* Year Circle */

.dd-story-year {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 6px solid #EDF1FC;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(23, 34, 77, 0.12);
}

.dd-story-year span {
    color: #1E60AA;
    font-size: 14px;
    font-weight: 800;
}


/* Card */

.dd-story-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e8ecf5;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(23, 34, 77, 0.07);
    transition: all 0.35s ease;
}

.dd-story-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 73, 23, 0.3);
    box-shadow: 0 18px 45px rgba(23, 34, 77, 0.12);
}

.dd-story-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EDF1FC;
    color: #1E60AA;
    border-radius: 12px;
    font-size: 21px;
    transition: all 0.3s ease;
}

.dd-story-card:hover .dd-story-icon {
    background: #1E60AA;
    color: #fff;
}

.dd-story-card h4 {
    margin: 0 0 8px;
    color: #17224D;
    font-size: 21px;
    font-weight: 700;
}

.dd-story-card p {
    margin: 0;
    color: #6d7488;
    font-size: 14px;
    line-height: 1.8;
}

.dd-story-card strong {
    color: #1E60AA;
}


/* Bottom Values */

.dd-story-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.dd-value-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: #EDF1FC;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.dd-value-box:hover {
    background: #1E60AA;
    transform: translateY(-5px);
}

.dd-value-box > i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #FF4917;
    border-radius: 50%;
    font-size: 18px;
}

.dd-value-box h5 {
    margin: 0 0 4px;
    color: #17224D;
    font-size: 16px;
    font-weight: 700;
}

.dd-value-box p {
    margin: 0;
    color: #70778b;
    font-size: 13px;
}

.dd-value-box:hover h5,
.dd-value-box:hover p {
    color: #fff;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {

    .dd-story-header h2 {
        font-size: 36px;
    }

    .dd-story-timeline::before {
        left: 35px;
    }

    .dd-story-item,
    .dd-story-item:nth-child(odd),
    .dd-story-item:nth-child(even) {
        justify-content: flex-end;
        padding-left: 80px;
        padding-right: 0;
    }

    .dd-story-year {
        left: 35px;
    }

    .dd-story-values {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 575px) {

    .dd-story-section {
        padding: 60px 0;
    }

    .dd-story-header {
        margin-bottom: 40px;
    }

    .dd-story-header h2 {
        font-size: 29px;
    }

    .dd-story-header p {
        font-size: 15px;
    }

    .dd-story-timeline::before {
        left: 25px;
    }

    .dd-story-item,
    .dd-story-item:nth-child(odd),
    .dd-story-item:nth-child(even) {
        padding-left: 58px;
    }

    .dd-story-year {
        left: 25px;
        width: 52px;
        height: 52px;
        border-width: 4px;
    }

    .dd-story-year span {
        font-size: 11px;
    }

    .dd-story-card {
        padding: 20px;
        gap: 12px;
    }

    .dd-story-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 17px;
    }

    .dd-story-card h4 {
        font-size: 17px;
    }

    .dd-story-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .dd-value-box {
        padding: 18px;
    }
}
/* =========================================
   GruhLaxmi Promise Section
========================================= */

.ddp-promise-section {
    position: relative;
    padding: 90px 0;
    background: #EDF1FC;
    overflow: hidden;
}


/* Heading */

.ddp-promise-heading {
    max-width: 720px;
}

.ddp-promise-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: #ffffff;
    color: #1E60AA;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.ddp-promise-heading h2 {
    margin: 0 0 20px;
    color: #17224D;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
}

.ddp-promise-heading h2 span {
    display: block;
    color: #FF4917;
}

.ddp-promise-heading > p {
    color: #626b82;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}


/* Promise List */

.ddp-promise-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ddp-promise-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(30, 96, 170, 0.08);
    transition: all 0.35s ease;
}

.ddp-promise-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(23, 34, 77, 0.10);
}

.ddp-promise-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #EDF1FC;
    color: #1E60AA;
    font-size: 22px;
    transition: all 0.3s ease;
}

.ddp-promise-item:hover .ddp-promise-icon {
    background: #1E60AA;
    color: #ffffff;
}

.ddp-promise-item h4 {
    margin: 0 0 5px;
    color: #17224D;
    font-size: 18px;
    font-weight: 700;
}

.ddp-promise-item p {
    margin: 0;
    color: #72798c;
    font-size: 13px;
    line-height: 1.6;
}


/* Highlight Card */

.ddp-promise-card {
    position: relative;
    min-height: 470px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #17224D;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(23, 34, 77, 0.20);
}


/* Decorative Circle */

.ddp-promise-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: rgba(255, 73, 23, 0.15);
}

.ddp-promise-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(30, 96, 170, 0.35);
}


/* Quote Icon */

.ddp-card-top {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.ddp-card-top i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4917;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
}


/* Card Content */

.ddp-promise-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
}

.ddp-promise-card h3 span {
    color: #FF4917;
}

.ddp-promise-card > p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.ddp-card-line {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 3px;
    margin-bottom: 20px;
    background: #FF4917;
    border-radius: 10px;
}


/* Signature */

.ddp-signature {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ddp-signature strong {
    color: #ffffff;
    font-size: 16px;
}

.ddp-signature small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}


/* Floating Icons */

.ddp-floating-icon {
    position: absolute;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #FF4917;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ddp-float-one {
    right: 30px;
    bottom: 35px;
}

.ddp-float-two {
    right: 85px;
    bottom: 70px;
    color: #1E60AA;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {

    .ddp-promise-section {
        padding: 70px 0;
    }

    .ddp-promise-heading h2 {
        font-size: 38px;
    }

    .ddp-promise-card {
        min-height: auto;
        margin-top: 15px;
    }
}


@media (max-width: 575px) {

    .ddp-promise-section {
        padding: 55px 0;
    }

    .ddp-promise-heading h2 {
        font-size: 30px;
    }

    .ddp-promise-heading > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .ddp-promise-item {
        align-items: flex-start;
        padding: 15px;
    }

    .ddp-promise-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .ddp-promise-item h4 {
        font-size: 16px;
    }

    .ddp-promise-item p {
        font-size: 12px;
    }

    .ddp-promise-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .ddp-promise-card h3 {
        font-size: 25px;
    }

    .ddp-promise-card > p {
        font-size: 14px;
    }
}