/*
Theme Name: Twenty Twenty-Four Child
Theme URI: https://example.com/
Description: Child theme for Twenty Twenty-Four
Author: Your Name
Author URI: https://example.com/
Template: twentytwentyfour
Version: 1.0
Text Domain: twentytwentyfour-child
*/

/* Your custom CSS goes below */
html,
body {
    scroll-behavior: smooth;
}



@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Bold.woff2') format('woff2'),
        url('assets/fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Light.woff2') format('woff2'),
        url('assets/fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('assets/fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Medium.woff2') format('woff2'),
        url('assets/fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.woff2') format('woff2'),
        url('assets/fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('assets/fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Poppins Light */
.font-poppins-light {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 300 !important;
}

/* Poppins Regular */
.font-poppins-regular {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
}

/* Poppins Medium */
.font-poppins-medium {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
}

/* Poppins SemiBold */
.font-poppins-semibold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

/* Poppins Bold */
.font-poppins-bold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

/* Poppins ExtraBold */
.font-poppins-extrabold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
}


:root {
    --secondary-color: #799E00;

    --primary-color: #3677cc;

    --color-brand-blue: #3677cc;
    --color-brand-green: #799E00;
    /* background colors */
    --bg-section-light: #F6FAFF;
    --bg-section-light-2: #f1f7ff;
    /* cards */
    --card-bg-green: #E4ECCC;
    --card-bg-blue: #4395FF33;
    /* Blue Table */
    --table-blue-heading-bg: #008CFF80;
    --table-blue-content-bg: #4395FF33;

    /* Green Table */
    --table-green-heading-bg: #799E0080;
    --table-green-content-bg: #799E0033;
    /* olvie green*/
    --table-olive-green-heading-bg: #799E00;
}





body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.29;
    color: #000000;
    padding-top: 80px;
}

.btn-primary {
    background: var(--color-brand-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0px 4px 4px 0px #0000001A;
    border-color: transparent !important;
}

.btn-primary svg {
    fill: inherit;
}

#main-content .marquee{
    margin-top: 0px !important;
}

body {
    padding-top: 77px;
}


h2,
.h2,
h2.vc_custom_heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.13;
    color: #000000;
}

@media(max-width:767px) {

    h2,
    .h2,
    h2.vc_custom_heading {

        font-size: 30px;

    }
}



/* Text colors */
.text-brand-blue {
    color: var(--color-brand-blue) !important;
}

.text-brand-green {
    color: var(--color-brand-green) !important;
}

/* Background colors */
.bg-brand-blue {
    background-color: var(--color-brand-blue) !important;
}

.bg-brand-green {
    background-color: var(--color-brand-green) !important;
}


.bg-section-light {
    background-color: var(--bg-section-light) !important;
}

.bg-section-light-2 {
    background-color: var(--bg-section-light-2) !important;
}


.bg-card-green {
    background-color: var(--card-bg-green) !important;
}

.bg-card-blue {
    background-color: var(--card-bg-blue) !important;
}


.table-blue-head {
    background-color: var(--table-blue-heading-bg) !important;
}

.table-blue-body {
    background-color: var(--table-blue-content-bg) !important;
}


.table-green-head {
    background-color: var(--table-green-heading-bg) !important;
}

.table-green-body {
    background-color: var(--table-green-content-bg) !important;
}


.table-olive-green-head {
    background-color: var(--table-olive-green-heading-bg) !important;
}


.btn-blue,
.main-menu .blue-button>a,
.main-menu .blue-button>a:hover {
    border-radius: 5px;
    padding: 8px 20px;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    background-color: var(--color-brand-blue);
    color: #fff !important;
    transition: background-color 0.3s;
}

.main-menu .blue-button>a:hover,
.btn-blue:hover {
    background-color: var(--secondary-color);
}

.main-menu .blue-button.current_page_item>a {
    color: #fff !important;
}

