/**
 Theme Name: Roxland | Product HTML Landing Page Template
 Author: Abh Themes
 Developer: Abdur Rahman
 Version: 1.0
 **/
 
/*--------------------------------------------------------------
>> TABLE OF CONTENTS:

01. Typography
02. Preloader
03. Button
04. Header
05. Hero
06.	Feature
07.	Product
08.	Faq
09.	Testimonial
10.	Contact



/* ==========================================================================
				***Typography Area Section***
   ========================================================================== */
   

/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
	--white: #fff;
	--default-body: #777;
	--sec-title: #103178;
	--p: #8086B2;
	--ppp: #999;
}

/* Typography */

body {
    margin: 0;
    padding: 0;
    color: #777;
    font-size: 14px;
    line-height: 26px;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}
img {
	max-width: 100%;
}
ul {
	margin:0;
	padding:0;
}
li {
	list-style:none;
}
h1, h2, h1, h3, h4, h5, h6 {
	margin:0;
	padding:0;
    
    font-style: normal;
    line-height: normal;
}
p {
	margin:0;
	padding:0;
    color: var(--p);
    font-size: 16px;
}
a {
	text-decoration: none;
}
/* Default Spacing */
.section_padding {
	padding: 80px 0;
}
.pt_140 {
    padding-top: 140px;
}
.pt_0 {
	padding-top: 0px !important;
}
.pb_0 {
	padding-bottom: 0px !important;
}
.mb_0 {
	margin-bottom: 0px !important;
}
.mr_6 {
    margin-right: 6px;
}
.pb_100 {
	padding-bottom: 100px !important;
}   
/* End Default Spacing */

/* start section title */
.section_title h2 {
    color: #222;
    font-size: 36px;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
.section_title p {
    color: var(--p);
    text-align: justify;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
}
.section_title .sub_title {
    background: rgba(162, 177, 24, 1);
    font-size: 18px;
    font-style: normal;
    color: #fff;
    padding: 5px 10px;
    font-weight: 400;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: capitalize;
}
/* end section title */

/* Start Button */
.btn::before,
.btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background-color: var(--white);
    opacity: 0;
    transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: -1;
}

.btn::before {
    top: 0;
    left: 0;
}

.btn::after {
    bottom: 0;
    right: 0;
}

.btn:hover::before,
.btn:hover::after {
    width: 100%;
    opacity: 1;
}

.btn:hover {
    color: #000;
}



.btn {
    position: relative;
    width: 135px;
    height: 45px;
    line-height: 45px;
    color: var(--white);
    background: rgba(162, 177, 24, 1);
    padding: 0;
    border-radius:inherit;
    transition: all 0.4s ease-in-out;
}


.btn.hero_btn {
    width: 170px;
    height: 50px;
    line-height: 50px;
    background: #fff !important;
    color: rgba(64, 44, 159, 1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
    z-index: 1;
}

.btn.hero_btn::before,
.btn.hero_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background-color: rgba(162, 177, 24, 1);
    opacity: 0;
    transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: -1;
}

.btn.hero_btn::before {
    top: 0;
    left: 0;
}

.btn.hero_btn::after {
    bottom: 0;
    right: 0;
}

.btn.hero_btn:hover::before,
.btn.hero_btn:hover::after {
    width: 100%;
    opacity: 1;
}

.btn.hero_btn:hover {
    color: #fff;
}

.btn.product_btn {
    height: 40px;
    line-height: 40px;
    margin-top: 25px;
    background: var(--sec-title);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease-in-out, background 0.4s ease-in-out;
    display: inline-block;
    text-align: center;
    z-index: 1;
}
.btn.product_btn::before,
.btn.product_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background-color: rgba(162, 177, 24, 1);
    opacity: 0;
    transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: -1;
}
.btn.product_btn::before {
    top: 0;
    left: 0;
}
.btn.product_btn::after {
    bottom: 0;
    right: 0;
}
.btn.product_btn:hover::before,
.btn.product_btn:hover::after {
    width: 100%;
    opacity: 1;
}
.btn.product_btn:hover {
    color: #fff !important;
    z-index: 2; 
}
.btn.contact_btn {
    background: var(--sec-title);
    color: #fff;
    border: none;
    width: 170px;
    height: 50px;
    line-height: 50px;
     position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease-in-out, background 0.4s ease-in-out;
    display: inline-block;
    text-align: center;
    z-index: 1;
}
.btn.contact_btn::before,
.btn.contact_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background-color: rgba(162, 177, 24, 1);
    opacity: 0;
    transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: -1;
}

.btn.contact_btn::before {
    top: 0;
    left: 0;
}

.btn.contact_btn::after {
    bottom: 0;
    right: 0;
}

.btn.contact_btn:hover::before,
.btn.contact_btn:hover::after {
    width: 100%;
    opacity: 1;
}

