/* Styling for Linear Gradient Text */
.airtal-p {
    font-family: 'Arial', sans-serif; /* Use a clean and professional font */
    font-weight: bold;
	font-size: 1.25em;
    background: linear-gradient(90deg, #E6A9EC, #6247E5, #00FFFF); /* Linear Gradient */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    display: inline-block; /* Ensure proper rendering for inline elements */
}
.airtal-h3 {
    font-family: 'Arial', sans-serif; /* Use a clean and professional font */
    font-weight: bold;
	font-size: 1.25em;
    background: linear-gradient(90deg, #E6A9EC, #6247E5, #00FFFF); /* Linear Gradient */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    display: inline-block; /* Ensure proper rendering for inline elements */
}
.infinite-vision {
    color: #00FFFF;
    font-family: 'Arial', sans-serif;
	font-size: 1.25em;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-left: 0.25em;
}

/* Bold line between Airtal Innovation and Infinite Vision */
.infinite-vision::before {
    content: "";
    display: inline-block;
    width: 3px; /* Thickness of the line */
    height: 1em; /* Height of the line */
    background-color: #D8E7FF; /* Black color for the line */
    margin-right: 0.5em; /* Space between the line and Infinite Vision */
    vertical-align: middle; /* Align the line with text */
}

a.white-btn {
	background:#6A0DAD;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #fff;
	display: block;
	font-size: 1em;
	font-weight:600;
	margin-top: 1.25em;
	padding: 0.625em 1.25em;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
a.white-btn:hover {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
}
a.color-btn, form.customform button.color-btn {
	background: none;
	border: 1px solid #001925;
	border-radius: 3px;
	color: #001925;
	display: block;
	font-size: 0.85em;
	padding: 0.625em 1.25em;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
a.color-btn:hover, form.customform button.color-btn:hover {
	border: 1px solid #92c500;
	color: #92c500;
}
#topbar {
	background: none repeat scroll 0 0 #6A0DAD;
	border-bottom: 1px solid #4B3F72;
	padding: 0.3125em 0;
}
#topbar p {
	color: #00FFFF;
	font-size: 0.85em;
	opacity: 0.5;
	position: relative;
	top: 2px;
}
#topbar p strong {
	font-weight: 600;
}
#topbar i {
	color: #00FFFF;
	font-size: 1.1em;
	opacity: 0.5;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
#topbar i:hover {
	color: #00FFFF;
	cursor: pointer;
	opacity: 1;
}
nav {
	background: none repeat scroll 0 0 #000000;
	position: fixed; /* Makes it fixed at the top */
}
header {
	border-bottom: 4px solid rgba(0, 40, 58, 0.53);
	position: fixed;
	width: 100%;
	z-index: 10;
}

p.logo {
	color: #fff;
	position: relative;
	text-transform: uppercase;
	top: 25px;
	transition: all 0.3s ease; /* Smooth transition for hover effects */
	transform: scale(2); /* Slight zoom */
}
/* Media Queries for Responsiveness */

/* Tablets and smaller devices (Max Width: 1024px) */
@media (max-width: 1024px) {
	p.logo {
		transform: scale(1.25); /* Reduce the zoom on smaller screens */
		top: 0px; /* Adjust the top position */
	}
}

/* Mobile Devices (Max Width: 768px) */
@media (max-width: 768px) {
	p.logo {
		transform: scale(1); /* Slightly smaller scale for better fit */
		top: 0px; /* Move logo up a bit on smaller screens */
	}
}