.main-menu .blue-button>a::after {
    content: unset !important;
}

.list-disc-style ul {
    list-style: disc !important;
    padding-left: 1rem !important;
}


@media(min-width:1280px) {
    .mar-left-xl {
        margin-left: 30px;
    }
}


.btn-outline {
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    color: #000000;
    background-color: transparent;

    line-height: 100%;
    border-width: 1px;
    border-width: solid;
    border-color: #000000;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0px 4px 4px 0px #0000001A;
    border-color: transparent !important;
}

/* .btn-outline:hover{
    
} */


.container {
    margin-inline: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(1.5rem * .5);
    padding-right: calc(1.5rem * .5);
}

.container .container {
    padding-left: 0px;
    padding-right: 0px;
}

.vc_column_container.container {
    padding-left: calc(1.5rem * .5);
    padding-right: calc(1.5rem * .5);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1380px !important;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px !important;
    }
}



.commom-banner-sec-1 {
    z-index: +1;
}

.commom-banner-sec-1::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(30 37 47 / 49%);
    z-index: -1;
    pointer-events: none;
}

#site-footer ul li,
#site-footer ul {
    padding-left: 0px;
    list-style: none;
}

#site-footer ul li a {
    color: #fff;
    font-size: 14px;
    padding-left: 0px;
    font-weight: 400;

}









#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    /* border: 1px solid #fff; */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

#scrollTopBtn svg {
    stroke: #fff;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn img {
    display: block;
    cursor: pointer;
}

#whatsappFloat {
    position: fixed;
    right: 20px;
    bottom: 80px;
    /* adjust if scroll-to-top button exists */
    z-index: 9999;
}

#whatsappFloat img {
    display: block;
    cursor: pointer;
}

.footer-news-letter {
    background-image: url(/wp-content/uploads/home-banner.webp);
    background-attachment: fixed;
    min-height: 260px;
    background-size: cover;
}

@media(max-width:767px) {
    .footer-news-letter {
        background-position: center;
    }
}



#input_2_1 {
    padding: 20px 20px;
}

#gform_submit_button_2 {
    padding: 10px 20px;
    background: var(--primary-color);
    box-shadow: 0px 4px 4px 0px #00000040;
    font-size: 14px;
    border-radius: 5px;
}

#gform_submit_button_2:hover {
    background: var(--secondary-color) !important;
    color: #fff;
}

form#gform_2 .gform_footer {
    margin: 0px;
    align-items: baseline;
}

form#gform_2 .gform-body {
    flex: 1;
}

.gform_validation_errors {
    display: none !important;
}

#validation_message_2_1,
#gform_confirmation_message_2 {
    color: #fff;
}

form#gform_2 {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}


@media (max-width: 767px) {
    form#gform_2 {
        flex-direction: column;
    }

    form#gform_2 .gform_footer {
        justify-content: center;
    }
}

.back-arrow {
    padding: 10px 20px;
    transition: all;
    border-radius: 5px;
    transition: 0.3s ease;
}

.back-arrow:hover {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.back-arrow:hover svg path {
    fill: currentColor !important;
}

#menu-footer-menu-4 a {
    color: var(--black-50);
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: all 0.2s;
}



#site-footer .container {
    max-width: 100% !important;
}

@media (min-width: 1280px) {
    #site-footer .container {
        max-width: 100% !important;
        padding-left: 30px;
        padding-right: 30px;
    }
}


#site-footer .footer-bottom-links ul li a {
    font-size: 12px;
}

/* tables styles */

.green-table .dt-container>.dt-layout-row:not(.dt-layout-table) {
    display: none !important;
}

.green-table .tablepress>:where(thead, tfoot)>tr>* {
    background-color: var(--table-green-heading-bg);
    padding: 6px 10px;
}

.green-table .column-1 p.text-center{
margin-bottom: 0px !important;
}

