
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
--primary-color				: #041424;
--secondary-color			: #F1F5FD;
--bg-color					: #FFFFFF;
--text-color				: #45566A;
--accent-color				: #0C5ADB;
--white-color				: #FFFFFF;
--divider-color				: #0414241A;
--dark-divider-color		: #FFFFFF1A;
--error-color				: rgb(230, 87, 87);
--default-font				: "Manrope", sans-serif;
--accent-font				: "Sora", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
position: relative;
font-family: "Lora", sans-serif;
font-size: 16px;
font-weight: 500;
line-height: 1em;
color: var(--text-color);
background: var(--bg-color);
background-color: #ebedec;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%2392ac97' fill-opacity='0.1'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

::-webkit-scrollbar-track{
background-color: var(--secondary-color);
border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
width: 7px;
background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
background: var(--primary-color);
}

::selection{
color: var(--primary-color);
background-color: var(--accent-color);
filter: invert(1);
}

p{
line-height: 1.6em;
margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
margin :0;
font-family: "Lora", sans-serif;
font-weight: 600;
line-height: 1.2em;
color: var(--primary-color);
}

figure{
margin: 0;
}

img{
max-width: 100%;
}

a{
text-decoration: none;
}

a:hover{
text-decoration: none;
outline: 0;
}

a:focus{
text-decoration: none;
outline: 0;
}

html,
body{
width: 100%;
overflow-x: clip;
}

.container{
max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
padding-right: 15px;
padding-left: 15px;
}

.image-anime{
position: relative;
overflow: hidden;
}

.image-anime:after{
content: "";
position: absolute;
width: 200%;
height: 0%;
left: 50%;
top: 50%;
background-color: rgba(255,255,255,.3);
transform: translate(-50%,-50%) rotate(-45deg);
z-index: 1;
}

.image-anime:hover:after{
height: 250%;
transition: all 600ms linear;
background-color: transparent;
}

.reveal{
position: relative;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
visibility: hidden;
overflow: hidden;
}

.reveal img{
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
-webkit-transform-origin: left;
transform-origin: left;
}

.row{
margin-right: -15px;
margin-left: -15px;
}
.

.row > *{
padding-right: 15px;
padding-left: 15px;
}

.row.no-gutters{
margin-right: 0px;
margin-left: 0px;
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);
}

.row.no-gutters > *{
padding-right: 0px;
padding-left: 0px;
}

.btn-default {
position: relative;
display: inline-block;
background: #041424; /* default background */
font-size: 14px;
font-weight: 700;
line-height: 1em;
text-transform: capitalize;
color: white;
border: none;
padding: 17px 50px 17px 20px;
overflow: hidden;
transition: all 0.4s ease-in-out;
z-index: 0;
}

.btn-default::before {
content: '';
position: absolute;
top: 50%;
right: 20px;
width: 20px;
height: 20px;
background-image: url('../images/arrow-white.svg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
transform: translateY(-50%);
transition: all 0.4s ease-in-out;
z-index: 1;
}

.btn-default:hover::before {
transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 102%;
height: 100%;
background-color: var(--primary-color);
transition: all 0.5s ease-in-out;
z-index: -1;
transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
transform: skewY(0deg) scaleY(2);
}

/* Highlighted button with gradient on hover */
.btn-default.btn-highlighted::after {
background: linear-gradient(135deg, #041424 0%, #3a4d6b 50%, #ffffff 100%);
border: 2px solid; /* border width */
border-image:linear-gradient(293deg,rgba(4, 20, 36, 1) 23%, rgba(255, 255, 255, 1) 100%);
border-image-slice: 1;
}

.btn-default.btn-highlighted:hover::after {
transform: skewY(0deg) scaleY(2);
}

.btn-default.btn-highlighted:hover {
color: var(--primary-color); /* optional text color change */
}

.btn-default.btn-highlighted:hover::before {
filter: brightness(0) invert(0);
}


.readmore-btn{
position: relative;
font-family: "Lora", sans-serif;
font-size: 16px;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
color: var(--accent-color);
padding-right: 26px;
}

.readmore-btn::before{
content: '';
position: absolute;
top: 0;
right: 0;
background-image: url('../images/arrow-accent.svg');
background-repeat: no-repeat;
background-size: cover;
width: 20px;
height: 20px;
transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before{
transform: rotate(45deg);
}

.cb-cursor:before{
background: var(--accent-color);
}

.preloader{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
background: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
}

.loading-container,
.loading{
height: 100px;
position: relative;
width: 100px;
border-radius: 100%;
}

.loading-container{
margin: 40px auto;
}

.loading{
border: 1px solid transparent;
border-color: transparent var(--white-color) transparent var(--white-color);
animation: rotate-loading 1.5s linear 0s infinite normal;
transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
transition: all 0.5s ease-in-out;
}

#loading-icon{
position: absolute;
top: 50%;
left: 50%;
max-width: 66px;
transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
0%{
transform: rotate(0deg);
}

100%{
transform: rotate(360deg);
}
}

.bg-section{
width: 100%;
max-width: 1820px;
/* background-color: var(--secondary-color); */
border-radius: 20px;
margin: 0 auto;
}

.dark-section{
/* background-color: var(--primary-color); */
}

.section-row{
margin-bottom: 48px;
}

.section-row .section-title{
margin-bottom: 0;
}

.section-row .section-title.section-title-center{
width: 100%;
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.section-btn{
text-align: right;
}

.section-content-btn .section-btn{
margin-top: 30px;
text-align: left;
}

.section-title-content p{
margin-bottom: 20px;
}

.section-title-content p:last-child{
margin-bottom: 0;	
}

.section-title{
margin-bottom: 40px;
}

.section-title h3{
position: relative;
display: inline-block;
border: 1px solid var(--divider-color);
border-radius: 100px;
font-family: "Lora", sans-serif;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
color: var(--primary-color);
padding: 8px 16px 8px 32px;
margin-bottom: 10px;
}

.section-title h3::before{
content: '';
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
background: var(--accent-color);
border-radius: 50%;
width: 6px;
height: 6px;
}

.section-title h1{
font-size: 60px;
font-weight: 400;
line-height: 1.2em;
letter-spacing: -0.02em;
margin-bottom: 0;
cursor: none;
}

.section-title h2{
font-size: 34px;
font-weight: 400;
line-height: 1.6em;
letter-spacing: -0.02em;
margin-bottom: 0;
cursor: none;
}

.section-title p{
margin-top: 20px;
margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
color: var(--white-color);
}

.dark-section .section-title h3{
/* border-color: var(--dark-divider-color); */
border-color: #0c6dac;
color: #0C6DAC;
}

.dark-section .section-title h3::before{
background: var(--accent-color);
}

.help-block.with-errors ul{
margin: 0;
text-align: left;
}

.help-block.with-errors ul li{
color: var(--error-color);
font-weight: 500;
font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
position: absolute;
top: 0;
width: 100%;
/* border-bottom: 1px solid var(--dark-divider-color); */
z-index: 100;
}

nav a,
.dropdown > a {
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
padding: 14px 8px;
margin: 0 5px;
display: inline-block;
transition: all 0.3s ease;
position: relative;
}

/* Dropdown Arrow */
.dropdown > a:after {
content: '\f107';
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
margin-left: 6px;
transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
position: relative;
display: inline-block;

}


.dropdown-content {
visibility: hidden;
opacity: 0;
position: absolute;
top: 100%;
left: 90%;
transform: translateX(-50%) scale(1, 0.8);
/* transform-origin: top; */
width: 230px;
/* background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%); */
background: black;
border-radius: 12px;
overflow: hidden;
/* box-shadow: 0 8px 20px rgba(0,0,0,0.25); */
transition: all 0.3s ease;
z-index: 100;
padding: 8px 0;
}

.dropdown:hover .dropdown-content {
visibility: visible;
opacity: 1;
transform: translateX(-50%) scale(1, 1);
}

.dropdown-content a {
color: #ffffff;
padding: 10px 20px;
display: block;
text-align: left;
font-size: 15px;
font-weight: 500;
transition: all 0.3s ease;
/* white-space: nowrap; */
}

@media(max-width:1100px){
.dropdown {
position: relative;
display: inline-block;
width:100%;
text-align:left;
}
.dropdown-content{
left:60%;
width: 280px;
}
.pr-link{
padding-left:25px;
}

}

header {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 20px 50px;
display: flex;
justify-content: space-between;
/* align-items: center; */
z-index: 100;
background: transparent;
transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95); /* smooth wave feel */
transform: translateY(0);
opacity: 1;
}

/* When scrolled */
header.fixed {
position: fixed;
background-color: white; 
box-shadow:
0 0 10px rgba(12, 109, 172, 0.3),
0 0 20px rgba(12, 109, 172, 0.25),
0 0 35px rgba(12, 109, 172, 0.2),
0 0 50px rgba(12, 109, 172, 0.15);
transition: box-shadow 0.5s ease;
padding: 7px 50px;
transform: translateY(0);
opacity: 1;
}

/* Animation states (for entering/leaving) */
header.entering {
transform: translateY(-30px);
opacity: 0;
}

header.leaving {
transform: translateY(-30px);
opacity: 0;
}

/* Logo */
.logo img {
width: 141px;
transition: all 0.6s ease;
}

/* Nav links */
nav {
display: flex;
/* gap: 20px; */
align-items: center;
font-family: 'Montserrat', sans-serif;
}

nav a {
color: white;
text-decoration: none;
font-size: 14px;
font-weight: 500;
letter-spacing: 0.5px;
transition: color 0.3s;
}

nav a:hover {
color: #FAD000;
}

/* Dark nav links for yellow background */
header.fixed nav a {
color: black;
}

header.fixed nav a:hover {
color: #fad000;
}

header.fixed .dropdown-content a {
color: #ffffff;

}

/* Contact button */
.contact-btn {
font-family: 'Montserrat', sans-serif;
position: relative;
padding: 12px 30px;
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);
color: white;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
overflow: hidden;
z-index: 1;
transition: all 0.4s ease;
border-top-right-radius: 15px;
border-bottom-left-radius: 15px;
}

/* Animated gradient border */
.contact-btn::before {
content: "";
position: absolute;
inset: 0;
padding: 2px;
border-top-right-radius: 15px;
border-bottom-left-radius: 15px;
background: linear-gradient(256deg, #0c6dac, #fad000, #0c6dac);
background-size: 200% 200%;
animation: gradient-animation 5s ease infinite;
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
z-index: -1;
}

/* Hover effect */
.contact-btn:hover {
color: #FAD000;
background: linear-gradient(256deg, #fad000, #0c6dac, #fad000);
background-size: 200% 200%;
}

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


/* Mobile Menu - Critical Fixes */
@media screen and (max-width: 1100px) {
#main-header {
position: sticky;
top: 0;
background: #0c6dac;
padding: 1rem;
z-index: 1000;
flex-wrap: wrap;
}

#main-header .logo {
order: 1;
flex: 1;
}

.desktop-contact {
display: none;
}

.mobile-menu-toggle {
display: block;
order: 2;
}

#main-header nav {
order: 3;
width: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
background-color: #052540;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

#main-header nav.active {
max-height: 80vh; /* Allow scrolling if too long */
overflow-y: auto;
padding: 1rem 0;
}

#main-header nav a,
#main-header .dropdown > a {
padding: 1rem 2rem;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.1);
display: block;
width: 100%;
}

/* Dropdown on Mobile - Now Works! */
.dropdown {
position: relative;
}

.dropdown > a {
display: flex;
justify-content: space-between;
align-items: center;
}

.dropdown > a .arrow {
font-size: 12px;
transition: transform 0.3s ease;
}

.dropdown.active > a .arrow {
transform: rotate(180deg);
}

.dropdown-content {
display: none;
/* background: rgba(0,0,0,0.4); */
padding-left: 2rem;
}

.dropdown.active .dropdown-content {
display: block;
}

.dropdown-content a {
padding: 0.8rem 2rem;
font-size: 14px;
border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-contact {
background: linear-gradient(120deg, #094f7a, #0b69a3, #fad107);
color: white !important;
font-weight: bold;
text-align: center;
}
}

/* Desktop styles remain mostly same */
@media screen and (min-width: 1101px) {
.mobile-menu-toggle, .mobile-contact {
display: none;
}
.desktop-contact {
display: block;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
}


/* ──────────────────────────────────────────────
PREMIUM HAMBURGER MENU – 2025 Style
Works perfectly with your current header
────────────────────────────────────────────── */
.mobile-menu-toggle {
display: none; /* Hidden on desktop */
position: absolute;
top: 50%;
right: 1rem;
transform: translateY(-50%);
background: transparent;
border: none;
cursor: pointer;
padding: 15px 10px;           /* Large tap area */
border-radius: 10px;
z-index: 1001;
transition: all 0.3s ease;
}

.mobile-menu-toggle span {
display: block;
width: 30px;
height: 4px;
background: #ffffff;         /* Pure white – high contrast */
border-radius: 3px;
margin: 6px 0;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Hover effect – subtle feedback */
.mobile-menu-toggle:hover {
background: rgba(255, 255, 255, 0.15);
}

/* ──────── X ANIMATION WHEN MENU IS OPEN ──────── */
#main-header nav.active ~ .mobile-menu-toggle span:nth-child(1) {
transform: rotate(45deg) translate(9px, 9px);
background: #fad000;         /* Gold when active (premium touch) */
}

#main-header nav.active ~ .mobile-menu-toggle span:nth-child(2) {
opacity: 0;
transform: translateX(-30px);
}

#main-header nav.active ~ .mobile-menu-toggle span:nth-child(3) {
transform: rotate(-45deg) translate(9px, -9px);
background: #fad000;         /* Gold when active */
}

/* Show only on mobile */
@media screen and (max-width: 1100px) {
.mobile-menu-toggle {
display: block;
}
}

/*************************************/
/***     	 04. Hero css    	   ***/
/*************************************/

.hero{
background: var(--primary-color);
padding: 220px 0 100px;
}

.hero-content-body{
margin-bottom: 40px;
padding-bottom: 40px;
border-bottom: 1px solid var(--dark-divider-color);
}

.hero-content-footer{
display: flex;
align-items: center;
gap: 30px;
}

.hero-content-footer .hero-footer-box{
display: flex;
flex-wrap: wrap;
align-items: center;
width: calc(33.33% - 20px);
}

.hero-footer-box .icon-box{
position: relative;
background-color: var(--dark-divider-color);
border-radius: 10px;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
}

.hero-footer-box .icon-box::before{
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--accent-color);
border-radius: 10px;
transform: scale(0) rotate(180deg);
transition: all 0.4s ease-in-out;
}

.hero-footer-box:hover .icon-box::before{
transform: scale(1) rotate(0);
}

.hero-footer-box .icon-box img{
position: relative;
max-width: 24px;
z-index: 1;
}

.hero-footer-box .hero-footer-box-content{
width: calc(100% - 60px);
}

.hero-footer-box .hero-footer-box-content p{
text-transform: capitalize;
text-align: left;
color: var(--white-color);
margin: 0;
}

.hero-images{
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 30px;
margin-left: 15px;
}

.hero-image-box{
width: calc(33.33% - 20px);
display: flex;
flex-wrap: wrap;
gap: 30px;
}

.hero-img-5,
.hero-img-4,
.hero-img-3,
.hero-img-2,
.hero-img-1{
width: 100%;
}

