
/* Fonts */
:root {
  --default-font: "Roboto Mono", sans-serif;  /* font from google api having multiple weights */
  --heading-font: "Roboto Mono", sans-serif;  /* font from google api having multiple weights */
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #333333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c2c2c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff6b35; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --secondary-accent: #ff8f65; /* Secondary orange accent for hover states and highlights */
  --light-orange: #fff5f0; /* Very light orange for subtle backgrounds */

  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --border-color: #e5e5e5; /* Modern border color for cleaner look */
  --shadow-color: rgba(0, 0, 0, 0.08); /* Subtle shadow color for modern depth */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #2c2c2c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3a3a3a;
  --contrast-color: #ffffff;
}
.orange-background {
  --background-color: var(--light-orange);
  --default-color: #333333;
  --heading-color: #2c2c2c;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

html
{
	scroll-behavior: smooth;
}

*::selection{
  background-color: var(--light-orange);
  color: var(--accent-color);
}

span {
  color: var(--accent-color);
}

#content
{
    opacity: 0; 
    transition: opacity 1s ease-in-out;   /*Add transition for opacity  */
}

/* Hide the default scrollbar */
::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track
{
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb
{
    background: var(--border-color);
    border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover
{
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font), sans-serif;
  padding-top: 105px; /* Account for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
#header
{
	width:100%;
	height: 105px;
  background-color: var(--background-color);
  box-shadow: 0 2px 20px var(--shadow-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-cont{
	padding: 0px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
  padding: 10px 0;
  height: 100%;
  min-height: 105px;
}

.logo{
  height: 80px;        
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex-shrink: 0;
}

.logo img{
  display: block;
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li
{
	display: inline-block;
	list-style: none;
	margin: 10px 20px;
}

nav ul li a
{
	text-decoration: none;
	color:var(--default-color);
	font-size:0.9em;
	transition: all 0.3s ease;
  font-weight: 500;
  font-family: var(--default-font);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
}

nav ul li a:hover
{
	color: var(--accent-color);
  background-color: var(--light-orange);
  transform: translateY(-2px);
}

nav ul li a:focus{
  color: var(--accent-color);
  outline: none;
  background-color: var(--light-orange);
}

nav .fas{
	display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav .fas:hover {
  background-color: var(--light-orange);
  color: var(--accent-color);
}

.fa-times{
  color: var(--accent-color);
  font-size: 20px;
}

.fa-bars{
  color: var(--default-color);
}
  


   

@media only screen and (max-width: 830px)
{
	.header-cont {
    padding: 0px 3%;
  }
  
	.logo{
		height: 70px;
    width: auto;
    margin: 0;
	}

	nav .fas{
		display: block;
		font-size: 24px;
    margin-right: 10px;
    z-index: 1001;
	}
  
	nav ul{
		background: var(--background-color);
    box-shadow: -5px 0 20px var(--shadow-color);
		position: fixed;
		top: 0;
		right: -280px;
		width: 280px;
		height: 100vh;
    padding: 0;
		padding-top: 80px;
		z-index: 1000;
		transition: right 0.5s ease;
    flex-direction: column;
    align-items: flex-start;
    border-left: 2px solid var(--border-color);
	}
  
	nav ul li{
		display: block;
		margin: 20px 25px;
    width: calc(100% - 50px);
	}
  
  nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: left;
  }
  
	nav ul .fas{
		position: absolute;
		top: 25px;
		left: 25px;
		cursor: pointer;
    background: none;
	}
}

/* Mobile menu overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

@media only screen and (max-width: 480px)
{
  .header-cont {
    padding: 0px 2%;
  }
  
  .logo{
    height: 60px;
    width: auto;
  }
  
  nav .fas{
    font-size: 22px;
    margin-right: 5px;
  }
  
  nav ul{
    width: 260px;
    right: -260px;
  }
} 



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(135deg, var(--light-orange) 0%, #ffffff 100%);
  font-size: 14px;
  font-family: var(--default-font);
  padding: 60px 0 0 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -5px 20px var(--shadow-color);
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 20px;
  font-size: 24px;
  line-height: 0;
  position: relative;
  top: -2px;
  transition: transform 0.3s ease;
} 

.footer .icon:hover {
  transform: scale(1.2);
}

.footer h4 {
  font-size: 18px;
  font-family: var(--heading-font); 
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer .address p {
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--default-color);
}

.footer .opening-hours p {
  color: var(--default-color);
  font-size: 15px;
}

.footer .contact-us,
.footer .follow-us {
  color: var(--default-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 15px;
  transition: all 0.3s ease;
  background: var(--background-color);
  box-shadow: 0 3px 15px rgba(255, 107, 53, 0.2);
}

.footer .social-links a:hover {
  color: var(--background-color);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.footer .social-links a:focus,
.footer .social-links a:active { 
  color: var(--background-color);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-color: var(--accent-color);
  outline: none;
  transform: translateY(-1px);
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  background: var(--background-color);
  margin-top: 40px;
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}


/*--------------------------------------------------------------
# Preloader / Loader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--default-font);
  transition: all 0.6s ease-out;
}

/* Main content wrapper for centering the spinner */
#preloader .loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Spinning circle loader */
#preloader .spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Spinner animation - continuous rotation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Text container positioned at the bottom */
#preloader .text-container {
  position: absolute;
  bottom: 80px;
  text-align: center;
  color: #ffffff;
  width: 100%;
  padding: 0 20px;
  animation: pulse 2s ease-in-out infinite;
}

/* First line styling - larger and bold */
#preloader .text-line-1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* Second line styling - smaller and lighter */
#preloader .text-line-2 {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.9;
}

/* Pulsing effect for the text */
@keyframes pulse {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive design for tablets */
@media (max-width: 768px) {
  #preloader .spinner {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  #preloader .text-line-1 {
    font-size: 20px;
  }

  #preloader .text-line-2 {
    font-size: 16px;
  }

  #preloader .text-container {
    bottom: 60px;
  }
}