.green-table .tablepress thead .dt-orderable-asc:hover,
.green-table .tablepress thead .dt-orderable-desc:hover {
    background-color: var(--table-green-heading-bg);
}

.green-table .tablepress>:where(thead, tfoot)>tr>* {
    text-align: center;
    border-right: 1px solid #00000033 !important;
}

.green-table .tablepress .row-striping tr td {
    border-right: 1px solid #00000033 !important;
}

.green-table .tablepress .row-striping tr:nth-child(odd) td {
    background-color: white;
}

.green-table .dt-container .dt-layout-row.dt-layout-table .dt-layout-cell {
    padding: 0px;
}

.green-table .tablepress>:where(thead)+tbody>:where(:not(.child))>*,
.green-table .tablepress>tbody>*~:where(:not(.child))>*,
.green-table .tablepress>tfoot>:where(:first-child)>* {
    border-top: none;
}

.green-table {
    border: 1px solid #00000033 !important;
    border-radius: 6px;
    padding: 0px;
}

.tablepress th,
.tablepress th {
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
}

.tablepress thead .dt-orderable-desc .dt-column-order:after,
.tablepress thead .dt-ordering-desc .dt-column-order:after,
.tablepress thead .dt-orderable-asc .dt-column-order:before,
.tablepress thead .dt-ordering-asc .dt-column-order:before {
    display: none;

}

.tablepress thead .dt-orderable-asc .dt-column-order:before,
.tablepress thead .dt-ordering-asc .dt-column-order:before,
.tablepress thead .dt-orderable-asc .dt-column-order:after,
.tablepress thead .dt-orderable-asc .dt-column-order:before,
.tablepress thead .dt-orderable-desc .dt-column-order:after,
.tablepress thead .dt-orderable-desc .dt-column-order:before,
.tablepress thead .dt-ordering-asc .dt-column-order:after,
.tablepress thead .dt-ordering-asc .dt-column-order:before,
.tablepress thead .dt-ordering-desc .dt-column-order:after,
.tablepress thead .dt-ordering-desc .dt-column-order:before {
    display: none !important;
}

.tablepress {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #00000033;
}


.green-table.tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))+:where(.child)>*,
.green-table .tablepress>:where(tbody.row-striping)>:nth-child(even of :where(:not(.child, .dtrg-group)))>* {
    background-color: var(--table-green-content-bg) !important;
}

table.tablepress th:first-child,
table.tablepress td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

table.tablepress th:last-child,
table.tablepress td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

table.tablepress caption {
    display: none;
}

.dt-layout-cell.dt-layout-full,
.green-table {
    overflow-x: auto;
}



.common-banner-heading span {
    line-height: 1;
    display: block;
    position: relative;
}

.common-banner-heading span::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    left: -20px;
    top: 0px;
    background-color: inherit;
}

/* blue table */
.blue-table .dt-container>.dt-layout-row:not(.dt-layout-table) {
    display: none !important;
}

.blue-table .tablepress>:where(thead, tfoot)>tr>* {
    background-color: var(--table-blue-heading-bg);
    padding: 6px 10px;
    text-align: center;
    border-right: 1px solid #00000033 !important;
}

.blue-table .tablepress>:where(thead, tfoot)>tr>td:last-child {
    border-right: 0px solid #00000033 !important;
}

.blue-table .tablepress thead .dt-orderable-asc:hover,
.blue-table .tablepress thead .dt-orderable-desc:hover {
    background-color: var(--table-blue-heading-bg);
}

.blue-table .tablepress .row-striping.row-hover tr:nth-child(even) td {
    background-color: #4395FF33;
}

.blue-table .tablepress .row-striping.row-hover tr:nth-child(odd) td {
    background-color: white;
}

.blue-table .tablepress .row-striping.row-hover tr td:first-child {
    text-align: center;
}

.blue-table .dt-layout-cell.dt-layout-full {
    border: 1px solid #00000033 !important;
    border-radius: 5px;
    padding: 0px;
}

