﻿* {
    padding: 0;
    margin: 0;
}

/* 
=============================================================
           PWR WEBSITE - CSS STYLESHEET 
=============================================================
This stylesheet is organized by section and feature for easy maintenance.
All colors, shadows, and spacing use CSS variables defined in :root.

SECTION ORGANIZATION:
  1. Global Styles & Variables
  2. Heading & Navigation
  3. Slider/Hero Section  
  4. Animations
  5. Main Content
  6. Product Section
  7. Solution Section
  8. News Section
  9. Product Page
 10. About Us Page
 11. Vision Section
 12. Footer
 13. Form Styling
 14. Footer Custom
 15. Service Cards
 16. Line Card Section
 17. Card Styling
 18. WhatsApp Button
 19. Accordion
 20. Media Queries

CSS VARIABLES:
All colors are defined in :root for easy theming.
Available variable categories:
  - Primary/Secondary Colors
  - Text Colors
  - Background Colors
  - Border Colors
  - Overlay Colors
  - Component Colors
  - Shadows
  - Footer Colors
  - Section-Specific Colors
  - Button & Action Colors

=============================================================
*/

:root {
    /* ============= PRIMARY COLORS ============= */
    --primary-color: #222;
    --secondary-color: #FFFFFF;
    --black: #222222;
    --white: #FFFFFF;
    --blue: #005FAC;
    --border-one: #333333;
    --border-two: #f0f0f0;
    --card-bg-border: 1px solid aliceblue;

    /* ============= TEXT COLORS ============= */
    --text-dark: #333333;
    --text-dark-2: #111111;
    --text-medium: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    --text-black: #000000;
    --text-gray-dark: #333;

    /* ============= BACKGROUND COLORS ============= */
    --bg-light: #f8f8f8;
    --bg-lighter: #f5f5f5;
    --bg-dark-blue: #07122d;
    --bg-hover: #f7f7f7;
    --bg-muted: #ddd;
    --bg-alice-blue: aliceblue;
    --bg-service-light: #f3eded;

    /* ============= BORDER COLORS ============= */
    --border-light: #e0e0e0;
    --border-light-2: #ccc;
    --border-footer: #e5e5e5;
    --border-footer-light: #ddd;
    --border-sm: #eee;
    --border-blue: #2a4d7a;
    --border-card-light: rgb(224, 224, 224);

    /* ============= OVERLAY COLORS ============= */
    --overlay-white-light: rgba(255, 255, 255, 0.08);
    --overlay-white-light-2: rgba(255, 255, 255, 0.12);
    --overlay-white-medium: rgba(255, 255, 255, 0.15);
    --overlay-black-medium: rgba(0, 0, 0, 0.35);
    --overlay-dark-light: rgba(0, 0, 0, 0.08);
    --overlay-dark-30: rgba(0, 0, 0, 0.3);
    --overlay-dark-50: rgba(0, 0, 0, 0.5);
    --overlay-dark-35: rgba(0, 0, 0, 0.35);

    /* ============= COMPONENT COLORS ============= */
    --spinner-overlay: rgba(44, 104, 123, 0.5);
    --spinner-border-top: var(--blue);
    --header-bg: var(--white);
    --black-color: #000000;
    --white-color: var(--white);
    --white-semi: rgba(255, 255, 255, 0.9);

    /* ============= SHADOW STYLES ============= */
    --header-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --shadow-box: rgba(0, 0, 0, 0.05);
    --shadow-dropdown: 0 8px 20px var(--overlay-dark-light);
    --shadow-card-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-card-strong: 0px 21px 10px 0px rgba(4, 4, 4, 0.05);
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.2);
    --shadow-subtle: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* ============= FOOTER COLORS ============= */
    --footer-bg-dark: #0b4d6e;
    --footer-overlay: rgba(11, 77, 110, 0.9);
    --footer-text-primary: #ffffff;
    --footer-text-secondary: #8997a9;
    --footer-text-muted: #C8B2AA;
    --footer-text-white: #ffffff;
    --bg-dark-blue-overlay: rgba(0, 26, 139, 0.5);

    /* ============= SECTION-SPECIFIC COLORS ============= */
    --vision-bg: #F8F6C5;
    --vision-title-color: #195f7f;
    --vision-border-color: #008000;
    --graph-bg-light: #f3eded;
    --icon-maroon: #631b32;
    --icon-darkblue: #0c3b5d;
    --link-maroon-hover: #4a1426;
    --service-card-bg-even: #0b5e75;
    --section-orange: #FF8500;
    --section-sky: #3CB8FE;
    --section-green: #23EA09;
    --section-red: #FF0000;

    /* ============= BUTTON & ACTION COLORS ============= */
    --button-yellow: #f5d800;
    --button-yellow-dark: #e6c700;
    --brand-blue: #0d6efd;
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #20ba5a;

    /* ============= BACKGROUND IMAGES ============= */
    --bg-footer-custom: url('../../src/img/footer-bg.jpg');
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/* =================== GLOBAL STYLES =================== */

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* =================== HEADING & NAVIGATION STYLING START =================== */

.nav-link-bar span i {
    color: var(--black);
}

.nav-link-bar span {
    color: var(--black);
}

#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--spinner-overlay);
    backdrop-filter: blur(5px);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
}

#spinner::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    border-top-color: var(--spinner-border-top);
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main-header {
    background-color: var(--header-bg) !important;
    padding-top: 15px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--header-shadow);
}


