/*================================================
Fonts
================================================*/

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");

/* Start Variables */
:root {
  --primary-color: #fd4a18;
  --dark-color: #151515;
  --footer-background-color: #1a1a1a;
  --secondary-color: #616161;
  --grey-color: #f7f8f9;
  --white-color: #ffffff;
  --body-fonts: "Nunito Sans", sans-serif;
  --title-fonts: "Jost", sans-serif;
  --transparent-color: rgb(253 74 24 / 72%);
  --section-padding: 80px;
}


::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}
::selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

/* End Variables */
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white-color);
  font-family: var(--body-fonts), sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  line-height: 2;
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-style: normal;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none !important;
}

h1 {
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  font-style: normal;
  line-height: 44px;
}

h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
}

h4 {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

h5 {
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
  color: var(--primary-color);
  outline: none !important;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

a:focus,
a:hover {
  color: var(--primary-color);
  outline: none;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--grey-color);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid #e0e0e0;
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

ul {
  list-style: none;
}
/* End Global Rules */

/* start loading icon */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  animation: loader-animation 3s forwards;
  top: 0px;
  z-index: 99999999999; /* 3 seconds for the fade out */
}
#loading-screen img {
  max-width: 200px;
}
@keyframes loader-animation {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none; /* Ensures the element is removed after fade out */
  }
}
/* end loading icon */
/* Start Components */
.main-heading {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading .special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.main-heading p {
  margin: 5px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}
/* End Components */

/* Start theming buttons */

.theming-btn {
  font-family: var(--title-fonts);
  font-size: 16px;
  padding: 12px 45px;
  line-height: 2;
  position: relative;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.primary-button {
  background: var(--primary-color);
  color: var(--white-color);
}
.primary-button:hover,
.primary-button:focus {
  background: var(--dark-color);
  color: var(--white-color);
}

.secondary-button {
  background: var(--dark-color);
  color: var(--white-color);
}
.secondary-button:hover,
.secondary-button:focus {
  background: var(--primary-color);
  color: var(--white-color);
}
/* End theming buttons */

/* Start Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  background: var(--white-color);
  z-index: 99;
}

header .main-nav {
  position: relative;
  padding: 25px 0px;
}

 

header .top-header {
  background: var(--dark-color);
  padding: 0;
  font-size: 14px;
}

header .top-header .container  .header-social ul {
  margin: 0;
  padding: 0;
}

header .top-header .container  .header-social ul li {
  list-style: none;
  display: inline-flex;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-social ul li a {
  color: var(--white-color);
  padding: 10px 20px;
  display: inline-flex;
}

header .top-header .container .top-header ul li a:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

header .top-header .container .header-social ul li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-contact ul {
  margin: 0;
  padding: 0;
}

header .top-header .container .header-contact ul li {
  list-style: none;
  display: inline-block;
  color: var(--white-color);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
}
header .top-header .container  .header-contact ul li:last-child {
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container  .header-contact ul li i {
  margin-right: 10px;
}

header .top-header .container  .header-contact ul li a {
  color: var(--white-color);
}

header .top-header .container  .header-contact ul li a:hover {
  color: var(--white-color);
  background: transparent;
}

header .logo img {
  height: 40px;
}
header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav .toggle-menu {
  color: #333;
  font-size: 22px;
}
@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}
header nav ul {
  display: flex;
}
@media (max-width: 767px) {
  header nav ul {
    display: none;
  }
  header nav .toggle-menu:hover + ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
  header nav ul li a {
    padding: 15px !important;
    display: block;
  }
}
header nav ul li a {
  padding: 40px 10px;
  font-family: var(--title-fonts);
  position: relative;
  margin-right: 20px;
  color: var(--dark-color);
  line-height: 27px;
  font-weight: 400;
  z-index: 2;
}
header nav ul li a.active,
header nav ul li a:hover {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}
header nav .form {
  position: relative;
  margin-left: 30px;
}

/* End Header */

/* Start Components */
.main-heading {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading .special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.main-heading p {
  margin: 5px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}
/* End Components */

/* Start hero-section */
.hero-section {
  min-height: 100vh;
  background-color: #1f2021;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  position: relative;
}
.hero-section .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(253 74 24 / 22%);
}
.hero-section .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  padding: 50px;
  background-color: var(--transparent-color);
  color: white;
  display: flex;
  justify-content: flex-end;
}
.hero-section .text .content {
  max-width: 500px;
}
@media (max-width: 767px) {
  .hero-section .text {
    width: 100%;
  }
  .hero-section .text .content {
    max-width: 100%;
  }
}
.hero-section .text .content h2 {
  font-weight: 900;
}
.hero-section .text .content p {
  font-size: 14px;
  line-height: 2;
}
.hero-section .change-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
}
@media (max-width: 767px) {
  .hero-section .change-background {
    display: none;
  }
}