.hero-img-5 figure,
.hero-img-4 figure,
.hero-img-3 figure,
.hero-img-2 figure,
.hero-img-1 figure{
display: block;
width: 100%;
border-radius: 20px;
}

.hero-img-5 img,
.hero-img-4 img,
.hero-img-3 img,
.hero-img-2 img,
.hero-img-1 img{
width: 100%;
border-radius: 20px;
}

.hero-img-5 img,
.hero-img-4 img,
.hero-img-1 img{
aspect-ratio: 1 / 2.18;
object-fit: cover;
}

.hero-img-3 img,
.hero-img-2 img{
aspect-ratio: 1 / 1.01;
object-fit: cover;
}

/*************************************/
/***       05. CTA Box css         ***/
/*************************************/

.cta-contact-box{
background: var(--accent-color);
padding: 50px 0 20px;
}

.cta-contact-box .cta-contact-item{
position: relative;
padding: 0 1.823vw;
display: flex;
align-items: center;
margin-bottom: 30px;
}

.cta-contact-box .cta-contact-item:before{
content: "";
display: block;
position: absolute;
top: 0;
right: -15px;
bottom: 0;
background: var(--dark-divider-color);
width: 1px;
height: 100%;
}

.cta-contact-box .col-lg-4:last-child .cta-contact-item:before{
display: none;
}

.cta-contact-item .icon-box{
position: relative;
background-color: var(--dark-divider-color);
border-radius: 10px;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
transition: all 0.4s ease-in-out;
}

.cta-contact-item .icon-box::before{
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--primary-color);
border-radius: 10px;
transform: scale(0) rotate(180deg);
transition: all 0.4s ease-in-out;
}

.cta-contact-item:hover .icon-box::before{
transform: scale(1) rotate(0deg);
}

.cta-contact-item .icon-box img{
position: relative;
max-width: 24px;
z-index: 1;
}

.cta-contact-content{
width: calc(100% - 60px);
}

.cta-contact-content h3{
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
color: var(--white-color);
margin-bottom: 5px;
}

.cta-contact-content p{
color: var(--white-color);
margin: 0;
}

.cta-contact-content p a{
color: inherit;
transition: all 0.3s ease-in-out;
}

.cta-contact-content p a:hover{
color: var(--primary-color);
}

/*************************************/
/***      	06. About Us css       ***/
/*************************************/

.about-us{
padding: 100px 0;
}

.about-us-image{
position: relative;
margin-right: 15px;
}

.about-img figure{
display: block;
border-radius: 20px;
}

.about-img figure img{
width: 100%;
/*aspect-ratio: 1 / 1.1;*/
object-fit: cover;
border-radius: 20px;
}

.company-experience{
position: absolute;
right: 30px;
bottom: 30px;
display: flex;
background-color: var(--primary-color);
border-radius: 20px;
padding: 20px;
box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.07);
animation: expmoveobject 3s infinite linear alternate;
}

@keyframes expmoveobject{
50%{
right: 80px;
}
}

.company-experience .icon-box{
margin-right: 10px;
}

.company-experience .icon-box img{
width: 100%;
max-width: 34px;
}

.company-experience-content{
width: calc(100% - 44px);
text-align: left;
}

.company-experience-content h3{
font-size: 30px;
font-weight: 700;
color: var(--white-color);
margin-bottom: 5px;
}

.company-experience-content p{
color: var(--white-color);
font-size: 14px;
text-transform: capitalize;
margin: 0;
}

.about-us-body{
display: flex;
flex-wrap: wrap;
gap: 30px;
border-bottom: 1px solid var(--divider-color);
margin-bottom: 40px;
padding-bottom: 40px;
}

.about-list-item{
width: calc(50% - 15px);
display: flex;
align-items: center;
}

.about-list-item .icon-box{
margin-right: 10px;
}

.about-list-item .icon-box img{
max-width: 34px;
}

.about-list-content{
width: calc(100% - 44px);
}

.about-list-content h3{
font-size: 16px;
text-transform: capitalize;
}

