/* @import url('https://fonts.googleapis.com/css2?family=Arima+Madurai:wght@100;200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* @font-face {
    font-family: 'Arial';
    src: url('./ArialCE.ttf');
} */

body {

    padding: 0;

    margin: 0;

    /* font-family: 'Arima Madurai', cursive; */

    transition: 0.3s;

    font-family: "DM Sans", sans-serif;

}

:root {
    --primary-yellow: #ffcc00;
    --primary-blue: #003399;
    --light-blue: #0055cc;
    --color-bg: rgba(246, 246, 246, 1);
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.py-100 {
    padding: 100px 0;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.bg-color {
    background-color: var(--color-bg);
}

/*======top header start======*/
.contact_area {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.contact_area li {
    position: relative;
}

.contact_area li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 71%;
    background-color: #fff;
    top: 3px;
    right: -14px;
}

.contact_area li:last-child::after {
    display: none;
}

.contact_area li a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: 0.5s;
}

.contact_area li a span {
    margin-right: 8px;
}

.top_header {
    padding: 10px 0;
    position: relative;
}

.top_header::before {
    content: '';
    position: absolute;
    width: 1290px;
    height: 45px;
    right: 0;
    top: 0;
    background: #003399;
    border-bottom-left-radius: 50px;
}

.social_area p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.social_area {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    position: relative;
}

.social_area li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: 0.5s;
}

/*======top header end======*/


/*======main header start=====*/
.navbar-brand img {
    max-width: 360px;
}

#navbarSupportedContent {
    justify-content: center;
}

.navbar.navbar-expand-lg.navbar-light {
    padding: 10px 0px;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9);
    font-weight: 800;
    display: flex;
    align-items: center;
    line-height: 25px;
}

.navbar-brand span {
    margin-left: 15px;
    display: inline-block;
    border-bottom: 1px dashed #f15b43;
}

.nav-item {
    position: relative;
}

.menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #003399;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item a:hover::after {
    width: 100%;
    transition: 0.5s;
}

#menu-primary-menu {
    gap: 30px;
}

.menu-item a {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    text-decoration: none;
}

.menu-item a:hover {
    color: #003399;
}

.contact_btn_box {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.contact_btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #ffcc00;
    padding: 12px 0;
    color: #000;
    text-decoration: none;
    border-radius: 44px;
    font-weight: 600;
}

.contact_btn:hover {
    text-decoration: none;
    color: #fff;
    background-color: #3561e4;
    transition: 0.5s;
}

.contact_btn span {
    margin-left: 5px;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    transition: 0.5s;
    z-index: 9999999;
    box-shadow: 2px 8px 20px #00000059;
}
.navbar-collapse {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.navbar-collapse.show {
  max-height: 500px; /* Adjust based on your menu height */
}
.navbar-light .navbar-toggler{
    box-shadow: none !important;
    outline: none !important;
}

/*======main header start=====*/


/*======banner start========*/
.banner_area.owl-carousel {
    height: 700px;
}

.banner_item {
    position: relative;
}

.banner_item img {
    height: 700px;
    object-fit: cover;
}

.banner_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9;
    opacity: 0.5;
}

.banner_overley {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    z-index: 99;
    text-align: center;
}

.banner_overley p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    width: 70%;
    margin: 0 auto;
}

.banner_overley h1 {
    color: #fff;
    text-align: center;
    font-size: 60px;
    font-weight: 900;
    text-shadow: 2px 8px 20px #0009;
}

.banner_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 0;
}

.banner_btn a {
    display: inline-block;
    text-align: center;
    background: #003399;
    border: 1px solid #003399;
    padding: 12px 44px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 44px;
}

.banner_btn a span {
    margin-left: 8px;
}

.service-btn {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000;
}

.banner_area .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #fff !important;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    line-height: 50px !important;
    outline: none;
    background: #003399 !important;
}

