@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 1px;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

a,
button {
    outline: none !important;
    text-decoration: none;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

a:hover,
a:focus,
select:focus,
button:focus {
    outline: none;
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
}

li {
    list-style: none;
}


/* ppppppppppp */

p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Roboto';
    color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    outline: none !important;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    display: block;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #333333;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #333333;
}

h2.red {
    color: #192857;
}

h2.blue {
    color: #023761;
}

h2.text-left {
    text-align: left;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 22px;
    color: #000000;
}

h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

h6 {
    font-size: 16px;
}

.my-sec {
    padding: 70px 0;
}

.grey-sec {
    background: #f7f7f7;
}

.site-button {
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 10px 50px;
    display: inline-block;
    position: relative;
    transition: 0.5s all;
    margin-top: 10px;
    color: #fff;
    z-index: 1;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.site-button.blue {
    background-color: #023761;
    border: 2px solid #023761;
}

.site-button.red {
    background-color: #192857;
    border: 2px solid #192857;
}

.site-button.blue:hover,
.site-button.blue:focus {
    background-color: #fff!important;
    color: #023761;
    border-color: #023761;
}

.site-button.red:hover,
.site-button.red:focus {
    background-color: #fff!important;
    color: #192857;
    border-color: #192857;
}

.bg-grey {
    background-color: #f7f7f7;
}


/***********  Top Bar  ************/

header {
    position: relative;
    background-color: #192857;
}


/* Menu */

header .navbar-default {
    background-color: transparent;
    border: 0;
    margin-bottom: 0;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    background-color: transparent;
}

header .navbar-default .navbar-nav>li>a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #ffffff;
    position: relative;
    transition: 0.5s;
    border-radius: 4px;
    /* padding: 50px 20px; */
    height: 90px;
    line-height: 90px;
    padding: 0;
    margin: 0 20px;
}

header .navbar-default .navbar-nav>li:last-child>a {
    margin-right: 0;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #e2aa26;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #e2aa26;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    color: #e2aa26;
    background-color: transparent;
}

.dropdown-menu>li>a {
    padding: 9px 20px;
    font-size: 16px;
}

.menu_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 90px
}

.navbar-toggler.opened .navbar-collapse {
    display: block!important;
}

header .navbar-toggler {
    display: none;
}

.navbar-brand {
    padding: 5px 0;
    padding-left: 0;
    font-size: 32px;
    font-family: 'Cardo', serif;
    font-weight: 400;
    color: #3f3f3f!important;
    height: auto;
}

.navbar-nav a {
    position: relative;
    text-decoration: none;
    /* font-size: 1.5rem; */
}

.navbar-nav a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    top: 0px;
    background: #e2aa26;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: center;
}

.navbar-nav a:hover::after,
.navbar-nav a:focus::after,
.navbar-nav li.active a:after {
    transform: scaleX(1);
}


/* Start Hamburger */

.navbar-toggler span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #e2aa26;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.navbar-toggler span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.navbar-toggler span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.navbar-toggler span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.navbar-toggler span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.navbar-toggler.opened span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.navbar-toggler.opened span:nth-child(2) {
    transform: rotate(45deg);
    transition: all .25s;
}

.navbar-toggler.opened span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all .25s;
}

.navbar-toggler.opened span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}


/* //End humburger */


/* //Menu ends here */


/***********  Section Part  ************/

section {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}


/* Banner */

.pogoSlider {
    padding-bottom: 28% !important;
}

.home .pogoSlider {
    padding-bottom: 32% !important;
}

.slider_sec {
    position: relative;
    display: block;
}

.slider_sec .cap_info {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.slider_sec .inner {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.cap_info .inner h2 {
    font-size: 53px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 4px 1px 4px rgb(0 0 0 / 75%);
}

.cap_info .inner h5 {
    font-size: 22px;
    color: #fff;
    line-height: 33px;
    font-weight: bold;
    text-shadow: 3px 0px 7px black;
    letter-spacing: 1px;
}

.cap_info .inner h1 {
    font-size: 50px;
    line-height: 56px;
    text-transform: uppercase;
    font-family: 'Bitter', serif;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cap_info .inner p {
    font-size: 17px;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.majestic-sugar-page .slider_sec .cap_info {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    position: absolute;
    top: auto;
    bottom: -30px;
    transform: translate(0, -50%);
}

.majestic-sugar-page .cap_info .inner h2 {
    font-size: 53px;
    color: #000071;
    text-shadow: 4px 1px 4px rgb(255 255 255 / 75%);
}

.btn-banner {
    display: block;
}

.slider_sec .pogoSlider-dir-btn {
    display: none;
}


/* //Banner ends here */


/* info Panel 
==============================================*/

.info-panel {
    background: #e2aa26;
    padding: 15px 0;
    display: block;
    position: relative;
}

ul.contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 10px;
}

ul.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
}

.contact-details li i {
    width: 40px;
    height: 40px;
    background-color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    margin-right: 8px;
    color: #192857;
}

.contact-details li a {
    color: #192857;
    font-size: 16px;
    line-height: 1.3;
    font-family: 'Roboto';
}

.contact-details li a:hover {
    text-decoration: underline;
}

.social-media li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    color: #192857;
    position: relative;
}

.social-media li a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: block;
    text-align: center;
    border-radius: 50px;
    line-height: 40px;
    position: relative;
    overflow: hidden;
}