/* End Landing */

/* Start About */
.about-us {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: #fff;
  position: relative;
}

.about-us .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-us .about-image {
  position: relative;
  max-width: 100%;
}

.about-us .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 120px;
}

.about-us .experience-badge .years {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--title-fonts);
  line-height: 1;
}

.about-us .experience-badge .text {
  display: block;
  font-size: 12px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-us .about-info .about-subtitle {
  display: inline-block;
  background: rgba(253, 74, 24, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-us .about-info h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.about-us .about-info p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-us .about-features {
  margin: 30px 0;
}

.about-us .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.about-us .feature-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.about-us .feature-item span {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
}

.about-us .about-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.about-us .about-video-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-us .about-video-btn i {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.about-us .about-video-btn:hover i {
  transform: scale(1.1);
  background: var(--dark-color);
}

.about-us .about-video-btn:hover {
  color: var(--primary-color);
}

.about-us .about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 50px 0px;
  border-radius: 40px;
  background: linear-gradient(135deg, #fff6f3 0%, #f8f9fa 100%);
}

.about-us .about-stats .stat-box {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.about-us .about-stats .stat-box:hover {
  transform: translateY(-5px);
}
.about-us .about-stats .stat-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-us .about-stats .stat-box h4 {
  font-size: 35px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-family: var(--title-fonts);
}
.about-us .about-stats .stat-box p {
  color: var(--secondary-color);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
}
/* End About */

/* start services */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.border-primary-custom {
  border-color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #e04315; 
  border-color: #e04315;
}


.btn-primary-custom:hover {
  background-color: rgba(253, 74, 24, 0.9) !important; 
  border-color: rgba(253, 74, 24, 0.9) !important;
}

.services .icon-box {
  font-size: 40px;
  color: var(--white-color);
  width: 75px;
  height: 75px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(253, 74, 24, 0.4); 
}

.services .title {
  color: var(--primary-color);
}

.services .btn,
.services .btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* end services */


/* start portfolio */
#portfolio{
  overflow: hidden;
}
.portfolio-card {
  max-width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}
.portfolio-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portfolio-overlay {
  inset: 0; 
  position: absolute;
  background-color: rgba(253, 74, 24, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.icon-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background-color: var(--primary-color);
  color: white;
}
.filter-btn {
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 8px rgba(253, 74, 24, 0.5); 
  color: #333;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 12px rgba(253, 74, 24, 0.7);
  border-color: var(--primary-color);
}

/* End portfolio */


/* start Footer */
footer {
  background: var(--footer-background-color);
  color: var(--white-color);
  padding: 60px 0 0 0;
  position: relative;
}
footer .footer-content .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  padding: 45px 0 45px;
}
footer .footer-logo {
  margin-bottom: 20px;
}
footer .footer-logo img {
  max-width: 200px;
}
footer .footer-description {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}
footer .footer-social h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}
footer .footer-social .social-links {
  display: flex;
  gap: 12px;
}
footer .footer-social .social-links .social-link {
  width: 45px;
  height: 45px;
  background-color: #2c2c2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7d7d7;
}

footer .social-link:hover {
  color: white;
  transform: translateY(-3px);
}
footer .social-link.facebook:hover {
  background: #3b5998;
}

footer .social-link.twitter:hover {
  background: #1da1f2;
}

footer .social-link.linkedin:hover {
  background: #0077b5;
}

footer .social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

footer .social-link.github:hover {
  background: #333;
}

footer .footer-column .footer-widget .widget-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

footer .footer-column .footer-widget .widget-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  left: 0px;
  bottom: 0px;
}
footer .footer-column .footer-widget .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column .footer-widget .footer-links li {
  margin-bottom: 12px;
}
footer .footer-column .footer-widget .footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
footer .footer-column .footer-widget .footer-links li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .footer-column .footer-widget .footer-links li a:hover::before {
  opacity: 1;
}
footer .footer-column .footer-widget .contact-info .contact-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}
footer .footer-column .footer-widget .contact-info .contact-item i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;  
}

footer .newsletter h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

footer .newsletter p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

footer .newsletter-form {
  position: relative;
}


footer .newsletter-input {
  position: relative;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

footer .newsletter-input input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}

footer .newsletter-input button {
  padding: 12px 15px;
  background: var(--primary-color);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}


.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .footer-bottom-content .copyright p {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

footer .footer-bottom-links {
  display: flex;
  gap: 30px;
}

footer .footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer .footer-bottom-links a:hover {
  color: var(--primary-color);
}


/* End Footer */
