



@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --brand-pr: #CCCC52;
    /* Yellow */
    --brand-dark: #4c483f;
    /* Dark Grey */
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition-speed: 0.3s;
    --fon-mai: 'Alegreya Sans', sans-serif;
    --fon-head: 'Exo 2', sans-serif;
}

.container-fluid {
    padding-left: 5% !important;
    padding-right: 5% !important;
}

body {
    font-family: var(--fon-mai);
    color: var(--brand-dark);
    background: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fon-head);
}

a {
    font-family: var(--fon-head);
    color: var(--brand-dark);
    text-decoration: none;
}
.s-bg-l {
    background-color: #f1f1f1;
}


/***********button open*********************/
.primary-button {
    font-family: var(--fon-head);
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border: 1px solid var(--brand-dark);
    padding: 1rem 1.2rem;
    /* Updated SVG with your brand color var(--brand-pr) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 531.28 200'%3E%3Cdefs%3E%3Cstyle%3E .shape %7B fill: %23CCCC52; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='shape' points='415.81 200 0 200 115.47 0 531.28 0 415.81 200' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-color: var(--brand-dark);
    background-size: 200%;
    background-position: 200%;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
    transition-property: background-position, border, color;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
    outline: none;
}

.primary-button:hover {
    border: 1px solid var(--brand-pr);
    color: var(--brand-dark);
    background-position: 40%;
}

.primary-button:before {
    content: "";
    position: absolute;
    background-color: var(--brand-dark);
    width: 0.2rem;
    height: 0.2rem;
    top: -1px;
    left: -1px;
    transition: background-color 0.15s ease-in-out;
}

.primary-button:after {
    content: "";
    position: absolute;
    background-color: var(--brand-pr);
    width: 0.3rem;
    height: 0.3rem;
    bottom: -1px;
    right: -1px;
    transition: background-color 0.15s ease-in-out;
}

.primary-button:hover:before {
    background-color: var(--brand-pr);
}

.primary-button:hover:after {
    background-color: var(--brand-dark);
}


.button-borders {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: inline-block;
}

.button-borders:before {
    content: "";
    position: absolute;
    width: calc(100% + 0.6em);
    height: 50%;
    left: -0.3em;
    top: -0.3em;
    border: 1px solid var(--brand-dark);
    border-bottom: 0px;
    pointer-events: none;
}

.button-borders:after {
    content: "";
    position: absolute;
    width: calc(100% + 0.6em);
    height: 50%;
    left: -0.3em;
    bottom: -0.3em;
    border: 1px solid var(--brand-dark);
    border-top: 0px;
    z-index: 0;
    pointer-events: none;
}

/***********button close*********************/ 



/****************header********************/
.header-transparent {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-brand {
    color: var(--brand-pr);
}

.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-links a,
.social-links a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.top-links a:hover,
.social-links a:hover {
    color: var(--brand-pr);
}

.navbar-brand img {
    height: 60px;
}

/* Navigation Menu Links */
.navbar-nav .nav-link {
    font-family: var(--fon-head);
    color: var(--bg-light) !important;
    font-weight: 500;
    font-size: clamp(12px, 1vw, 1.2vw);
    padding: 0.5rem 0.8rem !important;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    display: inline-block;
}



/* Effect for Navbar Links */
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background-color: var(--brand-pr);
    z-index: -1;
    transition: all 0.4s;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-dark) !important;

}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        border-radius: 8px;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border-radius: 8px;
        border-top: 3px solid var(--brand-pr);
    }

    .dropdown-item {
        padding: 7px 15px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .dropdown-item:hover {
        background-color: var(--brand-pr);
        color: var(--brand-dark) !important;
        padding-left: 20px;
    }
}

.mobile-sidebar {
    width: 320px !important;
}

.mobile-nav-list li a {
    padding: 15px 25px;
    display: block;
    color: var(--bg-light);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list li a:hover {
    background: rgba(204, 204, 82, 0.1);
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 45px;
    }
}

/****************header close*************/



/*****************footer****************/
.main-footer {
    background-color: var(--brand-dark);
    font-family: var(--fon-mai);
    position: relative;
    padding-top: 40px;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/main/footer-bg.webp');
    background-size: contain;
    background-position: center;
    opacity: 0.05;
    background-size: cover;
    pointer-events: none;
}

.back-to-top-wrapper {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 5;
}