.navbar-brand img {
    max-width: 15em !important;
}

.nav-drop-img img {
    max-width: 35%;
    height: auto;
}

.search-input {
    width: 100%;
    padding: 10px 50px 10px 112px;
    border-radius: 20px;
    outline: none;
    border: none;
}

.icon-language {
    color: var(--black);
    width: fit-content;
}

.icon-menu {
    color: var(--black);
    width: fit-content;
}

.p-language {
    color: var(--black);
    width: fit-content;
}

.main-language-search {
    position: relative;
    border-radius: 20px;
    box-shadow: var(--header-shadow);
}

.item-product-select {
    position: absolute;
    top: 5px;
    left: 16px;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 5px 10px;
    text-align: center;
}


.search-icon-main {
    position: absolute;
    top: 22px;
    right: 17px;
    transform: translateY(-50%);
    color: var(--white);
    background-color: var(--blue);
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
}



.sub-navi-link li.main-navi-link-2 {
    padding: 1rem 0;
    width: fit-content;
    margin: 0 auto;
}

.sub-navi-link li.main-navi-link-2:hover .nav-drop {
    display: block
}

.sub-navi-link li.main-navi-link-2 a {
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
}

.nav-drop-link ul li a {
    color: var(--bg-dark-blue) !important;
}

.nav-drop-link ul li {
    text-align: center;
}



.navigation-link-bar-main {
    position: relative;
}

/* .sub-navi-link li.main-navi-link-2:nth-child(3) a{
    position: relative;
}

.sub-navi-link li.main-navi-link-2:nth-child(3) a::before{
    content: "";
    position: absolute;
    bottom: -10px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-lighter);
    left: 93px;
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.sub-navi-link li.main-navi-link-2:nth-child(3) a:hover::before {
    opacity: 1;
} */

.nav-drop {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    display: none;
    transition: all 0.3s ease-in-out;
    box-shadow: var(--shadow-subtle);
}


.res-navi-link li:nth-child(2) span:first-child {
    transform: rotate(45deg);
}

.res-navi-link li:last-child span:last-child i {
    margin: 0 10px;
}

.res-navi-link li a span {
    width: fit-content;
}

/* =================== HEADING & NAVIGATION STYLING END =================== */

/* =================== SLIDER/HERO SECTION START =================== */

/* Slider Styles */

#mainVisual {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--text-black);
    color: var(--text-white);
    display: flex;
    align-items: stretch;
}

.main-visual-con {
    position: relative;
    width: calc(100% - 300px);
    /* min-height: 700px; */
    overflow: hidden;
}

.main-visual-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.main-visual-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.main-visual-pc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    transform: scale(1.05);
    transition: transform 5s ease-in-out;
}

.list-box h6 a {
    color: var(--text-white);
}

.main-visual-item.active .main-visual-pc-img {
    transform: scale(1);
}

.main-visual-m-img {
    display: none;
    position: absolute;
    inset: 0;
}

.main-visual-m-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-visual-txt-con {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding: 0 40px;
    /* bottom: 100px; */
}

.main-visual-txt-inner {
    position: relative;
}

.main-visual-txt1 {
    font-size: 35px;
    display: block;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.main-visual-txt2 {
    font-size: clamp(1rem, 1.25vw, 1.5rem);
    max-width: 560px;
}

.main-visual-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 0.9rem 1.6rem;
    background: var(--white);
    color: var(--text-dark-2);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.main-visual-more-btn i {
    margin-left: 0.7rem;
}

.gauge-bar-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--overlay-white-light-2);
    z-index: 4;
}

.gauge-bar {
    position: relative;
    width: 100%;
    height: 100%;
}

.gauge-bar span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--text-white);
    transition: height 6s linear;
}

.main-quick-menu {
    width: 300px;
    height: 500px;
    background: var(--bg-dark-blue);
}

.quick-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.quick-item {
    position: relative;
    height: 25%;
    cursor: pointer;
    overflow: hidden;
    border-bottom: 1px solid var(--overlay-white-light);
}

.quick-item:last-child {
    border-bottom: none;
}


.quick-item .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* opacity: 0.3; */
}

.quick-item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-black-medium);
}

.inner-box {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 10%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}

.inner {
    width: 100%;
    position: relative;
    z-index: 1;
}

.tit {
    display: block;
    font-size: 20px;
}

.tit i {
    font-style: normal;
    float: right;
}

.txt {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.75;
}

.nav-drop-img {
    width: 100%;
    height: 100%;
}


@media (max-width: 1024px) and (min-width: 768px) {

    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .main-visual-con {
        width: 100%;
        min-height: auto;
    }

    .main-visual-item {
        position: relative;
        /* min-height: 400px; */
    }


    .over-box {
        max-width: 20rem !important;
    }

    .main-visual-txt-con {
        padding: 20px;
    }

    .main-visual-txt1 {
        font-size: 2.5rem;
    }

    .main-visual-txt2 {
        font-size: 1.1rem;
    }
}

/* Mobile (800px and below) */
@media (max-width: 800px) and (min-width: 599.98px) {
    #mainVisual {
        min-height: auto;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }

    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }


    .main-visual-item {
        min-height: 350px;
    }

    .main-visual-pc-img {
        min-height: 350px;
    }

    .main-visual-pc-img {
        display: none;
    }

    .main-visual-m-img {
        display: block;
    }

    .main-visual-txt-con {
        padding: 15px;
    }


    .main-visual-txt1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .main-visual-txt2 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .main-visual-more-btn {
        min-width: 140px;
        padding: 0.8rem 1.4rem;
        font-size: 14px;
    }


    .main-news-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small Mobile (600px and below) */