.about-us-footer{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.appointment-btn{
text-align: right;
}

.doctor-info-item{
display: flex;
align-items: center;
}

.doctor-info-item .image-box{
margin-right: 10px;
}

.doctor-info-item .image-box img{
max-width: 48px;
border-radius: 100%;
}

.doctor-info-item .doctor-info-content{
width: calc(100% - 58px);
}

.doctor-info-item .doctor-info-content h3{
font-size: 20px;
text-transform: capitalize;
margin-bottom: 5px;
}

.doctor-info-item .doctor-info-content p{
margin: 0;
}

/*************************************/
/***      07. Our Services css     ***/
/*************************************/

.our-service{
padding: 100px 0 70px;
}

.service-item{
position: relative;
background: var(--white-color);
border-radius: 20px;
height: calc(100% - 30px);
margin-bottom: 30px;
padding: 30px 25px;
overflow: hidden;
}

.service-item:before{
content: '';
position: absolute;
left: 0;
right: 0;
top: 100%;
border-radius: 0px;
background-color: var(--accent-color);
transition: all 0.4s ease-in-out;
height: 100%;
z-index: 0;
}

.service-item:hover:before{
top: 0;
}

.service-item .icon-box{
position: relative;
background-color: var(--accent-color);
height: 52px;
width: 52px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
overflow: hidden;
z-index: 1;
}

.service-item .icon-box::before{
content: '';
position: absolute;
left: 0;
right: 0;
top: 100%;
border-radius: 0px;
background-color: var(--primary-color);
transition: all 0.5s ease-in-out;
height: 100%;
}

.service-item:hover .icon-box::before{
top: 0;
}

.service-item .icon-box img{
position: relative;
z-index: 1;
max-width: 30px;
}

.service-item .service-body{
position: relative;
margin-bottom: 20px;
z-index: 1;
}

.service-item .service-body h3{
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
margin-bottom: 15px;
transition: all 0.5s ease-in-out;
}

.service-item .service-body h3 a{
color: inherit;
}

.service-item .service-body p{
margin: 0;
transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body h3,
.service-item:hover .service-body p{
color: var(--white-color);
}

.service-item .service-footer{
position: relative;
z-index: 1;
}

.service-footer a{
background-color: var(--accent-color);
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
}

.service-item:hover .service-footer a{
background-color: var(--primary-color);
}

.service-item:hover .service-footer a img{
max-width: 20px;
transition: all 0.3s ease-in-out;
}

.service-item:hover .service-footer a:hover img{
transform: rotate(45deg);
}

.service-cta-item{
padding: 25px 4.167vw;
align-content: center;
text-align: center;
}

.service-cta-item .icon-box{
margin: 0 auto;
margin-bottom: 20px;
}

.service-cta-item:hover .service-cta-btn .btn-default:after{
width: 100%;
}

.service-cta-item:hover .service-cta-btn .btn-default::after{
transform: skewY(0deg) scaleY(2);
}

/*************************************/
/***     08. Why Choose Us css     ***/
/*************************************/

.why-choose-us {

padding: 10px 0;
}

/*        .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}*/
.section-title h2 {
font-size: 30px;
font-weight: 700;
color: #0C6DAC;
margin: 0;
}

.why-choose-us-box {
position: relative;
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.why-choose-item {
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 30px;
text-align: center;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
border-radius: 15px;
min-height: 320px;
margin-bottom: 30px;
}

/* Background images for each item */
.why-choose-item:nth-child(1) {
/* background-image: url('../images/gallery-1.jpg'); */
background-color: #0b69a3;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); */
}

.why-choose-item:nth-child(2) {
/* background-image: url('../images/gallery-2.jpg'); */
background-color: #0b69a3;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); */
}

.why-choose-item:nth-child(3) {
/* background-image: url('../images/gallery-3.jpg'); */
background-color: #0b69a3;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); */
}

.why-choose-item:nth-child(4) {
/* background-image: url('../images/gallery-4.jpg'); */
background-color: #0b69a3;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); */
}

.why-choose-item:nth-child(5) {
/* background-image: url('../images/gallery-5.jpg'); */
background-color: #0b69a3;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); */
}

.why-choose-item:nth-child(6) {
/* background-image: url('../images/gallery-6.jpg'); */
background-color: #0b69a3;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)); */
} 

/* Bluish-black overlay */
.why-choose-item::before {
content: '';
position: absolute;
inset: 0;
/*background: linear-gradient(135deg, rgba(9, 79, 122, 0.92) 0%, rgba(11, 105, 163, 0.88) 50%, rgba(12, 109, 172, 0.85) 100%);*/
/* background: linear-gradient(135deg, rgba(9, 79, 122, 0.6) 0%, rgba(11, 105, 163, 0.55) 50%, rgba(12, 109, 172, 0.5) 100%); */
background:linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
z-index: 1;
transition: all 0.4s ease;
}

.why-choose-item:hover::before {
/* background: linear-gradient(
135deg,
rgba(0, 0, 0, 0.65) 0%,
rgba(9, 79, 122, 0.75) 40%,
rgba(12, 109, 172, 0.70) 100%
); */
}

/* Accent overlay on hover */
.why-choose-item::after {
content: '';
position: absolute;
inset: 0;
/*background: linear-gradient(135deg, rgba(250, 208, 0, 0.15) 0%, transparent 100%);*/
background: rgba(0, 0, 0, 0.3);
transform: scale(0);
transition: transform 0.4s ease;
z-index: 2;
}

.why-choose-item:hover::after {
transform: scale(1);
}

.icon-box {
background: #C1E3F7;
height: 70px;
width: 70px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
position: relative;
overflow: hidden;
z-index: 3;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
transition: all 0.4s ease;
}

.why-choose-item:hover .icon-box {
transform: translateY(-5px) scale(1.05);
/*box-shadow: 0 8px 30px rgba(250, 208, 0, 0.4);*/
}

.icon-box img {
width: 36px;
height: 36px;
filter: brightness(0) saturate(100%) invert(33%) sepia(91%) saturate(7030%) hue-rotate(188deg) brightness(90%) contrast(97%);
position: relative;
z-index: 1;
transition: transform 0.3s ease;
}

.why-choose-item:hover .icon-box img {
transform: scale(1.1) rotate(5deg);
}

.why-choose-content {
position: relative;
z-index: 3;
/* padding-top: 100px; */
}

.why-choose-content h3 {
font-size: 19px;
font-weight: 600;
color: white;
margin-bottom: 15px;
transition: all 0.3s ease;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
}

.why-choose-item:hover .why-choose-content h3 {
color: #fff;
transform: translateY(-2px);
}

.why-choose-content p {
font-size: 14px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.95);
margin: 0;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.section-title h2 {
font-size: 36px;
}
}

@media (max-width: 576px) {
.services-grid {
grid-template-columns: 1fr;
gap: 15px;
}

.why-choose-item {
padding: 40px 25px;
min-height: 280px;
}

.section-title h2 {
font-size: 30px;
}

.why-choose-us {
padding: 60px 0;
}
}
/*************************************/
/***      09. Our Process css      ***/
/*************************************/

.our-process{
padding: 100px 0;
}

.our-process-content{
margin-right: 15px;
}

.our-process-list{
counter-reset: my-counter;
}

.our-process-item{
position: relative;
counter-increment: auto;
display: flex;
align-items: center;
margin-bottom: 60px;
}

.our-process-item:last-child{
margin-bottom: 0;
}

.our-process-item::before{
content: "";
display: block;
position: absolute;
left: 0;
bottom: 0;
transform: translate(48px, 80%);
background: var(--dark-divider-color);
width: 1px;
height: 100%;
z-index: 0;
}

.our-process-item:last-child:before{
display: none;
}

.our-process-item .icon-box{
position: relative;
height: 96px;
width: 96px;
margin: 12px 42px 0 0;
}

.our-process-item .icon-box:before{
counter-increment: my-counter;
content: "" counter(my-counter);
position: absolute;
top: -12px;
right:  -12px;
bottom: auto;
left: auto;
color: var(--primary-color);
background: var(--white-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: "Lora", sans-serif;
font-size: 16px;
font-weight: 700;
line-height: 2em;
width: 32px;
height: 32px;
transition: all 0.4s ease-in-out;
z-index: 1;
}

.our-process-item:hover .icon-box:before{
background: var(--accent-color);
color: var(--white-color);
}

.our-process-item .icon-box figure{
position: relative;
background: var(--accent-color);
border-radius: 10px;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.our-process-item .icon-box figure::after{
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
border-radius: 8px;
background-color: var(--white-color);
transform: scale(0) rotate(180deg);
transition: all 0.4s ease-in-out;
height: 100%;
}

.our-process-item:hover .icon-box figure::after{
transform: scale(1) rotate(0deg);
}

.our-process-item .icon-box img{
position: relative;
max-width: 48px;
z-index: 1;
transition: all 0.4s ease-in-out;
}

.our-process-item:hover .icon-box img{
filter: brightness(1) invert(1);
}

.process-item-content{
width: calc(100% - 138px);
}

.process-item-content h3{
font-size: 20px;
text-transform: capitalize;
color: var(--white-color);
margin-bottom: 10px;
}

.process-item-content p{
color: var(--white-color);
margin: 0;
}

/*************************************/
/***       10. Case Study css      ***/
/*************************************/

.case-study{
padding: 30px 0 60px;
}
.case-study h2{
font-size: 34px;
font-weight:400 ;
line-height: 1.2em;

}

.case-study-item{
height: calc(100% - 40px);
margin-bottom: 40px;
}

.case-study-image{
position: relative;
border-radius: 20px;
margin-bottom: 20px;
overflow: hidden;
}

.case-study-image::before{
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
transform: scale(0);
background: var(--primary-color);
border-radius: 20px;
opacity: 40%;
width: 100%;
height: 100%;
transition: all 0.4s ease-in-out;
z-index: 1;
}

.case-study-item:hover .case-study-image::before{
transform: scale(1);
}

.case-study-image figure{
display: block;
}

.case-study-image figure img{
width: 100%;
aspect-ratio: 1 / 0.77;
object-fit: cover;
border-radius: 20px;
transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image figure img{
transform: scale(1.1);
}

.case-study-btn{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
opacity: 0;
visibility: hidden;
transition: all 0.4s ease-in-out;
z-index: 1;
}

.case-study-item:hover .case-study-btn{
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

.case-study-btn a{
background: var(--accent-color);
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
transition: 0.4s ease-in-out;
}

.case-study-btn a:hover{
background: var(--primary-color);
}

.case-study-btn a img{
width: 100%;
max-width: 24px;
transition: 0.4s ease-in-out;
}

.case-study-btn a:hover img{
transform: rotate(45deg);
}

.case-study-content h2{
font-size: 20px;
line-height: 1.4em;
color: black;
}

.case-study-content h2 a{
color: inherit;
font-family: 'Montserrat', sans-serif;
}

/*************************************/
/***        11. CTA Box css 	   ***/
/*************************************/

.cta-box{
padding: 100px 0 0;
}

.cta-box-content{
width: 100%;
max-width: 870px;
margin: 0 auto;
text-align: center;
margin-bottom: 30px;
}

.cta-box-list ul{
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px 30px;
}

.cta-box-list ul li{
position: relative;
text-transform: capitalize;
line-height: 1.4em;
padding-left: 30px;
}

.cta-box-list ul li::before{
content: '\f058';
font-family: "Lora", sans-serif;
position: absolute;
top: 0;
left: 0;
font-size: 18px;
font-weight: 900;
color: var(--accent-color);
}

.cta-box-btn{
position: relative;
margin-top: 40px;
}

.cta-box-btn::before{
content: '';
position: absolute;
right: 18%;
bottom: 0;
top: -15px;
background: url('../images/arrow-cta-box.svg') no-repeat;
background-position: center center;
background-size: cover;
width: 107px;
height: 66px;
animation: ctaarrow 3s infinite linear;
}

@keyframes ctaarrow{
50%{
right: 21%;
}
}

.cta-box-image{
text-align: center;
}

.cta-box-image img{
width: 100%;
max-width: 910px;
margin: 0 auto;
aspect-ratio: 1 / 0.5461;
object-fit: cover;
}

/*************************************/
/***    12. Our Specialized css    ***/
/*************************************/

.our-specialized{
padding: 100px 0;
}

.specialized-content .section-title{
border-bottom: 1px solid var(--divider-color);
padding-bottom: 40px;
margin-bottom: 40px;
}

.specialized-list-box{
margin-bottom: 30px;
}

.specialized-list-box:last-child{
margin-bottom: 0;
}

.specialized-list-title{
margin-bottom: 20px;
}

.specialized-list-title h3{
position: relative;
font-size: 20px;
padding-left: 30px;
}

.specialized-list-title h3::before{
content: '\f058';
position: absolute;
font-family: "Lora", sans-serif;
left: 0;
top: 0;
font-size: 18px;
color: var(--accent-color);
}

.specialized-list-content p{
margin: 0;
}

.specialized-image{
position: relative;
background: url('../images/specialized-image-bg.png') no-repeat;
background-position: center center;
background-size: auto;
display: flex;
flex-wrap: wrap;
align-items: start;
gap: 30px;
}

.specialized-img-1{
width: calc(50% - 15px);
}

.specialized-img-2{
padding-top: 165px;
width: calc(50% - 15px);
}

.specialized-img-1 img figure,
.specialized-img-2 img figure{
display: block;
border-radius: 20px;
}

.specialized-img-1 img,
.specialized-img-2 img{
aspect-ratio: 1 / 1.29;
object-fit: cover;
border-radius: 20px;
}

.expert-doctor{
position: absolute;
bottom: 0;
left: 0;
background-color: var(--white-color);
box-shadow: 10px 0px 36.8px -4px #0000001A;
border: 1px solid var(--divider-color);
border-radius: 15px;
display: flex;
align-items: center;
width: 100%;
max-width: 250px;
padding: 20px;
animation: doctormoveobject 3s infinite linear alternate;
}

@keyframes doctormoveobject{
50%{
left: 40px;
}
}

.expert-doctor .icon-box{
background-color: var(--accent-color);
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
transition: all 0.3s ease-in-out;
}

.expert-doctor:hover .icon-box{
background-color: var(--primary-color);
}

.expert-doctor .icon-box img{
max-width: 30px;
}

.expert-doctor-content{
width: calc(100% - 80px);
}

.expert-doctor-content h3{
font-size: 20px;
font-weight: 600;
margin-bottom: 5px;
}

.expert-doctor-content p{
text-transform: capitalize;
margin: 0;
}

/*************************************/
/***    13. Our Testimonials css   ***/
/*************************************/

.our-testimonials{
/* background: #0C6DAC; */
padding: 30px 0;
}

.our-testimonials .section-title h3::before{
/* background: var(--white-color); */
}

.testimonial-slider .swiper-wrapper{
cursor: none;
}

.testimonial-item{
background-color: #eaf4ff;
border-radius: 20px;
padding: 50px;
}

.testimonial-quote,
.testimonial-content{
margin-bottom: 30px;
}

.testimonial-quote img{
max-width: 48px;
}

.testimonial-content p{
margin: 0;
color: black;
font-family: 'Montserrat', sans-serif;
}

.testimonial-author{
display: inline-flex;
align-items: center;
}

.author-image{
margin-right: 15px;
}

.author-image img{
width: 54px;
height: 54px;
border-radius: 14px;
}

.author-content h3{
font-size: 20px;
text-transform: capitalize;
margin-bottom: 5px;
color:#0C6DAC;
}

.author-content p{
text-transform: capitalize;
margin: 0;
color: black;
font-family: 'Montserrat', sans-serif;
}

.testimonial-btn{
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
background-color: #0C6DAC;
position: relative;
width: 40px;
height: 40px;
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
/* border: 2px solid #0C6DAC; */
border-radius: 50%;
transition: all 0.4s ease-in-out;	
}

.testimonial-slider .testimonial-button-next{
margin-left: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
background-color: #FAD000;
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: url('../images/arrow-white.svg') no-repeat;
background-position: center center;
background-size: 20px auto;
transform: rotate(45deg);
transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before{
filter: brightness(0) invert(0);
}

.testimonial-slider .testimonial-button-prev::before{
transform: rotate(-135deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
color: var(--white-color);
}


/*************************************/
/***        14. Our Team css       ***/
/*************************************/

.our-team{
padding: 100px 0 70px;
}

.team-item{
position: relative;
height: calc(100% - 30px);
margin-bottom: 30px;
overflow: hidden;
}

.team-image a{
display: block;
cursor: none;
border-radius: 20px;
overflow: hidden;
}

.team-image figure:before{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(180deg, rgba(4, 20, 36, 0.00) 51.52%, rgba(4, 20, 36, 0.80) 83.37%);
width: 100%;
height: 100%;
z-index: 1;
}

.team-image img{
width: 100%;
aspect-ratio: 1 / 1.359;
object-fit: cover;
transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
transform: scale(1.1);
}

.team-body{
position: absolute;
right: 30px;
bottom: 30px;
left: 30px;
transform: translateY(30px);
text-align: center;
transition: all 0.4s ease-in-out;
z-index: 1;
}

.team-item:hover .team-body{
transform: translateY(0);
}

.team-content p{
font-weight: 500;
color: var(--white-color);
text-transform: capitalize;
margin-bottom: 10px;
}

.team-content h3{
font-size: 20px;
text-transform: capitalize;
color: var(--white-color);
}

.team-content h3 a{
color: inherit;
}

.team-social-list{
opacity: 0;
visibility: hidden;
transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
margin-top: 20px;
opacity: 1;
visibility: visible;
}

.team-social-list ul{
display: flex;
justify-content: center;
gap: 10px;
list-style: none;
margin: 0;
padding: 0;
}

.team-social-list ul li a{
width: 30px;
height: 30px;
color: var(--primary-color);
background: var(--white-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a{
background: var(--accent-color);
color: var(--white-color);
}

.team-social-list ul li a i{
font-size: 14px;
color: inherit;
}

/*************************************/
/***       15. Our FAQ's css       ***/
/*************************************/

.our-faqs{
padding: 100px 0;
}

.faqs-images{
display: flex;
flex-wrap: wrap;
align-items: end;
gap: 30px;
margin-right: 20px;
}

.faqs-img-1{
width: calc(47% - 15px);
}

.faqs-img-2{
width: calc(53% - 15px);
}

.faqs-img-1 figure,
.faqs-img-2 figure{
display: block;
border-radius: 20px;
overflow: hidden;
}

.faqs-img-1 figure img,
.faqs-img-2 figure img{
width: 100%;
object-fit: cover;
border-radius: 20px;
}

.faqs-img-1 figure img{
aspect-ratio: 1 / 1.263;
}

.faqs-img-2 figure img{
aspect-ratio: 1 / 1.585;
}

.need-help-box{
position: relative;
background-color: var(--accent-color);
border-radius: 20px;
display: flex;
align-items: center;
padding: 20px;
overflow: hidden;
margin-top: 30px;
}

.need-help-box::before{
content: '';
position: absolute;
right: 0;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: var(--primary-color);
z-index: 0;
transition: all 0.4s ease-in-out;
}

.need-help-box:hover::before{
height: 100%;
}

.need-help-box .icon-box{
position: relative;
margin-right: 15px;
z-index: 1;
}

.need-help-box .icon-box img{
width: 100%;
max-width: 40px;
}

.need-help-content{
position: relative;
width: calc(100% - 55px);
z-index: 1;
}

.need-help-content p{
line-height: normal;
color: var(--white-color);
text-transform: capitalize;
margin: 0;
}

.faq-accordion .accordion-item{
position: relative;
background: var(--white-color);
border-radius: 20px;
margin-bottom: 30px;
padding: 0;
transition: all 0.3s ease-in-out;
overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
font-size: 20px;
font-weight: 600;
line-height: normal;
background: var(--accent-color);
border-bottom: 1px solid var(--dark-divider-color);
color: var(--white-color);
padding: 20px 50px 20px 20px;
transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
color: var(--primary-color);
background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
content: '\f068';
font-family: "Lora", sans-serif;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 20px;
font-weight: 900;
color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
content: '\2b';
color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
background: var(--accent-color);
padding: 20px 50px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
color: var(--white-color);
margin: 0;
}

/*************************************/
/***        16. Our Blog css       ***/
/*************************************/

.our-blog{
padding: 100px 0 70px;
}

.post-item{
height: calc(100% - 30px);
margin-bottom: 30px;
}

.post-featured-image{
margin-bottom: 25px;
}

.post-featured-image a{
cursor: none;	
display: block;
border-radius: 20px;
overflow: hidden;
}

.post-featured-image figure{
display: block;
}

.post-featured-image img{
aspect-ratio: 1 / 0.71;
object-fit: cover;
transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
transform: scale(1.1);
}

.post-item-content{
margin-bottom: 20px;
}

.post-item-content h2{
font-size: 18px;
line-height: 1.4em;
}

.post-item-content h2 a{
display: inline-block;
color: inherit;
}

/*************************************/
/***        17. Footer css         ***/
/*************************************/

.main-footer{
font-family: 'Montserrat';
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);  color: white;
padding: 100px 30px 0 30px;
margin-bottom: 50px;
}

.about-footer{
margin-right: 30px;
}

.footer-logo{
margin-bottom: 60px;
}

.footer-logo img{
width: 100%;
max-width: 210px;
}

.about-footer-content p{
color: var(--white-color);
margin-bottom: 0;
}

.footer-links h3{
font-size: 16px;
color: var(--white-color);
text-transform: capitalize;
margin-bottom: 20px;
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
}

.footer-links ul{
list-style: none;
margin: 0;
padding-left: 20px;
}

.footer-links ul li{
color: var(--white-color);
line-height: 1.6em;
text-transform: capitalize;
margin-bottom: 15px;
}

.footer-links ul li:last-child{
margin-bottom: 0;
}

.footer-links ul li::marker{
color: var(--accent-color);
transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover::marker{
color: var(--white-color);
}

.footer-links ul li a{
color: inherit;
transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
color:#DDAC36;
}

.footer-contact-item{
display: flex;
/* align-items: center; */
margin-bottom: 20px;
}

.footer-contact-item:last-child{
margin-bottom: 0;
}

.footer-contact-item .icon-box{
position: relative;
height: 40px;
width: 40px;
display: flex;
justify-content: center;
align-items: center;
background:white;
border-radius: 10px;
margin-right: 10px;
overflow: hidden;
}

.footer-contact-item .icon-box::before{
content: '';
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
/*background-color: var(--white-color);*/
border-radius: 10px;
transform: scale(0);
width: 100%;
height: 100%;
transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box::before{
transform: scale(1) rotate(180deg);
}

.footer-contact-item .icon-box img{
position: relative;
max-width: 20px;
transition: all 0.3s ease-in-out;
z-index: 1;
}

.footer-contact-item:hover .icon-box img{
filter: brightness(0) invert(0);
}

.footer-contact-content{
width: calc(100% - 50px);
}

.footer-contact-content p{
color: var(--white-color);
margin: 0;
}

.footer-contact-content p a{
color: inherit;
transition: all 0.3s ease-in-out;
}

.footer-contact-content p a:hover{
color: #DDAC36;
}

.footer-social-link{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 60px;
}

.footer-social-link hr{
height: 1px;
width: 45%;
color: var(--dark-divider-color);
opacity: 1;
}

.footer-social-link ul{
display: flex;
justify-content: center;
text-align: center;
list-style: none;
margin: 0 20px;
padding: 0;
}

.footer-social-link ul li{
display: inline-block;
margin-right: 20px;
}

.footer-social-link ul li:last-child{
margin: 0;
}

.footer-social-link ul li a{
position: relative;
height: 40px;
width: 40px;
display: flex;
justify-content: center;
align-items: center;
background: white;
border-radius: 10px;
overflow: hidden;
}

.footer-social-link ul li a::before{
content: '';
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: #DDAC36;
border-radius: 10px;
transform: scale(0);
width: 100%;
height: 100%;
transition: all 0.3s ease-in-out;
}

.footer-social-link ul li:hover a::before{
transform: scale(1) rotate(180deg);
}

.footer-social-link ul li a i{
position: relative;
font-size: 20px;
color: var(--white-color);
transition: all 0.3s ease-in-out;	
z-index: 1;
}

.footer-social-link ul li a:hover i{
color: var(--primary-color);
}

.footer-copyright{
padding: 4px 0 15px;
}

.footer-copyright-text p{
color: var(--white-color);
margin: 0;
}

.footer-terms-condition ul{
display: flex;
justify-content: end;
gap: 30px;
list-style: none;
margin: 0;
padding-left: 0;
}

.footer-terms-condition ul li::marker{
color: var(--accent-color);
}

.footer-terms-condition ul li:first-child::marker{
font-size: 0;
}

.footer-terms-condition ul li a{
color: var(--white-color);
line-height: 1.6em;
text-transform: capitalize;
transition: all 0.3s ease-in-out;
}

.footer-terms-condition ul li:hover a{
color: #0C6DAC;
}

/*************************************/
/***     18. About Us Page css     ***/
/*************************************/

.page-header{
position: relative;
background:
linear-gradient(
345deg,
rgba(24, 78, 119, 0.75) 0%,
rgba(10, 35, 80, 0.7) 40%,
rgba(200, 220, 255, 0.3) 100%
),
url('../images/ab-3.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

padding: 262px 0 0px;
}

.page-header-box{
position: relative;
text-align: center;
z-index: 1;
}

.page-header-box h1{
display: inline-block;
font-size: 60px;
font-weight: 400;
line-height: 1.2em;
letter-spacing: -0.02em;
color: var(--white-color);
text-align: center;
margin-bottom: 15px;
cursor: none;
}

.page-header-box ol{
justify-content: center;
margin: 0;
padding: 0;
}

.page-header-box ol li.breadcrumb-item{
font-weight: 500;
text-transform: capitalize;
color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item.active{
color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
color: var(--white-color);
}

.our-approach{
padding: 100px 0;
}

.our-approach-content{
position: sticky;
top: 30px;
}

.mission-vision-item{
position: relative;
background: var(--white-color);
border: 1px solid var(--divider-color);
border-radius: 20px;
padding: 30px;
margin-bottom: 30px;
overflow: hidden;
}

.mission-vision-item:last-child{
margin-bottom: 0;
}

.mission-vision-item::before{
content: '';
position: absolute;
top: auto;
left: 0;
right: 0;
bottom: 0;
background: var(--accent-color);
height: 0;
width: 100%;
transition: all 0.4s ease-in-out;
}

.mission-vision-item.active::before,
.mission-vision-item:hover::before{
top: 0;
height: 100%;
}

.mission-vision-header,
.mission-vision-content{
position: relative;
z-index: 1;
}

.mission-vision-header{
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 30px;
margin-bottom: 20px;
}

.mission-vision-header .icon-box img{
width: 100%;
max-width: 40px;
transition: all 0.4s ease-in-out;
}

.mission-vision-item.active .icon-box img,
.mission-vision-item:hover .icon-box img{
filter: brightness(0) invert(1);
}

.mission-vision-title{
width: calc(100% - 70px);
}

.mission-vision-title h3{
font-size: 20px;
text-transform: capitalize;
transition: all 0.4s ease-in-out;
}

.mission-vision-content p{
margin: 0;
transition: all 0.4s ease-in-out;
}

.mission-vision-item.active .mission-vision-title h3,
.mission-vision-item:hover .mission-vision-title h3,
.mission-vision-item.active .mission-vision-content p,
.mission-vision-item:hover .mission-vision-content p{
color: var(--white-color);
}

.our-innovation{
padding: 100px 0;
}

.our-innovation-content{
margin-right: 30px;
}

.skills-progress-bar{
margin-bottom: 40px;
}

.skills-progress-bar:last-child{
margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
font-size: 20px;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-title{
font-family: "Lora", sans-serif;
}

.skills-progress-bar .skillbar .skill-progress{
position: relative;
width: 100%;
height: 16px;
background: var(--secondary-color);
border-radius: 100px;
overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
position: absolute;
top: 0;
left: 0;
bottom: 0;
background: var(--accent-color);
border-radius: 100px;
}

.our-innovation-image{
position: relative;
padding: 0 55px 75px 0;
}

.our-innovation-img-1 figure,
.our-innovation-img-2 figure{
display: block;
border-radius: 50%;
}

.our-innovation-img-1 img,
.our-innovation-img-2 img{
width: 100%;
object-fit: cover;
border-radius: 50%;
}

.our-innovation-img-1 img{
aspect-ratio: 1 / 1.0177;
}

.our-innovation-img-2{
max-width: 270px;
position: absolute;
right: 0;
bottom: 0;
border: 10px solid var(--white-color);
border-radius: 50%;
z-index: 1; 
}

.customer-review-box{
position: absolute;
bottom: 100px;
left: 0;
display: flex;
align-items: center;
width: 260px;
background-color: var(--white-color);
border-radius: 10px;
padding: 15px 20px;
box-shadow: -8px 8px 40px 0px rgba(0, 0, 0, 0.05);
z-index: 1; 
}

.customer-review-box .icon-box{
margin-right: 15px;
}

.customer-review-box .icon-box i{
color: var(--accent-color);
font-size: 35px;
}

.customer-review-box-content{
width: calc(100% - 50px);
}

.customer-review-box-content h2{
font-size: 20px;
font-weight: 400;
margin-bottom: 5px;
}

.customer-review-box-content p{
text-transform: capitalize;
margin: 0;
}

.our-expertise{
padding: 100px 0;
}

.our-expertise-content{
margin-right: 20px;
}

.our-expertise-body{
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 30px;
}

.expertise-item-box{
width: calc(50% - 15px);
}

.expertise-item{
display: flex;
flex-wrap: wrap;
margin-bottom: 30px;
}

.expertise-item:last-child{
margin-bottom: 0;
}

.expertise-item .icon-box{
position: relative;
background: var(--accent-color);
border-radius: 10px;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
transition: all 0.3s ease-in-out;
overflow: hidden;
z-index: 1;
}

.expertise-item .icon-box::before{
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--primary-color);
border-radius: 10px;
transform: scale(0) rotate(180deg);
transition: all 0.4s ease-in-out;
}

.expertise-item:hover .icon-box::before{
transform: scale(1) rotate(0deg);
}

.expertise-item .icon-box img{
position: relative;
width: 100px;
max-width: 34px;
z-index: 1;
}

.expertise-item-content{
width: calc(100% - 80px);
}

.expertise-item-content h3{
font-size: 20px;
text-transform: capitalize;
margin-bottom: 5px;
}

.expertise-item-content p{
margin: 0;
}

.expertise-counter-box{
width: calc(50% - 15px);
background: var(--accent-color);
border: 1px solid var(--divider-color);
border-radius: 20px;
padding: 30px 25px;
}

.expertise-counter-content{
display: flex;
align-items: center;
margin-bottom: 20px;
}

.expertise-counter-content h2{
width: 100px;
font-size: 46px;
font-weight: 600;
color: var(--white-color);
margin-right: 5px;
}

.expertise-counter-content p{
color: var(--white-color);
width: calc(100% - 100px);
margin: 0;
}

.expertise-counter-list ul{
list-style: none;
padding: 0;
margin: 0;
}

.expertise-counter-list ul li{
position: relative;
text-transform: capitalize;
color: var(--white-color);
line-height: 1.4em;
padding-left: 30px;
margin-bottom: 15px;
}

.expertise-counter-list ul li:last-child{
margin-bottom: 0;
}

.expertise-counter-list ul li::before{
content: '\f058';
font-family: "Lora", sans-serif;
position: absolute;
font-size: 18px;
font-weight: 900;
color: var(--white-color);
top: 0;
left: 0;
}

.our-expertise-image{
position: relative;
}

.our-expertise-image figure{
display: block;
border-radius: 20px;
}

.our-expertise-image figure img{
width: 100%;
aspect-ratio: 1 / 0.99;
object-fit: cover;
border-radius: 20px;
}

.expertise-contact-box{
position: absolute;
bottom: 30px;
left: 30px;
right: 30px;
width: 100%;
max-width: 330px;
background: var(--primary-color);
border-radius: 20px;
display: flex;
align-items: center;
padding: 20px;
transition: all 0.3s ease-in-out;
}

.expertise-contact-box:hover{
background-position: right center;
}

.expertise-contact-box .icon-box{
position: relative;
background: var(--accent-color);
border-radius: 10px;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
overflow: hidden;
}

.expertise-contact-box .icon-box::before{
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--white-color);
border-radius: 10px;
transform: scale(0) rotate(180deg);
transition: all 0.4s ease-in-out;
}

.expertise-contact-box:hover .icon-box::before{
transform: scale(1) rotate(0deg);
}

.expertise-contact-box .icon-box img{
position: relative;
width: 100%;
max-width: 30px;
transition: all 0.4s ease-in-out;
z-index: 1;
}

.expertise-contact-box:hover .icon-box img{
filter: brightness(0) invert(0);
}

.expertise-contact-content{
width: calc(100% - 70px);
}

.expertise-contact-content h3{
font-size: 20px;
color: var(--white-color);
margin-bottom: 10px;
}

.expertise-contact-content p{
margin: 0;
color: var(--white-color);
}

.expertise-contact-content p a{
color: inherit;
transition: all 0.2s ease-in-out;
}

.expertise-contact-content p a:hover{
color: var(--accent-color);
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services{
padding: 100px 0 70px;
}

.page-services .service-item{
border: 1px solid var(--divider-color);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single{
padding: 100px 0;
}

.page-single-sidebar{
position: sticky;
top: 30px;
margin-right: 15px;
}

.page-category-list{
background: var(--secondary-color);
border-radius: 20px;
margin-bottom: 60px;
overflow: hidden;
}

.page-category-list h3{
font-size: 20px;
color: var(--white-color);
text-transform: capitalize;
background: var(--primary-color);
padding: 25px 40px;
}

.page-category-list ul{
list-style: none;
margin: 0;
padding: 30px 40px;
}

.page-category-list ul li{
line-height: 1.5em;
font-weight: 500;
border-bottom: 1px solid var(--divider-color);
padding-bottom: 20px;
margin-bottom: 20px;
}

.page-category-list ul li:last-child{
margin: 0;
padding: 0;
border-bottom: none;
}

.page-category-list ul li a{
position: relative;
display: block;
text-transform: capitalize;
color: var(--text-color);
padding-right: 25px;
transition: all 0.4s ease-in-out;
}

.page-category-list ul li:hover a{
color: var(--primary-color);
}

.page-category-list ul li a::before{
content: '';
position: absolute;
top: 2px;
right: 0;
background: url('../images/arrow-primary.svg') no-repeat;
background-size: cover;
background-position: right center;
width: 20px;
height: 20px;
transition: all 0.4s ease-in-out;
}

.sidebar-cta-box{
position: relative;
background: url('../images/sidebar-cta-bg.jpg') no-repeat;
background-position: center center;
background-size: cover;
border-radius: 20px;    
padding: 40px;
overflow: hidden;
}

.sidebar-cta-box:before{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: var(--primary-color);
opacity: 60%;
width: 100%;
height: 100%;
z-index: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content{
position: relative;
z-index: 1;
}

.sidebar-cta-logo{
margin-bottom: 70px;
}

.sidebar-cta-logo img{
width: 100%;
max-width: 130px;
}

.sidebar-cta-content P{
color: var(--white-color);
margin-bottom: 20px;
}

.page-single-image{
margin-bottom: 40px;
}

.page-single-image figure{
display: block;
border-radius: 20px;
}

.page-single-image img{
width: 100%;
aspect-ratio: 1 / 0.581;
object-fit: cover;
border-radius: 20px;
}

.service-entry{
margin-bottom: 60px;
}

.service-entry p{
margin-bottom: 20px;
}

.service-entry p:last-child{
margin-bottom: 0;
}

.service-entry h2{
font-size: 46px;
font-weight: 400;
letter-spacing: -0.02em;
margin-bottom: 20px;
}

.service-entry ul{
list-style: none;
margin: 0;
padding: 0;
}

.service-entry ul li{
position: relative;
line-height: 1.5em;
padding-left: 30px;
margin-bottom: 15px;
}

.service-entry ul li:last-child{
margin-bottom: 0;
}

.service-entry ul li::before{
content: '\f058';
font-family: "Lora", sans-serif;
position: absolute;
top: 0;
left: 0;
font-size: 18px;
font-weight: 900;
color: var(--accent-color);
}

.service-discover-box,
.service-result-box,
.service-partnership-box{
margin-top: 60px;
}

.service-discover-list{
margin-top: 40px;
}

.service-discover-list ul{
display: flex;
flex-wrap: wrap;
gap: 30px;
}

.service-discover-list ul li{
width: calc(50% - 15px);
background: var(--white-color);
border: 1px solid var(--divider-color);
border-radius: 20px;
padding: 20px 15px 20px 45px;
margin: 0;
}

.service-discover-list ul li::before{
top: 20px;
left: 20px;
}

.service-discover-image-content{
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 30px;
margin-top: 40px;
}

.service-discover-image,
.service-discover-content{
width: calc(50% - 15px);
}

.service-discover-image figure{
display: block;
border-radius: 20px;
}

.service-discover-image img{
width: 100%;
aspect-ratio: 1 / 0.84;
object-fit: cover;
border-radius: 20px;
}

.service-discover-content .why-choose-item{
align-items: start;
padding: 0 0 20px;
margin-bottom: 20px;
}

.service-discover-content .why-choose-item:last-child{
border: none;
padding: 0;
margin: 0;
}

.service-discover-content .why-choose-item .why-choose-content{
max-width: 100%;
}

.service-result-box ul{
margin-top: 40px;
}

.service-result-list{
background: var(--secondary-color);
border-radius: 20px;
margin-top: 40px;
padding: 40px;
}

.service-result-item{
display: flex;
border-bottom: 1px solid var(--divider-color);
margin-bottom: 40px;
padding-bottom: 40px;
}	

.service-result-item:last-child{
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.service-result-item .icon-box{
position: relative;
width: 60px;
height: 60px;
background: var(--accent-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
overflow: hidden;
transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box{
background: var(--primary-color);
}

.service-result-item .icon-box img{
width: 100%;
max-width: 30px;
}

.service-result-content{
width: calc(100% - 80px);
}

.service-result-content h3{
font-size: 20px;
margin-bottom: 10px;
}

.service-result-content p{
margin-bottom: 0;
}

.service-partnership-content{
margin-top: 40px;
}

.service-partnership-image{
margin-top: 40px;
}

.service-partnership-image figure{
display: block;
border-radius: 20px;
}

.service-partnership-image img{
width: 100%;
aspect-ratio: 1 / 0.395;
object-fit: cover;
border-radius: 20px;
}

.page-single-faqs .faq-accordion{
margin: 0;
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button{
background: var(--accent-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button.collapsed{
background: var(--secondary-color);
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog{
padding: 100px 0;
}

.page-blog .post-item{
height: calc(100% - 40px);
margin-bottom: 40px;
}

.page-pagination{
margin-top: 30px;
text-align: center;
}

.page-pagination ul{
justify-content: center;
padding: 0;
margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
display: flex;
text-decoration: none;
justify-content: center;
align-items: center;
background: var(--secondary-color);
color: var(--primary-color);
border-radius: 10px;
width: 40px;
height: 40px;
margin: 0 5px;
font-weight: 600;
line-height: 1em;
transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
background: var(--primary-color);
color: var(--white-color);
}

/************************************/
/*** 	  22. Blog Single css	  ***/
/************************************/

.page-single-post{
padding: 100px 0;
}

.post-single-meta{
margin-top: 5px;
}

.post-single-meta ol li{
font-size: 18px;
color: var(--white-color);
margin-right: 15px;
}

.post-single-meta ol li:last-child{
margin-right: 0;
}

.post-single-meta ol li i{
font-size: 18px;
color: var(--white-color);
margin-right: 5px;
}

.post-image{
position: relative;
margin-bottom: 30px;
}

.post-image figure{
display: block;	
border-radius: 20px;
overflow: hidden;
}

.post-image img{
width: 100%;
aspect-ratio: 1 / 0.50;
object-fit: cover;
border-radius: 20px;
}

.post-content{
width: 100%;
max-width: 1100px;
margin: 0 auto;
}

.post-entry{
border-bottom: 1px solid var(--divider-color);
padding-bottom: 30px;
margin-bottom: 30px;
}

.post-entry:after{
content: '';
display: block;
clear: both;
}

.post-entry a{
color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
font-weight: 600;
line-height: 1.2em;
margin: 0 0 0.435em;
}

.post-entry h1{
font-size: 60px;
font-weight: 400;
letter-spacing: -0.02em;
}

.post-entry h2{
font-size: 46px;
font-weight: 400;
letter-spacing: -0.02em;
}

.post-entry h3{
font-size: 40px;
}

.post-entry h4{
font-size: 30px;
}

.post-entry h5{
font-size: 24px;
}

.post-entry h6{
font-size: 20px;
}

.post-entry p{
margin-bottom: 20px;
}

.post-entry p:last-child{
margin-bottom: 0;
}

.post-entry p strong{
color: var(--primary-color);
font-size: 18px;
font-weight: 600;
}

.post-entry ol{
margin: 0 0 30px;
}

.post-entry ul{
padding: 0;
margin: 20px 0 20px;
padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
position: relative;
font-size: 16px;
font-weight: 500;
line-height: 1.6em;
color: var(--text-color);
margin-bottom: 15px;
}

.post-entry ul li:last-child{
margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
margin-top: 20px;
margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
margin-bottom: 0;
}

.post-entry blockquote{
background: url('../images/icon-blockquote.svg'), var(--secondary-color);
background-repeat: no-repeat;
background-position: 30px 30px;
background-size: 45px;
border-radius: 20px;
padding: 30px 30px 30px 90px;
margin-bottom: 30px;
}

.post-entry blockquote p{
font-size: 20px;
font-weight: 700;
line-height: 1.4em;
color: var(--primary-color);
}

.post-entry blockquote p:last-child{
margin-bottom: 0;
}

.tag-links{
font-family: "Lora", sans-serif;

font-size: 20px;
font-weight: 500;
text-transform: capitalize;
color: var(--primary-color);
display: inline-flex;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.post-tags .tag-links a{
display: inline-block;
font-family: "Lora", sans-serif;
font-size: 16px;
font-weight: 700;
text-transform: capitalize;
line-height: 1em;
background: var(--accent-color);
color: var(--white-color);
border-radius: 10px;
padding: 12px 20px;
transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
background: var(--primary-color);
}

.post-social-sharing{
text-align: right;
}

.post-social-sharing ul{
list-style: none;
padding: 0;
margin: 0;
}

.post-social-sharing ul li{
display: inline-block;
margin-right: 10px;
}

.post-social-sharing ul li:last-child{
margin-right: 0;
}

.post-social-sharing ul li a{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: var(--accent-color);
color: var(--white-color);
border-radius: 10px;
width: 40px;
height: 40px;
transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
background: var(--primary-color);
}

.post-social-sharing ul li a i{
font-size: 18px;
color: inherit;
}

/************************************/
/*** 	23. Case Study Page css	  ***/
/************************************/

.page-case-study{
padding: 100px 0 60px;
}

/************************************/
/***   24. Case Study Single css  ***/
/************************************/

.page-case-study-single{
padding: 100px 0;
}

.case-study-category-list ul li{
display: flex;
width: 100%;
justify-content: space-between;
color: var(--primary-color);
font-weight: 500;
}

.case-study-category-list ul li span{
width: 68%;
color: var(--text-color);
font-weight: 400;
}

.case-study-entry{
margin-bottom: 60px;
}

.case-study-entry p{
margin-bottom: 20px;
}

.case-study-entry p:last-child{
margin-bottom: 0;
}

.case-study-entry h2{
font-size: 46px;
font-weight: 400;
letter-spacing: -0.02em;
margin-bottom: 20px;
}

.case-study-entry ul{
list-style: none;
margin: 0;
padding: 0;
}

.case-study-entry ul li{
position: relative;
line-height: 1.5em;
padding-left: 30px;
margin-bottom: 15px;
}

.case-study-entry ul li:last-child{
margin-bottom: 0;
}

.case-study-entry ul li::before{
content: '\f058';
font-family: "Lora", sans-serif;
position: absolute;
top: 0;
left: 0;
font-size: 18px;
font-weight: 900;
color: var(--primary-color);
}

.empowering-agriculture-box,
.field-trials-box,
.shaping-future-box{
margin-top: 60px;
}

.empowering-box-list{
margin-top: 40px;
}

.empowering-box{
background: var(--secondary-color);
border-radius: 20px;
margin-bottom: 40px;
padding: 40px;
}

.empowering-box:last-child{
margin-bottom: 0;
}

.empowering-item{
display: flex;
margin-bottom: 40px;
}

.empowering-item .icon-box{
margin-right: 20px;
}

.empowering-item .icon-box img{
width: 100%;
max-width: 60px;
}

.empowering-item-content{
width: calc(100% - 80px);
}

.empowering-item-content h3{
font-size: 20px;
margin-bottom: 10px;
}

.field-trials-step-list{
display: flex;
flex-wrap: wrap;
gap: 40px 30px;
margin-top: 40px;
}

.field-trials-step-item{
width: calc(50% - 15px);
display: flex;
}

.field-trials-step-no{
position: relative;
width: 60px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
background: var(--secondary-color);
border-radius: 50%;
margin-right: 20px;
}

.field-trials-step-no::before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: var(--primary-color);
border-radius: 50%;
transform: scale(0);
transition: all 0.4s ease-in-out;
z-index: 0;
}

.field-trials-step-item:hover .field-trials-step-no::before{
transform: scale(1);
}

.field-trials-step-no h3{
position: relative;
font-size: 24px;
transition: all 0.3s ease-in-out;
z-index: 1;
}

.field-trials-step-item:hover .field-trials-step-no h3{
color: var(--white-color);
}

.field-trials-content{
width: calc(100% - 80px);
}

.field-trials-content h3{
font-size: 20px;
border-bottom: 1px solid var(--divider-color);
margin-bottom: 20px;
padding-bottom: 20px;
}

.shaping-future-image-content{
background: var(--white-color);
border: 1px solid var(--divider-color);
border-radius: 20px;
display: flex;
flex-wrap: wrap;
gap: 30px;
padding: 40px;
margin-top: 40px;
}

.shaping-future-content,
.shaping-future-image{
width: calc(50% - 15px);
}

.shaping-future-item{
display: flex;
margin-top: 30px;
}

.shaping-future-item h3{
width: calc(48% - 15px);
font-size: 20px;
border-right: 1px solid var(--divider-color);
margin-right: 15px;
padding-right: 15px;
}

.shaping-future-item p{
width: 52%;
}

.shaping-future-image figure{
display: block;
border-radius: 20px;
}

.shaping-future-image img{
width: 100%;
aspect-ratio: 1 / 0.795;
object-fit: cover;
border-radius: 20px;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team{
padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single{
padding: 100px 0;
}

.team-about-box,
.team-member-skill-box{
margin-bottom: 60px;
}

.team-about-box{
display: flex;
flex-wrap: wrap;
gap: 30px 60px;
}

.team-single-image,
.team-about-content{
width: calc(50% - 30px);
}

.team-single-image figure{
display: block;
height: 100%;
border-radius: 20px;
}

.team-single-image img{
width: 100%;
height: 100%;
aspect-ratio: 1 / 0.98;
object-fit: cover;
border-radius: 20px;
}

.team-about-content{
background: var(--white-color);
border: 1px solid var(--divider-color);
border-radius: 20px;
padding: 40px;
}

.member-social-list{
margin-bottom: 40px;
}

.member-social-list ul{
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 10px 15px;
}

.member-social-list ul li a{
width: 40px;
height: 40px;
color: var(--primary-color);
border: 1px solid var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover{
background: var(--primary-color);
color: var(--white-color);
}

.member-social-list ul li a i{
color: inherit;
font-size: 20px;
}

.team-contact-item{
display: flex;
margin-bottom: 30px;
}

.team-contact-item:last-child{
margin-bottom: 0;
}

.team-contact-item .icon-box{
position: relative;
height: 60px;
width: 60px;
background-color: var(--accent-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 25px;
}

.team-contact-item .icon-box::before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--primary-color);
border-radius: 50%;
width: 100%;
height: 100%;
transform: scale(0);
transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box::before{
transform: scale(1);
}

.team-contact-item .icon-box img{
position: relative;
width: 100%;
max-width: 30px;
z-index: 1;
}

.team-contact-content{
width: calc(100% - 85px);
}

.team-contact-content p{
text-transform: capitalize;
margin-bottom: 5px;
}

.team-contact-content h3{
font-size: 20px;
}

.team-member-skill-box,
.team-member-contact-box{
background: var(--white-color);
border: 1px solid var(--divider-color);
display: flex;
flex-wrap: wrap;
gap: 30px 140px;
border-radius: 20px;
padding: 40px;
}

.team-skill-content{
width: calc(45% - 70px);
}

.team-skill-content .section-title{
margin-bottom: 0;
}

.team-skill-list{
width: calc(55% - 70px);
}

.team-member-contact-box{
gap: 30px;
}

.team-member-contact-info{
width: calc(42% - 15px);
}

.team-member-contact-info .section-title{
position: sticky;
margin-bottom: 0;
top: 50px;
}

.team-member-contact-box .contact-us-form{
width: calc(58% - 15px);
border-radius: 20px;
}

/************************************/
/***   28. Testimonials Page css  ***/
/************************************/

.page-testimonials{
padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
background: var(--secondary-color);
height: calc(100% - 30px);
margin-bottom: 30px;
}

/************************************/
/*** 	 27. Pricing Page css	  ***/
/************************************/

.page-pricing{
padding: 100px 0 70px;
}

.page-pricing .pricing-item{
height: calc(100% - 30px);
margin-bottom: 30px;
}

.pricing-item{
background: var(--secondary-color);
border-radius: 20px;
margin-bottom: 30px;
padding: 40px;
}

.pricing-header{
border-bottom: 1px solid var(--divider-color);
margin-bottom: 30px;
padding-bottom: 30px;
}

.pricing-header h3{
font-size: 20px;
}

.pricing-body{
display: flex;
flex-wrap: wrap;
gap: 30px;
}

.pricing-content{
width: 100%;
}

.pricing-list{
width: 100%;
}

.pricing-price{
margin-bottom: 40px;
}

.pricing-price h2{
font-size: 34px;
margin-bottom: 20px;
}

.pricing-price h2 sub{
font-size: 20px;
text-transform: capitalize;
bottom: 0;
}

.pricing-price p{
margin-bottom: 0;
}

.pricing-list ul{
list-style: disc;
margin: 0;
padding: 0 0 0 20px;
}

.pricing-list ul li{
margin-bottom: 20px;
line-height: 1.5em;
}

.pricing-list ul li:last-child{
margin-bottom: 0;
}

.pricing-list ul li::marker{
color: var(--primary-color);
}

/************************************/
/*** 	 29. Image Gallery css	  ***/
/************************************/

.page-gallery{
padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
height: calc(100% - 30px);
margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
cursor: none;
}

.page-gallery-box .photo-gallery figure{
display: block;
border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
width: 100%;
aspect-ratio: 1 / 0.829;
object-fit: cover;
border-radius: 20px;
}

/************************************/
/*** 	 30. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
padding: 100px 0 70px;
}

.video-gallery-image{
height: calc(100% - 30px);
margin-bottom: 30px;
overflow: hidden;
}

.video-gallery-image a{
position: relative;
display: block;
cursor: none;
}

.video-gallery-image a::before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--primary-color);
border-radius: 20px;
opacity: 0%;
visibility: hidden;
width: 100%;
height: 100%;
z-index: 1;
transform: scale(0);
transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
opacity: 40%;
visibility: visible;
transform: scale(1);
}

.video-gallery-image a::after{
content: '\f04b';
font-family: "Lora", sans-serif;
position: absolute;
top: 50%;
left: 50%;
right: 0;
transform: translate(-50%, -50%);
font-size: 20px;
background: var(--accent-color);
color: var(--white-color);
border-radius: 50%;
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.5s ease-in-out;
z-index: 1;
}

.video-gallery-image:hover a::after{
opacity: 1;
visibility: visible;
}

.video-gallery-image img{
width: 100%;
aspect-ratio: 1 / 0.829;
object-fit: cover;
border-radius: 20px;
}

/************************************/
/*** 	  31. FAQs Page css 	  ***/
/************************************/

.page-faqs{
padding: 100px 0;
}

.page-faqs .page-faq-accordion{
margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
margin-bottom: 0px;
}

/************************************/
/***    32. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
padding: 100px 0 50px;
}

.contact-us-box{
display: flex;
flex-wrap: wrap;
gap: 30px;
background-color: var(--secondary-color);
border-radius: 20px;
padding: 40px;
}

.contact-us-content{
width: calc(50% - 15px);
background-color: var(--white-color);
border-radius: 20px;
padding: 40px;
}

.contact-info-item{
display: flex;
align-items: center;
border-bottom: 1px solid var(--divider-color);
margin-bottom: 40px;
padding-bottom: 40px;
}

.contact-info-item:last-child{
margin-bottom: 0px;
padding-bottom: 0px;
border-bottom: none;
}

.contact-info-item .icon-box{
position: relative;
height: 60px;
width: 60px;
background-color: var(--accent-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 25px;
}

.contact-info-item .icon-box::before{
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--primary-color);
border-radius: 50%;
width: 100%;
height: 100%;
transform: scale(0);
transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
transform: scale(1);
}

.contact-info-item .icon-box img{
position: relative;
width: 100%;
max-width: 30px;
z-index: 1;
}

.contact-item-content{
width: calc(100% - 85px);
}

.contact-item-content p{
text-transform: capitalize;
margin-bottom: 5px;
}

.contact-item-content h3{
font-size: 20px;
}

.contact-item-content h3 a{
color: inherit;
transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover{
color: var(--accent-color);
}

.contact-us-image{
position: relative;
width: calc(50% - 15px);
}

.contact-us-img{
height: 100%;
}

.contact-us-img figure{
height: 100%;
display: block;
border-radius: 20px;
}

.contact-us-img img{
width: 100%;
height: 100%;
aspect-ratio: 1 / 1.24;
object-fit: cover;
border-radius: 20px;
}

.working-hours-box{
position: absolute;
bottom: 30px;
left: 30px;
background-color: var(--dark-divider-color);
border: 1px solid var(--dark-divider-color);
border-radius: 20px;
padding: 30px;
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
z-index: 1;
}

.working-hours-header{
margin-bottom: 30px;
}

.working-hours-header h3{
color: var(--white-color);
font-size: 20px;
text-transform: capitalize;
}

.working-hours-body ul{
list-style: none;
margin: 0;
padding: 0;
}

.working-hours-body ul li{
font-size: 16px;
color: var(--white-color);
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px 70px;
margin-bottom: 20px;
}

.working-hours-body ul li:last-child{
margin-bottom: 0;
}

.contact-form-map{
padding: 50px 0 100px;
}

.contact-form-box{
display: flex;
flex-wrap: wrap;
border-radius: 20px;
overflow: hidden;
}

.contact-form-box .contact-us-form,
.google-map{
width: 50%;
}

.contact-us-form{
background-color: var(--primary-color);
padding: 40px;
}

.contact-us-form .section-title h2,
.contact-us-form .section-title p{
color: var(--white-color);
}

.contact-form form .form-control{
font-size: 16px;
font-weight: 400;
line-height: 1.5em;
color: var(--text-color);
background-color: var(--white-color);
border: none;
border-radius: 20px;
padding: 18px 20px;
outline: none;
box-shadow: none;
}

.contact-form form .form-control::placeholder{
color: var(--text-color);
}

.contact-form form .btn-default{
width: 100%;
padding: 17px;
}

.contact-form form .btn-default::before{
display: none;
}

.google-map iframe{
width: 100%;
height: 100%;
}

/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/

.error-page{
padding: 100px 0;
}

.error-page-image{
text-align: center;
margin-bottom: 30px;
}

.error-page-image img{
width: 100%;
max-width: 50%;
}

.error-page-content{
text-align: center;
}

.error-page-content .section-title{
margin-bottom: 15px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1820px){

.bg-section{
max-width: calc(100% - 40px);
margin: 0 20px;
}

.hero-content-box .section-title{
margin-right: 0;
}

.main-footer{
margin-bottom: 20px;
}
}


@media only screen and (max-width: 1024px){

.main-menu ul li{
margin: 0;
}
}

@media only screen and (max-width: 991px){

.btn-default{
padding: 15px 40px 15px 15px;
}

.btn-default::before{
right: 15px;
width: 18px;
height: 18px;
}

.btn-default.btn-border{
padding: 14px 40px 14px 15px;
}

.navbar{
padding: 20px 0;
}

.slicknav_nav li,
.slicknav_nav ul{
display: block;
}

.responsive-menu,
.navbar-toggle{
display: block;
}

.header-btn{
display: none;
}

.bg-section{
max-width: 100%;
border-radius: 0;
margin: 0;
}

.section-row{
margin-bottom: 40px;
}

.section-row .section-title.section-title-center{
max-width: 100%;
}

.section-content-btn .section-btn{
margin-top: 20px;
}

.section-title{
margin-bottom: 30px;
}

.section-title h3{
padding: 6px 14px 6px 26px;
}

.section-title h3::before{
left: 14px;
}

.section-title h1{
font-size: 45px;
}

.section-title h2{
font-size: 36px;
}

.section-title p{
margin-top: 10px;
}

.section-title-content{
margin-top: 10px;
}

.section-btn{
text-align: left;
margin-top: 15px;
}

.hero{
padding: 140px 0 50px;
}

.hero-content{
margin-bottom: 30px;
}

.hero-content .section-title p{
max-width: 100%;
}

.hero-content-body{
margin-bottom: 30px;
padding-bottom: 30px;
}

.hero-images{
max-width: 80%;
margin: 0 auto;
}

.cta-contact-box{
padding: 30px 0 0;
}

.cta-contact-box .cta-contact-item{
padding: 0;
}

.about-us{
padding: 50px 0;
}

.about-us-image{
margin: 0 0 30px;
}

.about-img figure img{
aspect-ratio: 1 / 0.7;
}

.company-experience-content h3{
font-size: 26px;
}

.about-us-body{
margin-bottom: 30px;
padding-bottom: 30px;
}

.our-service{
padding: 50px 0 20px;
}

.service-item{
padding: 20px;
}

.why-choose-us{
padding: 10px 0;
}

.why-choose-us .why-choose-us-box{
padding: 0;
}

.why-choose-box-1{
border-radius: 20px 20px 0 0px;
}

.why-choose-box-2{
border-radius: 0 0 20px 20px;
}

.why-choose-item{
padding: 30px;
}

.why-choose-content{
max-width: 100%;
}

.why-choose-box-2 .why-choose-item{
flex-direction: row;
text-align: left;
}

.why-choose-box-2 .why-choose-item .icon-box{
margin-right: 18px;
margin-left: 0px;
}

.why-choose-image{
display: none;
}

.our-process{
padding: 50px 0;
}

.our-process-content{
margin: 0 0 30px;
}

.our-process-item{
margin-bottom: 40px;
}

.our-process-item::before{
transform: translate(35px, 80%);
}

.our-process-item .icon-box{
width: 70px;
height: 70px;
margin: 12px 32px 0 0;
}

.our-process-item .icon-box:before{
font-size: 14px;
width: 28px;
height: 28px;
}

.our-process-item .icon-box img{
max-width: 40px;
}

.process-item-content{
width: calc(100% - 102px);
}

.case-study{
padding: 50px 0 20px;
background-color: #F1F5FD;
padding-bottom: 50px;
}

.case-study-item{
height: calc(100% - 30px);
margin-bottom: 30px;
}

.case-study-image{
margin-bottom: 15px;
}

.case-study-content h2{
font-size: 18px;
}

.cta-box{
padding: 50px 0 0;
}

.cta-box-list ul li{
padding-left: 22px;
}

.cta-box-list ul li::before{
font-size: 16px;
}

.cta-box-btn{
margin-top: 30px;
}

.cta-box-btn::before{
top: 0;
width: 90px;
height: 42px;
}

.our-specialized{
padding: 50px 0;
}

.specialized-content{
margin-bottom: 30px;
}

.specialized-content .section-title{
padding-bottom: 30px;
margin-bottom: 30px;
}

.specialized-list-title{
margin-bottom: 10px;
}

.specialized-list-box{
margin-bottom: 20px;
}

.specialized-image{
max-width: 80%;
margin: 0 auto;
}

.our-testimonials{
padding: 50px 0;
}

.testimonial-item{
padding: 30px;
}

.testimonial-quote,
.testimonial-content{
margin-bottom: 20px;
}

.testimonial-quote img{
max-width: 40px;
}

.testimonial-btn{
margin-top: 20px;
}

.our-team{
padding: 50px 0 20px;
}

.team-image img{
aspect-ratio: 1 / 1.08;
}

.team-body{
right: 20px;
bottom: 20px;
left: 20px;
transform: translateY(20px);
}

.team-content p{
margin-bottom: 5px;
}

.team-item:hover .team-social-list{
margin-top: 15px;
}

.our-faqs{
padding: 50px 0;
}

.faqs-images{
margin: 0 0 30px;
}

.faq-accordion .accordion-item{
border-radius: 14px;
margin-bottom: 20px;
}

.faq-accordion .accordion-header .accordion-button,
.faq-accordion .accordion-item .accordion-body{
padding: 15px 40px 15px 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
right: 15px;
font-size: 18px;
}

.our-blog{
padding: 50px 0 20px;
}

.post-featured-image{
margin-bottom: 15px;
}

.post-item-content{
margin-bottom: 15px;
}

.main-footer{
padding: 50px 0 0;
margin-bottom: 0;
}

.about-footer{
margin: 0 0 30px;
}

.footer-logo{
margin-bottom: 30px;
}

.footer-social-link{
margin-top: 40px;
}

.footer-copyright{
padding: 30px 0;
}

.page-header{
padding: 170px 0 80px;
}

.page-header-box h1{
font-size: 45px;
}

.our-approach{
padding: 50px 0;
}

.our-approach-content{
position: initial;
margin-bottom: 30px;
}

.mission-vision-item{
padding: 20px;
margin-bottom: 20px;
}

.our-innovation{
padding: 50px 0;
}

.our-innovation-content{
margin: 0 0 30px;
}

.skills-progress-bar{
margin-bottom: 30px;
}

.skills-progress-bar .skill-data{
margin-bottom: 15px;
}

.our-innovation-image{
max-width: 80%;
margin: 0 auto;
}

.customer-review-box{
width: 230px;
padding: 12px 15px;
}

.customer-review-box .icon-box{
margin-right: 10px;
}

.customer-review-box .icon-box i{
font-size: 30px;
}

.customer-review-box-content{
width: calc(100% - 40px);
}

.customer-review-box-content h2{
font-size: 20px;
}

.our-expertise{
padding: 50px 0;
}

.our-expertise-content{
margin: 0 0 30px;
}

.expertise-item{
margin-bottom: 20px;
}

.expertise-item .icon-box{
width: 50px;
height: 50px;
margin-right: 15px;
}

.expertise-item .icon-box img{
max-width: 28px;
}

.expertise-item-content{
width: calc(100% - 65px);
}

.expertise-counter-box{
padding: 20px;
}

.expertise-counter-content h2{
font-size: 36px;
}

.expertise-counter-list ul li{
padding-left: 25px;
margin-bottom: 10px;
}

.expertise-counter-list ul li::before{
font-size: 16px;
}

.our-expertise-image figure img{
aspect-ratio: 1 / 0.7;
}

.page-services{
padding: 50px 0 20px;
}

.page-service-single{
padding: 50px 0;
}

.page-single-sidebar{
position: initial;
margin: 0 0 30px;
}

.page-category-list{
margin-bottom: 30px;
}

.page-category-list h3,
.page-category-list ul{
padding: 15px 30px;
}

.page-category-list ul li{
margin-bottom: 15px;
padding-bottom: 15px;
}

.sidebar-cta-box{
padding: 30px;
}

.sidebar-cta-logo{
margin-bottom: 40px;
}

.page-single-image{
margin-bottom: 30px;
}

.service-entry{
margin-bottom: 40px;
}

.service-entry p{
margin-bottom: 15px;
}

.service-entry h2{
font-size: 36px;
margin-bottom: 15px;
}

.service-entry ul li{
padding-left: 25px;
margin-bottom: 10px;
}

.service-entry ul li::before{
font-size: 16px;
}

.service-discover-box,
.service-result-box,
.service-partnership-box{
margin-top: 40px;
}

.service-discover-list{
margin-top: 30px;
}

.service-discover-list ul{
gap: 20px;
}

.service-discover-list ul li{
width: calc(50% - 10px);
font-size: 14px;
border-radius: 12px;
padding: 12px 12px 12px 35px;
margin-bottom: 0;
}

.service-discover-list ul li::before{
top: 14px;
left: 12px;
}

.service-discover-image-content{
gap: 20px;
margin-top: 30px;
}

.service-discover-image,
.service-discover-content{
width: calc(50% - 10px);
}

.service-result-box ul{
margin-top: 30px;
}

.service-result-list{
margin-top: 30px;
padding: 30px;
}

.service-result-item{
margin-bottom: 30px;
padding-bottom: 30px;
}

.service-partnership-image{
margin-top: 30px;
}

.page-blog{
padding: 50px 0;
}

.page-blog .post-item{
height: calc(100% - 30px);
margin-bottom: 30px;
}

.page-pagination{
margin-top: 10px;
}

.page-single-post{
padding: 50px 0;
}

.post-image{
margin-bottom: 20px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
margin: 0 0 0.42em;
}

.post-entry h2{
font-size: 36px;
}

.post-entry p{
margin-bottom: 15px;
}

.post-entry ol li,
.post-entry ul li{
margin-bottom: 10px;
}

.post-entry blockquote{
background-position: 20px 20px;
background-size: 40px;
padding: 20px 20px 20px 70px;
margin-bottom: 20px;
}

.post-entry blockquote p{
font-size: 18px;
}

.post-tags{
margin-bottom: 20px;
}

.tag-links{
gap: 10px;
}

.post-tags .tag-links a{
padding: 10px 15px;
}

.post-social-sharing ul{
text-align: left;
}

.page-case-study{
padding: 50px 0 20px;
}

.page-case-study-single{
padding: 50px 0;
}

.case-study-entry{
margin-bottom: 40px;
}

.case-study-entry p{
margin-bottom: 15px;
}

.case-study-entry h2{
font-size: 36px;
margin-bottom: 15px;
}

.case-study-entry ul li{
padding-left: 25px;
margin-bottom: 10px;
}

.case-study-entry ul li::before{
font-size: 16px;
}

.empowering-agriculture-box,
.field-trials-box,
.shaping-future-box{
margin-top: 40px;
}

.empowering-box-list{
margin-top: 30px;
}

.empowering-box{
padding: 30px;
margin-bottom: 30px;
}

.empowering-item{
margin-bottom: 30px;
}

.empowering-item .icon-box{
margin-right: 15px;
}

.empowering-item .icon-box img{
max-width: 50px;
}

.empowering-item-content{
width: calc(100% - 65px);
}

.field-trials-step-list{
gap: 30px;
margin-top: 30px;
}

.field-trials-step-no{
height: 50px;
width: 50px;
margin-right: 15px;
}

.field-trials-step-no h3{
font-size: 20px;
}

.field-trials-content{
width: calc(100% - 65px);
}

.field-trials-content h3{
font-size: 18px;
margin-bottom: 10px;
padding-bottom: 10px;
}

.shaping-future-image-content{
margin-top: 30px;
padding: 30px;
}

.shaping-future-item{
margin-top: 20px;
}

.page-team{
padding: 50px 0 20px;
}

.page-team-single{
padding: 50px 0;
}

.team-about-box,
.team-member-skill-box{
margin-bottom: 40px;
}

.team-single-image,
.team-about-content{
width: 100%;
}

.team-single-image img{
height: auto;
aspect-ratio: 1 / 0.85;
}

.team-about-content{
padding: 30px;
}

.member-social-list{
margin-bottom: 30px;
}

.team-contact-item .icon-box{
width: 50px;
height: 50px;
margin-right: 15px;
}

.team-contact-item .icon-box img{
max-width: 24px;
}

.team-contact-content{
width: calc(100% - 65px);
}

.team-member-skill-box,
.team-member-contact-box{
gap: 30px;
padding: 30px;
}

.team-skill-content,
.team-skill-list{
width: 100%;
}

.team-member-contact-info,
.team-member-contact-box .contact-us-form{
width: 100%;
}

.team-member-contact-info .section-title{
position: initial;
}

.page-pricing{
padding: 50px 0 20px;
}

.pricing-item{
padding: 30px;
}

.pricing-header{
margin-bottom: 20px;
padding-bottom: 20px;
}

.pricing-price{
margin-bottom: 30px;
}

.pricing-price h2{
font-size: 28px;
margin-bottom: 15px;
}

.pricing-price h2 sub{
font-size: 18px;
}

.pricing-list ul li{
margin-bottom: 15px;
}

.page-testimonials{
padding: 50px 0 20px;
}

.page-gallery{
padding: 50px 0 20px;
}

.page-video-gallery{
padding: 50px 0 20px;
}

.page-faqs{
padding: 50px 0;
}

.page-faqs .page-faq-accordion{
margin-bottom: 40px;
}

.page-contact-us{
padding: 50px 0 25px;
}

.contact-us-box{
padding: 30px;
}

.contact-us-content,
.contact-us-image{
width: 100%;
}

.contact-us-content{
padding: 30px;
}

.contact-info-item{
margin-bottom: 30px;
padding-bottom: 30px;
}

.contact-info-item .icon-box{
margin-right: 15px;
}

.contact-item-content{
width: calc(100% - 75px);
}

.contact-us-img img{
aspect-ratio: 1 / 0.9;
}

.working-hours-box{
bottom: 20px;
left: 20px;
padding: 20px;
}

.working-hours-header{
margin-bottom: 20px;
}

.contact-form-map{
padding: 25px 0 50px;
}

.contact-form-box .contact-us-form,
.google-map{
width: 100%;
}

.contact-us-form{
padding: 30px;
}

.contact-form form .form-control{
padding: 12px 15px;
border-radius: 12px;
}

.contact-form form .btn-default{
padding: 15px;
}

.google-map iframe{
height: 450px;
}

.error-page{
padding: 50px 0;
}

.error-page-image{
margin-bottom: 20px;
}

.error-page-image img{
max-width: 80%;
}
}

@media only screen and (max-width: 767px){

.section-row{
margin-bottom: 30px;
}

.section-title h1{
font-size: 28px;
}

.section-title h2{
font-size: 26px;
}

.hero-content-footer{
gap: 15px;
}

.hero-content-footer .hero-footer-box{
width: calc(33.33% - 10px);
display: block;
}

.hero-footer-box .icon-box{
margin: 0 0 10px;
}

.hero-footer-box .hero-footer-box-content{
width: 100%;
}

.hero-footer-box .hero-footer-box-content p{
font-size: 14px;
}

.hero-images{
max-width: 100%;
gap: 15px;
}

.hero-image-box{
width: calc(33.33% - 10px);
gap: 15px;
}

.cta-contact-content h3{
font-size: 18px;
}

.about-img figure img{
aspect-ratio: 1 / 1.1;
}

.company-experience{
padding: 15px;
right: 20px;
bottom: 20px;
}

.about-us-body{
gap: 20px 15px;
margin-bottom: 20px;
padding-bottom: 20px;
}

.about-list-item{
width: calc(50% - 7.5px);
}

.about-list-item .icon-box{
margin-right: 5px;
}

.about-list-item .icon-box img{
max-width: 30px;
}

.about-list-content{
width: calc(100% - 35px);
}

.about-list-content h3{
font-size: 16px;
}

.doctor-info-item .doctor-info-content h3{
font-size: 18px;
}

.service-item .service-body h3{
font-size: 18px;
margin-bottom: 10px;
}

.why-choose-item{
padding: 20px;
}

.why-choose-content h3{
font-size: 18px;
margin-bottom: 5px;
}

.why-choose-content p{
font-size: 14px;
}

.our-process-item::before{
transform: translate(25px, 65%);
}

.our-process-item .icon-box{
margin: 12px 12px 0 0;
}

.our-process-item .icon-box figure{
width: 50px;
height: 50px;
}

.our-process-item .icon-box img{
max-width: 30px;
}

.our-process-item .icon-box:before{
width: 24px;
height: 24px;
top: -12px;
right: 6px;
}

.process-item-content{
width: calc(100% - 62px);
}

.process-item-content h3{
font-size: 18px;
margin-bottom: 5px;
}

.process-item-content p{
font-size: 14px;
}

.cta-box-list ul{
gap: 10px;
}

.cta-box-btn::before{
display: none;
}

.specialized-list-title h3{
font-size: 18px;
padding-left: 25px;
}

.specialized-list-title h3::before{
font-size: 16px;
}

.specialized-image{
max-width: 100%;
background-size: 75% auto;
gap: 20px;
}

.specialized-img-1,
.specialized-img-2{
width: calc(50% - 10px);
}

.specialized-img-2{
padding-top: 100px;
}

.expert-doctor{
max-width: 180px;
padding: 10px;
}

.expert-doctor .icon-box{
width: 45px;
height: 45px;
margin-right: 10px;
}

.expert-doctor .icon-box img{
max-width: 26px;
}

.expert-doctor-content{
width: calc(100% - 55px);
}

.expert-doctor-content h3{
font-size: 18px;
margin-bottom: 0px;
}

.expert-doctor-content p{
font-size: 14px;
}

.testimonial-item{
/* padding: 20px; */
}

.author-content h3{
font-size: 18px;

}

.faqs-images{
gap: 20px;
}

.faqs-img-2,
.faqs-img-1{
width: calc(50% - 10px);
}

.faqs-img-2 figure img{
aspect-ratio: 1 / 1.86;
}

.need-help-box{
padding: 10px 12px;
margin-top: 20px;
}

.need-help-box .icon-box{
margin-right: 10px;
}

.need-help-box .icon-box img{
max-width: 30px;
}

.need-help-content{
width: calc(100% - 40px);
}

.need-help-content p{
font-size: 14px;
}

.faq-accordion .accordion-header .accordion-button{
font-size: 18px;
padding: 12px 40px 12px 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
font-size: 16px;
}

.faq-accordion .accordion-item .accordion-body{
padding: 12px 15px;
}

.faq-accordion .accordion-item .accordion-body p{
font-size: 14px;
}

.footer-logo{
margin-bottom: 15px;
text-align: center;
padding-bottom: 30px;
}
}

.footer-links{
margin-bottom: 30px;
}

.footer-links h3{
font-size: 16px;
margin-bottom: 15px;
}

.footer-links ul li{
margin-bottom: 10px;
}

.footer-contact-item{
margin-bottom: 0px;
}

.footer-social-link{
margin-top: 20px;
}

.footer-social-link ul{
margin: 0 10px;
}

.footer-social-link ul li{
margin-right: 15px;
}

.footer-copyright{
padding: 15px 0;
}

.footer-copyright-text{
text-align: center;
margin-bottom: 10px;
}

.footer-terms-condition ul{
justify-content: center;
}

.page-header-box h1{
/* font-size: 28px; */
margin-bottom: 10px;
}

.mission-vision-header{
gap: 15px;
}

.mission-vision-header .icon-box img{
max-width: 35px;
}

.mission-vision-title{
width: calc(100% - 50px);
}

.mission-vision-title h3{
font-size: 18px;
}

.skills-progress-bar{
margin-bottom: 20px;
}

.skills-progress-bar .skill-data{
margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
font-size: 16px;
}

.skills-progress-bar .skillbar .skill-progress{
height: 14px;
}

.our-innovation-image{
max-width: 100%;
padding: 0 30px 55px 0;
}

.our-innovation-img-2{
max-width: 170px;
border-width: 5px;
}

.customer-review-box{
width: 190px;
bottom: 0;
}

.customer-review-box .icon-box i{
font-size: 20px;
}

.customer-review-box-content{
width: calc(100% - 32px);
}

.customer-review-box-content h2{
font-size: 18px;
}

.customer-review-box-content p{
font-size: 14px;
}

.expertise-counter-box,
.expertise-item-box{
width: 100%;
}

.expertise-item-content h3{
font-size: 18px;
}

.expertise-counter-content h2{
width: 80px;
font-size: 26px;
}

.expertise-counter-content p{
width: calc(100% - 80px);
}

.our-expertise-image img{
aspect-ratio: 1 / 0.99;
}

.expertise-contact-box{
bottom: 15px;
left: 15px;
right: 15px;
max-width: calc(100% - 30px);
border-radius: 12px;
padding: 10px;
}

.expertise-contact-box .icon-box{
width: 45px;
height: 45px;
margin-right: 15px;
}

.expertise-contact-content{
width: calc(100% - 60px);
}

.expertise-contact-content h3{
font-size: 18px;
}

.our-expertise-image figure img{
aspect-ratio: 1 / 0.9;
}

.page-category-list h3,
.page-category-list ul,
.sidebar-cta-box{
padding: 20px;
}

.page-category-list h3{
font-size: 18px;
}

.page-single-image{
margin-bottom: 20px;
}

.service-entry h2{
font-size: 26px;
}

.service-discover-list ul{
gap: 10px;
}

.service-discover-list ul li{
width: 100%;
padding: 8px 12px 8px 35px;
}

.service-discover-list ul li::before{
top: 10px;
}

.service-discover-image,
.service-discover-content{
width: 100%;
}

.service-discover-content .why-choose-item{
padding: 0 0 15px;
margin-bottom: 15px;
}

.service-result-list{
padding: 20px;
}

.service-result-item{
margin-bottom: 20px;
padding-bottom: 20px;
}

.service-result-item .icon-box{
width: 50px;
height: 50px;
margin-right: 15px;
}

.service-result-item .icon-box img{
max-width: 26px;
}

.service-result-content{
width: calc(100% - 65px);
}

.service-result-content h3{
font-size: 18px;
margin-bottom: 5px;
}

.service-result-content p{
font-size: 14px;
}

.service-partnership-image{
margin-top: 20px;
}

.service-partnership-image img{
aspect-ratio: 1 / 0.54;
}

.post-single-meta ol li{
font-size: 16px;
}

.post-single-meta ol li i{
font-size: 16px;
}

.post-image img{
aspect-ratio: 1 / 0.7;
}

.post-entry blockquote{
background-position: 15px 15px;
padding: 60px 15px 15px 15px;
}

.post-entry blockquote p{
font-size: 16px;
}

.post-entry h2{
font-size: 26px;
}

.tag-links{
font-size: 18px;
}

.case-study-entry h2{
font-size: 26px;
}

.empowering-box{
padding: 20px;
}

.empowering-item{
margin-bottom: 20px;
}

.empowering-item-content h3{
font-size: 18px;
margin-bottom: 5px;
}

.field-trials-step-item{
width: 100%;
}

.shaping-future-image-content{
padding: 20px;
}

.shaping-future-content,
.shaping-future-image{
width: 100%;
}

.shaping-future-item h3{
width: calc(45% - 5px);
font-size: 18px;
margin-right: 5px;
padding-right: 5px;
}

.shaping-future-item p{
width: 56%;
}

.team-single-image img{
aspect-ratio: 1 / 1.2;
}

.team-about-content{
padding: 20px;
}

.member-social-list{
margin-bottom: 20px;
}

.team-contact-content h3{
font-size: 18px;
}

.team-member-skill-box,
.team-member-contact-box{
padding: 20px;
}

.pricing-item{
padding: 20px;
}

.pricing-header{
margin-bottom: 15px;
padding-bottom: 15px;
}

.pricing-header h3{
font-size: 18px;
}

.pricing-body{
gap: 20px;
}

.pricing-price{
margin-bottom: 20px;
}

.pricing-price h2{
font-size: 22px;
margin-bottom: 10px;
}

.pricing-price h2 sub{
font-size: 14px;
}

.pricing-list ul li{
margin-bottom: 10px;
}

.contact-us-box{
padding: 20px;
}

.contact-us-content{
padding: 20px;
}

.contact-info-item{
margin-bottom: 20px;
padding-bottom: 20px;
}

.contact-info-item .icon-box{
height: 50px;
width: 50px;
}

.contact-info-item .icon-box img{
max-width: 26px;
}

.contact-item-content{
width: calc(100% - 65px);
}

.contact-item-content h3{
font-size: 18px;
}

.contact-us-img img{
aspect-ratio: 1 / 1.1;
}

.working-hours-header h3{
font-size: 18px;
}

.working-hours-box{
bottom: 15px;
left: 15px;
padding: 15px;
}

.working-hours-body ul li{
font-size: 14px;
gap: 10px 20px;
margin-bottom: 10px;
}

.contact-us-form{
padding: 20px;
}

.google-map iframe{
height: 350px;
}
}

.brand-section {
padding: 15px 0; /* top-bottom padding */
/* background: #F1F5FD; */
}
.client-head {
text-transform: uppercase;
margin-bottom: 10px;
margin-top: 20px;
padding-bottom: 30px;
}
.client-head h2{
color: #0c6dac;
}

.brand-carousel .slide-item {
padding: 15px; /* space between logos */
list-style: none;
}

.brand-carousel img {
max-width: 100%;
height: auto;
padding: 10px; /* inner padding */
border-radius: 8px;
background: #fff; /* optional: clean background */
box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow */
}




.hero {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}

.background-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


.bg-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
display: flex;
align-items: center;
padding: 0 50px;
}


.bg-slide.active {
opacity: 1;
transition: opacity 1.2s ease;
}

/* Slide image */
.slide-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

/* Gradient overlays */
.gradient-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
}

.gradient-1 {
background: rgba(0,0,0,0); /* no gradient needed if first slide is plain */
}

.gradient-2 {
background: linear-gradient(
345deg,
rgba(24, 78, 119, 0.75) 0%,
rgba(10, 35, 80, 0.7) 40%,
rgba(200, 220, 255, 0.3) 100%
);
}

.gradient-3 {
background: linear-gradient(
135deg,
rgba(10, 45, 70, 0.75),
rgba(30, 60, 90, 0.65)
);
}

.hero-content {
position: relative;
z-index: 3; /* above image and gradient */
}


.bg-slide.active .hero-content {
opacity: 1 !important;
transition: opacity 1.2s ease;
}

.hero-content {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
justify-content: center;
padding-top: 50px;
padding-left: 80px;
max-width: 1200px;
}

.hero-content h1 {
color: white;
font-size: 45px;;
font-weight: 550;
line-height: 60px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
text-transform: uppercase;
}

.hero-underline {
width: 120px;
height: 4px;
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);
margin-bottom: 15px;
}

.hero-content p {
color: white;
font-size: 16px;
line-height: 28px;
max-width: 540px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
font-family: 'Montserrat', sans-serif;
}

.hero-nav {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 30px;
transform: translateY(-50%);
z-index: 20;
pointer-events: none;
}

.nav-btn {
pointer-events: all;
width: 55px;
height: 55px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(0,0,0,0.2);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all .3s ease;
}

.nav-btn i {
color: white;
font-size: 20px;
pointer-events: none;
}

.nav-btn:hover {
background: rgba(255, 255, 255, 0.25);
transform: scale(1.1);
}


/* ===RESPONSIVE MEDIA QUERIES=== */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
header {
padding: 20px 40px;
}

nav {
/* gap: 30px; */
}

.hero-content {
padding: 0 40px;
max-width: 1000px;
}

.hero-content h1 {
font-size: 34px;
line-height: 43px;
}

.hero-content p {
font-size: 22px;
max-width: 800px;
}
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
header {
padding: 18px 35px;
}

nav {
gap: 25px;
}

nav a {
font-size: 13px;
}

.contact-btn {
padding: 10px 24px;
font-size: 13px;
}

.logo-icon {
width: 45px;
height: 45px;
}

.hero-content {
padding: 0 20px;
}

.hero-content h1 {
font-size: 35px;
}

.hero-content p {
font-size: 20px;
max-width: 700px;
}

.hero-underline {
width: 100px;
margin-bottom: 35px;
}
}



/* Landscape Orientation for Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
.hero {
min-height: 100vh;
}

.hero-content {
justify-content: center;
padding: 80px 20px 20px;
}

.hero-content h1 {
font-size: 32px;
margin-bottom: 10px;
}

.hero-content p {
font-size: 14px;
line-height: 1.4;
}

.hero-underline {
width: 60px;
height: 2px;
margin-bottom: 15px;
}

header {
padding: 10px 20px;
}

.logo-icon {
width: 30px;
height: 30px;
}

.contact-btn {
padding: 6px 12px;
font-size: 10px;
}
}

/* Very Large Screens (1920px+) */
@media (min-width: 1920px) {
header {
padding: 25px 80px;
}

.hero-content {
padding: 0 80px;
max-width: 1400px;
line-height:89px;
}

.hero-content h1 {
font-size: 84px;
}

.hero-content p {
font-size: 28px;
max-width: 1100px;
}

.hero-underline {
width: 140px;
height: 5px;
}
}
/* ===HERO SECTION END=== */

.containerr {
display: flex;
align-items: center;
max-width: 1400px;
margin: 0 auto;
padding: 60px 20px;
gap: 40px;
}

/* Image Section - Left Side */
.image-wrapper {
flex: 1;
min-width: 300px;
max-width: 524px;
display: flex;
justify-content: center;
width: 50%;
margin-right: 35px;
}

.benzene-structure {
position: relative;
width: 100%;
max-width: 524px;
height: 480px;
display: flex;
justify-content: center;
align-items: center;
}

/* Correct vertical hexagon shape (sharp top/bottom) */
.benzene-ring {
position: absolute;
width: 220px;
height: 250px;
clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);
background-size: 200% 200%;
animation: gradient-animation 5s ease infinite;
padding: 6px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}

/* Image inside the hexagon */
.benzene-ring img {
width: 100%;
height: 100%;
object-fit: cover;
clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
transition: transform 0.3s ease, filter 0.3s ease;
}

.benzene-ring:hover img {
transform: scale(1.05);
filter: brightness(1.1);
}

/* Layout Positions - perfectly spaced and non-overlapping */
.ring-top {
top: 0;
left: 50%;
transform: translate(-50%, 0);
}
.ring-top-2{
top: 0;
right:-9% ;
}

.ring-bottom-left {
bottom: 40px;
left: 10%;
}

.ring-bottom-right {
bottom: 40px;
right: 10%;
}

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

/* Text Content - Right Side */
.content {
width: 50%;
flex: 1;
margin-left: 35px;
}

.logo {
display: flex;
gap: 8px;
margin-bottom: 15px;
font-size: 24px;
font-weight: 600;
letter-spacing: 2.88px;
line-height: 120%;
color: #0c6dac;
text-transform: uppercase;
}
.logo-2{
gap: 8px;
margin-bottom: 15px;
font-size: 24px;
font-weight: 600;
letter-spacing: 2.88px;
line-height: 120%;
color: #0c6dac;
text-transform: uppercase;
}

.logo img {
height: 58px;
}

.section-title {
font-size: 29px;
font-weight: 600;
color: black;
margin-bottom:15px;
line-height: 45px;
text-transform: uppercase;
}

.highlight {
color: #0c6dac;
}

.description {
font-size: 16px;
color: black;
margin-bottom: 15px;
font-family: 'Montserrat', sans-serif;
}

.description span {
color: #0c6dac;
font-weight: 600;
}

.contact-btn {
background-color: #0c6dac;
color: white;
border: none;
padding: 12px 30px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 20px;
transition: background-color 0.3s;
}

.contact-btn:hover {
background-color: #094f7a;
}

/* Responsive */
@media (max-width: 992px) {
.section-title {
font-size: 28px;
}
}

@media (max-width: 768px) {
.containerr {
flex-direction: column;
text-align: center;
padding: 15px;
padding-bottom: 50px;
}

.image-wrapper,
.content {
max-width: 100%;
width: 100%;
margin: 0;
}

.benzene-structure {
height: 360px;
}

.benzene-ring {
width: 160px;
height: 180px;
}

.ring-bottom-left {
left: 5%;
bottom: 20px;
}

.ring-bottom-right {
right: 17%;
bottom: 5%;
}

.section-title {
font-size: 26px;
}
}

@media (max-width: 480px) {
.section-title {
font-size: 18px;
padding-left: 15px;
line-height: 30px;
}

.description {
font-size: 15px;
}

/*.benzene-ring {*/
/*width: 130px;*/
/*height: 140px;*/
/*}*/
}

/* Relative container for wave */
.containerr {
position: relative;
overflow: hidden;
}

.research-container {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
/* flex-wrap: wrap; */
padding: 40px;
}

.image-card {
position: relative;
width: 350px;
height: 450px;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
cursor: pointer;
transition: transform 0.3s ease;
}

.image-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.contentt {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
padding: 20px;
text-align: center;
background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contentt h3 {
color: #ffffff;
margin: 0;
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
transform: translateY(60px);
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
font-family: 'Montserrat', sans-serif;
}

.line {
width: 55px;
height: 3px;
background: #FAC000;
margin-bottom: 15px;
transform: translateY(60px) scaleX(1);
transform-origin: center;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.more {
opacity: 0;
transform: translateY(20px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
font-family: 'Montserrat', sans-serif;
}

.more p {
margin: 0 0 20px 0;
font-size: 16px;
line-height: 1.5;
}

.image-card:hover .contentt {
background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.3) 100%);
}

.image-card:hover .contentt h3 {
transform: translateY(0);
}

.image-card:hover .line {
transform: translateY(0) scaleX(1.3);
}

.image-card:hover .more {
opacity: 1;
transform: translateY(0);
}
.t-i{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap:10px;
position: relative;
/* margin-bottom: 30px; */
}
.w-head{ margin-bottom: 30px;}
.t-i h2{
font-size: 34px;
font-weight: 600;
line-height: 1.2em;
letter-spacing: 0.6px;
}

.t-i h2::after {
content: '';
position: absolute;
bottom: -10px; /* adjust distance from text */
left: 50%;
transform: translateX(-50%);
width: 100px; /* underline width */
height: 4px; /* underline thickness */
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);
border-radius: 2px; /* optional, for rounded edges */
}
.inn{
color: #041424 !important;
}
/*====GLOBAL LOCATION START==== */
.global {
position: relative;
padding: 100px 5% 80px;
overflow: hidden;
}

.global > div {
position: relative;
z-index: 1;
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: 80px;
align-items: center;
}

/* Left Side: Text */
.text-content {
padding-right: 20px;
}

.g-head {
text-transform: uppercase;
margin-bottom: 10px;
margin-top: 20px;

}
.g-head h2{
color: #0c6dac;
}



.global h3 {
font-family: 'Montserrat', sans-serif;
font-size: 26px;
font-weight: 550;
line-height: 42px;
letter-spacing: 2px;
text-transform: uppercase;
margin: 0;
padding: 0;
}

.global span {
color: #0C6DAC;
position: relative;
display: inline-block;
}

/*        .global span::before {
content: '';
position: absolute;
bottom: 6px;
left: 0;
width: 0;
height: 2px;
background: #0c6dac;
transition: width 0.6s ease;
}*/

.global span:hover::before {
width: 100%;
}

/* Right Side: Image with Modern Card Effect */
.g-img {
position: relative;
padding: 0;
perspective: 1000px;
}

.g-img::before {
content: '';
position: absolute;
top: -25px;
left: -25px;
right: 25px;
bottom: 25px;
background: linear-gradient(45deg, rgba(12,109,172,0.1), rgba(12,109,172,0.04));
border-radius: 28px;
z-index: -1;
transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 0 15px 30px rgba(12,109,172,0.08);
}

.g-img:hover::before {
top: -30px;
left: -30px;
right: 20px;
bottom: 20px;
box-shadow: 0 35px 70px rgba(12,109,172,0.2);
transform: translateZ(20px);
}

.g-img img {
width: 100%;
height: auto;
max-width: 1100px;
border-radius: 24px;
object-fit: cover;
display: block;
box-shadow: 0 20px 45px rgba(0,0,0,0.12);
transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
transform: translateZ(0);
}

.g-img:hover img {
transform: translateY(-12px) scale(1.02);
box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
.global > div {
grid-template-columns: 1fr;
gap: 50px;
text-align: center;
}

.text-content {
padding-right: 0;
}



.global h3 {
font-size: 24px;
line-height: 38px;
}

.g-img::before {
display: none;
}

.g-img img {
border-radius: 18px;
}
}

@media (max-width: 576px) {
.global {
padding: 26px 5% 50px;
}

.global h3 {
font-size: 16px;
line-height: 36px;
letter-spacing: 1.5px;
}

}
/*====GLOBAL LOCATION END==== */

/* =======    NEWS SECTION   ========  */

.event-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
line-height: 1.6;
}

/* === SECTION HEADER === */
.news-section {
padding: 2rem 0 3rem;
font-family: 'Montserrat', sans-serif;
}
.news-section .t-i h2{
color: #0C6DAC;
}

.section-header p {
margin-top: 1.5rem;
font-size: 1.1rem;
color: #555;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* === GRID LAYOUT === */
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
padding-bottom: 20px;
padding-top: 50px;
}

/* === CARD STYLES === */
.news-card {
background: #eaf4ff;
border-radius: 1.5rem;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
display: flex;
flex-direction: column;
}
.news-card:hover {
transform: translateY(-12px);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image Container */
.news-card__image {
position: relative;
height: 220px;
overflow: hidden;
}
.news-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
.news-card:hover .news-card__image img {
transform: scale(1.08);
}

/* Decorative Gradient Overlay */
.news-card__image::before {
content: '';
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.35s ease;
z-index: 1;
}
.news-card:hover .news-card__image::before {
opacity: 1;
}

/* Tag / Category Badge */
.news-card__tag {
position: absolute;
top: 1rem;
left: 1rem;
background: rgba(255,255,255,0.92);
color: #8e7e20;;
font-weight: 600;
font-size: 0.8rem;
padding: 0.35rem 0.75rem;
border-radius: 2rem;
backdrop-filter: blur(8px);
z-index: 2;
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* Content */
.news-card__content {
padding: 1.75rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.news-card__meta {
display: flex;
align-items: center;
gap: 1rem;
font-size: 0.85rem;
color: #666666;
margin-bottom: 0.75rem;
}
.news-card__meta .date { font-weight: 500; }
.news-card__meta .separator {
width: 4px;
height: 4px;
background: #ccc;
border-radius: 50%;
}

.news-card__title {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 600;
color: #2873a1;
margin-bottom: 0.75rem;
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.news-card__excerpt {
color: #000000;
font-size: 0.98rem;
margin-bottom: 1.25rem;
flex-grow: 1;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}

.news-card__readmore {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #a18604;
font-weight: 600;
font-size: 0.95rem;
text-decoration: none;
transition: all 0.25s ease;
align-self: flex-start;
}
.news-card__readmore svg {
width: 18px;
height: 18px;
transition: transform 0.25s ease;
}

.news-card__readmore:hover svg {
transform: translateX(4px);
}

/* === RESPONSIVE TWEAKS === */
@media (max-width: 480px) {
.news-card__image { height: 180px; }
.news-card__content { padding: 1.25rem; }
}




/* ====== NEWS SECTION END  ========  */

@media (min-width:993px){
.cn{
display: none;
}
}

.view{
text-align: right;
padding-bottom: 30px;
}
.read{
text-align: center;
padding-bottom: 40px;
}

@media (max-width:768px){
/*.ring-top{*/
/*    top: 23%;*/
/*    left: 38%;*/
/*}*/
/*.ring-top-2{*/
/*    top: 25%;*/
/*    right: 7%;*/
/*}*/
/*.ring-bottom-left{*/
/*    left: 5%;*/
/*    bottom: 20px;*/

/*}*/
/*.ring-bottom-right{*/
/*    right: 23%;*/
/*    bottom: 5%;*/
/*}*/


.t-i h2 {
font-size: 22px;
font-weight: 600;
line-height: 30px;
letter-spacing: 1px;
}
.swiper-slide{
padding-left: 15px;
}
.res{
padding-top: 57px;
}
.view{
display: none;
}
.research-container{
flex-wrap: wrap;
}
}

@media (max-width:768px) and  (min-width:471) {
.ring-top{
top:4%;
left: 37%;
}
.ring-top-2{
top: 4%;
right: 13%;
}
.ring-bottom-left{
left: 3%;
bottom: 7%;

}
.ring-bottom-right{
right: 29%;
bottom: 7%;
}
}



@media (max-width:380px){
.hero-content h1 {
font-size: 21px;
line-height: 36px;
}
.hero-content p {
font-size: 16px;
line-height: 28px;
}
/* .ring-bottom-right{*/
/*    right: 19%;*/
/*    bottom: 5%;*/
/*}*/
/* .ring-top-2{*/
/*    top: 21%;*/
/*    right: 7%;*/
/*}*/
}

@media (max-width:540px) and (min-width:344px){
.hero-content h1 {
font-size: 20px;
line-height: 32px;
min-width: 242px;
}
.hero-content p {
font-size: 14px;
line-height: 26px;
}
.section-title{
padding-top: 10px;
}
.research-containerP{
padding-top: 50px;
}

.nav-btn{
width:45px;
height:45px;
}
.nav-btn i{
font-size:16px;
}
}
@media(max-width:1100px){
.next-btn{
position: absolute;
right: 0%;
}
.prev-btn{
position: absolute;
left: 0%;
}
.main-footer a{
font-size: 14px;
} 
}
@media(max-width:1242px) and (min-width:1000px){
.footer-contact-content p a{
font-size: 12px;
}
.footer-contact-content p {
font-size: 12px;
}
.about-footer p{
font-size: 12px;
}
.footer-links a{
font-size: 12px;
}
.footer-logo img {
max-width: 180px;
}
.footer-copyright-text p{
font-size: 12px;
}
.footer-terms-condition a{
font-size: 12px;
}
.footer-terms-condition a{
font-size: 12px;
}
}



.contact-btn-1 {
font-family: 'Montserrat', sans-serif;
position: relative;
padding: 12px 30px;
background: linear-gradient(120deg, #094f7a 0%, #0b69a3 40%, #fad107 100%);
color: white;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
overflow: hidden;
z-index: 1;
transition: all 0.4s ease;
border-top-right-radius: 15px;
border-bottom-left-radius: 15px;
}

/* Animated gradient border */
.contact-btn-1::before {
content: "";
position: absolute;
inset: 0;
padding: 2px;
border-top-right-radius: 15px;
border-bottom-left-radius: 15px;
background: linear-gradient(256deg, #0c6dac, #fad000, #0c6dac);
background-size: 200% 200%;
animation: gradient-animation 5s ease infinite;
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
z-index: -1;
}

/* Hover effect */
.contact-btn-1:hover {
color: #FAD000;
background: linear-gradient(256deg, #fad000, #0c6dac, #fad000);
background-size: 200% 200%;
}

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


.testimonial-slider .swiper-slide {
height: auto !important;
display: flex;
}

@media (min-width:1101px) and (max-width:1250px){
nav a {
font-size: 12px;
font-weight: 550;
}
nav a, .dropdown > a {
font-size: 12px;
font-weight: 550;
}
.contact-btn {
padding: 12px 18px;
font-size: 12px;
}
}


@media (max-width:800px) and (min-width:768px){
.new-grid{
grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}
.global{
padding-top: 24px;
}
}
@media (min-width:801px) and (max-width:850px){
.ring-top {
top: 0;
left: 30%;
}
.ring-top-2 {
top: 0;
right: -24%;
}
.ring-bottom-left {
bottom: -37px;
left: -5%;
}
.ring-bottom-right {
bottom: -38px;
right: -24%;
}
.section-title {
font-size: 26px;
line-height: 30px;
}
.containerr{
padding-bottom: 82px;
}
.global{
padding-top: 24px;
}
.news-grid{
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}
@media (max-width:1025px) and (min-width:851px){
.news-grid{
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.ring-top {
top: 5px;
left: 38%;
transform: translate(-50%, 0);
}
.ring-top-2 {
top: 16px;
right: -13%;
}
.ring-bottom-left {
bottom: -15px;
left: -5%;
} 
.ring-bottom-right {
bottom: -15px;
right: 6%;
}
.global{
padding-top: 24px;
}
}

.m-a{
margin-top:50px !important;
}
@media (min-width:768px) and (max-width:992px){
.t-i{
margin-top:30px;
}
}

@media(max-width:360px){
.ring-top{
top:6%;
left:40%;
}
.ring-top-2{
top: 6%;
right: -7%;
}
.ring-bottom-left{
left: -4%;
bottom: 5%;

}
.ring-bottom-right{
right: 13%;
bottom: 5%;
}
}

@media (min-width:361px) and (max-width:400px){
.ring-top{
top:6%;
left:42%;
}
.ring-top-2{
top: 6%;
right: -7%;
}
.ring-bottom-left{
left: 0%;
bottom: 5%;

}
.ring-bottom-right{
right: 13%;
bottom: 5%;
}
}

@media (min-width:401px) and (max-width:440px){
.ring-top{
top:6%;
left:42%;
}
.ring-top-2{
top: 6%;
right: -1%;
}
.ring-bottom-left{
left: 0%;
bottom: 5%;

}
.ring-bottom-right{
right: 19%;
bottom: 5%;
}
}
@media (min-width:441px) and (max-width:480px){
.ring-top{
top:4%;
left:40%;
}
.ring-top-2{
top: 4%;
right: 3%;
}
.ring-bottom-left{
left: 5%;
bottom: 5%;

}
.ring-bottom-right{
right: 20%;
bottom: 5%;
}
}
@media (min-width:481px) and (max-width:520px){
.ring-top{
top: 5%;
left: 35%;
}
.ring-top-2{
top: 5%;
right: 18%
}
.ring-bottom-left{
left: 5%;
bottom: 5%;

}
.ring-bottom-right{
right: 32%;
bottom: 5%;
}
}
@media (min-width:521px) and (max-width:768px){
.ring-top{
top: 6%;
left: 46%;
}
.ring-top-2{
top: 6%;
right: 7%
}
.ring-bottom-left{
left: 14%;
bottom: 5%;

}
.ring-bottom-right{
right: 22%;
bottom: 5%;
}
}
@media (min-width:769px) and (max-width:800px){


.ring-top {
top: -10%;
left: 32%;
}

.ring-top-2{
top: -10%;
right: -33%;
}
.ring-bottom-left{
left: -7%;
bottom: 5%;

}
.ring-bottom-right{
right: -29%;
bottom: 5%;
}
}
@media(min-width:1700px) and (max-width:1900px){
    .hero-content h1{
        font-size:54px;
        line-height: 65px;
    }
    .hero-content p{
        font-size:18px;
    }
}
@media (min-width:1900px){
    .hero-content h1{
        line-height: 85px;
        font-size:65px;
        
    }
        .hero-content p {
        font-size: 28px;
        max-width: 800px;
        line-height:40px;
    }
}
@media (max-width:2800px) and (min-width:2050px){
        .hero-content p {
        font-size: 37px;
        max-width: 1000px;
        line-height:45px;
    }
        .hero-content h1 {
        line-height: 90px;
        font-size: 75px;
    }
}