/* Responsive design for mobile phones */
@media (max-width: 480px) {
  #preloader .spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }

  #preloader .text-line-1 {
    font-size: 18px;
  }

  #preloader .text-line-2 {
    font-size: 14px;
  }

  #preloader .text-container {
    bottom: 40px;
    padding: 0 15px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.scroll-top i {
  font-size: 24px;
  color: var(--background-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 105px; /* Match fixed header height */
    padding: 60px 0;
  }
  
  body {
    padding-top: 105px; /* Ensure consistent spacing */
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Hero Section (after header navbar)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 40px 0 80px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-orange) 50%, #ffffff 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

@media(max-width:450px)
{
  .hero {
    padding-top:20px;
  }
}

.hero h1 {
  margin: 0;
  margin-top:60px;
  margin-bottom: 15px;
  font-size: 3.2em;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border-radius: 2px;
}

.hero p {
  margin: 25px 0 30px 0;
  font-size: 1.2em;
  font-weight: 400;
  color: var(--default-color);
  line-height: 1.6;
}

.hero p span {
  font-weight: 600;
  color: var(--accent-color);
}


@media (max-width:992px) {
  .hero h1 {
    text-align: center;
  }  
  .hero p {
    text-align: center;
  }
  
  .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width:600px) {
  .hero h1 {
  font-size: 2.5em;
  line-height: 1.3;
  margin-bottom: 10px;
  } 
  
  .hero p {
    line-height: 1.5;
    font-size: 1.1em;
  }
}

@media (max-width:400px) {
  .hero h1 {
    font-size: 2.2em;
    margin-top:30px;
    line-height: 1.2;
  }  
  .hero p {
    font-size: 1em;
  }
}

@media (max-width:380px) {
  .hero h1 {
    font-size: 2em;
    margin-top:20px;
    margin-bottom: 8px;
  }  
  .hero p {
    font-size: 0.95em;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about{
  margin-bottom: 100px;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-orange) 100%);
  border-radius: 30px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.about .about-img {
  margin: 60px 0 0 0;
}

.about .about-img img {
  border: 8px solid var(--background-color);
  border-radius: 50%;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

@media (max-width:992px){
  .about .about-img img {
    border: 12px solid var(--background-color);
  }  
}

@media (max-width:768px){
  .about .about-img img {
    border: 8px solid var(--background-color);
  }  
  
  #about {
    margin-left: 10px;
    margin-right: 10px;
    padding: 40px 20px;
  }
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 0;
  }
}

.about-cont-1 h1{
  font-size: 1.3em;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
	font-family: var(--heading-font);
  color: var(--heading-color);
}

.about-cont-1 p{
  font-size: 0.9em;
  color: var(--accent-color);
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

.about-cont-2 h1{
  font-size: 2.8em;
  text-align: center;
  margin-top: 100px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  position: relative;
}

.about-cont-2 h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border-radius: 2px;
}

@media(max-width:992px){
.about-cont-2 h1{
  margin-bottom: 40px;
  margin-top: 60px;
}
}

.about-cont-2 p{
  font-size: 1.1em;
  text-align: center;
  line-height: 32px;
  margin-top: 30px;
  font-family: var(--default-font);
  font-weight: 400;
  color: var(--default-color);
}

@media(max-width:500px){
  .about-cont-2 p{
    font-size: 1em;
    line-height: 28px;
  }
}

@media(max-width:400px){
  .about-cont-2 p{
    font-size: 0.9em;
    line-height: 26px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 8px 30px var(--shadow-color);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item .icon {
  margin: 0 auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background: var(--light-orange);
  border-radius: 50%;
  margin-bottom: 20px;
}

.services .service-item .icon i {
  font-size: 32px;
  transition: 0.5s;
  position: relative;
  color: var(--accent-color);
}

.services .service-item h3 {
  font-weight: 600;
  margin: 20px 0 15px 0;
  font-size: 1.3em;
  transition: 0.3s;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.services h1{
  font-size: 3em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 26px;
  font-size: 0.95em;
  margin-bottom: 0;
  font-family: var(--default-font);
  color: var(--default-color);
}

.services .service-item ul {
  text-align: left;
  padding-left: 20px;
  margin-top: 15px;
}

.services .service-item ul li {
  margin-bottom: 8px;
  font-size: 0.9em;
  color: var(--default-color);
}

.services .service-item .small {
  font-size: 0.8em;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: 10px;
}

.services .service-item:hover {
  box-shadow: 0 15px 40px var(--shadow-color);
  transform: translateY(-8px);
}

.services .service-item.item-cyan .icon {
  background: linear-gradient(135deg, #e3f9fd, #b8f0ff);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-orange .icon {
  background: linear-gradient(135deg, #fff3e0, #ffe0cc);
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-teal .icon {
  background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-red .icon {
  background: linear-gradient(135deg, #fdeaea, #fbc2c4);
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-indigo .icon {
  background: linear-gradient(135deg, #ede7f6, #d1c4e9);
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-yellow .icon {
  background: linear-gradient(135deg, var(--light-orange), #ffebcc);
}

.services .service-item.item-yellow i {
  color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .icon {
  transform: scale(1.1);
}

#services{
  margin-bottom: 150px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact-for-navigation{
  padding-top: 10px;
}

.contact h1{
  font-size: 3.2em;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  position: relative;
}

.contact h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border-radius: 2px;
}

.contact p{
  font-size: 1em;
  color: var(--default-color);
}

.contact .section-title{
  padding-bottom:50px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item {
  background: var(--background-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: transform 0.3s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
}

.contact .info-item i {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  color: var(--background-color);
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.contact .info-item i:hover,
.contact .info-item i:focus,
.contact .info-item i:active {
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  transform: scale(1.1);
  outline: none;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--default-color);
}

.contact .contact-form {
  height: 100%;
  background: var(--background-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=telephone],
.contact .contact-form textarea {
  font-size: 1em;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=telephone]:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=telephone]::placeholder,
.contact .contact-form textarea::placeholder {
  color: #999999;
}

.contact .contact-form button[type=submit] {
  color: var(--background-color);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border: none;
  padding: 15px 30px;
  margin-top: 20px;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  cursor: pointer;
  font-family: var(--default-font);
}

.contact .contact-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.contact .contact-form button[type=submit]:active,
.contact .contact-form button[type=submit]:focus {
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  transform: translateY(-1px);
  outline: none;
}



.redirection{
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.redirection:hover{
  color: var(--accent-color);
  transform: translateY(-1px);
}

.redirection:active{
  color: var(--accent-color);
}

.cont-msg{
	display: flex;
	justify-content: center;
	align-items: center;
}

#msg{
	margin-top: 30px;
	font-size: 1em;
	display: block;
  color: var(--accent-color);
  font-weight: 600;
  text-align: center;
  padding: 15px;
  background: var(--light-orange);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}


/*-------------------------------
#why-us section
-------------------------------*/

.whyus{
  margin-bottom:80px;
  margin-top:0;
  background: var(--light-orange);
  border-radius: 25px;
  padding: 60px 40px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.whyus h1{
  margin-bottom: 60px;
  font-size: 2.8em;
  text-align: center;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  position: relative;
}

.whyus h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border-radius: 2px;
}

.whyus .d-flex {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform 0.3s ease;
}

.whyus .d-flex:hover {
  transform: translateY(-3px);
}

.whyus .d-flex i {
  color: var(--accent-color);
  font-size: 24px;
  margin-right: 20px;
  margin-top: 5px;
  flex-shrink: 0;
}

.whyus .d-flex p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: var(--default-color);
  font-family: var(--default-font);
}

.whyus .d-flex p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media(max-width:768px){
  .whyus {
    margin-left: 10px;
    margin-right: 10px;
    padding: 40px 20px;
  }
  
  .whyus h1 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }
}

@media(max-width:480px){
  .whyus h1 {
    font-size: 1.8em;
  }
  
  .whyus .d-flex {
    padding: 15px;
  }
  
  .whyus .d-flex i {
    font-size: 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Page Header Styles for new pages
--------------------------------------------------------------*/
.page-header {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  color: var(--background-color);
  padding: 100px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family: var(--heading-font);
}

.page-header .lead {
  font-size: 1.3em;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 40px 0;
  }
  
  .page-header h1 {
    font-size: 2.5em;
  }
  
  .page-header .lead {
    font-size: 1.1em;
  }
}

/*--------------------------------------------------------------
# Team Section Styles
--------------------------------------------------------------*/
.team .team-member {
  background: var(--background-color);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.team .member-img {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.team .member-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team .team-member:hover .member-img img {
  transform: scale(1.1);
}

.team .member-info h4 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.team .member-info span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 15px;
  display: block;
}

.team .member-info p {
  color: var(--default-color);
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team .social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team .social a {
  width: 40px;
  height: 40px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .social a:hover {
  background: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Process Section Styles
--------------------------------------------------------------*/
.process .process-item {
  background: var(--background-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.process .process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.process .process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  color: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.process .process-item h4 {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.process .process-item p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# CTA Section Styles
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  color: var(--background-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family: var(--heading-font);
}

.cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-btn {
  background: var(--background-color);
  color: var(--accent-color);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: var(--light-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 2.2em;
  }
  
  .cta p {
    font-size: 1.1em;
  }
}

/*--------------------------------------------------------------
# Portfolio/Gallery Section Styles
--------------------------------------------------------------*/
.portfolio-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.portfolio-filters li {
  cursor: pointer;
  background: var(--background-color);
  color: var(--default-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  font-size: 0.95em;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--background-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--background-color);
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
}

.portfolio-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.portfolio-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-content:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h4 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  font-family: var(--heading-font);
}

.portfolio-info p {
  font-size: 0.9em;
  margin-bottom: 15px;
  opacity: 0.9;
}

.portfolio-info .preview-link,
.portfolio-info .details-link {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.portfolio-info .preview-link:hover,
.portfolio-info .details-link:hover {
  background: var(--secondary-accent);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section Styles
--------------------------------------------------------------*/
.stats .stats-item {
  background: var(--background-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
}

.stats .stats-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.stats .purecounter {
  font-size: 3.5em;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.stats .stats-item p {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Testimonials Section Styles
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background: var(--background-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.testimonials .stars {
  margin-bottom: 20px;
}

.testimonials .stars i {
  color: #ffc107;
  font-size: 1.2em;
  margin-right: 3px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--default-color);
  line-height: 1.6;
  flex-grow: 1;
}

.testimonials .profile {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--accent-color);
}

.testimonials .profile h3 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.testimonials .profile h4 {
  font-size: 0.9em;
  color: var(--accent-color);
  margin: 0;
}

/*--------------------------------------------------------------
# FAQ Section Styles
--------------------------------------------------------------*/
.faq .faq-container {
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 8px 30px var(--shadow-color);
  overflow: hidden;
}

.faq .faq-item {
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item h3 {
  font-size: 1.2em;
  font-weight: 600;
  padding: 25px 60px 25px 25px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
  transition: color 0.3s ease;
}

.faq .faq-item:hover h3 {
  color: var(--accent-color);
}

.faq .faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-active .faq-toggle {
  transform: translateY(-50%) rotate(90deg);
}

.faq .faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-active .faq-content {
  max-height: 200px;
  padding: 0 25px 25px 25px;
}

.faq .faq-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Map Section Styles
--------------------------------------------------------------*/
.map .map-container {
  background: var(--background-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
}

.map iframe {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Form Validation and Enhancement
--------------------------------------------------------------*/
.php-email-form {
  background: var(--background-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.php-email-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
}

.php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

.php-email-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: block;
  font-family: var(--default-font);
}

.php-email-form button[type="submit"] {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border: none;
  color: var(--background-color);
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  font-family: var(--default-font);
}

.php-email-form button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.php-email-form .loading {
  display: none;
  background: var(--accent-color);
  color: var(--background-color);
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 600;
}

.php-email-form .error-message {
  display: none;
  color: #dc3545;
  background: #f8d7da;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid #f5c6cb;
}

.php-email-form .sent-message {
  display: none;
  color: #155724;
  background: #d4edda;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid #c3e6cb;
}

/*--------------------------------------------------------------
# Active Navigation Link Styles
--------------------------------------------------------------*/
.navmenu a.active {
  color: var(--accent-color) !important;
  font-weight: 600;
  position: relative;
}

.navmenu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

.whyus .d-flex:hover {
  transform: translateX(10px);
}

.whyus i {
  font-size: 12px;
  line-height: 0;
  margin-right: 20px;
  color: var(--background-color);
  background-color: var(--accent-color);
  border-radius: 50%;
  padding: 8px;
  position: relative;
  top: 8px;
  flex-shrink: 0;
  box-shadow: 0 3px 15px rgba(255, 107, 53, 0.3);
}

.whyus p{
  color: var(--default-color);
  font-size: 1.05em;
  font-family: var(--default-font);
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

@media (max-width:768px) {
  .whyus {
    margin-left: 10px;
    margin-right: 10px;
    padding: 40px 20px;
  }
  
  .whyus h1 {
    font-size: 2.4em;
  }
}