@media (max-width: 600px) and (min-width: 479.98px) {
    .main-visual-item {
        min-height: 300px;
    }

    .input-row {
        flex-direction: column;
    }

    .tab-link {
        font-size: 10px !important;
    }

    .careersSection-img {
        height: 100% !important;
    }

    .newsSection-img img {
        max-width: 60% !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }


    .main-visual-con {
        width: 100% !important;
        min-height: 100% !important;
    }

    .main-visual-pc-img {
        min-height: 300px;
    }

    .main-visual-txt-con {
        padding: 12px;
    }

    .main-visual-txt1 {
        font-size: 1.8rem;
    }

    .main-visual-txt2 {
        font-size: 0.95rem;
    }

    .over-box {
        max-width: 20rem !important;
    }

    .main-visual-more-btn {
        min-width: 130px;
        padding: 0.7rem 1.2rem;
        font-size: 13px;
    }

    .main-news-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }


}

/* Extra Small (480px and below) */
@media (max-width: 500px) and (min-width: 239.98px) {
    .main-visual-item {
        min-height: 250px;
    }

    .input-row {
        flex-direction: column;
    }

    .tab-link {
        font-size: 10px !important;
    }

    .careersSection-img {
        height: 100% !important;
    }

    .navbar-brand img {
        max-width: 8em !important;
    }


    .newsSection-img img {
        max-width: 60% !important;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }


    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }


    .main-solution-tit {
        margin-bottom: 10px;
        display: flex;
        gap: 0px !important;
        flex-direction: column;
    }


    .main-visual-con {
        width: 100% !important;
        min-height: 100% !important;
    }

    .foot-menu li {
        padding-left: 0 !important;
        float: none !important;
    }


    .main-visual-txt1 {
        font-size: 1.5rem;
    }

    .main-visual-txt2 {
        font-size: 0.9rem;
    }

    .over-box {
        max-width: 15rem !important;
    }

    .main-visual-more-btn {
        min-width: 120px;
        padding: 0.6rem 1rem;
        font-size: 12px;
    }

    .main-quick-menu {
        display: none;
    }


    .main-news-list {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}


/* =================== ANIMATIONS =================== */

