/* ===== FONTS & BASE STYLES ===== */
body {
    font-family: 'Poppins', sans-serif;
    color: #000;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p
{
	color: #000;
	font-size: 16px;
	font-weight: 400;
	margin: 0px;
	padding-bottom: 16px;
}

/*  section heading  */

.section-title h2 {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 15px;
	font-size: 40px;
	color: #000;
}

.section-title h2:after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: #c9a45c;
	bottom: 0;
	left: 47%;
}

.section-title p
{
	color: #002a5c !important;
    font-size: 20px;
    font-weight: 600;
    margin-top: -25px;
}

#about .section-title h2:after
{
	left: 0%;
}

.text-gold {
	color: #c9a45c;
}

.bg-light-blue {
	background-color: #F8FAFC;
}

.about-section, .section_pad {
	padding: 80px 0;
}

.main_btn
{
	background-color: #c9a45c;
	border: 2px solid #c9a45c;
	border-radius: 30px;
	color: #fff;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 400;
}

.main_btn:hover, .main_btn:active
{
	background-color: #fff;
	color: #c9a45c;
}

.whatsapp_btn {
    background-color: #25D366;
    border-color: #25D366;
    padding: 12px 30px;
    font-weight: 400;
    border-radius: 30px;
	color: #fff;
}

.whatsapp_btn:hover, .whatsapp_btn:active
{
	background-color: #29c664;
	color: #fff;
}

.view_btn
{
	background-color: #c9a45c;
	border: 2px solid #c9a45c;
	border-radius: 30px;
	color: #fff;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
}


.h3_heading
{
	font-size: 25px;
	font-weight: 700;
	color: #000;
	margin: 0px;
}

a
{
	text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 400;
    color: #000;
    padding: 10px;
    transition: all 0.3s ease;
	font-size: 14px;
	
}

#menu .navbar-dark .navbar-nav .nav-link:active, 
#menu .navbar-nav .nav-item .nav-link.current-page {
  color: #c9a45c;
  font-weight: 500;
  position: relative;
}

#menu .navbar-nav .nav-item .nav-link.current-page::after {
  content: "";
  position: absolute;
  bottom: -4px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  width: 40%; /* Makes the underline short */
  height: 2px;
  background-color: #c9a45c;
  border-radius: 1px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #000;
}

.navbar-light .navbar-nav .login-btn {
    background: #c9a45c;
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px;
    margin-left: 10px;
	cursor: pointer;
}

.navbar-light .navbar-nav .login-btn:hover {
    background: #fff;
	color: #c9a45c !important;
	border: 1px solid #c9a45c;
}

.logo {
    height: auto;
	width: 200px;
}

.banner_icons
{
    font-size: 18px;
}

@media only screen and (max-width: 768px)
{
	#menu .navbar-nav .nav-item .nav-link.current-page::after
	{
		background-color: unset;
	}
}




/* ===== Module Accordion ===== */
.accordion-modules .accordion-button {
  padding: 1.25rem;
  font-weight: 500;
}

.accordion-modules .accordion-button:not(.collapsed) {
  background-color: #E0F2FE;
  color: #0C4A6E;
  box-shadow: none;
}

.module-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E0F2FE;
  color: #0EA5E9;
  border-radius: 50%;
  font-weight: bold;
}

/* ===== Benefits Cards ===== */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Gallery ===== */
.gallery-item {
  height: 250px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  padding: 20px 15px;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== Testimonials ===== */
.testimonials-slider .slick-slide {
  padding: 15px;
}

.testimonial-card {
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}




/* ===== FAQ Accordion ===== */
.accordion-button:not(.collapsed) {
  background-color: #E0F2FE;
  color: #0C4A6E;
  box-shadow: none;
}

/* ===== Fixed Apply Now Button ===== */
.apply-now-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.apply-now-fixed .btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

/* ===== Course Outcomes ===== */
.outcomes-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.outcome-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outcomes-list li {
  transition: all 0.2s ease;
}

.outcomes-list li:hover {
  transform: translateX(5px);
}

/* ===== Footer ===== */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #0EA5E9;
}

