body 
{
	margin: 0;
	padding: 0;
	font-family: Cambria;
	font-size: 18px;
	color: #333;
}

/* Header */

.header-container 
{
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 4px 6px;
   background: linear-gradient(45deg, #050e2a 0%, #071f68 50%, #5175e7 100%);
   color: white;
}

.logo img 
{
   width: 150px;
   height: auto;
   margin: 0;
   padding: 0;
}

.nav-menu ul 
{
   display: flex;
   gap: 15px;
   list-style: none;
   margin: 0;
   padding: 0;
}

.nav-menu a 
{
   color: white;
   text-decoration: none;
   font-weight: bold;
   font-size: 18px;
}

.nav-menu a:hover 
{
   color: #ffd700;
}

/* Dropdown Menu Styling */
.dropdown-menu 
{
    display: none; /* Ensure hidden on load */
    position: absolute; /* Positioned relative to the parent */
    top: 100%;
    left: 0;
    background-color: #444;
    padding: 10px 0;
    list-style: none;
    border-radius: 5px;
    z-index: 1000;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu 
{
    display: block; /* Show on hover */
}

.dropdown-menu li 
{
    margin: 0;
}

.dropdown-menu a 
{
    color: white;
    padding: 10px 15px;
    display: block;
    text-align: left;
}

.dropdown-menu a:hover 
{
    background-color: #555;
}

.social-icons a img 
{
   width: 24px;
   margin-left: 8px;
   transition: opacity 0.3s;
}

.social-icons a img:hover 
{
   opacity: 0.7;
}

/* Mobile styles */
.menu-toggle 
{
   display: none;
   font-size: 24px;
   background: none;
   border: none;
   color: white;
   cursor: pointer;
}

@media (max-width: 768px) 
{
   .nav-menu ul 
   {
      display: none;
      flex-direction: column;
      gap: 10px;
      background-color: #333;
      position: absolute;
      top: 60px;
      right: 20px;
      padding: 10px;
      border-radius: 5px;
   }

   .nav-menu ul.active 
   {
      display: flex;
	  z-index: 100;
	  background: #071f68; 
   }

   .menu-toggle 
   {
      display: inline-block;
   }
   
   .social-icons a img 
	{
	   width: 16px;
	   margin-left: 5px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) 
{
	
.social-icons
{
	display: none;
}

}

/* Intro Page */

.intro_section
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 3%;
	padding-bottom: 6%;
	background: linear-gradient(45deg, #050e2a 0%, #071f68 50%, #5175e7 100%);
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.intro_section_left_column
{
	flex-basis: 40%;
	font-family: 'Instrument Serif';
	font-weight: bold;
	color: #fff;
	padding: 5%;
	padding-top: 0;
}

.small_heading
{
	font-size:28px;
	letter-spacing: 2px;
}

.large_heading
{
	font-size:65px;
}

.rounded-button 
{
	background-color: #1D17DF; 
	color: white;
	font-family: Cambria;
	margin-top: 4%;
	padding: 2% 4%;
	border: none;
	border-radius: 25px; 
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease; 
}

.rounded-button:hover 
{
	background-color: #0F09BB; 
}

.intro_section_right_column
{
	flex-basis: 60%;
	
	background-image: url('../images/first_container.png');
	background-size: contain; 
    background-position: center; 
	background-repeat: no-repeat;
	
	padding: 3%;
	padding-top: 0;
	
	opacity: 0;
    transform: translateX(500px);
    transition: opacity 1s ease, transform 3s ease;
}

.intro_section_right_column.show
{
	opacity: 1;
    transform: translateX(0);
}

.custom-shape-divider-bottom 
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg 
{
    position: relative;
    display: block;
    width: calc(108% + 1.3px);
    height: 52px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom .shape-fill 
{
    fill: #ffffff;
}

@media screen and (max-width: 768px) 
{
	
.intro_section
{
	flex-wrap: wrap;
	padding-top: 5%;
}
.intro_section_left_column
{
	flex-basis: 100%;
}
.small_heading
{
	font-size:24px;
}

.large_heading
{
	font-size:52px;
}

.intro_section_right_column
{
	flex-basis: 100%;
	padding-top: 10%;
	padding-bottom: 60%
}

}

@media screen and (min-width: 769px) and (max-width: 1024px) 
{
	
.small_heading
{
	font-size: 20px;
}
.large_heading
{
	font-size: 42px;
}

}

/* Gallery Animation */

.animation_gallery
{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 2%;
	padding-bottom: 2%;
	justify-content: center;
	overflow: hidden;
}

.section-title 
{
	margin: 0;
	padding: 3% 10%;
	width: 100%;
	font-size: 40px;
	font-weight: bold;
	font-family: 'Instrument Serif';
	color: #050e2a;
	text-align: center;
}

.trend_left_column
{
	flex-basis: 25%;
	margin: 1%;
	padding: 2%;
	padding-bottom: 7%;
	background-color: #f7f4f4;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	
	opacity: 0;
    transform: translateX(200px);
    transition: opacity 1s ease, transform 1s ease; 
}

.trend_left_column.show
{
	opacity: 1;
    transform: translateX(0);
}

.trend_left_column:hover 
{
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); 
	transform: scale(1.05);
}

.trend_middle_column
{
	flex-basis: 25%;
	margin: 1%;
	padding: 2%;
	padding-bottom: 7%;
	background-color: #f7f4f4;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    
	opacity: 0;
    transform: scale(0.6);
    transition: opacity 1s ease, transform 1s ease;
}

.trend_middle_column.show
{
	opacity: 1;
    transform: scale(1);
}

.trend_middle_column:hover 
{
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); 
	transform: scale(1.05);
}

.trend_right_column
{
	flex-basis: 25%;
	margin: 1%;
	padding: 2%;
	padding-bottom: 7%;
	background-color: #f7f4f4;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	
	opacity: 0;
    transform: translateX(-200px);
    transition: opacity 1s ease, transform 1s ease; 
}

.trend_right_column.show
{
	opacity: 1;
    transform: translateX(0);
}

.trend_right_column:hover 
{
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); 
	transform: scale(1.05);
}

.small_icon img
{
	margin: 0;
	padding: 0;
	width: 20%;
	height: 20%;
}

.small_icon_name
{
	font-weight: bold;
	font-size: 28px;
	color: #050e2a;
	padding-bottom: 5%;
}

.small_icon_description
{
	font-size: 16px;
	line-height: 24px;
}

.bottom-right-image 
{
	position: absolute;
	padding: 1%;
	bottom: 0;
	right: 0;
	width: 20%;
	height: 20%;
	opacity: 0.1; 
	z-index: -1;
}

@media screen and (max-width: 768px) 
{

.section-title 
{
	font-size: 32px;
}
.trend_left_column
{
	flex-basis: 100%;
	margin: 5%;
}

.trend_middle_column
{
	flex-basis: 100%;
	margin:0 5%;
}

.trend_right_column
{
	flex-basis: 100%;
	margin: 5%;
}
.small_icon_name
{
	font-size: 24px;
}

}

/* Running Counter*/

.running_number_container 
{
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	font-family: 'Instrument Serif';
	
	background-image: url('../images/counter.jpg');
	background-size: cover; 
    background-position: center; 
	background-repeat: no-repeat;
	background-attachment: fixed; /* Fixes the background in place */
	
	/* Required for overlay black color*/
	position: relative;
    z-index: 0;
}

/* Overlay black color*/
.running_number_container::before 
{
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4); /* Black overlay with 70% opacity */
   z-index: -1;
}

.counter 
{
   display: flex;
   flex-wrap: wrap;
   width: 100%;
   margin: 0;
   padding: 2%;
   
   justify-content: center;
   text-align: center;
   color: white;
   font-family: 'Instrument Serif';
}

.counter-item 
{
   padding: 5%;
   font-size: 28px;
   font-weight: bold;
}

.counter-item span 
{
   font-size: 100px;
   font-weight: bold;
}

@media screen and (max-width: 768px) 
{

.running_number_container 
{
	padding: 5% 0;
}
.counter-item 
{
   width: 100%;
   font-size: 20px;
}

.counter-item span 
{
   font-size: 60px;
}

}

/* Meet Our Experts */

.meet_our_experts
{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	overflow: hidden;
	margin: 0;
	padding: 0;
	padding-top: 2%;
	padding-bottom: 2%;
	background: linear-gradient(45deg, #85a0f5 0%, #c7d2f5 50%, #e3e7f3 100%);
}

.section-title 
{
	margin: 0;
	padding: 1% 10%;
	width: 100%;
	font-size: 40px;
	font-weight: bold;
	font-family: 'Instrument Serif';
	color: #050e2a;
	text-align: center;
}

.expert_left_column
{
	flex-basis: 30%;
	margin: 1%;
	padding: 2%;
	background-color: #f7f4f4;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.expert_left_column:hover 
{
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); 
	transform: scale(1.05);
}

.expert_right_column
{
	flex-basis: 45%;
	margin: 1%;
	padding: 2%;
	background-color: #f7f4f4;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.expert_right_column:hover 
{
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); 
	transform: scale(1.05);
}

.expert_heading_1
{
	margin: 0;
	padding: 0;
	color: #050e2a;
	font-size: 60px;
	font-weight: bold;
}

.expert_heading_2
{
	margin: 0;
	padding: 0;
	color: #050e2a;
	font-size: 40px;
	font-weight: bold;
}

.expert_description
{
	color: #000;
	font-size: 25px;
	font-family: 'Cambria';
	padding-top: 7%;
}

.expert_icon img
{
	margin: 0;
	padding: 0;
	width: 60%;
	height: auto;
	border-radius: 30%;
}

.expert_icon_name
{
	font-weight: bold;
	font-size: 28px;
	color: #050e2a;
	padding: 5%;
	padding-bottom: 2%;
}

.expert_icon_job_title
{
	font-size: 24px;
}

.expert_social_icon
{
	display: flex;
	margin: 0;
	padding: 4%;
	justify-content: center;
}

.expert_social_icon a 
{
	margin: 1%;
}

.expert_social_icon a:hover
{
	transform: scale(1.1);
}

.expert_social_icon img
{
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
}

@keyframes shake 
{
	0%, 100% { transform: translateX(0); }
	10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
	20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake 
{
	animation: shake 0.5s ease;
}

@media screen and (max-width: 768px) 
{

.section-title 
{
	font-size: 36px;
}
.expert_left_column
{
	flex-basis: 100%;
	margin: 5%;
}
.expert_right_column
{
	flex-basis: 100%;
	margin: 5%;
}
.expert_heading_1
{
	font-size: 40px;
}

.expert_heading_2
{
	font-size: 30px;
}

.expert_description
{
	font-size: 20px;
}
.expert_icon_name
{
	font-size: 24px;
}
.expert_icon_job_title
{
	font-size: 20px;
}

}

/* Inspire Section */

.inspired_section
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 2%;
	padding-bottom: 2%;
	justify-content: center;
	overflow: hidden;
	position: relative;
	
	background-image: url('../images/inspired_background.jpg');
	background-size: cover; 
    background-position: center; 
	background-repeat: no-repeat;
}

.inspired_section_left_column
{
	flex-basis: 50%;
	font-family: 'Instrument Serif';
	padding: 5%;
	padding-top: 0;
	text-align: center;
}

.inspired_heading_1
{
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 80px;
	font-weight: bold;
}

.inspired_heading_2
{
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
}

.inspired_description
{
	color: white;
	font-size: 25px;
	font-family: 'Cambria';
	padding-top: 7%;
}

.inspired_section_right_column
{
	flex-basis: 50%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* Slideshow */

.slideshow-container 
{  
	width: 90%;
	max-width: 90%; /* Adjusted to 100% */
	margin: 0;
	padding: 0;
}

.slide 
{
	display: none;
}

.slide img 
{
	width: 90%;
	max-width: 90%; /* Ensure images don't exceed their container */
	height: 90%;
	margin: 0;
	padding: 0;
}

.fade 
{
  animation: fade 4s ease-in-out infinite;
}

@keyframes fade 
{
  from {
	opacity: 0.6;
  }
  to {
	opacity: 1;
  }
}

@media screen and (max-width: 768px) 
{

.inspired_section
{
	flex-wrap: wrap;
}
.inspired_section_left_column
{
	flex-basis: 100%;
}
.inspired_heading_1
{
	font-size: 60px;
}

.inspired_heading_2
{
	font-size: 40px;
}

.inspired_description
{
	font-size: 24px;
}
.inspired_section_right_column
{
	flex-basis: 100%;
	padding-left: 10%;
}

}

@media screen and (min-width: 769px) and (max-width: 1024px) 
{
	
.inspired_heading_1
{
	font-size: 48px;
}

.inspired_heading_2
{
	font-size: 32px;
}

.inspired_description
{
	font-size: 18px;
}

}

/* Boosting Section */

.boosting_section
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 2%;
	padding-bottom: 2%;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.boosting_section_left_column
{
	flex-basis: 60%;
	font-family: 'Instrument Serif';
	padding: 2%;
	padding-top: 0;
	text-align: left;
}

.boosting_heading_1
{
	color: #050e2a;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 1px;
}

.boosting_heading_2
{
	color: #000;
	font-size: 60px;
	font-weight: bold;
}

.curve-line-container img
{
	margin: 0;
	padding: 0;
	
	width: 100%;  /* Adjusts to the width of the parent container */
    height: auto; /* Maintains the image's aspect ratio */
    max-width: 100%; /* Ensures it doesn’t exceed its original size */
}

.boosting_grid 
{
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Create two columns */
	grid-gap: 0px; /* Space between the containers */
	max-width: 1200px; /* Optional: Set a max width for the container */
	margin: 20px auto; /* Center the container horizontally */
}

.inner-container 
{
	display: flex;
	align-items: center; /* Align image and text vertically */
	background-color: #f5f5f5;
	padding: 10px;
	text-align: left;
	border: 1px solid #ccc; /* Optional: Border for the containers */
}

.boosting-container-image 
{
	width: 40px; 
	height: 40px; 
	margin-right: 20px;
}

.boosting-container-text 
{
	font-size: 14px;
	font-family: 'Cambria';
}

.boosting_button
{
	padding: 0;
}

.boosting_section_right_column
{
	flex-basis: 40%;
	
	background-image: url('../images/boosting.jpg');
	background-size: cover; 
    background-position: center; 
	background-repeat: no-repeat;
	
	padding: 5%;
	padding-top: 0;
}

@media screen and (max-width: 768px) 
{

.boosting_section
{
	flex-wrap: wrap;
}
.boosting_section_left_column
{
	flex-basis: 100%;
}
.boosting_heading_1
{
	font-size: 24px;
}
.boosting_heading_2
{
	font-size: 48px;
}
.boosting_grid 
{
	margin: 10px auto; /* Center the container horizontally */
}

.inner-container 
{
	padding: 5px;
}

.boosting-container-image 
{
	width: 30px; 
	height: 30px; 
	margin-right: 5px;
}

.boosting-container-text 
{
	font-size: 12px;
}
.boosting_section_right_column
{
	flex-basis: 100%;
	padding-bottom: 80%;
	padding-bottom: 80%;
}

}

/* Testimonial Section */

.testimonial_section
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 2%;
	padding-bottom: 2%;
	justify-content: center;
	overflow: hidden;
	position: relative;
	background: linear-gradient(45deg, #85a0f5 0%, #c7d2f5 50%, #e3e7f3 100%);
}

.testimonial_section_left_column
{
	flex-basis: 50%;
	font-family: 'Instrument Serif';
	padding: 2%;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
}

.testimonial_heading
{
	color: #050e2a;
	font-size: 60px;
	font-weight: bold;
}

.testimonial_description
{
	color: #000;
	font-size: 20px;
	font-family: 'Cambria';
}

.medium_icon img
{
	margin: 0;
	padding: 0;
	width: 30%;
	height: 30%;
}

.medium_icon_name
{
	font-size: 24px;
	color: #fff;
	font-family: 'Cambria';
}

.medium_icon_job_title
{
	font-size: 20px;
	color: #fff;
	font-family: 'Cambria';
}

.testimonial_button
{
	padding: 4%;
}

.testimonial_section_right_column
{
	flex-basis: 50%;
	
	background-image: url('../images/testimonial_slider_image.png');
	background-size: contain; 
    background-position: center; 
	background-repeat: no-repeat;
	
	padding: 0;
	
	opacity: 0;
    transform: translateX(500px);
    transition: opacity 1s ease, transform 3s ease;
}

.testimonial_section_right_column.show
{
	opacity: 1;
    transform: translateX(0);
}

@media screen and (max-width: 768px) 
{
	
.testimonial_section
{
	flex-wrap: wrap;
}

.testimonial_section_left_column
{
	flex-basis: 100%;
}

.testimonial_heading
{
	font-size: 48px;
}

.testimonial_description
{
	font-size: 20px;
}

.medium_icon_name
{
	font-size: 24px;
}

.medium_icon_job_title
{
	font-size: 20px;
}

.testimonial_section_right_column
{
	flex-basis: 100%;
	padding-top: 50%;
	padding-bottom: 50%
}
	
}

/* Carousel */

.carousel-container 
{
   position: relative;
   width: 100%;
   margin: 0;
   padding: 0;
   overflow: hidden;
}

.carousel-wrapper 
{
	display: flex;
	animation: scroll 20s linear infinite; /* Adjust the duration as needed */
}

.carousel-image 
{
	margin: 0;
	padding: 2%;
	width: 10%; /* Display 10 images at a time */
	flex: 0 0 10%; /* Flex-basis set to 10% for 10 images per scroll */
}

@keyframes scroll 
{
	0% 
	{
		transform: translateX(0);
	}
	100% 
	{
		transform: translateX(-100%); /* Scrolls the width of 10 images */
	}
}

@media screen and (max-width: 768px) 
{

.carousel-image 
{
	margin: 0;
	padding: 2%;
	width: 20%; /* Display 5 images at a time */
	flex: 0 0 20%; /* Flex-basis set to 20% for 5 images per scroll */
}
	
}

/* Footer */

footer 
{
	background: linear-gradient(45deg, #050e2a 0%, #071f68 50%, #5175e7 100%);
	color: #fff;
	padding: 1%;
	text-align: center;
}

.footer-links 
{
	display: flex;
	justify-content: center;
}

.footer-links a 
{
	margin: 0 5px;
}

.footer-links a:hover
{
	transform: scale(1.1);
}

.footer-links img
{
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
}

@media screen and (max-width: 768px) 
{

.footer-links img
{
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
}

.footer_line
{
	font-size: 16px;
}
	
}

/* About */

.about_section_header
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 18%;
	padding-bottom: 25%;
	justify-content: center;
	font-family: 'Londrina Shadow', cursive;
	
	background-image: url('../images/about_us_background.jpg');
	background-size: cover; 
    background-position: top left; 
	background-repeat: no-repeat;
	
	/* For Shape Divider */
	position: relative;
}

.page-title
{ 
	padding: 0;
	margin: 0;
	font-size: 100px;
	font-family: 'Londrina Shadow', cursive;
	text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
	text-align: center;
	color: #050e2a;
	letter-spacing: 3px; 
}

.custom-shape-divider-bottom-about
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-about svg 
{
    position: relative;
    display: block;
    width: calc(108% + 1.3px);
    height: 52px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-about .shape-fill 
{
    fill: #f7f4f4;
}

.about_section_detail
{
	margin: 0;
	padding: 2% 6%;
	justify-content: center;
	background-color: #f7f4f4;
}

.about_section_detail img 
{
	float: right;               
	margin-left: 20px;          
	width: 400px;               
	height: auto;               
	border-radius: 8px;         
}

.about_section_detail p 
{
	text-align: justify;   
	line-height: 25px;	
}

@media (max-width: 768px) 
{
	
.about_section_header
{
	padding-top: 50%;
	padding-bottom: 15%;
}
.page-title
{ 
	font-size: 70px;
}

}

/* Testimonials */

.testimonials_section_header
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 18%;
	padding-bottom: 5%;
	justify-content: center;
	font-family: 'Londrina Shadow', cursive;
	
	background-image: url('../images/testimonials.jpg');
	background-size: cover; 
    background-position: top left; 
	background-repeat: no-repeat;
	
	/* For Shape Divider */
	position: relative;
}

.page-title-testimonials
{
	padding: 0;
	margin: 0;
	font-size: 100px;
	font-family: 'Londrina Shadow', cursive;
	text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
	text-align: center;
	color: #050e2a;
	letter-spacing: 3px;
}

.testimonials_section_detail
{
	margin: 0;
	padding: 2% 6%;
	background-color: #f7f4f4;
}

.testimonial-container 
{
	display: flex;
	align-items: flex-start; /* Aligns image and text at the top */
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 20px auto;
}

.testimonial-image 
{
	width: 80px;
	height: 80px;
	border-radius: 50%; /* Makes the image circular */
	margin-right: 20px;
}

.testimonial-details 
{
	flex: 1; /* Allows text content to take the remaining space */
}

.testimonial-name 
{
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
}

.testimonial-title 
{
	font-size: 0.9em;
	color: #666;
	margin: 0 0 10px;
}

.star-container 
{
    margin: 0;
	padding: 0;
	display: flex;
	justify-content: left;
}

.star-container-home
{
    margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.star 
{
    padding: 0;
	margin: 0;
	width: 36px;
	height: 24px;
}

.testimonial-quote 
{
	font-size: 1em;
	font-style: italic;
	color: #333;
	quotes: "“" "”"; /* Sets quotation marks */
}

.testimonial-quote::before 
{
	content: open-quote;
}

.testimonial-quote::after 
{
	content: close-quote;
}

@media (max-width: 768px) 
{
	
.testimonials_section_header
{
	padding-top: 30%;
	padding-bottom: 15%;
}
.page-title-testimonials
{
	font-size: 50px;
}
.page-title
{ 
	font-size: 70px;
}
.testimonial-container 
{
	padding: 10px;
	margin: 5px auto;
}
.testimonial-image 
{
	width: 60px;
	height: 60px;
	border-radius: 50%; /* Makes the image circular */
	margin-right: 10px;
}
.testimonial-name 
{
	font-size: 1em;
}

.testimonial-title 
{
	font-size: 0.9em;
}

.testimonial-quote 
{
	font-size: 0.8em;
	line-height: 1.4em;
}

}

/* FAQ */

.faq_section_header
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top:0;
	padding-bottom:50%;
	justify-content: center;
	font-family: 'Londrina Shadow', cursive;
	
	background-image: url('../images/faq.png');
	background-size: cover; 
    background-position: top left; 
	background-repeat: no-repeat;
	
	/* For Shape Divider */
	position: relative;
}

.faq_section_detail
{
	margin: 0;
	padding: 2% 6%;
	background-color: #f7f4f4;
}

.accordion-container 
{
	max-width: 800px;
	margin: 20px auto;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.accordion-item 
{
	border-top: 1px solid #ddd;
}

.accordion-header 
{
	width: 100%;
	background-color: #f4f4f4;
	border: none;
	outline: none;
	padding: 15px;
	text-align: left;
	font-size: 1em;
	font-family: Cambria;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.accordion-sign 
{
	font-size: 1.2em;
	margin-right: 10px; /* Space between the sign and the question */
	transition: transform 0.3s;
}

.accordion-header:hover 
{
	background-color: #e2e2e2;
}

.accordion-content 
{
	padding: 0 15px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #fafafa;
}

.accordion-content p 
{
	margin: 15px 0;
}

@media (max-width: 768px) 
{
	
.faq_section_header
{
	padding-bottom: 50%;
}
.page-title
{ 
	font-size: 70px;
}

}

/* Services */

.services_section_header
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 50%;
	padding-bottom: 3%;
	justify-content: center;
	
	background-image: url('../images/services.jpg');
	background-size: cover; 
    background-position: bottom right; 
	background-repeat: no-repeat;
	
	/* For Shape Divider */
	position: relative;
}

.services_section_detail
{
	margin: 0;
	padding: 2% 6%;
	background-color: #f7f4f4;
}

.services_container 
{
	display: flex;
	align-items: flex-start; /* Aligns image and text at the top */
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 20px auto;
}

.services_image 
{
	width: 120px;
	height: 120px;
	border-radius: 30%; /* Makes the image circular */
	margin-right: 20px;
}

.services_details 
{
	flex: 1; /* Allows text content to take the remaining space */
	line-height: 25px;
}

.services_name 
{
	font-size: 1.4em;
	font-weight: bold;
	margin: 0;
	color: #050e2a;
}

.services_title 
{
	font-size: 0.9em;
	color: #666;
	margin: 0 0 10px;
	font-weight: bold;
}

@media (max-width: 768px) 
{
	
.services_section_header
{
	padding-top: 60%;
	padding-bottom: 2%;
}
.page-title
{ 
	font-size: 70px;
}
.services_container 
{
	padding: 10px;
	margin: 5px auto;
}
.services_image 
{
	width: 60px;
	height: 60px;
	border-radius: 20%; /* Makes the image circular */
	margin-right: 10px;
}
.services_name 
{
	font-size: 1.2em;
}
.service_desc
{
	font-size: 0.8em;
	text-align: justify;
}

}

/* Contact Us */

.contact_section_header
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 18%;
	padding-bottom: 3%;
	justify-content: center;
	font-family: 'Londrina Shadow', cursive;
	
	background-image: url('../images/contact.jpg');
	background-size: cover; 
    background-position: top left; 
	background-repeat: no-repeat;
	
	/* For Shape Divider */
	position: relative;
}

.contact_section_detail
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 1%;
	padding-bottom: 25%;
	justify-content: center;
	overflow: hidden;
	
	background-image: url('../images/contact2.jpg');
	background-size: cover; 
    background-position: center center; 
	background-repeat: no-repeat;
}

.custom-shape-divider-bottom-contact
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-contact svg 
{
    position: relative;
    display: block;
    width: calc(108% + 1.3px);
    height: 52px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-contact .shape-fill 
{
    fill: #9faab3;
}

.contact_section_detail_left_column
{
	flex-basis: 50%;
	padding: 5%;
	padding-top: 0;
	text-align: center;
}

.page-title-contact-us
{
	padding: 0;
	margin: 0;
	font-size: 70px;
	font-family: 'Londrina Shadow', cursive;
	text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
	text-align: center;
	color: #050e2a;
	letter-spacing: 3px;
}

.icon-list 
{
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.icon-item 
{
	display: flex;
	text-align: left;
	align-items: left;
	padding: 10px 0;
	font-size: 18px;
}

.icon-item i 
{
	font-size: 1.5em;
	color: black;
	margin-right: 5px;
}

.icon-label 
{
	font-weight: bold;
	margin-right: 5px;
}

.contact_social_icon
{
	display: flex;
	margin: 0;
	padding-top: 4%;
	justify-content: left;
}

.contact_social_icon a 
{
	margin: 1%;
	margin-left: 0;
}

.contact_social_icon a:hover
{
	transform: scale(1.1);
}

.contact_social_icon img
{
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
}

.contact_section_detail_right_column
{
	flex-basis: 50%;
}

.map-container 
{
	max-width: 100%;
	height: 350px;
	margin: 0;
	padding-right: 2%;
	overflow: hidden;
}

@media (max-width: 768px) 
{
	
.contact_section_header
{
	padding-top: 20%;
	padding-bottom: 20%;
}
.page-title
{ 
	font-size: 70px;
}
.contact_section_detail
{
	flex-wrap: wrap;
}
.contact_section_detail_left_column
{
	flex-basis: 100%;
}
.page-title-contact-us
{
	font-size: 50px;
}
.contact_section_detail_right_column
{
	flex-basis: 100%;
}
.map-container 
{
	padding: 2%;
}

}

/* SIP Calculator */

.sip_section_detail
{
	display: flex;
	padding: 2%;
	background-color: #f7f4f4;
	justify-content: center;
}

.sip-container 
{
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    justify-content: space-between;
    align-items: flex-start;
}

.sip-form 
{
    flex: 1;
    max-width: 400px;
    margin-right: 20px;
}

.sip-chart 
{
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

h1 
{
    color: #333;
    margin-bottom: 20px;
}

form 
{
    display: flex;
    flex-direction: column;
}

label 
{
    font-weight: bold;
    margin: 10px 0 5px;
    text-align: left;
    width: 100%;
}

input[type="range"] 
{
    width: 100%;
    margin: 10px 0;
}

input[type="number"] 
{
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
}

#result p 
{
    margin: 5px 0;
    font-size: 18px;
    color: #050e2a;
    font-weight: bold;
}

canvas 
{
    max-width: 100%;
    height: auto;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) 
{
	
.sip-container 
{
	flex-direction: column;
	align-items: center;
}

.sip-form 
{
	margin-right: 0;
	margin-bottom: 20px;
}

}

/* Loan Calculator */

.loan-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    justify-content: space-between;
    align-items: flex-start;
}

.loan-form 
{ 
	flex: 1; 
	max-width: 400px; 
	margin-right: 20px; 
}

.loan-chart 
{
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

h1 
{
    color: #333;
    margin-bottom: 20px;
}

form 
{
    display: flex;
    flex-direction: column;
}

label 
{
    font-weight: bold;
    margin: 10px 0 5px;
    text-align: left;
    width: 100%;
}

input[type="range"] 
{
    width: 100%;
    margin: 10px 0;
}

input[type="number"] 
{
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
}

#result p 
{
    margin: 5px 0;
    font-size: 18px;
    color: #050e2a;
    font-weight: bold;
}

canvas 
{
    max-width: 100%;
    height: auto;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) 
{
	
.loan-container 
{
	flex-direction: column;
	align-items: center;
}

.loan-form 
{
	margin-right: 0;
	margin-bottom: 20px;
}

}

/* Products */

.rounded-button-products
{
	background-color: #1D17DF; 
	color: white;
	font-family: Cambria;
	margin-top: 1%;
	padding: 1% 2%;
	border: none;
	border-radius: 25px; 
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease; 
}

.rounded-button-products:hover 
{
	background-color: #0F09BB; 
}

.page-title-products
{ 
	padding: 0;
	margin: 0;
	font-size: 70px;
	font-family: 'Londrina Shadow', cursive;
	text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
	text-align: center;
	color: #050e2a;
	letter-spacing: 2px; 
}

.product_description
{
	margin: 2% 10%;
	text-align: justify; 
}

@media screen and (max-width: 768px) 
{
	
.rounded-button-products
{
	padding: 2% 3%;
}
.page-title-products
{ 
	font-size: 50px;
}
.product_description
{
	margin: 2% 2%;
}


}

/* Download */

.download-container 
{
    display: flex;
    flex-wrap: wrap;
	flex-direction: column; /* Stack items vertically */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    justify-content: space-between;
    align-items: flex-start;
}

.download-container h1
{
	margin: 0;
	padding: 0;
	color: #050e2a;
}

.rounded-button-download
{
	background-color: #e5e8ef; 
	color: #000;
	font-family: Cambria;
	margin-top: 2%;
	padding: 1% 3%;
	border: none;
	border-radius: 25px; 
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease; 
	width: 300px;
}

.rounded-button-download:hover 
{
	background-color: #c2c5cf; 