
:root {
    --primary-color: #021701;
    --secondary-color: #fdb813;
    --accent-color: #ff6b00;
    --text-light: #ffffff;
    --text-dark: #333333;
    --menu-hover-bg: rgba(253, 184, 19, 0.1);
    --footer-bg: #011b08;
    --section-bg: #f8f9fa;
     --form-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}
/* HEADER SECTION STARTS ==================================================================================================================================*/
.navbar {
        background: linear-gradient(135deg, #021701 0%, #083914 100%);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--secondary-color);
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 4.3rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}
.logo-text {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(253, 184, 19, 0.5);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-links li {
    /* margin-left: 1.2rem; */
    position: relative;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap !important;
    padding: 0.6rem 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
    display: flex;
    align-items: center;
}
ol, ul
 {
    padding-left: 0 !important;
}
.nav-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
    /* background-color: var(--menu-hover-bg); */
}

.nav-links a.active {
    color: var(--secondary-color);
    /* background-color: var(--menu-hover-bg); */
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    bottom: -8px;
    left: 0;
    border-radius: 3px;
    animation: activeUnderline 0.5s ease-out;
}

@keyframes activeUnderline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.login-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffcb45 100%);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    /* margin-left: 1.5rem; */
    box-shadow: 0 4px 8px rgba(2, 34, 66, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 158px;
    max-height: 50px;
}

.login-btn i {
    margin-right: 8px;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(2, 34, 66, 0.3);
}

.login-btn:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Mobile styles */
@media (max-width: 992px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, #022242 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem 2rem;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        border-radius: 6px;
    }

    .nav-links a.active {
        background-color: var(--menu-hover-bg);
    }

    .nav-links a.active::before {
        width: 5px;
        height: 100%;
        bottom: auto;
        left: 0;
        top: 0;
        animation: activeMobileUnderline 0.5s ease-out;
    }

    @keyframes activeMobileUnderline {
        from {
            transform: scaleY(0);
        }
        to {
            transform: scaleY(1);
        }
    }

    .hamburger {
        display: block;
    }

    .login-btn {
        margin: 1.5rem 0 0;
        width: 100%;
        justify-content: center;
    }
}

/* Animation for navbar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeInDown 0.6s ease-out;
}

/* Floating animation for logo */
@keyframes float1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* .logo-img {
    animation: float1 3s ease-in-out infinite;
    -webkit-animation: float1 3s ease-in-out infinite;
} */

/* Pulse animation for CTA */
@keyframes pulse1 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(253, 184, 19, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0);
    }
}

.login-btn {
    animation: pulse1 2.5s infinite;
    -webkit-animation: pulse1 2.5s infinite;
}

.login-btn:hover {
    animation: none;
}
/* HEADER SECTION ENDS ==================================================================================================================================*/

/* HERO SECTION STARTS================================================================================================================================== */
.index_1 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
   
}

.index_2 {
    position: relative;
    width: 100%;
    height: 100%;
}

.index_3 {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: rgb(1 24 13 / 74%);
    z-index: 1;
}

.index_3.index_5 {
    opacity: 1;
}

.index_4 {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.index_12 {
    background-image: url('../img/bg.avif');
}

.index_13 {
    background-image: url('../img/bg2.avif');
}

.index_6 {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease;
}

.index_3.index_5 .index_6 {
    transform: translateY(0);
    opacity: 1;
}

.index_6 h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
}

.index_6 p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.index_8 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.index_9 {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    border: 2px solid transparent;
}

.index_10 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffcb45 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.index_11 {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.index_10:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(253, 184, 19, 0.6);
}

.index_11:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.index_14 {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 3;
}