.btn.contact_btn:hover {
    color: #fff !important;
    z-index: 2; 
}
/* end button */

/* start header area */
#header  {
    position: absolute;
    width: 100%;
    z-index: 1000;
}
.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    background-color: #402c9f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 0;    
	animation: fadeInDown 1s both;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0CB14B;
}
/* Base Navigation Link Styling */
.nav_active.active {
    color: #a2b118;
    transition: all 0.3s ease;
}
/* Navigation Links */
.nav-links {
    list-style: none;
    margin-right: 50px;
}
.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    transition: color 0.3s;
}
/* Mobile Menu Icon */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px;
    transition: 0.3s;
}

/* Responsive Menu */
/* Navbar Styling */
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.nav-links li {
    display: inline;
    padding-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--p);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(162, 177, 24, 1);
}
/* Hamburger Menu */
.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
}

.menu-icon div {
    width: 100%;
    height: 4px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.menu-icon .bar1 { top: 0; }
.menu-icon .bar2 { top: 10px; }
.menu-icon .bar3 { top: 20px; }

/* Rotate to 'X' when active */
.menu-icon.active .bar1 { transform: rotate(45deg) translate(5px, 5px); }
.menu-icon.active .bar2 { opacity: 0; }
.menu-icon.active .bar3 { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Navigation */

/*Start hero section */
.row.hero_pad {
    padding-top: 10%;
}
#hero_section {
    position: relative;
    padding-bottom: 100px;
}
#hero_section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.banner_title h2 {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 30px;
}
.banner_title p {
    color: var(--white);
    font-size: 18px;
}
.hero_right_image {
    text-align: center;
}
/* end hero section */

/* Start feature section */
.feature {
    margin-bottom: 30px;
}
.feature i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px dashed #777;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 10px;
}
.product {
    text-align: center;
}
.feature h3 {
    color: #222;
    font-size: 24px;
    margin-bottom: 8px;
}
.feature p {
    color: var(--p);
    font-size: 16px;
}
/* End feature section */

/* start about section */
#about_section {
    border-top: 1px solid #ddd;
}
.about_left {
    text-align: center;
}
.about_list ul li {
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 10px;
}
.about_list ul li i { 
    color: #4E82F6;
    font-size: 16px;
    margin-right: 8px;
}
/* end about section */

/* start video section */
.video-thumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .video-thumbnail:hover {
    transform: scale(1.05);
  }
/* Popup styling */

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 640px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.popup iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.video_container {
    position: relative;
}
.video_container .icon {
    position: absolute;
    left: 40%;
    bottom: 30%;
    z-index: 2;
    color: #fff;
}
.video_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(64, 44, 159, 0.9);
    z-index: 1;
}
/* end video section */

/* start product section */
.product_image {
    position: relative;
    overflow: hidden;
}
.product_image img {
    transition: 0.4s;
    width: 100%;
}
.product_icons {
    opacity: 0;
    position: absolute;
    z-index: 1;
    transition: 0.4s;
    width: 80%;
    margin: 0 auto;
    bottom: -50px;
    text-align: center;
    right: 0;
    left: 0;
}
.product_card:hover .product_icons {
    opacity: 1;
    bottom: 5px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product_icons ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.product_icons ul li {
    display: inline-block;
}
.product_icons ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: 0.4s;
}
.product_icons i {
    color: var(--sec-title);
    transition: 0.4s;
}
.product_icons ul li a:hover {
    background: rgba(162, 177, 24, 1);
}
.product_icons ul li:hover i {
    color: #fff;
}
.product_left {
    text-align: -webkit-center;
} 
.product_title {
    width: 50%;
}
#product_section {
    background: #F4F3FB;
}
.product_card {
    background: #fff;
    text-align: center;
    padding: 44px 22px;
}
.product_card h3 {
    font-size: 20px;
    margin-top: 18px;
    color: #000;
}
.product_card p {
    color: var(--p);
    margin-top: 10px;
}
#product_carousel.owl-carousel .owl-item img {
    display: inherit;
    width: inherit;
}
.product_image {
    text-align: -webkit-center;
}
.owl-dots {
    display: block !important; 
    position: relative; 
    z-index: 99;
}
/* end product section */

/* start testimonial section */
#testimonial_section {
    background: #EFF4FD;
}
.testimonial_title {
    text-align: center;
}
.testimonial_card {
    background: #fff;
    text-align: center;
    padding: 22px;
    position: relative;
}
.testimonial_icon i {
    color: #FAC917;
    margin-right: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}
.testimonial_info {
    margin-top: 14px;
}
.testimonial_info h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}
.testimonial_info span {
    font-size: 14px;
    color: #000;
    font-weight: 300;
}
.testimonial_quote {
    position: absolute;
    right: 10%;
    bottom: 4%;
}
.testimonial_quote i {
    font-size: 70px;
    opacity: 0.4;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #a2b118;
}
/* end testimonial section */   

