* {
    box-sizing: border-box;
}
html, body {
    -webkit-overflow-scrolling: touch;
}



@font-face {
    font-family: 'Georgia';
    src: url('./fonts/Georgia.eot');
    src: url('./fonts/Georgia.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Georgia.woff2') format('woff2'),
        url('./fonts/Georgia.woff') format('woff'),
        url('./fonts/Georgia.ttf') format('truetype'),
        url('./fonts/Georgia.svg#Georgia') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia';
    src: url('./fonts/Georgia-Bold.eot');
    src: url('./fonts/Georgia-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Georgia-Bold.woff2') format('woff2'),
        url('./fonts/Georgia-Bold.woff') format('woff'),
        url('./fonts/Georgia-Bold.ttf') format('truetype'),
        url('./fonts/Georgia-Bold.svg#Georgia-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('./fonts/Lora-Regular.eot');
    src: url('./fonts/Lora-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Lora-Regular.woff2') format('woff2'),
        url('./fonts/Lora-Regular.woff') format('woff'),
        url('./fonts/Lora-Regular.ttf') format('truetype'),
        url('./fonts/Lora-Regular.svg#Lora-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body{
    font-family: 'Georgia';
}

/* --- Custom Scrollbar --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #0865cd; border-radius: 4px; }

        

.animated {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

h1, h2, h3, h4,h5,h6{
    font-weight: normal;
}
p{
    font-weight: normal;
}

a{
    text-decoration: none;
}
.p100{
    padding: 100px 0px;
}



.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0px;
    z-index: 999;
     transition: all 0.4s ease;
     background: transparent;
}
.navbar-brand{
    padding:0px;
}
.navbar-brand img {
    width: 226px;
     transition: all 0.4s ease;
}

.navbar .navbar-nav .nav-item {
    margin-left: 45px;
    display: flex;
    align-items: center;
}
.navbar .navbar-nav .nav-item:last-child{
    margin-left: 55px;
}

.navbar .navbar-nav .nav-item .down-arrow svg{
    color:#fff;
} 

/* ... Keep basic navbar CSS from top ... */

/* =========================================
   1. NAV LINK: BRACKETS
   ========================================= */
.navbar .navbar-nav .nav-link {
    color: #FFFFFF;
    font-size: 15px;
    padding: 5px 8px; /* Add side padding for the brackets */
    position: relative;
    transition: transform 0.3s ease;
    font-weight: normal;
}
.navbar .navbar-nav .nav-link:hover{
    transform: scale(1.05);
}

/* Left Bracket */
/*.navbar .navbar-nav .nav-link::before {*/
/*    content: '[';*/
/*    position: absolute;*/
/*    left: 0px;*/
/*    opacity: 0;*/
    /*transform: translateX(10px); */
/*    transition: all 0.3s ease;*/
/*    color: #fff;*/
   
/*}*/

/* Right Bracket */
/*.navbar .navbar-nav .nav-link::after {*/
/*    content: ']';*/
/*    position: absolute;*/
/*    right: 0px;*/
/*    opacity: 0;*/
    /*transform: translateX(-10px); */
/*    transition: all 0.3s ease;*/
/*    color: #fff;*/

    /* Override standard underline styles if present */
/*    width: auto; height: auto; background: none; bottom: auto;*/
/*}*/

/* Hover Action */
/*.navbar .navbar-nav .nav-link:hover {*/
/*    color: #FFFFFF;*/
/*}*/

/*.navbar .navbar-nav .nav-link:hover::before {*/
/*    opacity: 1;*/
    /*transform: translateX(0px); */
/*}*/

/*.navbar .navbar-nav .nav-link:hover::after {*/
/*    opacity: 1;*/
    /*transform: translateX(0px); */
/*}*/


/* =========================================
   2. BUTTON: DOUBLE BORDER GLOW
   ========================================= */
.navbar .navbar-nav .nav-link.contact-btn-hd {
    background-color: #FFFFFF;
    color: #000000 !important;
    padding: 10px 15px;
    border: 1px solid #FFFFFF; /* Solid border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    letter-spacing: 1.3px;
    font-size: 15px;
}

.navbar .navbar-nav .nav-link.contact-btn-hd::before,
.navbar .navbar-nav .nav-link.contact-btn-hd::after {
    display: none;
}

.navbar .navbar-nav .nav-link.contact-btn-hd:hover {
    background-color: transparent; /* Make bg clear */
    color: #FFFFFF !important; /* Text becomes white */
    transform: scale(1.05); /* Slight grow */
}

.navbar.nav-sticky {
    padding: 15px 0px; /* Shrink the padding */
    background-color: #0865cd; /* Dark background so white text is visible */
}

/* Optional: If you want the logo to shrink slightly on scroll */
.navbar.nav-sticky .navbar-brand img {
    width: 160px; /* Smaller logo width */
    transition: all 0.4s ease;
}

/* --- Dropdown Styling Customization --- */

/* Remove default Bootstrap border radius for sharp look */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    padding: 0;
    margin-top: 15px; /* Spacing from the nav link */
    background-color: #fff;
}

/* Dropdown Item Styling */
.dropdown-item {
    font-family: 'Georgia', serif;
    font-size: 14px;
    padding: 12px 20px;
    color: #000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Hover State for Items */
.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: #0865cd; /* Your brand blue */
    color: #fff;
}



/* Ensure the bracket animation from your existing code works with dropdowns */
.navbar .navbar-nav .nav-item.dropdown:hover .nav-link::before {
    opacity: 1;
    transform: translateX(0px);
}
.navbar .navbar-nav .nav-item.dropdown:hover .nav-link::after {
    opacity: 1;
    transform: translateX(0px);
}

/* Desktop Only: Make dropdown open on Hover (Optional but recommended) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s;
    }
    .dropdown-menu {
        margin-top: 0; 
    }
        .navbar-expand-lg .navbar-nav .dropdown-menu {
       left: 15px;
        top: 36px;
    }
}

/* hero */

.hero-over{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    background: #00000052;
}

.mga-btn{
    font-size: 13px;
    line-height: 13px;
    font-weight: normal;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #0865CD;
    border: 1px solid #0865CD;
    transition: all 0.5s ease; 
    padding: 12px 14px;
}
.mga-btn:hover{
    background-color: #fff;
    color: #0865CD;
    transform: scale(1.05);
}

.h1{
    font-size: 60px;
    line-height: 62px;
    
}

p{
    font-size: 18px;
    line-height: 26px;
}

/* about us */

.about-us{
    padding-left: 35px;
}

.sub-title{
    font-size: 15px;
    font-weight: bold;
    color: #0865CD;
    display: inline-block;
    margin-bottom: 22px;
    letter-spacing: 1.2px;
}

.h2{
    font-size: 53px;
    line-height: 56px;
    color: #1D1E1E;
    margin-bottom: 25px;
}

.about-last-line{
    color: #0865CD;
    margin-top: 25px;
    font-size: 18px;
    display: block;
}

.counter-number .counter-num{
    font-size: 58px;
    line-height: 58px;
    color: #0865CD;
     font-family: 'Lora';
}

.counter-number small{
    color: #000000;
    font-size: 14px;
    line-height: 22px;
}

hr{
    background-color: #dddcdc;
    margin: 3px 0 17px;
}

.counter-number p{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 22px;
    margin: 0;
}

.counter-top{
    padding-top: 40px;
}

 /* =========================================
           MAIN WRAPPER CLASS (Namespace)
           All styles are scoped inside .custom-grow-slider
           ========================================= */
     /* ===============================
   COMMON SPACING
================================ */
.top40 {
    margin-top: 40px;
}

/* ===============================
   CONTAINER
================================ */
.custom-grow-slider {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
}

/* ===============================
   FLEX SLIDER
================================ */
.expand-slider {
    display: flex;
    gap: 14px;
    height: 400px;
}

/* ===============================
   SLIDE
================================ */
.expand-slider .slide-1 {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex-grow 0.4s ease;
}

/* Hover expand */
@media (min-width: 767px) {
    .expand-slider .slide-1:hover {
        flex-grow: 4;
    }
}

/* ===============================
   IMAGE
================================ */
.value-slider {
    width: 100%;
    height: 100%;
}

.value-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, object-position 0.45s ease;
}