.social-media li a:hover i {
    z-index: 1;
    color: #fff;
}

.social-media li a:after {
    content: '';
    background-color: #192857;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    position: absolute;
    z-index: 0;
    transition: 0.3s transform;
    border-radius: 50px;
}

.social-media li a:hover:after {
    transform: scale(1);
}


/* Icon Section 
=========================================*/

.icon-section {
    position: relative;
    display: block;
    background-color: #efefef;
    width: 100%;
}

ul.icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    flex-flow: wrap;
}

ul.icon-box li {
    text-align: center;
}

ul.icon-box li h3 {
    font-size: 22px;
    font-family: 'Open Sans';
    line-height: 1.3;
    font-weight: 400;
}

ul.icon-box li img {
    margin-bottom: 20px;
}

ul.icon-box li {
    text-align: center;
    width: 25%;
    background: url(../images/icon-shape1.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    padding: 50px 0 40px;
    z-index: 0;
}

.icon-box li:first-child:before {
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    content: "";
    z-index: 1;
    left: 0;
    content: '';
    background-image: url(../images/line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* Category Section 
============================================*/

.category-section {
    position: relative;
    display: block;
    padding: 70px 0;
    overflow: hidden;
}

.category--box {
    margin: 15px 0;
}

.category--box img {
    margin: 0 auto;
    height: 290px;
    padding: 10px 20px;
    border: 1px solid #e1e1e1;
    width: 100%;
    border-bottom: 0px;
    object-fit: contain;
    background: #fff;
}

.category--box {
    text-align: center;
}

.category--box-name a {
    padding: 20px 0;
    display: block;
    background-color: #192857;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1.3;
    font-family: 'Open Sans';
    color: #fff;
    text-align: center;
    transition: 0.3s all ease-in-out;
    border: 1px solid transparent;
}

.category--box-name a:hover {
    background-color: #e2aa26;
}


/* Welcome Section 
=============================================*/

.welcome-sec {
    position: relative;
    padding: 70px 0;
    display: block;
    background: url(../images/welcome-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.welcome-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.welcome-content {
    position: relative;
}

.welcome-content p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    font-family: 'Roboto';
    color: #333333;
}


/* why Choose Section 
===============================================*/

.why-choose {
    display: block;
    position: relative;
    padding: 40px 0;
    background: url(../images/why-choose-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-choose h2 {
    margin-bottom: 0;
    color: #000;
}

.site-subtitle {
    font-size: 20px;
    line-height: 1.3;
    color: #222222;
    font-family: 'Roboto';
    font-weight: 400;
    margin-bottom: 0px;
}

ul.why-choose-box li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    position: relative;
}

ul.why-choose-box li:nth-child(1):before,
ul.why-choose-box li:nth-child(2):before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    z-index: 1;
    content: '';
    background-image: url(../images/why-choose-v-line-top.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

ul.why-choose-box li:nth-child(4):before,
ul.why-choose-box li:nth-child(5):before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    z-index: 1;
    content: '';
    background-image: url(../images/why-choose-v-line-bottom.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

ul.why-choose-box {
    display: flex;
    flex-flow: wrap;
    position: relative;
}

ul.why-choose-box:before {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
    content: '';
    top: 50%;
    background-image: url(../images/why-choose-h-line.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

ul.why-choose-box li {
    padding: 10px 50px 30px;
    position: relative;
}

ul.why-choose-box h4 {
    margin-top: 0;
    margin-bottom: 0;
}

ul.why-choose-box h4 a {
    color: #000000;
}

ul.why-choose-box h4 a:hover {
    color: #192857;
}

ul.why-choose-box li p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto';
    color: #222222;
    font-weight: 400;
    margin-bottom: 0;
}


/* Testimonial Section 
===================================================*/

.testimonial-section {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 50px 0;
    background-image: url(../images/testimonial-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.testimonial-section h2 {
    color: #ffffff;
    position: relative;
}

.testimonial-section h2:after {
    content: '';
    bottom: -10px;
    left: 0;
    position: absolute;
    width: 55px;
    height: 2px;
    background-color: #9e7d27;
}

.testimonial-header .row p {
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
}

.testimonial-item {
    border: 1px solid #384755;
    padding: 50px 25px;
    text-align: center;
}

.testimonial-item h3 {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    font-family: 'Open Sans';
    color: #fff;
}

.testimonial-item p {
    margin-bottom: 0;
    font-size: 14px;
    font-family: 'Roboto';
    text-align: left;
    position: relative;
    color: #fff;
}

.testimonial-item p i {
    font-size: 30px;
    position: absolute;
    bottom: -30px;
    right: 0;
}

.testimonial-slider {
    margin-top: 15px;
}

.owl-dots {
    position: absolute;
    top: -90px;
    right: 0;
}

.testimonial-slider .owl-dots .owl-dot {
    background: #e2aa26;
    border: 1px solid #e2aa26;
    width: 12px;
    height: 12px;
    border-radius: 30px;
}

.testimonial-slider .owl-dots .owl-dot.active {
    background: transparent;
}

.testimonial-slider .owl-dots .owl-dot:not(:last-child) {
    margin-right: 10px;
}


/* Counter Section 
===================================================*/

.counter-section {
    background-color: #e2aa26;
    position: relative;
    display: block;
    padding: 35px 0;
}

.counter-section img {
    margin: 0 auto;
    margin-bottom: 20px;
}

.counter-section strong {
    font-size: 36px;
    color: #222222;
    font-family: 'Open Sans';
    font-weight: bold;
    line-height: 28px;
}

.counter-section h2 {
    font-size: 18px;
    color: #222222;
    font-family: 'roboto';
    font-weight: 400;
    line-height: 1.4;
}

.counter-section .counter-box {
    padding: 35px;
    border: 1px solid #f3dca6;
}


/* Map Section 
===================================================*/

.map-section {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.map-section iframe {
    margin-bottom: -7px;
}


/*Footer Part 
===================================================*/

footer {
    position: relative;
    float: left;
    width: 100%;
    background-color: #192857;
    color: #fff;
}

.footer-top {
    padding: 35px 0;
    position: relative;
}

footer h5 {
    color: #e2aa26;
}

.footer-bottom {
    border-top: 1px solid #131e41;
}

.footer-bottom .copyright {
    color: #ffffff;
    padding: 15px;
    font-size: 15px;
    font-weight: 400;
    color: #6d6f76;
    line-height: 28px;
}

footer table.table {
    margin-left: -10px;
}

ul.contact li a,
ul.contact li {
    color: #fff;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Roboto';
    transition: 0.3s all ease-in-out;
}

ul.contact li a:hover {
    color: #e2aa26;
}

ul.contact li i {
    font-size: 16px;
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

.copyright {
    padding: 15px 0;
    color: #000;
    font-weight: 500;
    line-height: 32px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    border: 0 !important;
    border: 0 !important;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Roboto';
    color: #ffffff;
}


/*********  Copyright  *********/


/* product page  */

.product-box {
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    padding: 35px 10px 35px 10px;
    border-radius: 20px;
    margin: 15px 0;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
}

.product-box:hover {
    box-shadow: 0px 0px 20px rgba(19, 30, 65, 1);
}

.product-box:hover a {
    color: #e2aa26;
}

.product-box h6 {
    margin-bottom: 0;
    min-height: 42px;
}

.product-box h6 a {
    color: #000071;
    text-transform: capitalize;
    font-weight: bold;
}

.product-box img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}


/*  */

.welcome-sec {
    position: relative;
    padding: 70px 0;
    display: block;
    background: url(../images/welcome-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.welcome-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}

.welcome-content {
    position: relative;
}

.welcome-content p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    font-family: 'Roboto';
    color: #333333;
}

.category-section2 .category--box-name a {
    text-transform: none;
}

.category-section2 a {
    pointer-events: none;
}


/* contact */

.contact-icon {
    font-size: 25px;
}

.contact-icon a {
    border: 2px solid #e2aa26;
    /* padding: auto 10px; */
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: inline-block;
    text-align: center;
    padding-top: 8px;
    color: #e2aa26;
}

.contact-details {
    font-size: 16px;
    color: #444444;
    margin-left: 15px;
}

.contact-details div {
    font-weight: bold;
}

.contact-sec h4 {
    font-size: 20px;
    margin-bottom: -10px;
}

.contact-sec ul li {
    margin: 40px 0;
}

.enquiry-sec p {
    font-size: 16px;
}

.enquiry-form {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form textarea,
.enquiry-form select,
.enquiry-form button {
    width: calc(50% - 20px);
    background: #f4f3f3;
    border: 1px solid #e4e4e4;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
}

.enquiry-form textarea {
    width: 100%;
    height: 120px;
}

.my-btn,
.enquiry-form button {
    width: 200px;
    background: #023761;
    color: #fff;
    margin-top: 20px;
}

.my-btn:hover,
.enquiry-form button:hover {
    background: #e2aa26;
    color: #fff;
}

.my-btn {
    padding: 10px;
    width: auto;
    display: inline-block;
    border-radius: 5px;
    min-width: 200px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}


/*  */

.alignLeft {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.about-sec img {
    max-width: 400px;
    height: auto;
}

.about-sec p {
    font-size: 16px;
}

.choose-icon i {
    font-size: 60px;
    color: #192857;
    border: 2px solid white;
    background: #fff;
    padding: 30px;
    border-radius: 50%;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
}

.why-choose2 ul.why-choose-box li {
    padding: 40px 50px 50px;
    position: relative;
}

.why-choose2 ul.why-choose-box:before {
    top: 32%;
}

.why-choose2 ul.why-choose-box:after {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
    content: '';
    top: 65%;
    background-image: url(../images/why-choose-h-line.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.why-choose2 ul.why-choose-box li:before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    z-index: 1;
    content: '';
    background-image: url(../images/why-choose-v-line-top.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.why-choose2 ul.why-choose-box li:nth-child(3n):before {
    display: none;
}

.why-choose2 ul.why-choose-box li:nth-child(4):before,
.why-choose2 ul.why-choose-box li:nth-child(5):before {
    background-image: url(../images/why-choose-v-line-middle.png);
}

.why-choose2 ul.why-choose-box li:nth-child(7):before,
.why-choose2 ul.why-choose-box li:nth-child(8):before {
    background-image: url(../images/why-choose-v-line-bottom.png);
}


/* specialise sec */

.progress {
    height: 35px;
    margin-bottom: 20px;
}

.progress-bar-bg {
    background-color: #192857;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
}

.counter-box i {
    font-size: 60px;
    margin-bottom: 10px;
}

.counter-section2 .counter-box {
    padding: 20px;
    border: 1px solid #f3dca6;
}

.counter-section2 strong {
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: inline-block;
}

.counter-section h2 {
    font-size: 17px;
    margin-bottom: 0;
}

.news-img img {
    width: 100%;
    margin-bottom: 20px;
}

.news-sec h4 {
    margin-bottom: 10px;
}

.news-sec p {
    font-size: 16px;
}

.news-sec p a {
    color: #000071;
    font-weight: bold;
}

.news-sec p a:hover {
    text-decoration: underline;
}

.cs-col .counter-box {
    min-height: 185px;
    margin: 20px 0;
}

.quality-sec h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.quality-sec p {
    font-size: 16px;
}

.quality-sec p a {
    color: #000071;
    font-weight: bold;
}

.quality-sec p a:hover {
    text-decoration: underline;
}

.quality-img img {
    margin: 0 auto;
    margin-bottom: 20px;
}

.quality-col {
    background: url(../images/logo-icon2.png) bottom center no-repeat;
    margin: 20px 0;
}

.quality-col-inner {
    border: 1px solid #e2aa26;
    padding: 10px 20px;
    min-height: 400px;
}

.quality-col:nth-child(3) .quality-col-inner,
.quality-col:nth-child(4) .quality-col-inner {
    min-height: 470px;
}

/* Swiper base fixes */
.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper {
  height: 550px !important; /* Force the height of the entire slider */
}

.slide {
  height: 550px; /* Slide height */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .slide h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .slide h2 {
    font-size: 28px;
  }
}
.hero-text {
    font-family: 'Poppins', sans-serif; /* Same as website */
    font-size: 60px; /* Adjust size as needed */
    font-weight: 600; /* Semi-bold */
    color: #ffffff; /* Dark gray color */
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25); /* Subtle shadow */
    margin-top: 50px; /* Adjust based on your layout */
}
.navbar-nav {
  display: flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 9999;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-toggle {
  cursor: pointer;
  color: #fff; /* adjust for your navbar color */
  font-size: 18px;
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  animation: scaleUp 0.3s forwards;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
}

.lightbox-title {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 48px;
  color: #fff;
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  user-select: none;
  opacity: 1;
  padding: 10px 15px;
  border-radius: 50%;
}

.lightbox-arrow.left {
  left: -60px;
}

.lightbox-arrow.right {
  right: -60px;
}

@keyframes scaleUp {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 5px;
}

.pagination button {
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.2s;
}

.pagination button:hover {
  background: #f0f0f0;
}

.pagination button.active {
  background: #192857;
  color: #fff;
  border-color: #192857;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Contact Section Icon Style */
.contact-sec-inner {
  display: flex;
  gap: 60px;
}

.cs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-col li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  border: 2px solid #e4ad28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 22px;
  color: #e4ad28;
}

.contact-details div {
  font-weight: 600;
  margin-bottom: 3px;
  color: #000;
}

.contact-details a {
  color: #1a73e8;
  text-decoration: none;
}

.contact-details {
  font-size: 15px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-sec-inner {
    flex-direction: column;
    gap: 40px;
  }
}