/* Small Mobile Phones (Max Width: 480px) */
@media (max-width: 480px) {
	p.logo {
		transform: scale(1); /* Reduce zoom even more for very small screens */
		top: 0px; /* Adjust top position for very small screens */
	}
}
.top-nav li a {
	/* border-top: 2px solid #00283a; */
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	padding: 2.1em 1.5em 2.5em;
	text-transform: uppercase;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
.top-nav li a:hover, .top-nav li.active-item a {
	background: none repeat scroll 0 0 #000000;
	border-top: 2px solid #6247E5;
	color: #00FFFF;
	position: relative;
}

/* Media Query for Mobile Devices (Max Width: 768px) */
@media (max-width: 768px) {
    #topbar {
        padding: 0.2em 0; /* Reduce padding for smaller screens */
    }

    #topbar p {
        font-size: 0.75em; /* Slightly smaller text size */
        top: 0; /* Adjust position */
    }

    #topbar i {
        font-size: 1em; /* Scale down icons for mobile */
    }

    nav {
        background: #000; /* Ensure nav visibility */
    }

    header {
        border-bottom: 3px solid rgba(0, 40, 58, 0.5); /* Reduce border thickness */
    }

    .top-nav li a {
        font-size: 0.9em; /* Slightly smaller font for navigation links */
        padding: 1em; /* Reduce padding for mobile */
    }

    .top-nav li a:hover,
    .top-nav li.active-item a {
        border-top: 1px solid #6247E5; /* Adjust border size */
    }
}

/* Media Query for Smaller Mobile Devices (Max Width: 480px) */
@media (max-width: 480px) {
    #topbar {
        padding: 0.1em 0; /* Further reduce padding */
    }

    #topbar p {
        font-size: 0.7em; /* Smaller text */
    }

    #topbar i {
        font-size: 0.9em; /* Scale icons further */
    }

    header {
        border-bottom: 2px solid rgba(0, 40, 58, 0.4); /* Thinner border */
    }

    .top-nav li a {
        font-size: 0.8em; /* Further reduce font size */
        padding: 0.8em; /* Minimal padding */
    }

    .top-nav li a:hover,
    .top-nav li.active-item a {
        border-top: 1px solid #6247E5; /* Maintain consistent hover effects */
    }
}


/* Carousel */
#carousel .text {
	position: absolute;
	top: 40%;
	z-index: 10;
}
.item {
	overflow: hidden;
	width: 100%;
}
.prev-arrow, .next-arrow {
	background: none repeat scroll 0 0 #000000;
	cursor: pointer;
	float: left;
	height: 30px;
	line-height: 30px;
	margin-right: 1px;
	text-align: center;
	width: 30px;
}
#carousel .text h2 {
	background: #6247E5;
	color: #00FFFF;
	display: inline-block;
	font-size: 2em;
	font-weight: 300;
	margin: 1px 0;
	max-width: 600px;
	padding: 10px 20px;
	width: 100%;
}
#carousel .text p {
	background: none repeat scroll 0 0 #000000;
	color: #fff;
	max-width: 600px;
	padding: 10px 20px;
	width: 100%;
}
#carousel .owl-dots {
	background: none repeat scroll 0 0 rgba(0, 40, 58, 0.53);
	bottom: 0;
	margin: 0;
	padding: 0.625em 0;
	position: absolute;
	width: 100%;
}
.owl-carousel.owl-theme .owl-dot span {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
	border: 3px solid rgba(0, 40, 58, 0.57);
	height: 18px;
	margin: 0 0.3125em;
	opacity: 1;
	width: 18px;
}
.owl-carousel.owl-theme .owl-dot.active span, .owl-carousel.owl-theme .owl-dot:hover span {
	background: none repeat scroll 0 0 #6247E5;
}
/* Carousel End */

#first-block {
	background: none repeat scroll 0 0 #000000;
	padding: 1em 2em;
	text-align: center;
}
#first-block h1 {
	color: #00FFFF;
	font-size: 2em;
	font-weight: 300;
	margin-top: 0;
}
#first-block p {
	color: #fff;
	font-size: 0.85em;
}

#about-us {
	background: #000000 none repeat scroll 0 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
}
#about-us:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
#about-us article {
	padding: 4em;
}
article h2 {
	font-size: 4em;
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 0.9;
	margin: 0 0 0.625em 0
}
article h1, article h2, article h3, article h4, article h5, article h6 {
	color: #fff;
}