.slide-1:hover img {
    transform: scale(1.05);
    object-position: left;
}

/* ===============================
   GRADIENT OVERLAY
================================ */
.slide-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.2) 70%,
        transparent
    );
    pointer-events: none;
    z-index: 0;
}

/* ===============================
   COLLAPSED TITLE
================================ */
.value-text-1 {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.value-text-1 h3 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.8px;
    margin: 0;
}

/* Hide instantly on hover */
.slide-1:hover .value-text-1 {
    opacity: 0;
    transition-delay: 0s;
}

/* ===============================
   EXPANDED CONTENT
================================ */
.value-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;

    /* Appear AFTER expand */
    transition: opacity 0.2s ease 0s;
}

.slide-1:hover .value-text {
    opacity: 1;
    transition-delay: 0.2s;
}

/* Text styles */
.value-text h3 {
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 1.3px;
    margin-bottom: 15px;
}

.value-text p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 766px) {
    .expand-slider {
        flex-direction: column;
        height: auto;
    }

    .slide-1 {
        height: 420px;
    }

    .value-text {
        opacity: 1;
        transition: none;
    }

    .value-text-1 {
        display: none;
    }
}


        /* practice area */

       /* --- LAYOUT --- */
/*.practice-area {*/
/*    align-items: stretch;*/
/*    padding-right: 70px;*/
/*}*/