/* Slide Fade In/Out */
@keyframes slideInFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideOutFade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.main-visual-item {
    transition: opacity 0.6s ease-out, visibility 0.8s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.main-visual-item.active {
    opacity: 1;
    visibility: visible;
    animation: slideInFade 0.8s ease-out forwards;
}

.main-visual-item.prev {
    animation: slideOutFade 0.8s ease-out forwards;
}

/* Text Slide Up Animation */
@keyframes slideUpText {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-visual-txt1 {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpText 0.8s ease-out 0.2s forwards;
}

.main-visual-txt2 {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpText 0.8s ease-out 0.2s forwards;
}

.main-visual-more-btn {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpText 0.8s ease-out 0.3s forwards;
}

/* Image Scale Animation */
.main-visual-pc-img {
    transform: scale(1.05);
    transition: transform 5s ease-in-out;
}

.main-visual-item.active .main-visual-pc-img {
    transform: scale(1);
}

/* =================== SLIDER/HERO SECTION END =================== */

/* =================== ANIMATIONS START =================== */

/* Gauge Bar Fill Animation */
@keyframes fillBar {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.gauge-bar span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
}

.main-visual-item.active .gauge-bar span {
    animation: fillBar 6s linear forwards;
}

/* Button Hover Animation */
.main-visual-more-btn {
    transition: all 0.3s ease;
}

.main-visual-more-btn:hover {
    background: var(--border-two);
    transform: scale(1.05);
}

.main-visual-more-btn i {
    transition: transform 0.3s ease;
}

.main-visual-more-btn:hover i {
    transform: translateX(5px);
}

/* Quick Menu Hover Animation */
.quick-item {
    transition: all 0.3s ease;
}

.quick-item:hover .inner-box {
    background: var(--overlay-white-light-2);
}

.quick-item.active .inner-box {
    border-left: 3px solid var(--primary-color);
}

.quick-item .inner-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quick-item .inner-box::before {
    content: "";
    background: var(--bg-dark-blue-overlay);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quick-bg {
    transition: opacity 0.3s ease;
    opacity: 0.25;
}

.quick-item:hover .quick-bg {
    opacity: 0.35;
}

.tit i {
    transition: transform 0.3s ease;
}

.quick-item:hover .tit i {
    transform: translateX(5px);
}



/* =================== ANIMATIONS END =================== */

/* =================== MAIN CONTENT SECTION START =================== */

#mainContent {
    position: relative;
    width: 100%;
    background: var(--white);
    /* padding: 80px 0; */
}


/* =================== MAIN CONTENT SECTION END =================== */

/* =================== PRODUCT SECTION START =================== */

.main-product-slide-box {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.main-product-slide {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.main-prd-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

/* .main-product-slide .owl-item:nth-child(even) {
    background: var(--bg-light);
} */


.main-prd-item:hover {
    background: var(--primary-color);
}

.thumb-box {
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


.main-prd-item:hover .thumb-box {
    background: var(--blue);
}

.tit-box {
    /* margin-bottom: 15px; */
    text-align: center;
}

.tit-box .tit {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.main-prd-item:hover .tit-box .tit {
    color: var(--text-white);
}

.img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.over-box {
    position: absolute;
    inset: 0;
    /* background: var(--blue); */
    background-position: center;
    background-size: 100% 100%;
    color: var(--text-white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    /* max-width: 16rem; */
    z-index: 2;
    margin: auto;
}

.over-box::before {
    content: "";
    background: var(--overlay-dark-50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.main-prd-item:hover .over-box {
    opacity: 1;
    visibility: visible;
}

.over-box .tit-box .tit {
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 15px;
}

.list-box {
    /* margin-top: 10px; */
}

.diff-li .main-prd-list:nth-child(2) {
    margin: 0 0 0 20px;
    padding: 0;
}

.diff-li .main-prd-list:nth-child(2) li {
    list-style-type: disc;
}

.main-prd-list {
    padding: 0;
    list-style: none;
}

.main-prd-list li {
    margin-bottom: 10px;
}

.main-prd-list a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.main-prd-list a:hover {
    padding-left: 5px;
}

.main-prd-list i {
    font-size: 14px;
    margin-left: auto;
}

/* =================== PRODUCT SECTION END =================== */

/* =================== SOLUTION SECTION START =================== */

#mainSolutionCon {
    padding: 60px 0;
    background: var(--bg-lighter);
    background-image: url("../../src/img/core-img/img11.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-solution-tit {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.main-solution-tit .tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 20px 0;
}

.main-sol-location {
    margin-top: 20px;
}

.main-sol-location ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main-sol-location li {
    font-size: 14px;
    color: var(--text-medium);
}

.main-sol-location li:not(:last-child):after {
    content: "/";
    margin-left: 10px;
    color: var(--border-light-2);
}


.main-solution-tab {
    position: relative;
}



.sub-drop-open-btn-style {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.sub-drop-open-btn-style:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sub-drop-open-btn-style .arrow {
    float: right;
    transition: transform 0.3s ease;
}

.cm-drop-list-JS {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cm-drop-menu-box-JS.open .cm-drop-list-JS {
    max-height: 300px;
}

/* Always Open Dropdown */
.cm-drop-menu-box-JS[data-always-open="true"] .cm-drop-list-JS {
    max-height: none;
    overflow: visible;
    border-top: 1px solid var(--border-light);
}

.cm-drop-list-JS li {
    border-bottom: 1px solid var(--border-two);
}

.cm-drop-list-JS li:last-child {
    border-bottom: none;
}

.cm-drop-list-JS a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cm-drop-list-JS a:hover,
.cm-drop-list-JS li.selected a {
    background: var(--bg-lighter);
    color: var(--primary-color);
    font-weight: 600;
}

.box {
    display: none;
    color: var(--white);
}

.box.active {
    display: block;
}

.main-solution-detail {
    background: transparent;
    padding: 0 30px;
    border-radius: 4px;
    min-height: 300px;
}

/* =================== SOLUTION SECTION END =================== */

/* =================== NEWS SECTION START =================== */

#mainNewsCon {
    padding: 60px 0;
    background-color: var(--bg-alice-blue);
}

.main-news-tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 40px 0;
}

.main-news-box {
    position: relative;
}

.main-news-list-wrap {
    max-height: auto;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.main-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.main-news-list li {
    display: flex;
}

.main-news-list a {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow: hidden;
    transition: all 0.3s ease;
}


.img-con {
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
}

.img-wrap {
    /* position: absolute; */
    /* bottom: 20px; */
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-wrap.news img {
    object-fit: contain;
}


.txt-con {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.txt-con.txt-only {
    width: 100%;
}

.category {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 5px 10px;
    background: var(--blue);
    color: var(--text-white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.txt-con .tit {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.txt-con .txt {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 10px;
    /* display: none; */
}



.txt-con .date {
    font-size: 12px;
    color: var(--text-light);
}

.line-clamp2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobileMenu {
    display: none;
}

.mobileMenu.acitve {
    display: block;
}

.bi.bi-x {
    font-size: 25px;
}

.more-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px;
    background: var(--bg-lighter);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.more-btn i {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.more-btn:hover i {
    transform: translateY(3px);
}


.owl-nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    color: var(--black) !important;
    border: none !important;
    font-size: 30px !important;
    border-radius: 50%;
}

.owl-nav button:first-child {
    left: -50px;
}

.owl-nav button:last-child {
    right: -50px;
}






button.owl-prev span {
    padding: 0 15px !important;
}

button.owl-next span {
    padding: 0 15px !important;
}

.owl-dots {
    display: none;
}

/* =================== NEWS SECTION END =================== */

/* =================== PRODUCT PAGE STYLING START =================== */

/*==============product page==============================*/

.product-detail-main-div {
    display: flex;
    align-items: center;
}

.product-detail-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-black);
    margin: 40px 0 40px 0;
}

.product-details-div {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 50px;
}

.product-details-div p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .3px;
    margin: 0 0 25px;
}

.product-detail-img-div {
    flex: 30% 0 0;
    width: 30%;
}

.list-style-dot li {
    list-style: disc;
}

.tit,
.txt {
    text-decoration: none;
    color: var(--white);
}

.background-image {
    background-image: url('../img/header-bg-1-1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 45vh;
}

.background-image-1 {
    /* background-image: url('./img/blue-white-modern-internet-security-services-outdoor-banner.jpg'); */
    background-image: url('../img/line-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
}

.background-image-1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--overlay-dark-30);
    /* z-index: 1; */
}


.background-image-2 {
    background-image: url('../img/about-us.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
}

.box-content .box-main-list li {
    margin-bottom: 30px;
}

.box-left .box-main-list {
    border-right: 1px solid var(--border-light-2);
}

.box-center li,
.box-right li {
    display: none;
}

.box-center li.active,
.box-right li.active {
    display: block;
}


.breadcumb-wrapper {
    /* padding-top: 170px; */
    /* padding-bottom: 195px; */
    background-color: var(--black-color);
    overflow: hidden;
    text-align: center;
}

.breadcumb-title {
    /* margin: -0.32em 0 -0.36em 0; */
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.breadcumb-title-1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*====================product page end=========================*/

/* =================== PRODUCT PAGE STYLING END =================== */

/* =================== ABOUT US PAGE START =================== */

/*====================About Us Page=========================*/
.breadcumb-wrapper {
    /* padding-top: 170px; */
    /* padding-bottom: 195px; */
    background-color: var(--black-color);
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
}
.breadcumb-wrapper.background-image-1{
    justify-content: center;
}

/* =================== ABOUT US PAGE END =================== */

.mt-25 {
    margin-top: 25px;
}

.img-box1 {
    position: relative;
}

.img-box1 .img-2 {
    text-align: right;
}

.list-box1 ul {
    margin: -138px 0px 0 auto;
    padding: 13px 5px 5px 5px;
    min-width: 270px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    border: 1px solid var(--border-card-light);
    background-color: var(--white-color);
    z-index: 3;
    list-style-type: none;
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow-card-strong);
}

.list-box1 li {
    position: relative;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
}

.vs-counter__number {
    color: var(--white-color);
    font-weight: 500;
    line-height: 1;
    margin: 0 0 3px 0;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.sec-title {
    font-size: 50px !important;
    line-height: 1.3;
    margin: -0.2em 0 5px 0;
    display: block;
    font-family: var(--title-font);
    color: var(--vision-title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
    font-size: 26px;
}

.sec-title span {
    font-size: 32px;
}

/* =================== VISION SECTION START =================== */

#vision .container {
    padding: 1em !important;
    max-width: 900px !important;
    margin: 2em auto;
    background-color: var(--vision-bg);
}

#vision .container .row.gx-50 {
    border-bottom: 2px solid var(--vision-border-color);
}

.pe-xxl-4 p {
    /* margin: 0 0 10px 0; */
    color: var(--text-black);
    line-height: 27px;
    /* font-size: 15px; */
    text-align: justify;
    margin-top: 0;
    margin-bottom: 1rem;
}

.pe-xxl-4 {
    font-size: 15px;

}

.section-2 .img-2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.title-area {
    margin-bottom: 5px;
}

.mt-30 {
    margin-top: 30px;
}

.text-center {
    text-align: center !important;
}

.list-style1 ul {
    margin: 0 0 43px 0;
    padding: 0;
    list-style: none;
}

.list-style1 li {
    position: relative;
    padding-left: 45px;
    margin: 0 0 0px 0;
}

.list-style1 li>i:first-child {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    background-color: var(--service-card-bg-even);
    color: var(--white-color);
    border-radius: 50%;
}

.list-style1.reveal .fa.fa-check {
    color: var(--white);
}

.mb-30 {
    margin-bottom: 30px;
}

.text-xl-start {
    text-align: left !important;
}

.our-vision-para {
    /* margin: 0 0 10px 0; */
    color: var(--text-black);
    line-height: 27px;
    font-size: 14px;
    text-align: justify;
}

.main-icon-mission {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-icon-mission i {
    font-size: 70px;
    color: var(--white);
}

.main-1 {
    background-color: var(--section-orange);
}

.main-2 {
    background-color: var(--section-sky);
}

.main-3 {
    background-color: var(--section-green);
}

.main-4 {
    background-color: var(--section-red);
}

/* =================== VISION SECTION END =================== */

/* =================== FOOTER SECTION START =================== */

#footer {
    background-image: url("../img/core-img/img17.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-left-con {
    float: left;
}



#footerTop .footer-top-item .tit {
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

#footerTop .footer-top-item .txt {
    font-size: 15px;
    letter-spacing: -0.25px;
    color: var(--footer-text-secondary);
    line-height: 1.66em;
    /* margin: 20px 0; */
    padding-right: 25px;
    box-sizing: border-box;
}

#footerTop .footer-top-item a {
    font-size: 14px;
    color: var(--text-white);
    text-align: center;
    background-color: var(--blue);
    border-radius: 50px;
    padding: 10px;
    transition: all 0.4s;
}



#footerTop .footer-top-item a:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

#footerTop .footer-left-con {
    padding-right: 7.14%;
    box-sizing: border-box;
}


#footerTop .footer-left-con .txt {
    font-size: 16px;
    line-height: 1.875em;
}


.footer-left-con,
.footer-right-con {
    float: none;
}

#footerTop {
    padding: 30px 0;
}

#footerTop .footer-left-con {
    padding: 0;
}

#footerTop .footer-right-con .footer-top-item.left {
    float: none;
}

#footerTop .footer-right-con .footer-top-item {
    float: none;
    width: 100%;
}

#footerTop .footer-top-item {
    text-align: left;
}


#footerTop .footer-top-item .txt {
    font-size: 15px;
    /* margin: 10px 0 5px; */
    padding-right: 0;
}

#footerTop .footer-top-item .txt br {
    display: none;
}

#footerTop .footer-top-item a {
    /* font-size: 12px; */
    /* margin-top: 10px; */
}


#footerTop .footer-right-con .footer-top-item.left a span {
    /* padding: ; */
}



/* -------- FOOTER :: Footer -------- */
#footerBottom .area {
    background-color: var(--text-white);
}

