body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	background-color: #f9f9f9;
}

.atl-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px;
	background: #f9f9f9;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	max-width: 1200px;
	margin: 50px auto;
	box-shadow: 0 8px 20px rgb(249 249 249);
}

.content {
	max-width: 500px;
	z-index: 2;
}

.logos {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.logos img {
	height: 75px;
}

h1 {
	font-size: 50px;
	margin: 0;
	font-weight: 550;
}

.blue-text {
	color: #26a9e0;
}

.black-text {
	color: #000000;
}

p {
	font-size: 16px;
	margin: 15px 0 30px;
	color: #000000;
}

.buttons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.book-now {
	background: linear-gradient(to right, #57c1eb, #c057eb);
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 25px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
}

.book-now:hover {
	opacity: 0.8;
}

.watch-video {
	display: flex;
	align-items: center;
	gap: 10px;
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: #000000;
}

.play-circle {
	width: 30px;
	height: 30px;
	background: #e5e5e5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 📌 Image Frame Styling */
.images-section {
	display: flex;
	gap: 15px;
}

.image-frame {
	width: 229px;
	height: 353px;
	overflow: hidden;
	border-radius: 20px;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	padding: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 🟣 Gradient Borders */
.pink-border {
	border: 3px solid transparent;
	border-radius: 20px;
	background: linear-gradient(to top, #f7c0e5, #cfeefa) border-box;
	margin-top: 58px;
}

.blue-border {
	border: 3px solid transparent;
	border-radius: 20px;
	background: linear-gradient(to bottom, #faedbb, #cfeffa) border-box;
}

/* 🟢 Top Rounded Tab */
.top-tab {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 10px;
	background: #d3d3d3;
	border-radius: 10px;
}

/* 🖼 Image Styling */
.image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

/* 📱 Responsive Design */
@media (max-width: 900px) {
	.atl-banner {
		flex-direction: column;
		text-align: center;
		padding: 30px;
	}

	.images-section {
		justify-content: center;
		flex-direction: column;
	}

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

/* New Section CSS */
.atl-description {
	text-align: center;
	padding: 50px 20px;
	background-color: #f9f9f9;
	max-width: 1000px;
	margin: 20px auto;
	border-radius: 15px;
	box-shadow: 0 8px 20px #f9f9f9;
	position: relative;
	overflow: hidden;
}

.atl-description h2 {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 15px;
}

.atl-description p {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin: 0;
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.atl-description {
		padding: 30px 15px;
	}

	.atl-description h2 {
		font-size: 24px;
	}

	.atl-description p {
		font-size: 13px;
	}
}

.atl-cards {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 30px 0;
	max-width: 1000px;
	margin: 0 auto;
}

.atl-card {
	background-color: #f9f9f9;
	border-radius: 15px;
	padding: 20px;
	width: 30%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	transition: transform 0.3s ease;
}

.atl-card:hover {
	transform: translateY(-5px);
}

.card-icon img {
	width: 70px;
	height: 70px;
}

.card-content h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.card-content p {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
	.atl-cards {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.atl-card {
		width: 90%;
		text-align: center;
		align-items: center;
	}

	.card-content {
		text-align: center;
	}
}

.atl-mission {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f9f9f9;
	border-radius: 15px;
	padding: 40px;
	max-width: 1200px;
	margin: 50px auto;
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
}

.mission-content {
	width: 55%;
}

.mission-heading {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mission-badge {
	background: linear-gradient(to right, #d1f0f7, #f9f4c9);
	color: #b93ab4;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 26px;
	font-weight: bolder;
	transform: rotate(3deg);
}

.mission-content h2 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
}

.mission-content p {
	font-size: 16px;
	color: #000000;
	line-height: 1.8;
	margin-top: 15px;
}

.mission-content ul {
	list-style: none;
	padding: 0;
	margin-top: 15px;
}

.mission-content ul li {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.mission-content ul li::before {
	content: "•";
	color: #000000;
	font-size: 20px;
	font-weight: bold;
}

.mission-image {
	width: 40%;
	display: flex;
	justify-content: center;
}

.mission-image img {
	width: 76%;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgb(249 249 249);
}

/* Responsive */
@media (max-width: 900px) {
	.atl-mission {
		flex-direction: column;
		text-align: center;
		padding: 50px;
	}

	.mission-content {
		width: 100%;
	}

	.mission-image {
		width: 80%;
		margin-top: 20px;
	}
}

.atl-impact {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 20px;
	background: #f9f9f9;
}

.impact-container {
	display: flex;
	align-items: center;
	gap: 20px;
}

.impact-box {
	background: #66cfff;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	width: 250px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.impact-icon img {
	width: 70px;
	height: 70px;
	margin-bottom: 10px;
}

.impact-box h1 {
	font-size: 50px;
	font-weight: bold;
	color: #ffffff;
}

.impact-box p {
	font-size: 14px;
	color: #3e3e3e;
}

.impact-connector {
	width: 91px;
	height: 80px;
	background: linear-gradient(to right, #66cfff, #a150ff);
	border-radius: 0px;
}

@media (max-width: 768px) {
	.impact-container {
		flex-direction: column;
	}
	.impact-connector {
		width: 80px;
		height: 40px;
	}
}

.container1 {
	max-width: 900px;
	margin: auto;
	padding: 20px;
}
h1 {
	color: #222;
}
h1 span {
	color: #53c2ec;
}
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}
.feature {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: left;
}
.feature h3 {
	margin-top: 0;
}
.feature p {
	color: #555;
}
.pink {
	color: #e91e63;
}
.blue {
	color: #00bcd4;
}
.yellow {
	color: #ff9800;
}
.green {
	color: #4caf50;
}
.red {
	color: #ff5722;
}
.purple {
	color: #673ab7;
}

.container1 {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 0 10px #f8f8f8(0, 0, 0, 0.1);
	max-width: 900px;
	text-align: center;
}
.key {
	font-size: 44px;
	font-weight: bold;
	background: linear-gradient(to left, #b9dbc7, #f8f8f8);
	border-radius: 50px;
}
.highlight {
	color: #50b7f5;
}
.intro {
	font-size: 16px;
	color: #000000;
	margin-bottom: 20px;
	font-weight: 600;
}

.container1 {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 0 10px rgb(249 249 249);
	max-width: 1100px;
	text-align: center;
	margin: 0 auto;
}

.key {
	font-size: 44px;
	font-weight: bold;
	background: linear-gradient(to left, #b9dbc7, #f8f8f8);
	border-radius: 50px;
}

.highlight {
	color: #50b7f5;
}

.intro {
	font-size: 16px;
	color: #000000;
	margin-bottom: 20px;
	font-weight: 600;
}

.cards-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
}

.card {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgb(249 249 249);
	max-width: 30%;
	flex: 1;
	overflow: visible;
	text-align: left;
	min-width: 280px;
	border: none !important;
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	visibility: visible;
	background-color: transparent !important;
}

.icon {
	width: 50px;
	height: 50px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.icon img {
	width: 30px;
	height: 30px;
}

.title {
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 14px;
	color: white;
	white-space: nowrap;
}

.description {
	font-size: 14px !important;
	color: #333 !important;
	line-height: 26px !important;
	font-weight: 300 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.card {
		max-width: 45%;
	}
}

@media (max-width: 768px) {
	.card {
		max-width: 100%;
	}
}

.why-atl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f5dc42;
	padding: 40px;
	max-width: 1200px;
	margin: 40px auto;
	border-radius: 10px;
}
.why-atl .text {
	width: 60%;
}
.why-atl h2 {
	color: #000;
	font-size: 28px;
	margin-bottom: 15px;
}
.why-atl ul {
	list-style-type: disc;
	padding-left: 20px;
	color: #333;
}
.why-atl ul li {
	margin-bottom: 10px;
	font-size: 16px;
}
.why-atl .image {
	width: 35%;
}
.why-atl .image img {
	width: 100%;
	border-radius: 10px;
}
@media (max-width: 900px) {
	.why-atl {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	.why-atl .text,
	.why-atl .image {
		width: 100%;
	}
	.why-atl .image {
		margin-top: 20px;
	}
}

.experience-section {
	text-align: center;
	padding: 50px 0;
}

.experience-section h2 {
	font-size: 28px;
	font-weight: bold;
}

.highlight {
	background: linear-gradient(to left, #fad2cd, #fcefd2);
	padding: 5px 15px;
	border-radius: 35px;
	transform: rotate(2deg);
	display: inline-block;
	-webkit-text-fill-color: black;
}

.image-container {
	display: flex;
	justify-content: center;
	gap: 42px;
	margin-top: 36px;
}

.image-container img {
	width: 402px;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.experience-section h2 {
		font-size: 24px;
	}

	.image-container img {
		width: 250px;
	}
}

@media (max-width: 768px) {
	.image-container {
		flex-direction: column;
		align-items: center;
	}

	.image-container img {
		width: 90%;
	}
}

@media (max-width: 480px) {
	.experience-section h2 {
		font-size: 20px;
	}

	.image-container img {
		width: 100%;
	}
}

.atl-kit {
	display: flex;
}

/* atl equipment  */

.title-container {
	text-align: center;
	margin-top: 20px;
}
.title {
	font-size: 14px;
	background: linear-gradient(to bottom right, #e2e2f1, #ffd6eb);
	display: inline-block;
	padding: 10px 20px;
	border-radius: 45px;
	color: #000;
}
.subtitle {
	font-size: 14px;
	color: #000000;
	margin: 10px 0 20px;
	text-align: center;
	font-weight: bold;
}
.web-section {
	background: linear-gradient(to bottom right, #e6e6ff, #ffd6eb);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	width: 80%;
	max-width: 900px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	margin: 10px auto; /* Ensures centering */
	display: flex;
	flex-direction: column;
	align-items: center; /* Centers grid sections */
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	width: 100%; /* Ensure it takes full width inside .web-section */
	justify-content: center; /* Center items */
}

.grid-item {
	background: white;
	padding: 10px;
	border-radius: 50px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}
.grid-item img {
	width: 100%;
	border-radius: 50px;
}
.grid-item p {
	font-size: 14px;
	font-weight: bold;
	margin-top: 5px;
}
.category {
	font-weight: bold;
	background: white;
	padding: 10px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 20px;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.grid {
		grid-template-columns: 1fr;
	}
}

/* New Section */
.cta-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(to right, #63e2c6, #5b82eb);
	padding: 30px;
	border-radius: 56px;
	color: white;
	max-width: 950px;
	margin: 40px auto;
}
.cta-text {
	max-width: 100%;
	font-size: 40px;
	font-weight: bolder;
}
.cta-button {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	background: linear-gradient(to right, #a150ff, #db44a2);
	color: #ffffff;
	font-weight: bold;
	border-radius: 20px;
	text-decoration: none;
	font-size: 17px;
}
.cta-button:hover {
	background: linear-gradient(to right, #8769aa, #bb3086);
}
.cta-image img {
	max-width: 300px;
	border-radius: 10px;
}
@media (max-width: 768px) {
	.cta-section {
		flex-direction: column;
		text-align: center;
	}
	.cta-text {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.cta-image img {
		max-width: 150px;
	}
}

.nitilogo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	padding: auto;
}
.headingcomponent {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	margin-top: 30px;
	padding: auto;
	font-size: 30px;
}

/* new section Components and more... */

/* General Styles */

/* Section Styling */
.components-section {
	padding: 50px 20px;
	background: linear-gradient(to bottom, #cfb8de, #f7d3bd);
	border-radius: 30px;
	margin: 30px auto;
	width: 70%;
	max-width: 1200px;
	text-align: center;
}

/* Heading Styling */
.components-section h2 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 30px;
}

/* Wrapper for Centering */
.components-wrapper {
	display: flex;
	justify-content: center;
}

/* Grid Container */
.components-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	max-width: 1100px;
	margin: auto;
}

/* Individual Component Box */
.component-box {
	background: white;
	padding: 20px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Image Styling */
.component-box img {
	width: 90px;
	height: 90px;
	object-fit: contain;
}

/* Component Title */
.component-box p {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 600;
}

/* Hover Effect */
.component-box:hover {
	transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.components-container {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.components-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.components-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 400px) {
	.components-container {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* new section why atl  */

/* Section Styling */
.why-setu100 {
	width: 90%;
	max-width: 1100px;
	margin: auto;
	padding: 50px 20px;
	text-align: center;
}

/* Heading Styling */
.why-setu100 h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
}

.why-setu100 .highlight {
	background: linear-gradient(45deg, #daf1ee, #f9f4ca);
	padding: 5px 10px;
	border-radius: 35px;
}

/* Paragraph Styling */
.why-setu100 p {
	font-size: 16px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 30px;
}

/* Image Styling */
.image-container img {
	width: 100%;
	max-width: 900px;
	display: block;
	margin: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.why-setu100 h2 {
		font-size: 24px;
	}

	.why-setu100 p {
		font-size: 14px;
	}

	.image-container img {
		width: 100%;
	}
}

/* Section Styling */
.projects {
	width: 90%;
	max-width: 1100px;
	margin: auto;
	padding: 50px 20px;
}

/* Heading */
.projects h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

/* Project Container */
.projects-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 30px;
	border-radius: 20px;
	background: linear-gradient(to bottom right, #e2ccff 10%, #ceeefb 90%);
	text-align: center;
}

/* Individual Cards */
.project-card {
	background: white;
	padding: 15px;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s ease-in-out;
}

.project-card:hover {
	transform: translateY(-5px);
}

/* Image Styling */
.project-card img {
	width: 100%;
	height: auto;
	max-width: 215px;
	border-radius: 12px;
}

/* Text */
.project-card p {
	font-size: 14px;
	margin-top: 10px;
	font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.projects-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.projects-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.projects-container {
		grid-template-columns: repeat(1, 1fr);
	}

	.project-card img {
		max-width: 120px;
	}
}