.back-to-top-btn {
    background: #fff;
    color: #000;
    padding: 12px 65px;
    border-radius: 0 0 28px 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.svg-corner {
    position: absolute;
    width: 40px;
    height: 40px;
}

.arrow-circle {
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-heading {
    font-family: var(--fon-head);
    font-size: clamp(15px, 1vw, 1.2vw);
    font-weight: 800;
    letter-spacing: 1px;
}

.heading-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.heading-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 1px;
    background: var(--brand-pr);
}

.footer-text {
    color: var(--bg-light);
    line-height: 1.6;
}


.footer-links li {
    margin-bottom: 12px;
}


.footer-links li a {
    font-family: var(--fon-mai);
    color: var(--bg-light);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(12px, 0.7vw, 1vw);
    padding: 4px 10px;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
    display: inline-block;
}

.footer-links li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background-color: var(--brand-pr);
    z-index: -1;
    transition: all 0.4s;
}

.footer-links li a:hover::before {
    width: 100%;
}

.footer-links li a:hover {
    color: var(--brand-dark) !important;
}


.arrow {
    color: var(--brand-pr);
    font-size: 8px;
    margin-right: 8px;
    vertical-align: middle;
}

.get-in-touch-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 25px;
    color: var(--bg-light);
    text-decoration: none;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.subscribe-form {
    background: #111;
    border-radius: 8px;
    padding: 5px;
}

.subscribe-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    padding-left: 15px;
}

.subscribe-form button {
    background: var(--brand-pr);
    color: var(--brand-dark);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.copyright-text {
    font-size: 15px;
    color: #888;
    letter-spacing: 0.5px;
}

.footer-logo {
    height: 60px;
    filter: brightness(1.2);
}

.social-icons a {
    background: var(--brand-pr);
    color: var(--brand-dark);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .back-to-top-wrapper {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 20px;
    }

    .footer-bottom .text-center {
        margin: 20px 0;
    }

    .footer-bottom .justify-content-end {
        justify-content: center !important;
    }

    .back-to-top-btn {
        padding: 12px 28px;
    }
}
/**************footer close***********/

/**************All page open***********/
.page-hero {
    height: 400px;
    text-align: center;
    color: var(--bg-light);
    position: relative !important;
    display: flex !important;
    align-items: center;

}

.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                var(--bg-desk) center/cover no-repeat;
}

@media (max-width: 767px) {
    .page-hero {
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                          var(--bg-mob, var(--bg-desk));
    }
}

.page-hero h1 {

    margin-bottom: 1rem !important;
    font-family: var(--fon-head);
    font-size: clamp(28px, 2.1vw, 2.8vw);
    letter-spacing: 1px;
    font-weight: 700 !important;
}

.page-hero p {
    font-family: var(--fon-mai);
    font-size: clamp(18px, 1vw, 2vw);
    opacity: .75 !important;
    max-width: 600px;
    text-align: center;
    margin-right: auto !important;
    margin-left: auto !important;
}

.page-tit :is(h2, h3, h4, h5, h6) {
    margin-bottom: 1rem !important;
    font-family: var(--fon-head);
    color: var(--brand-dark);
    font-size: clamp(18px, 2vw, 2.8vw);
    letter-spacing: 1px;
    font-weight: 700 !important;
}

.page-tit p {
    font-family: var(--fon-mai);
    color: var(--brand-dark);
    font-size: clamp(14px, 0.9vw, 2vw);
    text-align: justify;
    margin-right: auto !important;
    margin-left: auto !important;
}


/****************all page close*************/