/* Module badge animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.badge {
  animation: pulse 2s infinite;
}

.text-primary {
  color: #0EA5E9 !important;
}

.bg-primary {
  background-color: #0EA5E9 !important;
}

.btn-primary {
  background-color: #0EA5E9;
  border-color: #0EA5E9;
}

.btn-primary:hover {
  background-color: #0284C7;
  border-color: #0284C7;
}

.btn-outline-primary {
  color: #0EA5E9;
  border-color: #0EA5E9;
}

.btn-outline-primary:hover {
  background-color: #0EA5E9;
  border-color: #0EA5E9;
}

.bg-primary-subtle {
  background-color: #E0F2FE !important;
}

.text-primary {
  color: #0EA5E9 !important;
}



/* Animation */
.animate-fade {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Section ===== */
.why-hero-section, .course-hero-section
{
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(to bottom, #E0F2FE, #F8FAFC);
}

@media (max-width: 992px) {
    .navbar-nav {
        padding: 20px 0;
    }
    .navbar-light .navbar-nav .login-btn {
        margin: 15px 0;
        display: inline-block;
    }
}


/*  Home page  */

/* ===== HERO SECTION ===== */
#hero {
    /* background: linear-gradient(135deg, #e6f7ff 0%, #f5f9ff 100%);*/
    /*min-height: 80vh;*/
	background-image: linear-gradient(rgb(0 42 92 / 74%), rgb(0 42 92 / 72%));
    padding-top: 120px;
    padding-bottom: 120px;
}

#hero h1 {
    font-size: 45px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
	color: #fff;
    /* color: #1a202c; */
}

#hero .lead, .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
	color: #fff;
    /* color: #4a5568; */
}

.hero-buttons {
    margin-top: 2rem;
}

/*

.btn-primary {
    background-color: #3A86FF;
    border-color: #3A86FF;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #2563EB;
    border-color: #2563EB;
}

.btn-outline-primary {
    border-color: #3A86FF;
    color: #3A86FF;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background-color: #3A86FF;
    color: white;
}

*/

.hero-image {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
    #hero {
        min-height: auto;
        text-align: center;
    }
    #hero h1, #inner_banner h1 {
        font-size: 2.5rem;
    }
    .hero-image {
        margin-top: 40px;
    }
}

/* ===== PILLARS SECTION ===== */
.pillar-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);*/
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    border-radius: 50%;
    color: #3A86FF;
    font-size: 32px;
}

.pillar-card h3 {
    margin-bottom: 15px;
}

/* ===== ABOUT SECTION ===== */
#about img {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ===== COURSE SECTION ===== */
.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-details {
    padding: 20px;
}

.course-details h3 {
    margin-bottom: 10px;
}

/* ===== TESTIMONIALS SECTION ===== */

#testimonials .slick-prev:before, .slick-next:before
{
    opacity: 1;
    color: #000;

}


.testimonial-item {
    padding: 15px;
}

.testimonial-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    color: #3A86FF;
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.student-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.student-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.student-info p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

/* ===== ACCREDITATION SECTION ===== */
.accreditation-item {
    padding: 10px;
    text-align: center;
}