/*.left-moving-line {*/
/*    width: 1px; */
/*    position: relative;*/
/*    margin-right: 42px;*/
/*    flex-shrink: 0; */
/*}*/

/* 1. Grey Track (Full Height) */
/*.grey-track {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 2px;*/
/*    height: 100%;*/
/*    background-color: #c7c7c7; */
/*    z-index: 1;*/
/*}*/

/* 2. Static Blue Line (Fixed at Top) */
/*.static-blue-line {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
    /*width: 2px; */
/*    background-color: #156ccc;*/
/*    z-index: 2;*/
    /* Height will be set by JS to match the 1st button exactly */
/*    height: 60px; */
/*}*/

/* 3. Moving Diamond (Rotated Square) */
/* 3. Moving Diamond (Rotated Square) */
/*.moving-diamond {*/
/*    position: absolute;*/
    /*top: 30px; */
/*    left: 50%;*/
    /* Centers on the line, Rotates 45deg */
/*    transform: translate(-50%, -50%) rotate(45deg); */
/*    width: 18px;*/
/*    height: 18px;*/
/*    background-color: #156ccc;*/
/*    z-index: 3;*/
    
    /* --- SMOOTH DELAY EFFECT HERE --- */
    /* 0.6s duration makes it trail behind slightly */
    /* cubic-bezier(0.25, 1, 0.5, 1) gives a nice 'ease-out' feel */
/*    transition: top .3s linear 0.0001s;*/
/*}*/

/* --- ACCORDION --- */
/*.accordion-item {*/
/*    background: transparent !important;*/
/*    border: none !important;*/
    /*border-bottom: 1px solid #c7c7c7 !important; */
/*    margin-bottom: 0;*/
/*}*/
/*.accordion-item:last-child {*/
/*    border-bottom: none !important;*/
/*}*/
/*.accordion{*/
/*    border-top: 1px solid #c7c7c7;*/
/*    border-bottom: 1px solid #c7c7c7;*/
/*}*/

/*.accordion-button {*/
/*    background-color: transparent !important;*/
/*    border: none !important;*/
/*    box-shadow: none !important;*/
/*    font-size: 22px;*/
/*    font-weight: normal;*/
/*    color: #000000;*/
    
/*    padding: 20px 0px; */
/*    transition: all 0.3s ease;*/
/*}*/

/*.accordion-button::after {*/
/*    display: none !important;*/
/*}*/

/*.accordion-button:not(.collapsed) {*/
    /*color: #0865CD !important; */
/*    padding-bottom: 15px;*/
/*}*/