* Media Queries */

/* For large tablets and iPads (portrait mode) */
@media (max-width: 1024px) {
  #first-block h1 {
    font-size: 1.8em; /* Adjust headline size */
  }
  #first-block p {
    font-size: 0.8em; /* Slightly smaller text */
  }
  #about-us {
    padding: 4em 1.5em; /* Reduce padding */
  }
  #about-us article {
    padding: 3em; /* Adjust article padding */
  }
  article h2 {
    font-size: 3em; /* Resize heading */
  }
}

/* For tablets and small devices (landscape mode) */
@media (max-width: 768px) {
  #first-block {
    padding: 1em; /* Compact padding */
  }
  #first-block h1 {
    font-size: 1.5em; /* Smaller headline */
  }
  #about-us {
    padding: 3em 1em; /* Further reduce padding */
  }
  #about-us article {
    padding: 2em;
  }
  article h2 {
    font-size: 2.5em; /* Smaller heading */
  }
}

/* For mobile phones */
@media (max-width: 480px) {
  #first-block {
    padding: 0.5em; /* Minimal padding */
  }
  #first-block h1 {
    font-size: 1.2em; /* Resize headline for mobile */
  }
  #first-block p {
    font-size: 0.75em;
  }
  #about-us {
    padding: 2em 0.5em; /* Compact padding for mobile */
  }
  #about-us article {
    padding: 1em;
  }
  article h2 {
    font-size: 2em; /* Simplify for readability */
  }
}

/* For very small devices (e.g., older smartphones) */
@media (max-width: 320px) {
  #first-block h1 {
    font-size: 1em; /* Compact text */
  }
  #first-block p {
    font-size: 0.7em;
  }
  article h2 {
    font-size: 1.5em; /* Further resize */
  }
}
.media-container {
  overflow: hidden;
}
.media-container video {
  display: block;
  height: 100%;
  max-width: none;
  min-width: 100%;
  width: auto;
}
article p, article li {
	color: #fff;
	font-size: 0.85em;
	opacity: 0.7;
}
article ul {
	padding: 1.25em 0;
}
article ul li {
	list-style-type: none;
	margin: 0.625em 0;
	padding: 0 0 0 1em;
}
article ul li:before {
	background: #00283a none repeat scroll 0 0;
	color: #fff;
	content: "\f006";
	display: inline-block;
	font-family: "mfg";
	font-size: 0.8em;
	height: 20px;
	line-height: 20px;
	margin-left: -1em;
	margin-right: 0.625em;
	text-align: center;
	width: 20px;
}
.about-us-icons i {
	background:#000000;
	border: 2px solid #6247E5;
	border-radius: 100px;
	color: #00FFFF;
	display: block;
	float: left;
	font-size: 1.6em;
	height: 60px;
	line-height: 60px;
	margin-right: 0.625em;
	text-align: center;
	width: 60px;
}
.about-us-icons {
	display: block;
	margin-top: 2em;
}
h2.section-title:after {
	background: #7A5FA6 none repeat scroll 0 0;
	content: "";
	display: block;
	height: 1px;
	margin: 0.31225em auto 0;
	position: relative;
	width: 100px;
}
h2.section-title {
  font-size: 3.8em;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 1.25em;
  text-align: center;
  text-transform: uppercase;
}

