/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/




:root {
	--primary: #6699CC;
	--primary-light: #3394b1;
	--secondary: #215e70;
	--tertiary: #577e8a;
	--gradient: linear-gradient(to right, #3eaec9, #143139);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

/* Testimonials विभागाच्या खाली हा बदल करा */

.slider-1 .h2-heading {
	text-align: center; /* 👈 हे सेंटरमध्ये ठेवेल */
	margin-bottom: 3rem;
}

/*... फाईलच्या शेवटी (media queries च्या नंतर) */

/* तुमच्या फाईलमध्ये हा नियम नसेल तर जोडा, किंवा असलेला नियम तपासा */
.h2-heading {
    text-align: center !important; /* 👈 यामुळे Our Projects हेडिंग सेंटरमध्ये येईल */
    /* जर येथे 'text-align: left' असेल तर तो काढून टाका */
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: white;
	text-decoration: none;
}

li {
	list-style-type: none;
}

/* Section Background */
.home,
.about,


/* Section Background */
.home,
.about,


.work,
.contact {
	height: auto;
	min-height: 100vh; /* <-- इथे min-height: 100vh जोडा */
	position: relative;
}


.services {
    min-height: auto !important;
    height: auto !important;
    position: relative;
}

.plans {
	height: 50vh; /* <-- ❌ हा 'height: 50vh;' नियम काढून टाका */
	min-height: 100vh; /* <-- इथे min-height: 100vh जोडा */
	position: relative;
}

.project-card {
	border: 5px solid whitesmoke;
	padding: 15px;
	border-radius: 10px;
	overflow: hidden;
}

.ht-20 {
    height: auto;
	min-height: 15vh;
}

.bullent-points {
	background-color: #e7eff2;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
	color: #6299bf !important;
	;
}

.object-fit-fill {
	object-fit: fill;
}

.home-text {
	display: none;
}

.navbar-toggler-icon {
	background-color: #6299bf !important;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: #6299bf !important;
	;
}


@media (max-width: 1025px) {
	.services {
		height: 620vh;
		position: relative;

	}
}

/* Media Query for Large screens */
@media (max-width: 1281px) {
	.services {
		height: 475vh;
		position: relative;

	}
}

.career .btn {
	color: #051b3dc6 !important;
}

.list-ul li {
	list-style-type: square;
}

.services,
.work,
.contact,
.testimonial,
.footer {
	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.location {
	background-color: var(--primary-light);
}

.bottom {
	background-color: black;
}

/* Gradient Border And Background On Icons */


.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#a5e2e9),
			to(#00dabf));



	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.home_text,
.home .fas {
	background: -webkit-gradient(linear, left top, left bottom, from(#5c9aaf), to(#11383d));

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: white;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0rem;
	padding-bottom: 0.25rem;
	padding-right: 0.25rem;
}

.navbar .logo-image img {
	width: 108px;
	height: 32px;
}

.navbar .logo-text {
	color: #25525b;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 2.75rem;
	/* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: white;
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #23304c;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
	font-size: 16px;
	font-weight: 700;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#0ee951),
			to(#00dabf));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
/* .home {
	background-image: url(../assets/images/home.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	;
	 object-fit: fill; 

} */
/* .home {
	background-image: url("../assets/images/home-page.gif");
	background-size: cover;

	background-position: center;

	background-repeat: no-repeat;
} */
.home {
	/* background-image: url("../assets/images/home-page.gif"); */
	background-image: url("../assets/images/hhh3.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	/* full screen height */
	display: flex;
	align-items: center;
	/* vertical center content */
	position: relative;
}

.home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	/* हलकं overlay - readability साठी */
	z-index: 0;
}

.home .container {
	position: relative;
	z-index: 1;
	/* content background overlay वर दिसावा म्हणून */
}

.para {
	width: 50%;
}

.para-light {
	opacity: 0.7;
}


/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
	background-color: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 1px solid #b6e0ed;
	/* transform: scale(1.01); */
	/* border-image-slice: 1; */
	/* border-width: 2px; */
	/* border-image-source: var(--gradient); */
	box-shadow: 5px 5px 0px 0px #b6e0ed;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 3px solid #b6e0ed;
	/* border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient); */
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
	padding: 0;
}

.slider-1 .testimonial-text {
	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
	color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {

	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1rem;
		background-color: white;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: white;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.home-text {
		display: block;
		color: #030607 !important;
		background-color: azure !important;
	}
}

.border-circle {
	border: 3px solid #8ab9c7;
	border-radius: 50%;
	object-fit: fill;

}

.border-box {
	border: 2px solid #577e8a;
	box-shadow: rgb(64 131 143 / 35%) 0px 5px 15px;
}






.service-icon {
  width: 70px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  
}



.client-logo {
    width: 180px;
    height: auto;
    margin: auto;
    display: block;
    transition
: transform 0.3s ease;
}

.swiper-slide-active .client-logo {
    transform: scale(1.15);
}

.swiper-slide:hover .client-logo {
    transform: scale(1.20);
}

.client-logo {
    width: 160px;
    height: auto;
    margin: auto;
    display: block;
    transition: transform 0.3s ease;
}

.swiper-slide-active .client-logo {
    transform: scale(1.10);
}



/* ONLY for Our Services Section */
#services .row {
    display: flex;
    flex-wrap: wrap;
}

#services .col-lg-6 {
    width: 33.33%;      /* 3 services per row */
}

@media(max-width: 768px){
    #services .col-lg-6 {
        width: 100%;     /* Mobile me 1 per row */
    }
}


.service-icon {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}
.client-logo {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain;
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
}


/* Prevent navbar from cutting section heading */
section,
div[id] {
    scroll-margin-top: 120px; /* navbar ki height */
}



/* ACTIVE SECTION HIGHLIGHT */
.nav-link.active {
    color: #00e0ff !important;
    font-weight: 700;
    border-bottom: 2px solid #00e0ff;
}



/* style.css (तुमच्या फाईलच्या शेवटी, 'Media Queries' विभागाच्या खाली जोडा) */

/* ---------------------------------------------------- */
/* 👇 हा नवीन विभाग जोडा: सर्व सेक्शनला पूर्ण स्क्रीन उंची देण्यासाठी */
/* ---------------------------------------------------- */
#header,
.about, /* .about ला ID नाही, पण class आहे, म्हणून .about वापरा */
.services,
.plans,
.work,
.contact,
#project-explorer { /* प्रोजेक्ट सेक्शनला ID असेल तर वापरा */
    min-height: 100vh !important; /* 👈 सर्व सेक्शन किमान पूर्ण स्क्रीन व्यापतील */
    display: flex; /* कंटेंट मध्यभागी (Center) आणण्यासाठी */
    flex-direction: column;
    justify-content: center; /* उभ्या रेषेत (Vertically) मध्यभागी */
    padding-top: 100px; /* Navbar च्या खाली जागा सोडण्यासाठी (Scroll Offset) */
    padding-bottom: 50px;
}



/* style.css मध्ये सर्वात शेवटी जोडा */
#testimonials, .testimonial {
    min-height: 100vh !important; 
    /* कंटेंट पूर्ण स्क्रीनवर दिसावा म्हणून जास्त padding जोडा */
    padding-top: 100px !important;
    padding-bottom: 200px !important; 
    /* जास्त padding-bottom (उदा. 200px) पुढील सेक्शनला खाली ढकलतो */
}

/* तुम्ही आधी जोडलेला हा मोठा ब्लॉक कायम ठेवा, फक्त त्यात लक्ष द्या */
#header,
#about,
#services,
#plans,
#project-explorer,
#contact,
.plans,
.testimonial { /* 👈 Testimonial/Experts क्लास यात समाविष्ट असावा */
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}


/* Career Page – Remove extra space between job openings */
body.career .services {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.career .accordion-item {
    margin-bottom: 5px !important;   /* फक्त छोटासा gap */
}

body.career .accordion-body {
    padding: 10px 20px !important;  /* neat spacing */
}


/* Disable accordion click completely */
.no-toggle {
    pointer-events: none !important;
}

/* Always show accordion body */
.accordion-collapse {
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
}

/* Accordion heading as normal box */
.accordion-button.no-toggle {
    background: #f7f7f7;
    color: #000;
    font-weight: 600;
}


/* Highlight job opening heading */
.accordion-button.no-toggle {
    background: #eaf1ff !important; 
    color: #0a2a6b !important;
    font-weight: 700 !important;
    border-left: 4px solid #0a2a6b !important;
    border-radius: 4px;
    padding: 12px 18px !important;
}

/* Remove right-side accordion arrow icon */
.accordion-button::after {
    display: none !important;
}


/* ---------------------------------------------------------------------- */
/* 📱 Mobile Responsiveness Improvements (Max-width 768px) 📱 */
/* ---------------------------------------------------------------------- */
@media (max-width: 768px) {
    
    /* 1. मुख्य हेडिंगची (H1) साईज लहान करा, जेणेकरून ती मोबाईल स्क्रीनवर व्यवस्थित बसेल. */
    h1 {
        font-size: 42px !important; /* 60px वरून 42px */
        font-weight: 600 !important; 
    }

    /* 2. सर्व सेक्शनची वरची आणि खालची जागा (Padding) कमी करा. */
    /* यामुळे स्क्रीनवर जास्त कंटेंट दिसेल आणि स्पेसिंग सुधारेल. */
    .home, .about, .services, .plans, .work, .contact, .newsletter, .footer, .slider-1, .ex-basic-1 {
        padding-top: 3rem !important; /* (साधारण 48px) */
        padding-bottom: 3rem !important; /* (साधारण 48px) */
    }

    /* 3. होम पेज किंवा इतर पेजवरील कंटेंट (Fixed Navbar) च्या खाली योग्यरित्या सुरू करण्यासाठी जागा निश्चित करा. */
    .home, .ex-header {
        padding-top: 6rem !important; /* Navbar च्या उंचीनुसार (approx 96px) जागा */
    }
    
    /* 4. बटणे (Buttons) पूर्ण रुंदीची (Full Width) करा. */
    /* यामुळे मोबाइलवर बटणे क्लिक करायला सोपी होतील. */
    .btn, .btn-secondary, .btn-tertiary {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        display: block;
    }

    /* 5. करिअर पेजसाठी: Job Openings Card Padding कमी करा. */
    .services .card {
        padding: 15px !important;
    }
    
    /* 6. करिअर पेजचे जॉब कार्ड (Accordion Heading) Mobile वर स्पष्ट दिसावे यासाठी */
    .accordion-button.no-toggle {
        font-size: 16px !important;
    }
    
    /* 7. Home Section मधील text blocks पूर्ण रुंदीचे करा */
    .para {
        width: 100% !important;
    }
}






/* Custom CSS: Color and Positioning Fixes */

/* 1. Dark Background Color for ALL Dropdown Menus */
.navbar-nav .dropdown-menu {
    background-color: #343a40; /* Dark Background (Tumchyā māgṇīnūsār) */
    border: none; /* Border kaddhī āhe */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4); 
    padding: 0.5rem 0; /* Menu madhye varti/khālī thoda space */
}

/* 2. Dropdown Item Text Color (White text for dark background) */
.dropdown-menu .dropdown-item,
/* 'Design' & 'Planning' links sudhā */
.dropdown-menu .dropdown-toggle {
    color: rgba(255, 255, 255, 0.8); /* Light Text Color */
    padding: 0.5rem 1rem; 
    display: block; /* Sarva items la pūrṇ width deto */
}

/* 3. Dropdown Item Hover/Focus */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle transparent hover */
    color: white; /* Pure white on hover */
}

/* 4. Active Content Highlight (Underline/Line Effect) */
.dropdown-menu .dropdown-item.active,
.dropdown-menu a.active {
    background-color: transparent !important; /* Dark highlight nako, transparent rahude */
    color: white !important; 
    /* Underline effect (About link pramāṇe) */
    border-bottom: 2px solid white; 
    padding-bottom: 0.3rem; /* Line sathi jamin */
}

/* 5. Nested Dropdown Positioning (Dark background ani side position) */
@media all and (min-width: 992px) {
	.dropdown-menu .dropend .dropdown-menu {
		position: absolute; 
		left: 100%;       
		top: 0;           
		margin-top: -0.5rem; /* Main menu chya padding nusār adjust kelyā ahe */
        background-color: #343a40; /* Nested menu la dark background */
	}
}



/* CLIENT SLIDER ARROWS – SAFE POSITION */
.client-slider .swiper-button-next,
.client-slider .swiper-button-prev {
    color: #ffffff !important;
    width: 40px;
    height: 40px;
	display
    top: 50%; /* middle alignment */
	transform: translateY(-50%);*/
	proper middle*/
	position: absoulte;
	z-index: 9999;
	opacity: 1;
}

/* Right arrow – थोडे उजवीकडे */
.client-slider .swiper-button-next {
    right: -1px !important;
}

/* Left arrow – थोडे डावीकडे */
.client-slider .swiper-button-prev {
    left:-1px !important;
}




/* 1. कंटेनरला अॅरो दाखवण्याची परवानगी द्या */
.client-logos-section .container, 
.client-logos-section .row {
    overflow: visible; 
}

/* 2. स्लाइडरला पोझिशनिंग बेस द्या */
.client-slider {
    position: relative; 
}

/* 3. अॅरोची पोझिशन सेट करा आणि रंग/आकार (Optional: तुमच्या गरजेनुसार बदला) */
.client-slider .swiper-button-prev,
.client-slider .swiper-button-next {
    color: #ffffff; /* अॅरोचा रंग */
    --swiper-navigation-size: 30px; /* अॅरो चिन्हाचा आकार */
    top: 50%; 
    transform: translateY(-50%);
    /* जर तुम्हाला बॅकग्राउंड हवा असेल तर: */
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* border-radius: 50%; */
    /* padding: 10px; */
}

/* डावीकडील अॅरो */
.client-slider .swiper-button-prev {
    left: -80px; /* बाहेरचे अंतर */
}

/* उजवीकडील अॅरो */
.client-slider .swiper-button-next {
    right: -80px; /* बाहेरचे अंतर */
}


body, h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea, label, div {
    font-family: 'Poppins', sans-serif !important;
}


.border-circle {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 3px solid #8ab9c7;
    display: block;
    margin: auto;
}


#OurExperts .testimonial-card {
    height: 300px !important;   /* ALL BOX SAME SIZE */
    overflow: hidden;            /* जास्त text बाहेर येणार नाही */
}

/* OUR EXPERTS image fix — same size + same background */
#OurExperts .testimonial-card img,
#OurExperts .swiper-slide img {
    width: 100px;         /* तुला हवे ते size */
    height: 100px;        /* same height */
    object-fit: cover;    /* फोटो perfect circle मध्ये crop होईल */
    border-radius: 50%;   /* round photo */
    padding: 8px;         /* background दिसण्यासाठी space */
    background: #eef3ff;  /* same background for all */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


/* Experts image same size + same background */
.border-circle {
    width: 150px !important;     /* same width */
    height: 150px !important;    /* same height */
    object-fit: cover;           /* crop perfect */
    border-radius: 50%;          /* perfect circle */
    background: #ffffff;         /* same white background */
    padding: 5px;                /* inside white border look */
    border: 2px solid #e5e5e5;   /* soft outer border */
	object-position: top;
}