/*.accordion-body {*/
/*    padding: 0 0px 20px 0px;*/
/*    font-size: 15px;*/
/*    line-height: 24px;*/
/*    color: #666;*/
/*    background: transparent;*/
/*    border: none !important;*/
/*}*/

/* --- IMAGES --- */
/*.practice-img-container img.p-img {*/
/*    position: absolute;*/
/*    top: 0; left: 0; width: 100%; height: 100%;*/
/*    object-fit: cover; opacity: 0;*/
/*    transition: opacity 0.5s ease-in-out;*/
/*}*/
/*.practice-img-container img.p-img.active {*/
/*    opacity: 1; z-index: 2;*/
/*}*/


/*.practice-area {*/
/*    align-items: stretch;*/
/*    padding-right: 30px;*/
/*}*/

/*.left-moving-line {*/
/*    width: 1px; */
/*    position: relative;*/
/*    margin-right: 30px;*/
/*    flex-shrink: 0; */
/*}*/

/*.grey-track {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 2px;*/
/*    height: 100%;*/
/*    background-color: #c7c7c7; */
/*    z-index: 1;*/
/*}*/

/*.static-blue-line {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 2px;*/
/*    background-color: #156ccc;*/
/*    z-index: 2;*/
    /* Added transition to match diamond */
/*    transition: height .3s linear;*/
/*}*/

/*.moving-diamond {*/
/*    position: absolute;*/
/*    top: 30px; */
/*    left: 50%;*/
/*    transform: translate(-50%, -50%) rotate(45deg); */
/*    width: 18px;*/
/*    height: 18px;*/
/*    background-color: #156ccc;*/
/*    z-index: 3;*/
/*    transition: top .3s linear;*/
/*}*/

/* ACCORDION STYLING */
/*.accordion-item {*/
/*    background: transparent !important;*/
/*    border: none !important;*/
/*    border-bottom: 1px solid #c7c7c7 !important;*/
/*    margin-bottom: 0;*/
/*}*/
/*.accordion-item:last-child {*/
/*    border-bottom: none !important;*/
/*}*/
/*.accordion{*/
/*    border-top: 1px solid #c7c7c7;*/
/*    border-bottom: 1px solid #c7c7c7;*/
/*}*/
/*.accordion-button {*/
/*    background-color: transparent !important;*/
/*    border: none !important;*/
/*    box-shadow: none !important;*/
/*    font-size: 18px;*/
/*    font-weight: normal;*/
/*    color: #000000;*/
/*    padding: 15px 0px; */
/*    padding-bottom: 10px !important;*/
/*    transition: all 0.3s ease;*/
/*}*/
/*.accordion-button::after {*/
/*    display: none !important;*/
/*}*/
/*.accordion-button:not(.collapsed) {*/
/*    color: #0865CD !important;*/
/*    padding-bottom: 15px;*/
/*}*/
/*.accordion-body {*/
/*    padding: 0 0px 15px 0px;*/
/*    font-size: 15px;*/
/*    line-height: 24px;*/
/*    color: #666;*/
/*    background: transparent;*/
/*    border: none !important;*/
/*}*/

/* IMAGES */
/*.practice-img-container img.p-img {*/
/*    position: absolute;*/
/*    top: 0; left: 0; width: 100%; height: 100%;*/
/*    object-fit: cover; opacity: 0;*/
/*    transition: opacity 0.5s ease-in-out;*/
/*}*/
/*.practice-img-container img.p-img.active {*/
/*    opacity: 1; z-index: 2;*/
/*}*/


/* Layout & Line */
.practice-area {
    position: relative;
    
}

.left-moving-line {
    width: 2px;
    position: absolute; /* Changed to absolute to span full height of parent */
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.grey-track {
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}

.static-blue-line {
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    background-color: #156ccc;
    z-index: 2;
    transition: height 0.3s ease-out; /* Smooth transition */
}

.moving-diamond {
    position: absolute;
    top: 50px; /* Initial position */
    left: -8px; /* Center it over the 2px line */
    width: 18px; height: 18px;
    background-color: #156ccc;
    transform: rotate(45deg);
    z-index: 3;
    transition: top 0.3s ease-out; /* Smooth transition */
}

.moving-diamond, 
.static-blue-line {
    /* Ensure hardware acceleration for smoother mobile animation */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    will-change: top, height;
}

/* Optional: Ensure the track spans the full height on mobile */
.practice-area {
    min-height: 100%; 
}

/* Content List Items */
.cap-item {
    padding: 30px;
    margin-bottom: 0px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent; /* Prevents jump on hover if adding border */
}

.cap-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.cap-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    margin:0;
}