#footerBottom .footer-bottom-inner {
    border-top: 1px solid var(--border-footer);
    padding: 30px 0px;
}

/* Footer :: Sitemap */
.sitemap-wrapper-style02 {
    padding: 35px 0px;
}

.sitemap-2dep {
    margin: 0;
    padding: 0;
}

.gnb-3dep {
    padding: 0;
    margin: 0;
}

.gnb-4dep {
    margin: 0;
    padding: 0;
}

.sitemap-wrapper-style02 .sitemap-gnb>li {
    float: left;
}

.sitemap-wrapper-style02 .sitemap-gnb>li>h2 {
    font-size: 16px;
    letter-spacing: -0.25px;
    color: var(--text-black);
    margin-bottom: 15px;
}

.sitemap-wrapper-style02 .sitemap-2dep li a {
    display: inline-block;
    font-size: 14px;
    letter-spacing: -0.25px;
    color: var(--footer-text-muted);
    padding: 8px 0;
}

.sitemap-wrapper-style02 .sitemap-2dep li:not(.has-3dep) a:hover {
    color: var(--primary-color);
    transition: all 0.3s;
}

.sitemap-wrapper-style02 .sitemap-2dep li a span {
    position: relative;
    display: inline-block;
}

.sitemap-wrapper-style02 .sitemap-2dep li a span:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.sitemap-wrapper-style02 .sitemap-2dep li:not(.has-3dep) a:hover span:before {
    opacity: 1;
}