.blue-table .tablepress .row-striping.row-hover tr td {
    border-right: 1px solid #00000033 !important;
}

.blue-table .tablepress .row-striping.row-hover tr td:last-child {
    border-right: 0px solid #00000033 !important;
}

/* end */

@media(max-width:767px) {
    .green-table .tablepress tbody tr td:not(:first-child) {
        min-width: 250px;
    }
}



.green-top-sub-heading, .blue-top-sub-heading {
    padding: 8px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--secondary-color);
    border-radius: 1px;
    border-radius: 36px;
    display: flex;
    color: var(--secondary-color) !important;
    margin-left: auto;
    align-items: center;
    background-color: #799E0066;
    font-size: 14px !important;
    line-height: 133% !important;
    width: max-content;
    gap: 7px;
    margin: auto;
    position: relative;
    font-weight: 400 !important;
    box-shadow: 4px 4px 10px 0px #0000001A;

}

.green-top-sub-heading::before, .blue-top-sub-heading::before {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    background: var(--secondary-color);
    border-radius: 36px;
}

.blue-top-sub-heading{
border-color: var(--primary-color);
color: var(--primary-color) !important;
background: var(--card-bg-blue);

}
.blue-top-sub-heading::before{
    background-color: var(--primary-color);
}

/* Modal overlay */
.sk-custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Full vertical coverage */
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;

  /* animation */
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow-y: auto; /* allow scrolling if viewport is small */
}

/* Show modal overlay */
.sk-custom-modal.show {
  opacity: 1;
}

/* Modal content */
.sk-modal-content {
  position: relative;
  background: #fff;
  width: 98%;
  max-width: 1200px;
  max-height: 95vh; /* almost full height */
  margin: 2.5% auto; /* vertical spacing */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 4px 0px #00000040;
  overflow: hidden;

  /* Start above the screen */
  transform: translateY(-50px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.modal-source{
    display: none;
}

/* Slide in modal content when overlay has .show */
.sk-custom-modal.show .sk-modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Fixed header */
.sk-modal-fixed {
  padding: 30px;
  padding-bottom: 0;
  background: #fff;
  flex: 0 0 auto;
  z-index: 2;
  /* border-bottom: 1px solid #ddd; */
}

/* Scrollable content */
.sk-modal-scrollable {
  padding: 30px;
  overflow-y: auto; 
  flex: 1 1 auto; 
          max-height: calc(95vh - 121px);
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.sk-modal-scrollable::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Close button container */
.sk-close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Hide hover SVG by default */
.sk-close-modal .sk-close-hover {
  display: none;
}

/* On hover, hide default SVG */
.sk-close-modal:hover .sk-close-default {
  display: none;
}

/* On hover, show hover SVG */
.sk-close-modal:hover .sk-close-hover {
  display: inline-block;
}

/* Smooth transition for SVG hover effect */
.sk-close-modal svg {
  transition: all 0.2s ease;
}
/* Target the SVG or its container */
.rotating-svg {
 animation: rotate-float 2s linear infinite;
  transform-origin: center;
}

@keyframes rotate-float {
  0% {
    transform: rotateY(0deg) translateY(0);
  }
  25% {
    transform: rotateY(90deg) translateY(-5px);
  }
  50% {
    transform: rotateY(180deg) translateY(0);
  }
  75% {
    transform: rotateY(270deg) translateY(5px);
  }
  100% {
    transform: rotateY(360deg) translateY(0);
  }
}

@media(min-width:768px){
    .sk-modal-scrollable, .sk-modal-fixed {
    padding-left: 50px;
    padding-right: 30px;
}

}


#site-footer ul li a:hover {
    color: var(--color-brand-blue);
}

.footer-contact a:hover {
    color: var(--color-brand-blue) !important;
}




    .department-team-section{
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

   .department-team-section .team-body-content p{
margin-bottom: 15px;
    }