.read-more {
    font-size: 14px;
    color: #156ccc;
    text-decoration: none;
    font-weight: 600;
}

/* Active / Hover State */
.cap-item:hover, 
.cap-item.active {
    background-color: #f0f7ff; /* Light blue bg */
  
}

.cap-item.active .cap-title {
    color: #156ccc;
}

/* Right Side - Sticky Images */
.sticky-wrapper {
        position: -webkit-sticky;
    position: sticky;
    top: 78px;
    height: 88vh;
}

.practice-img-container {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.practice-img-container img.p-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.practice-img-container img.p-img.active {
    opacity: 1; z-index: 2;
}

.team-name-main{
 position: absolute;
    bottom: 10px;
    width: 278px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-color: #ffffff21;
    margin: auto;
    left: 0;
    right: 0;
    padding: 20px 15px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0865CD;
}

.team-name h4{
   font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
    color: #fff;
}
.team-name h5{
   font-size: 16px;
    line-height: 16px;
    color: #fff;
    margin: 0;
}

.management-team img{
    transition: all 0.5s ease;
}

.management-team:hover img{
    transform: scale(1.1);
}


.served-text{
    position: absolute;
    bottom: 13px;
    width: 142px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    z-index: 1;
    text-align: center;
}

.served-main::after{
        content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 50%, transparent);
    pointer-events: none;
}

.served-main img{
    transition: all 0.5s ease;
}

.served-main:hover img{
    transform: scale(1.1);
}

.test-inner-img{
    width: 65px;
height: 65px;
border-radius: 100%;
overflow: hidden;
margin-right: 27px;
}

.test-inner p{
    font-size: 22px;
    line-height: 39px;
    position: relative;
}


.test-inner .ft-q{
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    top: 5px;
    left: -3px;
}
 .testimonial-slider .slick-slide{
padding-left: 10px;    
}
.test1{
    width: calc(100% - 40px);
}
.ft-q2{
         width: 35px;
    height: 22px;
    display: inline-block;
    position: relative;
    bottom: -12px;
    left: 0px;
}

.test-img{
    margin-top: 40px;
}

.testi-name h4{
    font-size: 16px;
    line-height: 21px;
}
.testimonial-slider{
    max-width: 700px;
    margin: auto;
}

.testi-name h5{
    font-size: 13px;
    line-height: 13px;
}

.first-img{
    width: 52px;
    height: 52px;
    border-radius: 100%;
    overflow: hidden;
    background-color: #0865cd;
}


.testi-bttn{
    /*margin-left: 26px;*/
    gap: 10px;
}

.move-btn{
    width: 52px;
height: 52px;
background-color: #9ABFE81C;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100%;
transition: all ease 0.5s;
cursor: pointer;
}

.leftbnt svg{
    transform: rotate(180deg);
    transition: all ease 0.5s;

}

.move-btn:hover {
    background-color: #0865CD;
}


.move-btn:hover svg path, .move-btn:hover svg line{
   stroke: rgb(255, 255, 255);
}


.contact-us p a{
    display: inline-block;
    background-color: #F0F5FC;
    color: #0865CD;
    padding: 8px;
}

.contact-us-bg{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: end;
    justify-content: end;
}

footer .container.pb-5{
    padding: 66px 12px;
}

.footer-logo{
    width: 226px;
}