.sitemap-wrapper-style02 .sitemap-2dep .has-3dep>a {
    color: var(--text-black);
    font-weight: 600;
}

/* Footer :: bottom menu */
.foot-menu {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
}

.foot-menu li {
    position: relative;
    line-height: 40px;
}


.foot-menu li a {
    color: var(--footer-text-muted);
    font-size: 15px;
    font-weight: 600;
}

.foot-menu li a b {
    color: var(--text-black);
}

/* Footer :: SNS List */
.foot-sns-menu {
    width: fit-content;
    display: inline-block;
}

.family-site-box {
    width: fit-content;
    display: inline-block;
}

.foot-sns-menu ul {
    margin: 0;
    padding: 0;
}

.foot-sns-menu li {
    float: left;
    margin-left: 15px;
}

.foot-sns-menu li:first-child {
    margin-left: 0;
}

.foot-sns-menu li a {
    display: block;
    color: var(--border-light-2);
}

.foot-sns-menu li a i {
    font-size: 24px;
    line-height: 40px;
}

/* Footer :: Copyright */
.footer-copyright {
    font-size: 13px;
    line-height: 40px;
    letter-spacing: -0.5px;
    color: var(--footer-text-muted);
}

.footer-copyright b {
    color: var(--footer-text-muted);
}

.footer-right-con {
    text-align: right;
}

.family-site-box .family-site-open-btn {
    display: inline-block;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-footer-light);
    border-radius: 50px;
    cursor: pointer;
}

.family-site-box .family-site-list {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    background: var(--white);
    border: 1px solid var(--border-footer-light);
    border-radius: 10px;
    box-shadow: 0 8px 20px var(--overlay-dark-light);
    z-index: 999;
    min-width: 180px;
}

.family-site-box.open .family-site-list {
    display: block;
}

.family-site-box .family-site-list li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    font-size: 14px;
}

.family-site-box .family-site-list li a:hover {
    background: var(--bg-hover);
}

/* =================== FOOTER SECTION END =================== */



.service-card {
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-sm);
    height: 100%;
}

.our-segment-bar-main .col-12.col-md-4:nth-child(even) .service-card {
    background: var(--service-card-bg-even);
}

.our-segment-bar-main .col-12.col-md-4:nth-child(even) .service-card h3 {
    color: var(--white);
}

.our-segment-bar-main .col-12.col-md-4:nth-child(even) .service-card .read-more {
    color: var(--black);
}

.tit-2 {
    color: var(--black);
    font-size: 40px;
}

.owl-carousel-2 .owl-nav {
    display: none;
}

.princials-bar-img {
    margin: 0 auto;
    height: 6em;
    display: flex;
}

.princials-bar-img img {
    object-fit: contain;
}

.principal-slider .owl-stage {
    padding: 10px 0;
}

.tab-content {
    padding: 20px;
}

.tab-link {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid var(--border-light-2);
    border-radius: 20px;
    background: var(--white);
    font-size: 20px;
}

/* Jab button active ho to aisa dikhega */
.tab-link.active {
    background-color: var(--service-card-bg-even);
    color: var(--white);
    border-radius: 20px;
}


.newsSection-img {
    /* height: 50px; */
    max-height: 100%;
}

.newsSection-img img {
    /* max-width: 100%; */
    /* max-height: 100%; */
    max-width: 30%;
    object-fit: cover;
}

.careersSection-img {
    height: 50px;
}

.careersSection-img img {
    max-width: 100%;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--graph-bg-light);
    /* Light maroon tint background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}



.icon-wrapper i {
    font-size: 35px;
    color: var(--icon-maroon);
    /* Deep maroon color from your image */
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--icon-darkblue);
    /* Dark blue/black color for heading */
    margin-bottom: 15px;
}