/* start faq section */
.accordion-header {
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
}
.accordion-body {
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
    color: var(--p);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 20px;
}
.accordion-item {
    border-radius: 12px;
    background: #fff;
    margin-bottom: 10px;
    border: none;
}
.accordion-button {
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.accordion-button:focus {
    z-index: 3;
    outline: none;
    box-shadow: none;
    background: #fff;
}
.accordion-button::after {
    display: none !important;
}
.toggle-icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
}
.accordion-header span {
    color: #302222;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#btn_collapes_area {
    background: #fff;
}
.accordion {
    border: none;
}
.faq_btn_area {
    text-align: center;
    margin-top: 50px;
}
.faq_btn_area {
    text-align: center;
    margin-top: 50px;
    height: 60px;
    line-height: 60px;
}

.btn_collapes:hover,
.btn_collapes:focus,
.accordion-button[aria-expanded="true"] {
    background: var(--sec-title) !important; /* Add !important to override Bootstrap */
}

.accordion-header:hover span,
.accordion-header:focus span,
.accordion-button[aria-expanded="true"] span {
    color: var(--white) !important;  
    transition: color 0.3s ease-in-out;
}
.accordion-button:hover {
    background: var(--sec-title) !important;
}
/* end faq section */

/* start download section */
.download_section {
    position: relative;
    background-image: url(../img/bg/download.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.download_section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(64, 44, 159, 0.9);
    z-index: -1;
}  
.download_title h2 {    
    color: #fff;
    margin-bottom: 20px;
}
.download_title p {
    color: #fff;
    margin: 0;
}
.download_list_item {
    text-align: center;
}
.download_list_item li {
    display: inline-block;
}
.download_list_item li a {
    margin-right: 10px;
}
/* end download section */

/* start contact section */
.map_container {
    position: relative;
}
.contact_left_container {
    background: #fff;
    width: 50%;
    padding: 40px 20px;
    position: absolute;
    top: 80px;
    left: 35px;
}
.contact_map_container iframe {
    filter: grayscale(50%) invert(90%);
    width: 100%;
}
.contact_title {
    text-align: center;
}
.contact_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.contact_info_item {
    display: grid;
}
.contact_info i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--sec-title);
    border: 1px dashed #777;
    border-radius: 50px;
    text-align: center;
}
.contact_info_item h4 {
    font-size: 18px;
    line-height: 30px;
    color: var(--sec-title);
}
.contact_info_item span {
    color: var(--sec-title);
    font-size: 16px;
    font-weight: 400;
}
/*contact form */
.contact_form input {
    width: 100%;
    height: 48px;
    line-height: 48px;
    margin-bottom: 20px;
    padding: 0px 16px;
    border: 1px solid #ddd;
    outline: none;
}
.contact_form select {
    width: 100%;
    height: 48px;
    line-height: 48px;
    margin-bottom: 20px;
    padding: 0px 16px;
    border: 1px solid #ddd;
    outline: none;
}
.contact_form textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    padding: 16px;
    resize: none;
    border: 1px solid #ddd;
    outline: none;
}
.contact_form input:focus,
.contact_form textarea:focus {
    border: 1px solid #402C9F;
}
/* nice select */
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
    margin-bottom: 20px;
}
.select-trigger {
    padding: 10px 15px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: 0.3s ease;
}
.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: rotate(45deg);
    transition: 0.3s ease;
}
.select-options {
    display: none;
    position: absolute;
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 10;
}

.select-options li {
    padding: 10px;
    transition: 0.3s ease;
}
.select-options li:hover {
    background: #402C9F;
    color: #fff;
}
.custom-select.open .select-options {
    display: block;
}
.custom-select.open .arrow {
    transform: rotate(-135deg);
}

#responseMessage {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: green;
    font-weight: bold;
    display: none; /* Initially hidden */
}
/* end contact section */

/* footer section */
#footer_section {
    background: #E8EFFD;
    padding: 50px 0;
}
.copyright {
	float: right;
    font-size: 18px;
}
.social_icons ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 10px;
}

.social_icons ul li {
	display: inline-block;
}

.social_icons ul li a {
	text-decoration: none;
    width: 35px;
    height: 35px;
	display: block;
    line-height: 35px;
    background: #402C9F;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.4s ease-in-out, background 0.4s ease-in-out;
}
.social_icons ul li a:hover{
	background: rgba(162, 177, 24, 1);
    color: #fff;
}
/* footer end */

/* back to top button */
#topButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: var(--white);
    border: none;
    width: 50px;
    height: 60px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}
#progressText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

#topButton:hover {
    background: conic-gradient(#008c53 100%, #ddd 0%);
}
#progressText i {
    margin-bottom: 4px;
}
/* end back to top button */

/* Preloader styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #402C9F;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide preloader after loading */
.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}