.index_15 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.index_15.index_5 {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

/* Animated elements */
@keyframes index_33 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.index_7 {
    animation: index_33 4s ease-in-out infinite !important;
    -webkit-animation: index_33 4s ease-in-out infinite !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .index_6 h1 {
        font-size: 2.8rem;
    }
    
    .index_6 p {
        font-size: 1.1rem;
    }
    
    .index_9 {
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .index_1 {
        min-height: 500px;
        height: 80vh;
        /* margin-top: 60px; */
    }
    
    .index_6 h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .index_6 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .index_8 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .index_9 {
        width: 80%;
        max-width: 250px;
        text-align: center;
    }
    
    .index_14 {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .index_6 h1 {
        font-size: 1.8rem;
    }
}
/* HERO SECTION ENDS================================================================================================================================== */

/* PRODUCT SLIDER SECTION STARTS=================================================================================================================================== */
.index_17 {
    padding: 5rem 2rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.index_18 {
    text-align: center;
    margin-bottom: 3rem;
}

.index_18 h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.index_18 h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.index_18 p {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.index_19 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.index_2 {
    overflow: hidden;
    position: relative;
}

.index_20 {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 20px;
}

.index_21 {
    height: 250px;
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    /* padding-bottom: 20px; */
}

.index_21.index_23 {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(2, 34, 66, 0.2);
    z-index: 2;
    border: 2px solid var(--secondary-color);
}

.index_21.index_23 .index_22 {
    transform: scale(1.03);
}

.index_22 {
    height: 255px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.index_24 {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    left: 0;
    pointer-events: none;
}

.index_25 {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.index_25:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.index_28 {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 10px;
}

.index_29 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(2, 34, 66, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.index_29.index_5 {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Animation for cards */
@keyframes index_34 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.index_21:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(2, 34, 66, 0.3);
}

.index_21.index_23:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .index_21 {
        min-width: calc(50% - 20px);
    }
    
    .index_21.index_23 {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .index_17 {
        padding: 3rem 1rem;
    }
    
    .index_18 h2 {
        font-size: 2rem;
    }
    
    .index_21 {
        min-width: calc(100% - 20px);
    }
    
    .index_24 {
        display: none;
    }
}
/* PRODUCT SECTION ENDS================================================================================================================================== */

/* FOOTER SECTION STARTS-================================================================================================================================== */

.footer {
    background: var(--footer-bg);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    animation: rainbow 8s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    /* margin-bottom: 1.5rem; */
}

.footer-logo-img {
      /* margin: 0px 0; */
    width: 70%;
    height: 98px;
    /* margin-right: 27px; */
    margin-left: -19px !important;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.quick-links li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    opacity: 0;
}

.quick-links li:hover::before {
    content: '→';
    opacity: 1;
    color: var(--accent-color);
     transform: translateX(5px);
}


.quick-links li:hover::before {
    color: var(--accent-color);
}

.quick-links a {
    color: var(--text-light);
    padding-left: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    /* margin-top: 1.5rem; */
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(253, 184, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--secondary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright span {
    color: var(--secondary-color);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-heading {
        margin-bottom: 1rem;
    }
}
/* FOOTER SECTION ENDS======================================================================================================================================== */

/* ABOUT US SECTION STARTS============================================================== */
.about-section {
    padding: 5rem 2rem;
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(2, 34, 66, 0.1);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 1s ease;
}

.about-image.animated {
    transform: translateX(0);
    opacity: 1;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(2, 66, 28, 0.685), transparent);
    padding: 2rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.about-content {
    flex: 1;
    min-width: 300px;
    transform: translateX(50px);
    opacity: 0;
    transition: all 1s ease 0.2s;
}

.about-content.animated {
    transform: translateX(0);
    opacity: 1;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--accent-color);
}

.about-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(253, 184, 19, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    background: rgba(253, 184, 19, 0.1);
    border-left: 3px solid var(--secondary-color);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(15deg) scale(1.1);
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.about-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 184, 19, 0.3);
}

.about-btn:hover::before {
    left: 100%;
}

/* Floating elements */
/* .about-floater {
    position: absolute;
    background: rgba(253, 184, 19, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
} */

/* Responsive styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image, .about-content {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}
/* ABOUT US SECTION ENDS====================================================================== */

/* BREADCRUMB SECTION STARTS=============================================================== */
.breadcrumb-section {
    background: linear-gradient(rgb(2 66 8 / 93%), rgb(2 66 39 / 65%)), 
                url('https://img.freepik.com/free-photo/two-indian-business-man-suits-sitting-office-cafe-looking-laptop-drinking-coffee_627829-1513.jpg?uid=R89637956&ga=GA1.1.608374954.1749464259&semt=ais_hybrid&w=740');
    background-size: cover;
    background-position: center;
    /* padding: 5rem 2rem; */
    padding: 6rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.breadcrumb-item+.breadcrumb-item::before{
    content: '' !important;
}
.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(253, 184, 19, 0.15);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    margin-right: 10px;
    position: relative;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.breadcrumb-link:hover {
    background: rgba(253, 184, 19, 0.3);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.breadcrumb-link.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

.breadcrumb-link.active:hover {
    transform: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Floating elements */
.breadcrumb-floater {
    position: absolute;
    background: rgba(253, 184, 19, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .breadcrumb-nav {
        margin: 0 auto;
        border-radius: 30px;
        padding: 0.8rem;
    }
    
    .breadcrumb-title {
        font-size: 2.2rem;
    }
    
    .breadcrumb-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .breadcrumb-link.active {
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb-nav {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
        padding: 1rem;
        width: 100%;
    }
    
    .breadcrumb-item {
        margin-bottom: 5px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        display: none;
    }
}
/* BREADCRUMB SECTION  ENDS=========================================================== */
/* PRODUCT PAGE STARTS */
.pr1 {
    padding: 4rem 2rem;
    background-color: var(--pr1-bg);
}

.pr2 {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Filters Column */
.pr3 {
    flex: 0 0 250px;
    background: var(--pr3-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.pr4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
}

.pr5 {
    margin-bottom: 1.5rem;
}

.pr6 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.pr7 {
    list-style: none;
    padding-left: 1.5rem;
}

.pr8 {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* 
.pr8::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 3px;
} */
     .filter-header {
  display: flex;
  justify-content: space-between; /* space between title and icon */
  align-items: center;
  margin-bottom: 15px;
}

.filter-header h3 {
  font-size: 20px;
  color: #333;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reset-icon {
  padding: 7px;
    font-size: 16px;
    color: orange;
    background-color: #fff7ef;
    border: 2px solid orange;
    /* padding: 9px; */
    border-radius: 15%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.reset-icon:hover {
  background-color: orange;
  color: white;
  transform: rotate(180deg);
}
ul.pr7 {
    list-style: none;
    padding-left: 0;
}

li.pr8 {
    margin-bottom: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid orange;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: orange;
    border-color: orange;
}

.checkbox-label input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
}

.checkbox-label input[type="checkbox"]:checked::after {
    display: block;
}


.pr8:hover {
    color: var(--accent-color);
}

.pr8:hover::before {
    border-color: var(--accent-color);
}

/* Products Column */
.pr9 {
    flex: 1;
    min-width: 300px;
}

.pr10 {
    position: relative;
    margin-bottom: 2rem;
}

.pr11 {
    width: 100%;
    padding: 0.8rem 1.5rem 0.8rem 3rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pr11:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(253, 184, 19, 0.2);
}

.pr12 {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.pr13 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pr14 {
    background: var(--pr2-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.pr14:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(2, 34, 66, 0.15);
}

.pr15 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.pr16 {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.pr17 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pr14:hover .pr17 {
    transform: scale(1.1);
}

.pr18 {
    padding: 0.7rem;
}

.pr19 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pr20 {
    margin-bottom: 0.8rem;
}

.pr21 {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9rem;
}

.pr22 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0.5rem;
}

.pr23 {
    display: inline-block;
    background: rgba(2, 34, 66, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.pr24 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pr25 {
    display: block;
    width: 100%;
    padding: 0.6rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.pr25:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(253, 184, 19, 0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
    .pr2 {
        flex-direction: column;
    }
    
    .pr3 {
        width: 100%;
    }
    
    .pr13 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .pr1 {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .pr13 {
        grid-template-columns: 1fr;
    }
}
/* PRODUCT PAGE ENDS================================================ */

/* OPPURTUNITY SECTION STARS============================================= */
.card_sec {
    padding: 3rem 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card11, .card22, .card33 {
    flex: 1 1 300px; 
    min-width: 350px;
    max-width: 360px;
    background-color: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease-in-out;
  }
  
  .card11 img,
  .card22 img,
  .card33 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s ease-in-out;
  }
  
  .card11:hover img,
  .card22:hover img,
  .card33:hover img {
    transform: scale(1.02);
  }
  
  .card11 button, .card22 button, .card33 button {
    margin-top: 12px;
    padding: 20px 50px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  
  .card11 button:hover, .card22 button:hover, .card33 button:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
  }
  
  /* Responsive behavior */
  @media (max-width: 992px) {
    .card11, .card22, .card33 {
      flex: 1 1 100%;
    }
    .card11, .card22, .card33 {
        flex: 1 1 300px; 
        min-width: 280px;
        max-width: 360px;
        background-color: var(--text-light);
        border: 1px solid var(--primary-color);
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        text-align: center;
        transition: all 0.4s ease-in-out;
      }
  }
    /* OPPURTUNITY SECTION ENDS=============================================== */

    /* REGISTRATION SECTION STARTS=================================================================== */
    .registration-container {
        max-width: 1200px;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .registration-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .registration-title {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .registration-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

    .registration-subtitle {
        color: var(--primary-color);
        opacity: 0.8;
    }

    .registration-card {
        background: var(--form-bg);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .section-header {
       background: linear-gradient(135deg, #021701 0%, #083914 100%);
        color: var(--text-light);
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .section-header i {
        margin-right: 10px;
        color: var(--secondary-color);
    }

    .section-body {
        padding: 1.5rem;
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .form-control {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: white;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.2);
    }

    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23022242' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1em;
    }

    .form-note {
        font-size: 0.8rem;
        color: #666;
        margin-top: 0.3rem;
        font-style: italic;
    }

    .terms-checkbox {
        display: flex;
        align-items: flex-start;
        margin: 1.5rem 0;
    }

    .terms-checkbox input {
        margin-right: 10px;
        margin-top: 3px;
        accent-color: var(--secondary-color);
    }

    .terms-text {
        font-size: 0.9rem;
    }

    .terms-link {
        color: var(--accent-color);
        font-weight: 600;
        text-decoration: none;
    }

    .terms-link:hover {
        text-decoration: underline;
    }

    .submit-btn {
        background: linear-gradient(135deg, var(--secondary-color), #ffcb45);
        color: var(--primary-color);
        border: none;
        border-radius: 6px;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #ffcb45, var(--secondary-color));
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(253, 184, 19, 0.4);
    }

    .login-link {
        text-align: center;
        margin-top: 1.5rem;
        font-size: 0.95rem;
    }

    .login-link a {
        color: var(--accent-color);
        font-weight: 600;
        text-decoration: none;
    }

    .login-link a:hover {
        text-decoration: underline;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .registration-title {
            font-size: 2rem;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
        }
        
        .section-body {
            padding: 1rem;
        }
    }

    @media (max-width: 480px) {
        .registration-title {
            font-size: 1.8rem;
        }
        
        .registration-container {
            padding: 0 0.5rem;
        }
    }

    /* Animation */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .registration-card {
        animation: fadeIn 0.6s ease-out;
    }
    /* REGISTRATION SECTION ENDS===================================================================== */

    /* GRIEVENCE SECTION STARTS======================================================================== */
    .grievance-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .page-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .page-subtitle {
            color: var(--primary-color);
            opacity: 0.8;
            font-size: 1.1rem;
        }

        .grievance-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .complaint-form {
            flex: 1;
            min-width: 300px;
        }

        .form-card {
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            height: 100%;
        }

        .form-header {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--secondary-color), #ffcb45);
            color: var(--primary-color);
            border: none;
            border-radius: 6px;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #ffcb45, var(--secondary-color));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(253, 184, 19, 0.4);
        }

        .contact-info1 {
            flex: 0 0 350px;
            background: var(--primary-color);
            color: var(--text-light);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            max-height: 450px;
        }

        .contact-info1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .contact-header {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .contact-details {
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .contact-icon {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 3px;
            font-size: 1.1rem;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .grievance-content {
                flex-direction: column;
            }
            
            .contact-info1 {
                flex: 1;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .form-card, .contact-info {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .grievance-container {
                padding: 0 0.5rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-card, .contact-info1 {
            animation: fadeIn 0.6s ease-out;
        }
        /* grievence section ends=========================================== */
        /* CONTACT SECTION STARTS==================================================================== */
        .contact-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .page-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-card {
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
        }

        .form-header {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--secondary-color), #ffcb45);
            color: var(--primary-color);
            border: none;
            border-radius: 6px;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #ffcb45, var(--secondary-color));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(253, 184, 19, 0.4);
        }

        .contact-info2 {
            flex: 0 0 350px;
            background: var(--primary-color);
            color: var(--text-light);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            max-height: 450px;
        }

        .contact-info2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .company-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .customer-care {
            background: rgba(253, 184, 19, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 2rem;
        }

        .map-container {
            margin-top: 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-iframe {
            width: 100%;
            height: 400px;
            border: 0;
        }

        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info2 {
                flex: 1;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .form-card, .contact-info2 {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .contact-container {
                padding: 0 0.5rem;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-card, .contact-info2, .map-container {
            animation: fadeIn 0.6s ease-out;
        }
        
        /* CONTACT SECTION ENDS========================================================================= */

        /* LOGIN SECTION STARTS================================================================================= */
      
    .login {
         background: linear-gradient(rgb(2 66 8 / 93%), rgb(2 66 39 / 65%)), 
                url('https://img.freepik.com/free-photo/two-indian-business-man-suits-sitting-office-cafe-looking-laptop-drinking-coffee_627829-1513.jpg?uid=R89637956&ga=GA1.1.608374954.1749464259&semt=ais_hybrid&w=740');
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      .login1 {
        width: 100%;
        max-width: 550px;
        padding: 2rem;
        animation: login3 0.8s ease-out;
      }
  
      @keyframes login3 {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }
  
      .login2 {
        background: var(--form-bg);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        transform: perspective(1000px) rotateY(0deg);
        transition: transform 0.5s ease;
      }
  
      .login2:hover {
        transform: perspective(1000px) rotateY(5deg);
      }
  
      .login4 {
        background: linear-gradient(135deg, var(--primary-color), var(--footer-bg));
        color: var(--text-light);
        padding: 1.5rem;
        text-align: center;
      }
  
      .login4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: var(--secondary-color);
      }
  
      .login5 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }
  
      .login6 {
        font-size: 0.9rem;
        opacity: 0.8;
      }
  
      .login7 {
        padding: 2rem;
      }
  
      .login8 {
        margin-bottom: 1.5rem;
        position: relative;
      }
  
      .login9 {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        font-weight: 600;
      }
  
      .login10 {
        width: 100%;
        padding: 0.8rem 1rem 0.8rem 3rem;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: white;
      }
  
      .login10:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.2);
      }
  
      .login11 {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1.1rem;
      }
  
      .login12 {
        display: block;
        text-align: right;
        /* margin-top: -0.8rem;
        margin-bottom: 1.5rem; */
        font-size: 0.9rem;
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
      }
  
      .login12:hover {
        color: var(--accent-color);
        text-decoration: underline;
      }
  
      .login13 {
        width: 100%;
        padding: 0.8rem;
        background: linear-gradient(135deg, var(--secondary-color), #ffcb45);
        color: var(--primary-color);
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
  
      .login13:hover {
        background: linear-gradient(135deg, #ffcb45, var(--secondary-color));
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(253, 184, 19, 0.4);
      }
  
      .login13::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: 0.5s;
      }
  
      .login13:hover::before {
        left: 100%;
      }
  
      .login14 {
        text-align: center;
        margin-top: 1.5rem;
        color: var(--text-dark);
        font-size: 0.9rem;
      }
  
      .login15 {
        color: var(--accent-color);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
      }
  
      .login15:hover {
        text-decoration: underline;
      }
  
      @keyframes login16 {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }
  
      .login17 {
        animation: login16 4s ease-in-out infinite;
      }
  
      @media (max-width: 576px) {
        .login1 {
          padding: 1rem;
        }
  
        .login7 {
          padding: 1.5rem;
        }
  
        .login5 {
          font-size: 1.5rem;
        }
      }
        /* LOGIN SECTION ENDS-================================================================================ */

        /* TERMS AND CONDITION PAGE STARS======================================================================== */
        .terms-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .page-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .terms-content {
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        /* .section-header {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary-color);
        } */

        .section-subheader {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin: 1.5rem 0 0.5rem;
            font-weight: 600;
        }

        .office-info {
            background: rgba(2, 34, 66, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid var(--secondary-color);
        }

        .office-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

       

        .highlight {
            background: rgba(253, 184, 19, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 500;
        }

        .declaration-section {
            background: rgba(2, 34, 66, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
            border: 1px solid rgba(2, 34, 66, 0.1);
        }

        .declaration-item {
            display: flex;
            margin-bottom: 0.8rem;
        }

        .declaration-check {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .signature-section {
            margin-top: 3rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .signature-block {
            flex: 0 0 300px;
            margin: 1rem 0;
        }

        .signature-line {
            border-top: 1px solid var(--primary-color);
            width: 80%;
            margin: 2rem 0 0.5rem;
        }
        @media (max-width: 992px) {
            .terms-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .section-header {
                font-size: 1.3rem;
            }
            
            .signature-section {
                flex-direction: column;
            }
            
            .signature-block {
                flex: 1;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .terms-container {
                padding: 0 0.5rem;
            }
            
            .terms-content {
                padding: 1rem;
            }
        }

        /* Print styles */
        /* @media print {
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
            
            .terms-container {
                max-width: 100%;
                padding: 0;
            }
            
            .page-header {
                page-break-after: avoid;
            }
            
            .section-header {
                page-break-after: avoid;
            }
        } */
        /* TERMS AND CONDITION PAGE ENDS======================================================================= */

        /* PRODUCT DETAIL SECTION STARS============================================================== */
         /* Product Details Section */
    .product-details-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }
    
    /* Product Images */
    .product-main-image {
        border: 1px solid #eee;
        padding: 15px;
        margin-bottom: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .product-main-image img{
        width: 100%;
            height: 600px;
    object-fit: cover;

    }
    
    .product-thumbnails {
        display: flex;
        gap: 15px;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
        border: 1px solid #ddd;
        padding: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
        border-radius: 4px;
    }
    
    .thumbnail:hover {
        border-color: var(--primary-color);
    }
    
    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Product Info */
    .product-info {
        background: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }
    
    .product-title {
        font-size: 28px;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .product-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #666;
        justify-content:center;
    }
    
    .product-bv {
        background: var(--secondary-color);
        color: var(--primary-color);
        padding: 3px 10px;
        border-radius: 4px;
        font-weight: 600;
    }
    
    .in-stock {
        color: #28a745;
        font-weight: 600;
    }
    
    .product-pricing {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .price-main {
        font-size: 16px;
        color: #666;
        margin-bottom: 5px;
    }
    
    .price-strikethrough {
        text-decoration: line-through;
    }
    
    .price-discounted {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
    }
    
    .price-highlight {
        color: #dc3545;
    }
    
    .you-save {
        font-size: 14px;
        color: #666;
    }
    
    .save-amount {
        color: #28a745;
        font-weight: 600;
    }
    
    /* Quantity Selector */
    .product-quantity {
        margin-bottom: 25px;
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        margin-top: 10px;
        justify-content:center;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        background: #f0f0f0;
        border: none;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .quantity-btn:hover {
        background: var(--secondary-color);
        color: white;
    }
    
    #quantity {
        width: 60px;
        height: 35px;
        text-align: center;
        border: 1px solid #ddd;
        margin: 0 5px;
    }
    
    /* Product Actions */
    .product-actions {
        display: flex;
        justify-content:center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .btn-add-to-cart, .btn-buy-now {
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-add-to-cart {
        background: var(--secondary-color);
        color: var(--primary-color);
    }
    
    .btn-buy-now {
        background: var(--primary-color);
        color: white;
    }
    
    .btn-add-to-cart:hover {
        background: #e0a800;
        transform: translateY(-2px);
    }
    
    .btn-buy-now:hover {
        background: #011a33;
        transform: translateY(-2px);
    }
    
    /* Product Share */
    .product-share {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .social-share {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        transition: all 0.3s ease;
    }
    
    .social-share:hover {
        color: white;
        transform: translateY(-3px);
    }
    
    .social-share:nth-child(2):hover { background: #3b5998; }
    .social-share:nth-child(3):hover { background: #1da1f2; }
    .social-share:nth-child(4):hover { background: #25d366; }
    .social-share:nth-child(5):hover { background: #e1306c; }
    
    /* Product Tabs */
    .product-tabs {
        margin: 50px 0;
    }
    
    .nav-tabs {
        border-bottom: 2px solid #eee;
    }
    
    .nav-link {
        color: #666;
        font-weight: 600;
        padding: 12px 25px;
        border: none;
        border-bottom: 3px solid transparent;
    }
    
    .nav-link.active {
        color: var(--primary-color);
        border-bottom: 3px solid var(--secondary-color);
        background: transparent;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        border-color: transparent;
    }
    
    .tab-content {
        padding: 30px;
        background: white;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .tab-content h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .tab-content p, .tab-content ul, .tab-content ol {
        margin-bottom: 20px;
        line-height: 1.8;
    }
    
    .tab-content ul, .tab-content ol {
        padding-left: 20px;
    }
    
    .tab-content li {
        margin-bottom: 8px;
    }
    
    /* Reviews */
    .review {
        padding: 20px;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }
    
    .review-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }
    
    .reviewer-name {
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .review-rating {
        color: var(--secondary-color);
    }
    
    .review-date {
        font-size: 12px;
        color: #666;
        margin-bottom: 10px;
    }
    
    /* Review Form */
    .review-form {
        background: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .review-form h4 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }
    
    .rating-stars {
        margin: 10px 0;
    }
    
    .rating-stars i {
        cursor: pointer;
        color: #ddd;
        font-size: 20px;
        margin-right: 5px;
        transition: all 0.2s ease;
    }
    
    .rating-stars i:hover, .rating-stars i.active {
        color: var(--secondary-color);
    }
    
    .btn-submit-review {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-submit-review:hover {
        background: #011a33;
        transform: translateY(-2px);
    }
    
    /* Related Products */
    .related-products-title {
        text-align: center;
        margin: 50px 0 30px;
        color: var(--primary-color);
        position: relative;
    }
    
    .related-products-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: var(--secondary-color);
        margin: 15px auto 0;
    }
    
    .related-products {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .product-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .product-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--accent-color);
        color: white;
        padding: 3px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        z-index: 1;
    }
    
    .product-image {
        height: 400px;
        /* padding: 20px; */
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #eee;
    }
    
    .product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 18px;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .product-prices {
        display: flex;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .original-price {
        text-decoration: line-through;
        color: #666;
        font-size: 14px;
    }
    
    .discounted-price {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .product-bv {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }
    
    /* View Details Button with Animation */
    .btn-view-details {
        display: inline-block;
        padding: 8px 20px;
        background: var(--secondary-color);
        color: var(--primary-color);
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        width: 100%;
        text-align: center;
    }
    
    .btn-view-details::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: all 0.6s ease;
    }
    
    .btn-view-details:hover {
        background: #e0a800;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(253, 184, 19, 0.3);
    }
    
    .btn-view-details:hover::before {
        left: 100%;
    }
    /* PRODUCT DETAILS SECTION ENDS============================================================================ */