.read-more {
    color: var(--icon-maroon);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--link-maroon-hover);
    border-bottom: 2px solid var(--icon-maroon);
}

.principal-slider .owl-carousel .owl-item img {
    object-fit: contain !important;
}

/* For mobile responsiveness adjustment */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 10px;
    }
}





.footer-section {
    background-color: var(--footer-bg-dark);
    /* Dark Blue shade */
    background-image: linear-gradient(var(--footer-overlay), var(--footer-overlay)),
        url('https://www.transparenttextures.com/patterns/circuit-board.png');
    /* Circuit pattern */
    color: var(--white);
    padding: 60px 20px;
}



/* Left Side Styles */
.info-col h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cin {
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    background: var(--white);
    color: var(--footer-bg-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* Form Styles */
.form-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.input-row-1 {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.input-row-1 textarea {
    width: 100%;
}

.input-main-row {
    padding: 5px;
}

.input-row input {
    padding: 12px 5px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background: var(--white-semi);
}

textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: var(--white-semi);
    margin-bottom: 15px;
    resize: none;
}

.submit-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    float: right;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--border-light);
}


.footer-top-dff {
    background-color: var(--service-card-bg-even);
    padding: 1em;
}

.footer-col h2 {
    color: var(--white);
}

.footer-col p {
    color: var(--white);
}

.footer-col h3 {
    color: var(--white);
}


.line-card-head-h2 {
    color: var(--black);
    margin-bottom: 15px;
}

.upload-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--service-card-bg-even);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 10px;
}

.upload-link a {
    color: var(--white);
    padding: 10px 20px;
}

.upload-link a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}






.title {
    font-weight: bold;
}


/* Custom input styling */
/* =================== FORM STYLING START =================== */

.custom-input {
    background-color: var(--border-sm);
    border: 1px solid var(--border-light-2);
}

/* Format text */
.format-text {
    color: var(--section-red);
    font-size: 12px;
}

/* Captcha */
.captcha-box span {
    background: var(--bg-muted);
    padding: 10px 15px;
    border: 1px solid var(--border-light-2);
    display: flex;
    align-items: center;
}

/* Button */
.submit-btn {
    background-color: var(--button-yellow);
    padding: 10px 40px;
    font-weight: bold;
    border: none;
}

.submit-btn:hover {
    background-color: var(--button-yellow-dark);
}

/* =================== FORM STYLING END =================== */

/* =================== FOOTER CUSTOM START =================== */

.custom-footer {
    /* Apni image yahan lagao */
    background: var(--bg-footer-custom);
    background-position: center;
    background-size: cover;
    color: var(--white);
    padding: 30px 0;
    font-family: sans-serif;
}

/* Links design */
.footer-links li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

/* Triangle icon before links */
.footer-links li::before {
    content: "\f0da";
    /* FontAwesome Right Arrow icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 12px;
    top: 2px;
}

.footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    opacity: 0.8;
}

/* =================== FOOTER CUSTOM END =================== */

/* =================== SERVICE CARDS START =================== */

/* Social icons hover effect */
.social-section a i {
    font-size: 18px;
    transition: transform 0.3s;
}

.social-section a:hover i {
    transform: scale(1.2);
    color: var(--brand-blue);
}

/* =================== SERVICE CARDS END =================== */

/* =================== LINE CARD SECTION START =================== */

/* Logo small adjustment */
.footer-logo h2 {
    letter-spacing: -1px;
}

.main-diff-submit input {
    background-color: var(--white);
    color: var(--service-card-bg-even);
    padding: 10px 40px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main-diff-submit {
    display: flex;
    justify-content: center;
}


.sub-content-footer-bar {
    color: var(--white);
    opacity: 0.8;
    font-size: 13px;
    word-spacing: 2px;
}

.pwt.selected a {
    border-bottom: 2px solid var(--white);
}

.boc.selected a {
    border-bottom: 2px solid var(--white);
}

.ift.selected a {
    border-bottom: 2px solid var(--white);
}

.main-sidebar-1 ul li.selected a {
    border-bottom: 2px solid var(--primary-color);
}

.line-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-card-btn {
    background-color: var(--service-card-bg-even);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =================== LINE CARD SECTION END =================== */

/* =================== CARD STYLING START =================== */

.line-card-main-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-card-main-img .col-md-4.col-sm-4.col-6.mb-3 .card.p-2.text-center {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem !important;
}

.line-card-main-img .col-md-4.col-sm-4.col-6.mb-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Line card*/
#lineCardSection .row {
    position: relative;
}

#lineCardSection .col-md-4 {
    transition: all 0.4s ease;
}

/* visible state */
#lineCardSection .fade-in {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* hidden state */
#lineCardSection .fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
}

.line-tabs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 18px;
    border: 1px solid var(--border-footer-light);
    background-color: var(--header-bg);
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.tab-btn:hover {
    background-color: var(--bg-lighter);
}

.card-a {
    width: 100%;
    height: 120px;
}

/* Active tab (blue one) */
.tab-btn.active {
    background-color: var(--service-card-bg-even);
    /* same blue tone */
    color: var(--white);
    border-color: var(--service-card-bg-even);
}

.clearfix-head-li {
    color: var(--white) !important;
}

.service-card .icon-wrapper i {
    color: var(--text-black);
}

.service-card .read-more {
    color: var(--text-black);
}

.box-main-list li a {
    color: var(--white);
}