/*********Scroll Down********/
.hero-bottom-tab {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hs-controls-container {
    position: absolute;
    bottom: 0;
    left: 8%;
    z-index: 10;
}


.hs-scroll-down-wrap {
    background: var(--bg-light);
    padding: 15px 100px;
    position: relative;
    border-radius: 40px 40px 0 0;
    color: var(--brand-dark);
}

.svg-corner {
    position: absolute;
    width: 39px;
    height: 39px;
    pointer-events: none;
}

.mousey {
    width: 22px;
    height: 35px;
    border: 2px solid #000;
    border-radius: 12px;
    position: relative;
}

.scroller {
    width: 3px;
    height: 6px;
    background: var(--brand-pr);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.nav-btn {
    background: none;
    border: none;
    color: #000;
    padding: 0;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-btn:hover {
    color: var(--brand-pr);
}

@media (max-width: 991px) {
    .hs-controls-container {
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
    }

    .hs-scroll-down-wrap span {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/**************scroll close***********/





/***************contact**************/

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://topdigitalmarketingcompanies.in/sanjar/assets/images/home/contact-us.jpg') center/cover no-repeat;
    height: 500px;
}

.btn-brand-icon {
    background: var(--brand-pr);
    color: var(--brand-dark);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.info-card {
    background: #fff;
}

.icon-box-brand {
    background: var(--brand-dark);
    color: var(--brand-pr);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-highlight {
    background: #f2f1d5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-dark);
    border: 1px solid var(--brand-pr);
    display: inline-block;
}

.social-links-brand a {
    background: var(--brand-dark);
    color: var(--brand-pr);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-links-brand a:hover {
    background: var(--brand-pr);
    color: var(--brand-dark);
}

.brand-dots span {
    display: inline-block;
    width: 12px;
    height: 6px;
    background: var(--brand-pr);
    border-radius: 10px;
    margin-left: 4px;
}

.form-control {
    background: var(--bg-light);
    border: 1px solid #eee;
    border-radius: 8px !important;
    padding: 12px;
    font-family: var(--fon-mai);
}

.btn-brand-submit {
    background: var(--brand-dark);
    color: var(--brand-pr);
    font-family: var(--fon-head);
    padding: 15px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-brand-submit:hover {
    background: var(--brand-pr);
    color: var(--brand-dark);
}

.initial-circle {
    width: 50px;
    height: 50px;
    background: var(--brand-pr);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.border-top-brand {
    border-top: 4px solid var(--brand-pr) !important;
}

.border-left-brand {
    border-left: 4px solid var(--brand-pr) !important;
}

.text-brand-dark {
    color: #8a8732;
}

@media (max-width: 991px) {
    .working-social-bar {
        flex-direction: column;
        gap: 20px;
    }
}

/**************contact close***********/

/*****************about us*****************/

#plantCarousel {
    min-height: 500px;
}

@media (max-width: 768px) {
    .fixed-aspect-img {
        height: 350px;
    }

    #plantCarousel {
        min-height: 350px;
    }
}

/*****************counter*****************/
.counter-item i {
    color: var(--brand-pr);
}

.counter-item h4 {
    font-size: clamp(25px, 2vw, 2.5vw);
}

.counter-item p {
    font-size: clamp(12px, 0.8vw, 1vw);
    font-family: var(--fon-mai);
}

/**********************team *************/
.heading-card-box {
    background-color: #f1f1f1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading-card-box .display-6 {
    font-size: clamp(25px, 1.7vw, 2vw);
}

.nav-controls-tab {
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 5;
}

.nav-tab-content {
    background-color: var(--bg-light);
    padding: 20px 25px;
    border-radius: 35px 0 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #212529;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ctrl-btn:hover {
    background-color: var(--brand-pr);
    color: var(--brand-dark);
    transform: scale(1.05);
}

.nav-tab-content .svg-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.brand-dots span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--brand-pr);
    border-radius: 2px;
    margin-right: 5px;
}

.team-card {
    border-radius: 20px !important;
    overflow: hidden;
    border: 1px solid #eee !important;
    background: #fff;
}

.card-img-wrapper {
    position: relative;
    margin: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.social-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 30px;
    padding: 6px 15px;
    display: flex;
    gap: 12px;
}

.social-pill a {
    color: white;
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-pill a:hover {
    opacity: 0.7;
}

.member-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 5px;
}


.brand-accent-color {
    color: var(--brand-pr);
}

.brand-accent-bg {
    background-color: var(--brand-pr);
}

.orange-dash {
    width: 12px;
    height: 3px;
    background-color: var(--brand-pr);
    border-radius: 2px;
}

.btn-contact {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: var(--brand-pr);
    color: #212529;
}

.contact-circle {
    width: 38px;
    height: 38px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-pr);
    text-decoration: none;
    transition: all 0.2s;
}

.contact-circle:hover {
    background: var(--brand-pr);
    color: #fff;
    border-color: var(--brand-pr);
}

.card-footer-custom {
    border-top: 1px solid #eee;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/****************team close*************/

/* Vision & Mission Styling */
.vm-card {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
}

.vm-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.vm-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.vm-card.vision {
    background-color: #212529;
    color: white;
}

.vm-card.mission {
    background-color: var(--brand-pr);
    color: #212529;
}

/* Why Choose Us Styling */
.wcu-image {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