.banner_area .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: #fff !important;
    width: 50px;
    height: 50px;
    background: #003399 !important;
    text-align: center;
    border-radius: 50%;
    line-height: 50px !important;
    outline: none;
}

.owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    display: flex;
    gap: 10px;
}

button.owl-dot span {
    width: 15px;
    height: 15px;
    background: transparent;
    display: block;
    border: 2px solid #fff;
    border-radius: 4px;
    transition: 0.5s;
    outline: none !important;
}

.owl-dot.active span {
    background-color: #f15b43;
    transition: 0.5s;
    border: 2px solid #f15b43;
}

/*=======banner end ========*/


/*=======about start=========*/
.about_sec {
    padding: 100px 0;
    background-image: url(../images/bg/team-v1-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.heading-span {
    color: var(--primary-yellow);
    letter-spacing: 1.5px;
    font-size: 18px;
    border-bottom: 1px dashed var(--primary-yellow);
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}

.about_content h2 {
    color: #000;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 50px;
}

.about_content p {
    line-height: 30px;
    color: #333;
}

.about_btn {
    color: #fff;
    background: #003399;
    padding: 13px 25px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: inline-block;
    line-height: 1;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.5s;
    border: 2px solid #003399;
}

.about_btn span {
    color: #fff;
    margin-left: 6px;
}

.about_btn:hover {
    background-color: transparent;
    transition: 0.5s;
    color: #003399;
}

.about_btn:hover span {
    color: #003399;
}

.about_img {
    overflow: hidden;
    height: 100%;
    border-radius: 25px;
}

.about_img img {
    height: 100%;
}

/*=======about end=========*/


/*=====services start========*/
/*.review_sec {
    padding: 50px 0;
    background:url(../images/bg/review-bg.jpg);
    background-attachment: fixed;
    position: relative;
}*/
.services_sec {
    padding: 100px 0px;
}

.services_sec .service-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main_title {
    font-size: 50px;
    color: #313131;
    font-weight: 700;
}

.sec_para {
    width: 80%;
    display: table;
    margin: 0 auto;
}

.service_item {
    box-shadow: 0 4.83px 23.92px rgb(0 0 0 / 11%);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.service_item_img img {
    width: 100%;
    height: 184px;
    object-fit: cover;
}

.service_item_img {
    position: relative;
}

.service_item_img:before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0000006e;
    transition: all 500ms ease;
}

.service_item_img:after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #0000006e;
    transition: all 500ms ease;
}

.service_item:hover .service_item_img:after,
.service_item:hover .service_item_img:before {
    width: 50%;
    transition: all 500ms ease;
}

.service_item_content {
    position: relative;
    padding: 65px 20px 25px;
}

.service_item_content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.service_item_content p {
    font-size: 14px;
    font-weight: 300;
    margin-top: 13px;
}

.service_icon {
    position: absolute;
    top: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    line-height: 97px;
    background: #faf3f3;
    border: 9px solid #fff;
    left: 19px;
    transition: all 500ms ease;
}

.service_item:hover .service_icon {
    background: #edcb15;
    transition: all 500ms ease;
}

.service_icon img {
    transition: all 500ms ease;
}

.service_item:hover .service_icon img {
    filter: brightness(0) invert(1);
    transition: all 500ms ease;
}

.know_more {
    background: #003399;
    color: #fff;
    text-transform: capitalize;
    border-radius: 44px;
    letter-spacing: 0.5px;
    padding: 9px 35px;
    margin-top: 5px;
    border: 2px solid #003399;
}

.know_more i {
    margin-left: 6px;
}

.know_more:hover {
    background: transparent;
    color: #003399;
    border-color: #003399;
}

/*=========services end============*/


/*=========live_sec start============*/
.live_sec {
    padding: 100px 0;
    background-image: url(../images/about/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.live_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    opacity: 0.5;
}

.live_sec .heading-span {
    color: #fff;
    border-color: #fff;
}

.headline_sec h2 {
    color: #000;
    font-size: 50px;
    font-weight: 800;
}

.live_sec .headline_sec h2 {
    color: #fff;
}

.view_area {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}


/*.live_area {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}*/
.live_box img {
    max-width: 100%;
    border-radius: 10px;
    height: 200px;
}

.live_box {
    margin-top: 40px;
}

/*=========live_sec end============*/



/*================our belief start==========*/
.belief_item {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #e9e9e9;
    padding: 15px 15px 15px 100px;
    border-radius: 4px;
    min-height: 118px;
    margin-top: 40px;
}

.belief_item::before {
    content: "";
    width: 70%;
    height: 2px;
    background-color: #003399;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.belief_item::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #003399;
    position: absolute;
    left: 70%;
    bottom: -4px;
}

h3.t_text {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 23px;
    color: #000;
    transition: all 500ms ease;
}



.belief_item:hover .belief_item_img img {
    border: 1px solid #003399;
    transition: all 500ms ease;
}

.belief_item:hover .t_text {
    color: #003399;
    transition: all 500ms ease;
}

.border_box {
    width: 70%;
    display: block;
    padding: 1px;
    background: #003399;
    margin-top: 40px;
    position: relative;
}

.border_box::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #003399;
    position: absolute;
    right: -8px;
    top: -3px;
}



.belief_item_img {
    position: absolute;
    left: -15px;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.belief_item_img img {
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    max-width: 90px;
    padding: 10px;
    box-shadow: 0px 10px 15px rgb(221 221 221 / 15%);
}

.belief_item_section {
    padding: 100px 0;
}

/*================our belief end==========*/



/*=====================footer start=============*/
.footer_area {
    position: relative;
    background: #272727;
    padding: 80px 0px 60px;
}

/* .footer_area:before {
    content: "";
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/footerShape2.png);
    background-repeat: no-repeat;
    background-size: cover;
} */
.footer_brand img {
    max-width: 180px;
    margin-bottom: 20px;
}

.contact_brand p {
    color: #e0dede;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 14px;
}

.pay_now {
    background: #003399;
    color: #fff;
    text-transform: capitalize;
    border-radius: 15px 0px;
    letter-spacing: 0.5px;
    padding: 10px 35px;
}

.footer_content h3 {
    color: #fff;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
    line-height: 1;
    position: relative;
}

.footer_content h3:after {
    content: "";
    width: 65px;
    height: 3px;
    border-radius: 30px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.quick_footer_links a {
    display: block;
    color: #e0dede;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.5s;
}

.quick_footer_links a:hover {
    color: #003399;
    transition: 0.5s;
}

.quick_footer_links a:last-child {
    margin-bottom: 0px;
}

.quick_footer_links a span {
    margin-right: 15px;
}

.enquiry_input {
    background: #94949433 !important;
    border: none !important;
    color: #e0dede !important;
    padding: 10px 12px !important;
    margin-bottom: 1rem;
}

.enquiry_input::placeholder {
    color: #e0dede !important;
}

.submit_btn {
    background: #003399;
    border: 1px solid #003399;
    color: #fff;
    text-transform: capitalize;
    border-radius: 44px;
    letter-spacing: 0.5px;
    padding: 10px 35px;
}
.submit_btn:hover{
   background-color: transparent !important;
   border-color: #fff !important;
   color: #fff !important;
}

.copy_right_sec {
    padding: 10px 0px;
    background: #1f1f1f;
}

.copy_right_sec p a {
    color: #9c9c9c;
    text-decoration: none;
}

.copy_right_sec p {
    text-align: center;
    color: #e0dede;
    margin: 0;
}

.footer_brand img {
    max-width: 100px;
}

.contact_brand .navbar-brand {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 20px;
}

.contact_brand .navbar-brand img {
    max-width: 274px;
}

/*======== footer end  ==========*/


/* ========== sub banner sec start ============ */
.subbanner-sec {
    position: relative;
}

.subbanner-sec img {
    height: 360px;
    object-fit: cover;
}

.subbanner-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005c;
}

.subbanner-overley {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.subbanner-overley h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.subbanner-overley p {
    color: #fff;
    font-size: 20px;
}

.breadcrumb {
    justify-content: center;
    margin: 10px 0 0;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffcc00;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb li a::before {
    float: right;
    padding-right: .5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
    padding-left: 0.5rem;
}
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb li {
    color: var(--primary-yellow);
}

/* ========== sub banner sec end ============= */


/* ======== about us page =========== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    display: block;
    margin-top: 20px;
    border-radius: 2px;
}

.products-section {
    background: white;
}

.products-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-yellow);
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.services-grid {
    background: #f8f9fa;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 51, 153, 0.15);
}

.service-item i {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 30px;
}

.values-section {
    background: white;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.2);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffdd44 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.value-card h4 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.safety-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.safety-section .section-title h2,
.safety-section .section-title::after {
    color: white;
}

.safety-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-yellow);
    backdrop-filter: blur(10px);
}

.safety-item h5 {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-section {
    background: #f8f9fa;
}

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-yellow);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 50px;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-yellow);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-blue);
    top: 30px;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffdd44 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--primary-blue);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ======== about us page =========== */


/* ======== services page sec start ========= */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 153, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffdd44 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-card .card-body {
    padding: 30px;
}

.service-card h3 {
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 14px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-primary-custom {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary-custom:hover {
    background: #ffd633;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.4);
    color: var(--primary-blue);
}

.feature-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

/* ======== services page sec end ========== */

/* ======= products page section start ============ */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.badge-sale {
    background: #10b981;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.product-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.btn-add-cart i {
    margin-right: 0.5rem;
}

.filter-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-btn {
    margin: 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

/* ======= products page sec end =============== */

/* ======== faq page section start ========= */
.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 51, 153, 0.15);
    transform: translateY(-3px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffdd44 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer p+p {
    margin-top: 15px;
}

.category-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.search-box {
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.1rem;
    padding: 5px 15px;
}

.search-box i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* ======== faq page section end ========= */


/* ======= our people sec start ======== */
.stats-row {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.function-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.function-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.function-card i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-right: 15px;
}

.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 40px;
    grid-template-columns: 300px 1fr;
}

.people-img {
    width: 300px;
    height: 300px;
    border: 5px solid #003399;
    border-radius: 50%;
    overflow: hidden;
}

.people-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #003399, #ffcc00);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.member-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-details {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.badge-custom {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #003399;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight-text {
    background: linear-gradient(120deg, #fff4cc 0%, #ffcc00 100%);
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 5px solid #003399;
    margin: 30px 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ======= our people sec end  ========= */



/* ======== location pages sec start ========= */

.location-table {
    width: 100%;
    border-collapse: collapse;
}

.location-table th,
.location-table td {
    border: 1px solid #555;
    /* table border */
    padding: 12px 15px;
}

.location-table th {
    background: #2b2b2b;
    font-weight: 600;
    color: #fff;
}

.location-table td:first-child {
    font-weight: 600;
}

/* ======== location pages sec end ========== */


/* ======== contact sec start ============= */

/* contact sec start */

.contact-box {

    text-align: center;

}

.contact-icon {

    width: 100px;

    height: 100px;

    background: var(--primary-blue);

    border-radius: 50%;

    line-height: 100px;

    margin: 0 auto 20px;

}

.contact-icon img {

    filter: invert(1);

    width: 40px;

}

.contact-box h3 {

    font-size: 24px;

    margin-bottom: 10px;

}

.contact-box p {

    color: #666;

    font-size: 16px;

    margin: 5px 0;

}

.contact-box strong {

    color: #333;

}

.contact-form-sec .form-group textarea {

    height: 200px;

    padding: 15px 24px;

}

.contact-location {

    margin-bottom: -6px;

}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-group input {
    height: 45px;
    background-color: #ddd;
    border-radius: 10px;
    box-shadow: none !important;
    outline: none;
    border: none;
    padding: 0 24px;
}

.form-select {
    height: 45px;
    background-color: #ddd;
    border-radius: 10px;
    box-shadow: none !important;
    outline: none;
    border: none;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 300;
    color: var(--plasholder-color);
}

.contact-form-sec .form-group textarea {
    height: 200px;
    padding: 15px 24px;
}

.form-group {
    margin-bottom: 32px;
}

/* ======== contact sec end ================== */






/*==========responstive css=========*/

@media (min-width: 320px) and (max-width: 575.98px) {
    .top_header::before {
        height: 74px;
    }

    ul.social_area {
        justify-content: center;
        margin: 10px 0 0;
    }

    /*a.navbar-brand span {
    margin-left: 8px;
    font-size: 14px;
}
a.navbar-brand img {
    max-width: 60px;
}*/
    .navbar-light .navbar-toggler {
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
    }

    .contact_btn_box {
        display: none;
    }

    .banner_item img {
        height: 100vh;
        object-fit: cover;
    }

    .banner_btn a {
        padding: 12px 40px;
    }

    .owl-next,
    .owl-prev {
        display: none;
    }

    .live_area {
        flex-direction: column;
        gap: 30px;
    }

    .live_box img {
        max-width: 100%;
    }

    section.about_sec .row {
        flex-direction: column-reverse;
    }

    .about_content {
        margin-top: 30px;
    }

    .banner_overley h1 {
        font-size: 30px;
    }

    .review_area {
        margin-bottom: 30px;
    }

    .review_button {
        flex-direction: column;
    }

    .top_header {
        display: none;
    }

    .navbar-brand img {
        max-width: 200px;
    }
    .heading-span {
    font-size: 12px;
}
.banner_overley p {
    font-size: 13px;
    width: 100%;
}
.banner_btn {
    flex-flow: wrap;
}
.banner_area.owl-carousel {
    height: auto;
}
.about_content h2 {
    font-size: 30px;
}
.about_content p {
    line-height: 25px;
    font-size: 14px;
}
.main_title {
    font-size: 30px;
}
.sec_para {
    width: 100%;
    font-size: 13px;
}
.headline_sec h2 {
    font-size: 30px;
}
.view_area {
    justify-content: start;
}
.btn-primary-custom {
    padding: 10px 30px;
    font-size: 15px;
}
.footer_content {
    margin-top: 40px;
}
.copy_right_sec p {
    font-size: 12px;
}
.section-title h2 {
    font-size: 30px;
}
.products-section p {
    font-size: 14px;
    margin-bottom: 0;
}
.contact-box {
    margin-bottom: 30px;
}
.faq-answer p {
    line-height: normal;
    font-size: 14px;
}
.faq-question h3 {
    font-size: 20px;
}
.team-member-card {
    display: flex;
    flex-direction: column;
}
.people-img {
    width: 250px;
    height: 250px;
}
.badge-custom {
    font-size: 9px;
}
.subbanner-sec img {
    height: 250px;
}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .social_area li p {
    display: none;
}
.contact_area li a {
    font-size: 12px;
}
.contact_btn_box{
    display: none;
}
.navbar-light .navbar-toggler {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}
.heading-span {
    font-size: 14px;
}
.banner_overley h1 {
    font-size: 40px;
}
.banner_overley p {
    width: 100%;
}
.banner_area .owl-next {
    top: 70%;
}
.banner_area .owl-prev {
    top: 70%;
}
section.about_sec .row {
    flex-direction: column-reverse;
}
.about_content {
    margin-top: 30px;
}
.about_content h2 {
    font-size: 40px;
}
.main_title {
    font-size: 40px;
}
.sec_para {
    width: 100%;
}
.view_area {
    justify-content: start;
}
.contact_brand .navbar-brand img {
    max-width: 100%;
}
}