/* Styling for Letters */
.colored-letter:nth-child(1) { color: #4A90E2; } /* Blue */
.colored-letter:nth-child(2) { color: #6A0DAD; } /* Purple */
.colored-letter:nth-child(3) { color: #A9A9A9; } /* Gray */
.colored-letter:nth-child(4) { color: #FF7F50; } /* Coral Orange */
.colored-letter:nth-child(5) { color: #F8D51D; } /* Yellow */
.colored-letter:nth-child(6) { color: #E6A9EC; } /* White & Blue */
.colored-letter:nth-child(7) { color: #6247E5; } /* Light Purple */
.colored-letter:nth-child(8) { color: #00FFFF; } /* Cyan */
.colored-letter:nth-child(9) { color: #FFD700; } /* Cyan */
.colored-letter:nth-child(10) { color: #FF7F50; } /* Cyan */



/* General Mobile View (for screens <= 768px) */
@media (max-width: 768px) {
  h2.section-title {
    font-size: 2.5em; /* Scale down font size */
    margin: 0 0 1em; /* Adjust spacing */
    letter-spacing: -0.5px; /* Reduce letter spacing */
  }

  .space-letter {
    width: 6px; /* Reduce space width for smaller screens */
  }
}

/* Small Phones (for screens <= 480px) */
@media (max-width: 480px) {
  h2.section-title {
    font-size: 2em; /* Further reduce font size */
    margin: 0 0 0.8em; /* Adjust spacing */
    letter-spacing: 0; /* Normalize letter spacing */
  }

  .space-letter {
    width: 4px; /* Minimize spacing */
  }
}

/* Tablets and iPads (481px to 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  h2.section-title {
    font-size: 3em; /* Moderate font size for tablets */
    margin: 0 0 1em; /* Maintain spacing */
    letter-spacing: -0.5px; /* Slightly tighter spacing */
  }

  .space-letter {
    width: 8px; /* Moderate spacing */
  }
}

#our-work {
	background: #FFD700 none repeat scroll 0 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
}
.tab-item {
	background: #fff none repeat scroll 0 0;
	margin-top: 1.25em;
	padding: 1.25em 0;
}
.our-work-container {
	display: block;
	height: 100%;
	position: relative;
}
.our-work-text {
	background: #000000 none repeat scroll 0 0;
	bottom: 0;
	display: block;
	left: 0;
	opacity: 0;
	padding: 1.25em;
	position: absolute;
	right: 0;
	text-align: center;
	transition: opacity 0.20s linear 0s;
	-o-transition: opacityd 0.20s linear 0s;
	-ms-transition: opacity 0.20s linear 0s;
	-moz-transition: opacity 0.20s linear 0s;
	-webkit-transition: opacity 0.20s linear 0s;
	width: 100%;
}
.our-work-container:hover > .our-work-text {
	opacity: 1;
}
.our-work-text h4 {
	color: #fff;
	font-size: 1em;
	font-weight: 600;
}
.our-work-text p {
	color: #fff;
	font-size: 0.8em;
	opacity: 0.7;
}
.tab-nav {
	display: table;
}
a.tab-label, a.tab-label:link, a.tab-label:visited {
	background: #000000 none repeat scroll 0 0;
	color: #fff;
	display: block;
	font-size: 1em;
	padding: 0.625em 1.25em;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
a.tab-label:hover, a.tab-label.active-btn {
	background: #6247E5;
	color: #fff;
}
#services {
	background: #6A0DAD none repeat scroll 0 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
}
#services h2 {
	color: #fff;
	margin: 0 0 1.25em;
}
#services h2.section-title:after {
	background: #fff none repeat scroll 0 0;
}
#services i {
	background: none repeat scroll 0 0 #fff;
	border-radius: 80px;
	color: #00FFFF;
	display: block;
	float: left;
	font-size: 1.8em;
	height: 80px;
	line-height: 80px;
	margin-right: 0.625em;
	text-align: center;
	width: 80px;
}
.service-text {
	display: table;
	position: relative;
}
#services h3 {
	color: #00FFFF;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
}
#services p {
	color: #fff;
	font-size: 0.8em;
}

#contact {
	background: none repeat scroll 0 0 #D8E7FF;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	padding: 6em 2em;
	position: relative;
	z-index: 2;
}
#contact input, #contact textarea {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
	border-radius: 3px;
}
form.customform button.color-btn {
	height: auto;
	margin-top: 0;
}
#contact h2 {
	margin: 0 0 1.25em;
}
#contact h3 {
	color: #6247E5;
	font-size: 1em;
	font-weight: 700;
	margin: 0 0 0.625em;
	text-transform: uppercase;
}
#contact p {
	font-size: 0.85em;
	font-style: normal;
	line-height: 2em;
}
#contact p strong {
	font-weight: 700;
}
#contact i {
	background: #e0e0e0 none repeat scroll 0 0;
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	line-height: 26px;
	margin: 0.625em;
	text-align: center;
	width: 26px;
}
footer {
	background: none repeat scroll 0 0 #000000;
	padding: 3.5em 0;
	text-align: center;
}
 footer p, footer a:visited, footer a, footer a:hover {
	color: #6c7c84;
	font-size: 0.8em;
} 
@media screen and (max-width: 768px) {
  header {
    position: relative;
  }
  #carousel .text {
  	font-size: 0.8em;
  	top: 20%;
  }
  .owl-controls.clickable {
  	display: none!important;
  }
  .right {
  	float: none;
  }
  .social.right {
  	float: right;
  }
  #about-us article {
  	padding: 4em 2.5em;
  }
  .news-text {
  	height: auto;
  }
}
@media screen and (max-width: 480px) {
  #topbar {
  	line-height: 1.625em;
  	text-align: center;
  }
  .social.right {
  	float: none;
  }
  h2.section-title {
    font-size: 3em;
    line-height: 1.1;
  }
}
@media screen and (max-width: 768px) {
  .background-image {
    background-position: center;
  }
}