.footer-contact-details{
   display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.linedin-ct{
    width: 36px;
height: 36px;
border: 1px solid #0865cd;
border-radius: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
}
.top66{
    margin-top: 66px;
}
.footer-quick-link ul{
list-style-type: none;
margin: 0;
padding: 0;
}

.footer-quick-link ul li {
    margin-bottom: 24px;
}

.footer-quick-link ul li a {
    font-size: 16px;
    color: #000;
    transition: all 0.5s ease;
    padding-left: 20px; /* Increased padding so text doesn't overlap arrow */
    position: relative;
    display: inline-block; /* Ensures the transform works smoothly */
}

.footer-quick-link ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    
    /* --- ARROW STYLING --- */
    width: 7px;
    height: 7px;
    border-top: 2px solid #0865CD;  /* Top border */
    border-right: 2px solid #0865CD; /* Right border */
    transform: rotate(45deg);        /* Rotate to point right */
    transition: all 0.5s ease;
}

/* Optional: Animation on Hover */
.footer-quick-link ul li a:hover {
    color: #0865CD;
    padding-left: 25px; /* Text moves slightly to the right */
}

/* Optional: Make arrow darker on hover */
.footer-quick-link ul li a:hover::before {
    border-color: #0865CD; 
}

.cap-left{
    padding-left: 50px;
}


.footer-quick-link ul li a:hover{
    color: #0865cd;
}

.contact-address h3{
    color: #0865CD;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: bold;
}

.contact-address p{
font-family: 'Lora';
    /* font-weight: 600; */
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 24px;
}

.contact-address p a{
    color: #000;
    font-family: 'Lora';
    font-size: 17px;
    transition: all 0.5s ease;
}

.contact-address p a:hover{
    color: #0865cd;
}

.footer-map-sec{
    /*gap: 50px;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
}

.footer-map-sec > div{
    /*width: 262px;*/
}

/*.footer-map-sec .footer-quick-link{*/
/*    width: 152px;*/
/*}*/



.footerlink  a{
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    display: inline-block;
    margin-right: 20px;
}

.copyright{
    font-size: 13px;
    line-height: 13px;
    color: #fff;
   
}
.vh-70 {
    height: 60vh;
}
.hd1{
    padding-top: 50px;
}

/**/
.directors_profile_fixed {
    width: 100%;
    height: 419px;
    margin-top: 15px;
    
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
.dr_grid{
    width: 32.5%;
    display: flex;
    position: absolute;
    transition: all 0.85s ease;
    background: #000;
    cursor:pointer;
    height: 100%;
    
}
.directors_profile_fixed> .dr_grid:nth-child(1) {
    left: 16.5%;
}
.directors_profile_fixed> .dr_grid:nth-child(2) {
        left: 50.5%;
}

.grid_inner_details{
   position: absolute;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
}
.name_text h2{
    font-size: 18px;
    line-height: 18px;
    color:#fff;
    margin-bottom: 7px;
}
.name_text h3{
    font-size: 16px;
    line-height: 16px;
    margin: 0;
    opacity: 0.56;
    color: #fff;
}
.directors_grid{
    width: 100%;
}

.director-detials{
    background: #0865cd;
    position: absolute;
    width: 204%;
    height: 100%;
    z-index: 1;
    left: 104%;
    display: none;
    opacity:0;
    transition: opacity 0.85s ease 0.1s;
}

.dr_grid.active_management{
    left:0 !important;
    z-index: 1;
}
.dr_grid.active_management .director-detials{
    display: block;
    opacity:1;
}

.grid_inner_details svg{
   fill: #fff;
    width: 22px;
    height: 22px;
    position: relative;
    bottom: 3px;
    left: 0px;
    
}
.grid_inner_details svg path{
    stroke: #fff;
}

.close-management{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    color:#fff;
}

.director-detials-content{
    height: 95% !important;
    overflow: hidden;
    overflow-y: scroll;
}
/* Width */
.director-detials-content::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.director-detials-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
.director-detials-content::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 16px;
}

/* Handle on hover */
.director-detials-content::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.director-detials-content p{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 22px;
}