.accreditation-item img {
    max-height: 80px;
    margin: 0 auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.accreditation-item img:hover {
    opacity: 1;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-item {
    padding: 20px;
}

.success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .success-content {
        padding-top: 20px;
        text-align: center;
    }

    .why-hero-section 
    {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #002A5C;
    padding: 80px 0;
	text-align: center;
	color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-custom {
	background: white;
	color: var(--accent-color);
	border: none;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-custom:hover {
	background: var(--light-bg);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}




/* ===== BLOG SECTION ===== */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.read-more {
    color: #c9a45c;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #2563EB;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 15px 25px;
    border-radius: 30px 0 0 30px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.newsletter-form .btn {
    padding: 15px 25px;
    border-radius: 0 30px 30px 0;
}

.subscribe_btn
{
	background-color: #002a5c;
}

/* ===== FOOTER ===== */
.footer 
{
    background: #1a202c;
    color: #fff;
    padding-bottom: 15px !important;
}

.footer p
{
	color: #fff;
}

.footer a
{
    color: #fff;
    text-decoration: none;
}

.footer-logo 
{
    height: 120px;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c9a45c;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3A86FF;
    color: white;
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: #3A86FF;
    margin-top: 5px;
}


.footer hr
{
    margin: 70px 0px 35px !important;
}

hr {
    margin: 30px 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #002A5C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2563EB;
    color: white;
}


/*About Page Styling */
        
#inner_banner 
{
	background-image:linear-gradient(rgb(0 42 92 / 74%), rgb(0 42 92 / 72%)), url('../images/inner_banner.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
}

#inner_banner h1 {
    font-size: 45px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #fff;
}


/* Vision & Mission Styling */
.vision-mission-card {
	border-radius: 10px;
	overflow: hidden;
	border: none;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
	transition: all 0.3s ease;
}

.vision-mission-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.icon-box {
	width: 80px;
	height: 80px;
	background: #002A5C;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	color: white;
	font-size: 32px;
}

/* Accreditations */
.accreditation-item {
	text-align: center;
	margin-bottom: 30px;
}

.accreditation-logo {
	width: 150px;
	height: 150px;
	object-fit: contain;
	margin-bottom: 20px;
	/* filter: grayscale(1);  */
	transition: all 0.3s ease;
}

.accreditation-item:hover .accreditation-logo {
	filter: grayscale(0);
}

/* Testimonial Slider */
.testimonial-section {
	background: linear-gradient(45deg, #002A5C, #0058B9);
	color: white;
	padding: 80px 0;
}

.testimonial-card {
	padding: 30px;
	text-align: center;
}

.testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 20px;
	object-fit: cover;
	border: 5px solid rgba(255, 255, 255, 0.3);
}




		.feature-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
	font-size: 3rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.highlight-box {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	border-top: 4px solid #c9a45c;
}

.specialty-tag {
	background: #3A86FF;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	display: inline-block;
	margin: 0.25rem;
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.specialty-tag:hover {
	transform: scale(1.05);
	background: #2c3e50;
}

.objective-item {
	background: white;
	border-left: 4px solid #c9a45c;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border-radius: 0 10px 10px 0;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.objective-item:hover {
	transform: translateX(10px);
}

.objective-number {
	background: #c9a45c;
	color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 1rem;
}


/* Cources page Styling */     
	
/* Why IFLAM Section */

.feature-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	height: 100%;
	border-top: 4px solid #c9a45c;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
	border-top-color: #3A86FF;
}

.check-icon {
	color: var(--success-color);
	font-size: 1.5rem;
	margin-right: 0.5rem;
}

/* Accreditations Section */

.accreditation-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	height: 100%;
}

.accreditation-card:hover {
	border-color: #c9a45c;
	transform: scale(1.05);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#accreditations .accreditation-logo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 3rem;
}

/* Testimonials */

.testimonial-avatar {
	width: 60px;
	height: 60px;
	background: #c9a45c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
}

/* Professional Categories with Modern Design */
.professional-category {
	background: white;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	transition: all 0.4s ease;
	height: 100%;
}

.professional-category:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.professional-header {
	color: white;
	padding: 2.5rem;
	text-align: center;
	position: relative;
}

.professional-header.dentist {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.professional-header.doctor {
	background: linear-gradient(135deg, #11998e, #38ef7d);
}

.professional-header h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0;
}

.professional-testimonial-modern {
	padding: 2rem;
	border-bottom: 1px solid #eee;
	transition: all 0.3s ease;
	position: relative;
}

.professional-testimonial-modern:last-child {
	border-bottom: none;
}

.professional-testimonial-modern:hover {
	background: #f8f9fa;
	padding-left: 2.5rem;
}

.professional-testimonial-modern::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	background: #c9a45c;
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.professional-testimonial-modern:hover::before {
	transform: scaleY(1);
}


.modalform_box .form-control
{
	margin: 9px 0px;
}


/*  fixed side button */

.fixed_btn {
    background-color: #c9a45c;
    padding: 8px 26px;
	color: #fff;
    border: 1px solid #c9a45c;
	border-radius: 6px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-size: 16px;
    font-weight: 500;
    position: fixed;
    top: 50%;
    left: -45px;
    z-index: 9999;
    transform: translateY(-50%) rotate(-90deg);
    cursor: pointer;
}


/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) 
{
	.section-title h2 
	{
		font-size: 2rem;
	}

	#hero h1, #inner_banner h1 
	{
		font-size: 2rem;
	}

	.cta-content h2 
	{
		font-size: 2rem;
	}

	.footer h5 
	{
		margin-top: 30px;
	}

	.banner_btns
	{
		font-size: 14px;
		padding: 8px 15px imo !important;
		margin-top: 20px;
	}
}


/*  Blog Page styling  */

/* Industry Trends Section */
        .industry-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .industry-card:hover {
            transform: translateY(-10px);
        }
        .industry-card .card-body {
            padding: 25px;
        }
        .industry-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #6366F1, #A855F7);
            color: white;
            font-size: 28px;
        }

        /* Career Advice Section */
        .career-advice-section {
            background-color: #F9FAFB;
        }
        .career-step {
            position: relative;
            padding: 30px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        .career-step:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .step-number {
            position: absolute;
            top: -15px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #6366F1, #A855F7);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Case Studies Section */
        .case-study-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            height: 350px;
        }
        .case-study-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .case-study-card:hover .case-study-image {
            transform: scale(1.1);
        }
        .case-study-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 30px 20px;
            color: white;
        }
        .case-study-tag {
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(99, 102, 241, 0.8);
            border-radius: 20px;
            color: white;
            font-size: 12px;
            margin-bottom: 10px;
        }		
		
		.blog-posttitle h2
		{
			padding-bottom: 15px;
			font-size: 35px;
			color: #000;
		}
		
/*  Contact us page styling */

/* Form Section */
        .form-section
         {
            padding: 60px 0px;
           
        }

        .form-container {
            background-color: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .form-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 2rem;
            text-align: center;
        }

        #form-section .form-control {
            height: 55px;
            border-left: 0px;
            border-right: 0px;
            border-top: 0px;
            border-radius: 0px;
            padding-left: 20px;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        #form-section .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: none;
        }

        textarea.form-control {
            height: 120px;
            padding-top: 15px;
        }
		
		.validation
		{
			color: #f76c6c;
		}

        .form-section .btn-primary {
            width: 100%;
            height: 55px;
            font-size: 1.1rem;
        }
		
		.submit_btn
		{
			background-color: #c9a45c;
			border: 2px solid #c9a45c;
			border-radius: 30px;
			color: #fff;
			padding: 12px 30px;
			font-size: 16px;
		}

        .form-info {
            margin-bottom: 30px;
        }

        .form-info h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .info-list li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
		
        .info-list i {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        /* WhatsApp CTA Section */
        .whatsapp-section {
            padding: 80px 0px 80px;
            background-color: white;
        }

        .whatsapp-container {
            background-color: #002A5c;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
        }

        .whatsapp-content {
            padding: 60px 40px;
            color: white;
        }

        .whatsapp-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .whatsapp-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .btn-whatsapp {
            background-color: white;
            color: #25D366;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .btn-whatsapp i {
            margin-right: 10px;
            font-size: 1.3rem;
        }

        .btn-whatsapp:hover {
            background-color: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-image {
            background: url('https://images.unsplash.com/photo-1529336953128-a85a1c231beb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
            height: 100%;
            min-height: 350px;
        }

        /* Location Section */
        .location-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }

        .location-info {
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
		
		.location-info a
		{
			color: #000;
		}

        .location-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .address-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .address-item i {
            width: 50px;
            height: 50px;
            background-color: rgba(23, 162, 184, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .address-item i {
            font-size: 20px;
            color: var(--secondary-color);
        }

        .address-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .address-content p {
            color: #000;
            margin-bottom: 0;
            line-height: 1.6;
        }

        .map-container {
            height: 100%;
            min-height: 400px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }

        /* FAQ Section */


        #faq .accordion-item {
            border: none;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px !important;
            overflow: hidden;
        }

        #faq .accordion-header {
            margin-bottom: 0;
        }

        #faq .accordion-button {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            background-color: white;
            padding: 20px 30px;
            box-shadow: none !important;
        }

        #faq .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background-color: rgba(42, 82, 152, 0.05);
        }

        #faq .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(42, 82, 152, 0.1);
        }

        #faq .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a5298'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        #faq .accordion-body {
            padding: 20px 30px 30px;
            color: #555;
            line-height: 1.7;
        }		
		


#menu i
{
	color: #29c664;
	font-size: 25px;
}


#menu .fa-phone-volume
{
	color: #c9a45c !important; 
}