/* Carousel for Testing Start Pages */


/* Carousel Container */
.testingcarousel-container {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

/* Carousel Track */
.testingcarousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Carousel Item */
.testingcarousel-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Carousel Content */
.testingcarousel-content {
  display: flex;
  align-items: stretch;
  width: 100%;
}

/* Image Section */
.image-container {
  flex: 1;
  max-width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Text Section */
.text-container {
  flex: 1;
  max-width: 50%;
  padding: 20px;
  color: #fff;
  background-color: #6A0DAD; /* Default Background Color */
  border-radius: 10px;
}

.text-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.text-container h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.text-container p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Carousel Controls */
.testingcarousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.testingcarousel-controls button {
  background: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testingcarousel-controls button:hover {
  background: #FF7F50; /* Arrow hover color */
  transform: scale(1.2);
}

/* Responsive Design */

/* Tablets and Small Screens */
@media (max-width: 768px) {
  .image-container {
    max-width: 100%;
  }

  .text-container {
    max-width: 100%;
    padding: 15px;
  }

  .text-container h2 {
    font-size: 1.8rem;
  }

  .text-container h3 {
    font-size: 1.3rem;
  }

  .text-container p {
    font-size: 0.9rem;
  }

  .testingcarousel-controls button {
    font-size: 1.8rem;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .text-container {
    padding: 10px;
  }

  .text-container h2 {
    font-size: 1.5rem;
  }

  .text-container h3 {
    font-size: 1.2rem;
  }

  .text-container p {
    font-size: 0.8rem;
  }

  .testingcarousel-controls button {
    font-size: 1.5rem;
  }
}


/* Carousel for Testing End Pages */

/* Filter Buttons for Products  */

.filter-buttons {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-buttons button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background-color: #FF00FF;
    color: #ffffff;
    font-size: 1.5em;
	font-weight:500;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7); /* Dark shadow around the image */
	border-radius: 8px; /* Optional rounding */
}

.filter-buttons button:hover{
    background-color: #FF7F50;
    color: white;
}

.filter-buttons button.active {
    background-color: #6A0DAD;
    color: white;
}

/* Grid Layout */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Dark shadow around the image */
	border-radius: 8px; /* Optional rounding */
}

.grid-item {
    position: relative;
    width: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
	box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.5); /* Dark shadow around the image */
	background-color: #f9f9f9; /* Subtle background for better readability */
    border-radius: 8px; /* Adds rounded corners */
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-item:hover {
    transform: scale(1.10);
}

/* Overlay */
.grid-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.1em;
}
.grid-item:hover .overlay {
    opacity: 1;
}
.grid-item .overlay span {
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
}

.grid-item-title {
    font-size: 1.5em;
    text-align: center;
    color: #6247E5;
    margin-top: 10px;
	font-weight :600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    background-color: #fff;
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
	padding: 20px;
}

.lightbox-body {
    display: flex;
    width: 100%;
    padding: 20px;
    text-align: left;
    flex-wrap: wrap;
}

.lightbox-content img {
    width: 50%;
    object-fit: cover;
}

.lightbox-text {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.lightbox-text h3 {
    font-size: 1.8rem; /* Large and bold for title */
    color: #2c3e50; /* A dark, professional color */
    margin-bottom: 10px; /* Adds space below the title */
    font-weight: bold;
}

.lightbox-text h6 {
    font-size: 1.3em;
    color: #FF7F50;
    text-align: center;
	margin-bottom: 10px; /* Adds space below the title */
    font-weight: bold;
}

.lightbox-text h4 {
   font-size: 1.3em;
    color: #6A0DAD;
    text-align: center;
	margin-bottom: 10px; /* Adds space below the title */
    font-weight: bold;
}

.lightbox-text strong {
    font-size: 1.2rem; /* Slightly smaller than title */
    color: #3498db; /* Highlighted subtitle in blue */
    display: block; /* Ensures it appears on its own line */
    margin-bottom: 10px; /* Adds spacing below the subtitle */
}

.lightbox-text p {
   font-size: 1rem; /* Standard readable size for text */
    color: #555555; /* Neutral gray color for readability */
    line-height: 1.6; /* Improves readability */
    margin-bottom: 10px; /* Adds spacing between paragraphs */
}

.lightbox .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Back Button */
.btn-back {
    padding: 10px 20px;
    background-color: #F8D51D;
    color: #000;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #E6A9EC;
}


.testimonial-text {
    font-style: italic;
    color: #888;
    margin-top: 15px;
}

.testimonial-author {
    font-weight: bold;
}

.btn-details, .btn-close {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100px;
}

.btn-details {
    background-color: #00aa7f;
    color: white;
}

.btn-close {
    background-color: #ddd;
    color: #333;
}

/* Lightbox Button Container */
.button-container {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 20px;
}

.button-container .btn {
    padding: 10px 20px;
    font-size: 1em;
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 768px) {
    /* Stack buttons vertically on smaller screens */
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .button-container .btn {
        width: 100%; /* Full width on smaller screens */
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Smaller font and padding on very small screens */
    .button-container .btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Lightbox content becomes stacked vertically on mobile */
    .lightbox-content {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .lightbox-content img {
        width: 100%;
        max-height: 300px;
    }

    .lightbox-text {
        width: 100%;
        padding: 15px;
    }

    .lightbox-text h3 {
        font-size: 20px;
    }

    .lightbox-text p, .testimonial-text {
        font-size: 14px;
    }

    .btn-details, .btn-close {
        font-size: 14px;
        padding: 8px;
        width: 100%;
        max-width: 150px;
        margin: 10px auto;
    }

    .close-button {
        font-size: 18px;
        padding: 5px;
    }
}

@media (max-width: 576px) {
    .lightbox-content img {
        max-height: 200px;
    }

    .lightbox-text h3 {
        font-size: 18px;
    }

    .lightbox-text p {
        font-size: 13px;
    }
    
    .btn-details, .btn-close {
        font-size: 13px;
        width: 100%;
        max-width: 120px;
    }
}

/* Scrollable Content */
.scrollable-content {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #FF7F50 #ddd;
}

/* Scrollbar Styling for Webkit */
.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: #00aa7f;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrollable-content {
        max-height: 180px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrollable-content {
        max-height: 180px;
    }
}


/* Responsive Styles */
@media (max-width: 992px) {
    .grid-item {
        width: calc(50% - 10px); /* Two items per row for tablets */
    }
}

@media (max-width: 768px) {
    .grid-item {
        width: calc(50% - 10px); /* Two items per row for larger mobile screens */
    }
    .filter-buttons button {
        padding: 8px 10px;
        font-size: 0.9em;
    }
    .lightbox-content {
        flex-direction: column;
    }
    .lightbox-content img, .lightbox-text {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .grid-item {
        width: 100%; /* Single item per row for small mobile screens */
    }
    .filter-buttons button {
        padding: 8px 8px;
        font-size: 0.8em;
    }
    .grid-item-title {
        font-size: 1em;
    }
    .lightbox-text h3 {
        font-size: 20px;
    }
    .lightbox-text p, .testimonial-text {
        font-size: 14px;
    }
    .btn-details, .btn-close {
        font-size: 14px;
        padding: 8px;
    }
}

/* End of Filter Buttons for Products  */
.testi-carousel .owl-item img {
  width: 75px;
  height: 75px;
  border-radius: 75px;
}

.testi-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: #dddddd;
}

.testi-carousel .owl-dot.active {
  background: #FFC600;
}
 /* FEATURES  */
.features-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background: linear-gradient(135deg, #E6A9EC, #6247E5, #00FFFF);
    color: #fff;
    text-align: center;
}
.feature-card {
    width: 30%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card h4 {
    font-size: 1.2rem; /* Large and bold for title */
    color: #00FFFF; /* A dark, professional color */
    margin-bottom: 10px; /* Adds space below the title */
    font-weight: bold;
}


.feature-card p { 
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 1.25em;
  text-align: center;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

/* Default styling for larger screens (no changes needed) */

/* Tablet devices (768px and below) */
@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        padding: 30px;
    }

    .feature-card {
        width: 80%; /* Adjust card width for smaller screens */
        margin-bottom: 20px; /* Add spacing between cards */
    }

    .feature-icon img {
        width: 80px; /* Scale down icons */
        margin-bottom: 10px;
    }

    .btn-primary {
        padding: 8px 16px; /* Adjust button size */
        font-size: 0.9rem;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    .features-section {
        padding: 20px;
        text-align: center;
    }

    .feature-card {
        width: 100%; /* Cards take full width */
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .feature-icon img {
        width: 60px; /* Scale down further */
    }

    .btn-primary {
        padding: 7px 14px; /* Smaller buttons */
        font-size: 0.8rem;
    }
}


 /* FEATURES  */
 
  /* Contact Form  */
 
.contact-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1;
  background-color: #6A0DAD;
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--contrast-color);
}

.info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #fff;
}

.info-item p {
  margin: 0;
  font-size: 1rem;
}
.info-item strong {
    font-size: 1.2rem; /* Slightly smaller than title */
    color: #3498db; /* Highlighted subtitle in blue */
    display: block; /* Ensures it appears on its own line */
}

.contact-form {
  flex: 2;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #6A0DAD;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #6A0DAD;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #FF7F50;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-form form input,
  .contact-form form textarea {
    font-size: 0.9rem;
  }

  .contact-form button {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .info-item i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .contact-form form input,
  .contact-form form textarea {
    font-size: 0.8rem;
    padding: 0.8rem;
  }

  .contact-form button {
    padding: 0.7rem;
  }
}


/*** Footer Start ***/
.footer-container {
  background-color: var(--dark-purple);
  text-align: center;
}

.footer-container h3 {
  font-size: 32px;
  color: #00FFFF
  margin-bottom: 10px;
  font-weight:600;
}

.contact-info p {
  margin: 5px 0;
  font-size: 20px;
  color: #D8E7FF;
  font-weight:500;
}

.contact-info i {
  color: #00FFFF;
  margin-right: 8px; 
  font-size: 1.3em;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: var(--light-blue);
}

.footer-bottom .highlight {
  color: var(--purple);
}

/* Media Queries */
@media (max-width: 768px) {
  .footer-container {
    padding: 20px;
  }

  .social-icons a {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .footer h3 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .social-icons a {
    font-size: 16px;
    margin: 0 8px;
  }
}

/*** Footer End ***/