/**/

  .card-custom {
            border: none;
            border-radius: 0px;
            /*box-shadow: 0 4px 20px rgba(0,0,0,0.05);*/
            background: #fff;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .card-header-custom {
            background-color: #0865cd;
            color: white;
            padding: 20px;
            text-align: center;
        }
        .section-title {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-top: 20px;
        }
        .input-group-text {
            background-color: #f8f9fa;
            border-right: none;
            color: #6c757d;
        }
        /*.form-control, .form-select {*/
        /*    border-left: none;*/
        /*}*/
        .form-select{
            border-radius: 0 !important;
            padding: 12px;
        }
        .form-control:focus, .form-select:focus {
            box-shadow: none;
            border-color: #ced4da;
            border-left: 1px solid #0865cd;
        }
        /* Fix border on focus for input groups */
        .input-group:focus-within .input-group-text {
            border-color: #0865cd;
        }
        
        .form-control, .input-group-text{
            border-radius: 0 !important;
            padding: 12px;
        }
        .btn-custom {
           background-color: #0865cd;
    color: white;
    padding: 12px;
    letter-spacing: 1px;
    border-radius: 0;
    display: inline-block;
    border: 1px solid #0865cd !important;
    transition: all 0.5s ease;
    font-size: 13px
        }
        .btn-custom:hover { background-color: transparent; color: #0865cd; }
        
        .topspace{
            background: #F0F5FC;
            margin-top: -187px;
        }
        .practice_area_1{
            padding-bottom: 54px;
            border-radius: 0px 0px 40px 40px;
        }
        .top57{
            padding-top:57px;
        }
        
        .hd{
            font-size: 40px;
            margin-bottom: 22px;
        }
        .share-icons{
                display: inline-flex;
    padding: 4px 22px;
    border: 0.5px solid #0865cd;
    border-radius: 18px;
    gap: 5px;
    align-items: center;
    justify-content: center;
    color: #0865cd;
    font-size: 14px;
    transition: all 0.5s ease;
        }
        .share-icons svg{
            width: 14px;
            height: 14px;
            transition: all 0.5s ease;
        }
        
         .share-icons:hover{
             background: #0865cd;
             color:#fff;
         }
          .share-icons:hover svg{
            fill: #fff;
        }
        .mb-40{
            margin-bottom: 40px;
        }
        
        #copy-toast {
    
    font-size: 14px;
    pointer-events: none; /* So it doesn't block clicks while visible */
}
/* Add this to your CSS file */
#amit_mittal, #sandeep_goel, #jyoti_dhoundiyal, #pankaj_agarwal, #manisha_rawat, #parul_saria {
    scroll-margin-top: 120px; /* Adjust this number based on your header height */
}

.pa-hd{
    font-size: 40px;
    margin-bottom: 22px;
    
}
.pa-01{
    display: flex;
    flex-direction: column;
    gap: 12px;
    /*justify-content: space-between;*/
    /*height: 100%;*/
}

.pa-inner-01{
    background:#FFFFFF;
    display: flex;
    padding: 16px;
    gap: 14px;
}
.top45{
    margin-top: 45px;
}

.pa-inner-02{
    background:#0865CD;
    display: flex;
    padding: 16px;
    gap: 14px;
    color:#fff;
}
.pa-inner-03{
    padding: 22px;
    background: #F0F5FC;
}
.pa-pointer{
    list-style: none;
    margin: 0;
    padding:0;
}

.pa-pointer li{
    position:relative;
    padding-left: 24px;
    font-size: 14px;
    margin-bottom:  10px;
}
.pa-pointer li::before{
    content:"";
    position:absolute;
    width: 8px;
    height: 8px;
    left:0;
    top:0;
    bottom:0;
    margin: auto;
    background: url(../images/rec.svg) no-repeat;
    background: contain;
}
.top60{
    top: 60px;
}
/*.dr_grid {*/
/*    transition: opacity 0.4s ease;*/
/*}*/

.dr_grid.inactive {
    opacity: 0 !important;
    pointer-events: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: unset;
}
.main-acc{
    padding-top: 50px;
}
.main-acc h2{
    gap: 14px;
    font-size: 44px;
}
.main-acc h2 svg{
    width: 30px;
    height: 30px;
    color: #0865cd;
}
.main-acc .accordion-button{
   font-size: 20px;
    font-weight: 600;
}
.top74 {
    top:74px;
}