/* Navbar */
/* Hide content initially */
.active-line-content {
    display: none;
}

/* Clickable header */
.dropdown-toggle-custom {
    cursor: pointer;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

/* Arrow animation */
.toggle-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* When open */
.dropdown-toggle-custom.active .toggle-arrow {
    transform: rotate(180deg);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-green-dark);
}

/* =================== WHATSAPP FLOATING BUTTON END =================== */

/* =================== ACCORDION STYLING START =================== */

.accordion-item {
    background: transparent;
    border: 1px solid var(--border-blue);
    margin-bottom: 10px;
}



.accordion-button {
    background: var(--white);
    color: var(--black);
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--black);
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    background: var(--white);
}

.inner-item:first-child {
    padding: 8px;
    border-bottom: 1px solid var(--border-blue);
    cursor: pointer;
}

.inner-item {
    padding: 8px;
    cursor: pointer;
}

.inner-item:hover {
    opacity: 0.8;
}

/* =================== ACCORDION STYLING END =================== */

/* =================== MEDIA QUERIES START =================== */

@media (max-width: 1024px) and (min-width: 768px) {

    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .main-visual-con {
        width: 100%;
        min-height: auto;
    }

    .main-visual-item {
        position: relative;
        /* min-height: 400px; */
    }


    .over-box {
        max-width: 20rem !important;
    }

    .main-visual-txt-con {
        padding: 20px;
    }

    .main-visual-txt1 {
        font-size: 2.5rem;
    }

    .main-visual-txt2 {
        font-size: 1.1rem;
    }
}

/* Mobile (800px and below) */
@media (max-width: 800px) and (min-width: 599.98px) {
    #mainVisual {
        min-height: auto;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }

    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }


    .main-visual-item {
        min-height: 350px;
    }

    .main-visual-pc-img {
        min-height: 350px;
    }

    .main-visual-pc-img {
        display: none;
    }

    .main-visual-m-img {
        display: block;
    }

    .main-visual-txt-con {
        padding: 15px;
    }


    .main-visual-txt1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .main-visual-txt2 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .main-visual-more-btn {
        min-width: 140px;
        padding: 0.8rem 1.4rem;
        font-size: 14px;
    }


    .main-news-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small Mobile (600px and below) */
@media (max-width: 600px) and (min-width: 479.98px) {
    .main-visual-item {
        min-height: 300px;
    }

    .input-row {
        flex-direction: column;
    }

    .tab-link {
        font-size: 10px !important;
    }

    .careersSection-img {
        height: 100% !important;
    }

    .newsSection-img img {
        max-width: 60% !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }


    .main-visual-con {
        width: 100% !important;
        min-height: 100% !important;
    }

    .main-visual-pc-img {
        min-height: 300px;
    }

    .main-visual-txt-con {
        padding: 12px;
    }

    .main-visual-txt1 {
        font-size: 1.8rem;
    }

    .main-visual-txt2 {
        font-size: 0.95rem;
    }

    .over-box {
        max-width: 20rem !important;
    }

    .main-visual-more-btn {
        min-width: 130px;
        padding: 0.7rem 1.2rem;
        font-size: 13px;
    }

    .main-news-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }


}

/* Extra Small (480px and below) */
@media (max-width: 500px) and (min-width: 239.98px) {
    .main-visual-item {
        min-height: 250px;
    }

    .input-row {
        flex-direction: column;
    }

    .tab-link {
        font-size: 10px !important;
    }

    .careersSection-img {
        height: 100% !important;
    }

    .navbar-brand img {
        max-width: 8em !important;
    }


    .newsSection-img img {
        max-width: 60% !important;
    }

    .nav-drop-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sub-navi-link li.main-navi-link-2 {
        margin: inherit !important;
    }

    .nav-drop {
        top: inherit !important;
    }

    .main-visual-txt-con {
        bottom: 0 !important;
    }


    .sub-navi-link li {
        padding: 1em 0 1em 0;
    }


    .main-solution-tit {
        margin-bottom: 10px;
        display: flex;
        gap: 0px !important;
        flex-direction: column;
    }


    .main-visual-con {
        width: 100% !important;
        min-height: 100% !important;
    }

    .foot-menu li {
        padding-left: 0 !important;
        float: none !important;
    }


    .main-visual-txt1 {
        font-size: 1.5rem;
    }

    .main-visual-txt2 {
        font-size: 0.9rem;
    }

    .over-box {
        max-width: 15rem !important;
    }

    .main-visual-more-btn {
        min-width: 120px;
        padding: 0.6rem 1rem;
        font-size: 12px;
    }

    .main-quick-menu {
        display: none;
    }


    .main-news-list {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* =================== MEDIA QUERIES END =================== */

/* =================== CATEGORY CARD STYLING START =================== */

.category-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: var(--service-card-bg-even);
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    border-radius: 12px 12px 0 0 !important;
    padding: 14px;
}

.card-body ul {
    padding-left: 18px;
    margin: 0;
}

.card-body li {
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-gray-dark);
}

.card-body li::before{
    content: "";
    position: absolute;
    left: -22px;
    background-color: var(--service-card-bg-even);
    /* width: 10px; */
    /* height: 10px; */
    top: 8px;
    padding: 1px 6px;
}

.card-body{
    background-color: var(--bg-alice-blue);
}

.brand-logo-section .card.text-center{
    border: none;
}

/* =================== CARD STYLING END =================== */

/* =================== CSS STYLESHEET END =================== */
